diff --git a/CHANGELOG.md b/CHANGELOG.md index 33da1b0bcd..5a19419b38 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Change Logs +## v1.0.54 +* Refreshes the terraform module to be in sync with the latest Cisco Intersight model (build 18369) + ## v1.0.53 * Refreshes the terraform module to be in sync with the latest Cisco Intersight model (build 18012) diff --git a/GNUmakefile b/GNUmakefile index 617b49f85d..a5fc30b98f 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -1,5 +1,5 @@ PKG_NAME=intersight -VERSION=1.0.53 +VERSION=1.0.54 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 f18991da0a..cfa3f47cae 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.53" + version = "1.0.54" } } } diff --git a/examples/sample_modules/server_configurations/main.tf b/examples/sample_modules/server_configurations/main.tf index 648f440bfa..d6bc46a886 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.53" + version = "1.0.54" } } } diff --git a/examples/sample_modules/server_deployment/main.tf b/examples/sample_modules/server_deployment/main.tf index b89f59b419..014098b557 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.53" + version = "1.0.54" } } } diff --git a/intersight/data_source_intersight_capability_adapter_update_constraint_meta.go b/intersight/data_source_intersight_capability_adapter_update_constraint_meta.go index 8423eb5f32..3722c79cb9 100644 --- a/intersight/data_source_intersight_capability_adapter_update_constraint_meta.go +++ b/intersight/data_source_intersight_capability_adapter_update_constraint_meta.go @@ -61,7 +61,7 @@ func getCapabilityAdapterUpdateConstraintMetaSchema() map[string]*schema.Schema }, }, "class_id": { - Description: "The fully-qualified name of the instantiated, concrete type.\nThis property is used as a discriminator to identify the type of the payload\nwhen marshaling and unmarshaling data.", + Description: "The fully-qualified name of the instantiated, concrete type.\nThis property is used as a discriminator to identify the type of the payload\nwhen marshaling and unmarshaling data.\nThe enum values provides the list of concrete types that can be instantiated from this abstract type.", Type: schema.TypeString, Optional: true, }, @@ -106,7 +106,7 @@ func getCapabilityAdapterUpdateConstraintMetaSchema() map[string]*schema.Schema Optional: true, }, "object_type": { - Description: "The fully-qualified name of the instantiated, concrete type.\nThe value should be the same as the 'ClassId' property.", + Description: "The fully-qualified name of the instantiated, concrete type.\nThe value should be the same as the 'ClassId' property.\nThe enum values provides the list of concrete types that can be instantiated from this abstract type.", Type: schema.TypeString, Optional: true, }, @@ -227,16 +227,6 @@ func getCapabilityAdapterUpdateConstraintMetaSchema() map[string]*schema.Schema Type: schema.TypeString, Optional: true, }, - "supported_platform": { - Description: "Platform for which the constraint is to be enforced.", - Type: schema.TypeString, - Optional: true, - }, - "supported_platforms": { - Type: schema.TypeList, - Optional: true, - Elem: &schema.Schema{ - Type: schema.TypeString}}, "tags": { Type: schema.TypeList, Optional: true, @@ -631,22 +621,6 @@ func dataSourceCapabilityAdapterUpdateConstraintMetaRead(c context.Context, d *s o.SetSharedScope(x) } - if v, ok := d.GetOk("supported_platform"); ok { - x := (v.(string)) - o.SetSupportedPlatform(x) - } - - if v, ok := d.GetOk("supported_platforms"); ok { - x := make([]string, 0) - y := reflect.ValueOf(v) - for i := 0; i < y.Len(); i++ { - if y.Index(i).Interface() != nil { - x = append(x, y.Index(i).Interface().(string)) - } - } - o.SetSupportedPlatforms(x) - } - if v, ok := d.GetOk("tags"); ok { x := make([]models.MoTag, 0) s := v.([]interface{}) @@ -814,8 +788,6 @@ func dataSourceCapabilityAdapterUpdateConstraintMetaRead(c context.Context, d *s temp["server_specific_constraint"] = flattenListCapabilityServerComponentConstraint(s.GetServerSpecificConstraint(), d) temp["shared_scope"] = (s.GetSharedScope()) - temp["supported_platform"] = (s.GetSupportedPlatform()) - temp["supported_platforms"] = (s.GetSupportedPlatforms()) temp["tags"] = flattenListMoTag(s.GetTags(), d) diff --git a/intersight/data_source_intersight_capability_processor_unit_update_constraint_meta.go b/intersight/data_source_intersight_capability_processor_unit_update_constraint_meta.go index 22376ebe0e..14dc4f5539 100644 --- a/intersight/data_source_intersight_capability_processor_unit_update_constraint_meta.go +++ b/intersight/data_source_intersight_capability_processor_unit_update_constraint_meta.go @@ -227,11 +227,6 @@ func getCapabilityProcessorUnitUpdateConstraintMetaSchema() map[string]*schema.S Type: schema.TypeString, Optional: true, }, - "supported_platforms": { - Type: schema.TypeList, - Optional: true, - Elem: &schema.Schema{ - Type: schema.TypeString}}, "tags": { Type: schema.TypeList, Optional: true, @@ -626,17 +621,6 @@ func dataSourceCapabilityProcessorUnitUpdateConstraintMetaRead(c context.Context o.SetSharedScope(x) } - if v, ok := d.GetOk("supported_platforms"); ok { - x := make([]string, 0) - y := reflect.ValueOf(v) - for i := 0; i < y.Len(); i++ { - if y.Index(i).Interface() != nil { - x = append(x, y.Index(i).Interface().(string)) - } - } - o.SetSupportedPlatforms(x) - } - if v, ok := d.GetOk("tags"); ok { x := make([]models.MoTag, 0) s := v.([]interface{}) @@ -804,7 +788,6 @@ func dataSourceCapabilityProcessorUnitUpdateConstraintMetaRead(c context.Context temp["server_specific_constraint"] = flattenListCapabilityServerComponentConstraint(s.GetServerSpecificConstraint(), d) temp["shared_scope"] = (s.GetSharedScope()) - temp["supported_platforms"] = (s.GetSupportedPlatforms()) temp["tags"] = flattenListMoTag(s.GetTags(), d) diff --git a/intersight/data_source_intersight_capability_storage_controller_update_constraint_meta.go b/intersight/data_source_intersight_capability_storage_controller_update_constraint_meta.go index 6efc79ab06..c52294bbd5 100644 --- a/intersight/data_source_intersight_capability_storage_controller_update_constraint_meta.go +++ b/intersight/data_source_intersight_capability_storage_controller_update_constraint_meta.go @@ -227,11 +227,6 @@ func getCapabilityStorageControllerUpdateConstraintMetaSchema() map[string]*sche Type: schema.TypeString, Optional: true, }, - "supported_platforms": { - Type: schema.TypeList, - Optional: true, - Elem: &schema.Schema{ - Type: schema.TypeString}}, "tags": { Type: schema.TypeList, Optional: true, @@ -626,17 +621,6 @@ func dataSourceCapabilityStorageControllerUpdateConstraintMetaRead(c context.Con o.SetSharedScope(x) } - if v, ok := d.GetOk("supported_platforms"); ok { - x := make([]string, 0) - y := reflect.ValueOf(v) - for i := 0; i < y.Len(); i++ { - if y.Index(i).Interface() != nil { - x = append(x, y.Index(i).Interface().(string)) - } - } - o.SetSupportedPlatforms(x) - } - if v, ok := d.GetOk("tags"); ok { x := make([]models.MoTag, 0) s := v.([]interface{}) @@ -804,7 +788,6 @@ func dataSourceCapabilityStorageControllerUpdateConstraintMetaRead(c context.Con temp["server_specific_constraint"] = flattenListCapabilityServerComponentConstraint(s.GetServerSpecificConstraint(), d) temp["shared_scope"] = (s.GetSharedScope()) - temp["supported_platforms"] = (s.GetSupportedPlatforms()) temp["tags"] = flattenListMoTag(s.GetTags(), d) diff --git a/intersight/data_source_intersight_catalystsdwan_vedge_device.go b/intersight/data_source_intersight_catalystsdwan_vedge_device.go index ee74a5a30b..8ddecd441e 100644 --- a/intersight/data_source_intersight_catalystsdwan_vedge_device.go +++ b/intersight/data_source_intersight_catalystsdwan_vedge_device.go @@ -75,6 +75,11 @@ func getCatalystsdwanVedgeDeviceSchema() map[string]*schema.Schema { Type: schema.TypeString, Optional: true, }, + "device_id": { + Description: "The Catalyst SDWAN device id.", + Type: schema.TypeString, + Optional: true, + }, "device_location": { Description: "The location of the device.", Type: schema.TypeList, @@ -631,6 +636,11 @@ func dataSourceCatalystsdwanVedgeDeviceRead(c context.Context, d *schema.Resourc o.SetCreateTime(x) } + if v, ok := d.GetOk("device_id"); ok { + x := (v.(string)) + o.SetDeviceId(x) + } + if v, ok := d.GetOk("device_location"); ok { p := make([]models.EquipmentDeviceLocation, 0, 1) s := v.([]interface{}) @@ -1137,6 +1147,7 @@ func dataSourceCatalystsdwanVedgeDeviceRead(c context.Context, d *schema.Resourc temp["config_status_message"] = (s.GetConfigStatusMessage()) temp["create_time"] = (s.GetCreateTime()).String() + temp["device_id"] = (s.GetDeviceId()) temp["device_location"] = flattenMapEquipmentDeviceLocation(s.GetDeviceLocation(), d) temp["device_mo_id"] = (s.GetDeviceMoId()) diff --git a/intersight/data_source_intersight_compute_server_setting.go b/intersight/data_source_intersight_compute_server_setting.go index ddd7d0fa32..cf4c74a682 100644 --- a/intersight/data_source_intersight_compute_server_setting.go +++ b/intersight/data_source_intersight_compute_server_setting.go @@ -597,6 +597,11 @@ func getComputeServerSettingSchema() map[string]*schema.Schema { }, }, }, + "reset_memory_errors": { + Description: "Reset Correctable and Uncorrectable ECC errors on all the DIMMs present in the server.\n* `Ready` - Reset memory errors operation is allowed on the server in this state.\n* `Reset` - Trigger reset memory errors operation on a server.", + Type: schema.TypeString, + Optional: true, + }, "rn": { Description: "The Relative Name uniquely identifies an object within a given context.", Type: schema.TypeString, @@ -1672,6 +1677,11 @@ func dataSourceComputeServerSettingRead(c context.Context, d *schema.ResourceDat } } + if v, ok := d.GetOk("reset_memory_errors"); ok { + x := (v.(string)) + o.SetResetMemoryErrors(x) + } + if v, ok := d.GetOk("rn"); ok { x := (v.(string)) o.SetRn(x) @@ -2318,6 +2328,7 @@ func dataSourceComputeServerSettingRead(c context.Context, d *schema.ResourceDat temp["persistent_memory_operation"] = flattenMapComputePersistentMemoryOperation(s.GetPersistentMemoryOperation(), d) temp["registered_device"] = flattenMapAssetDeviceRegistrationRelationship(s.GetRegisteredDevice(), d) + temp["reset_memory_errors"] = (s.GetResetMemoryErrors()) temp["rn"] = (s.GetRn()) temp["running_workflow"] = flattenMapWorkflowWorkflowInfoRelationship(s.GetRunningWorkflow(), d) diff --git a/intersight/data_source_intersight_fabric_eth_network_group_policy.go b/intersight/data_source_intersight_fabric_eth_network_group_policy.go index 0ca5f2fbff..6e06af6c8f 100644 --- a/intersight/data_source_intersight_fabric_eth_network_group_policy.go +++ b/intersight/data_source_intersight_fabric_eth_network_group_policy.go @@ -373,7 +373,7 @@ func getFabricEthNetworkGroupPolicySchema() map[string]*schema.Schema { Optional: true, }, "native_vlan": { - Description: "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.", + Description: "Native VLAN ID of the virtual interface or the corresponding Vethernet on the peer Fabric Interconnect to which the virtual interface is connected. Native VLAN ID maps all incoming untagged traffic i.e. packets without a VLAN tag to the native VLAN for switching purposes. If the native VLAN is not a part of the allowed VLANs, it will automatically be added to the list of allowed VLANs. A native VLAN ID of 0 will indicate to the system to use the system default native VLAN ID and will also prevent native VLAN from being added to the allowed VLAN list.", Type: schema.TypeInt, Optional: true, }, diff --git a/intersight/data_source_intersight_fabric_eth_network_group_policy_inventory.go b/intersight/data_source_intersight_fabric_eth_network_group_policy_inventory.go index edfff1a5db..0fc49e61e2 100644 --- a/intersight/data_source_intersight_fabric_eth_network_group_policy_inventory.go +++ b/intersight/data_source_intersight_fabric_eth_network_group_policy_inventory.go @@ -378,7 +378,7 @@ func getFabricEthNetworkGroupPolicyInventorySchema() map[string]*schema.Schema { Optional: true, }, "native_vlan": { - Description: "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.", + Description: "Native VLAN ID of the virtual interface or the corresponding Vethernet on the peer Fabric Interconnect to which the virtual interface is connected. Native VLAN ID maps all incoming untagged traffic i.e. packets without a VLAN tag to the native VLAN for switching purposes. If the native VLAN is not a part of the allowed VLANs, it will automatically be added to the list of allowed VLANs. A native VLAN ID of 0 will indicate to the system to use the system default native VLAN ID and will also prevent native VLAN from being added to the allowed VLAN list.", Type: schema.TypeInt, Optional: true, }, diff --git a/intersight/data_source_intersight_ipmioverlan_policy.go b/intersight/data_source_intersight_ipmioverlan_policy.go index f33d4f012e..4a1ef6c6ab 100644 --- a/intersight/data_source_intersight_ipmioverlan_policy.go +++ b/intersight/data_source_intersight_ipmioverlan_policy.go @@ -86,7 +86,7 @@ func getIpmioverlanPolicySchema() map[string]*schema.Schema { Optional: true, }, "encryption_key": { - Description: "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.", + Description: "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 C-Series servers. FI-attached C-Series servers with firmware at minimum of 4.2.3a support this configuration. B/X-Series 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.", Type: schema.TypeString, Optional: true, }, @@ -225,7 +225,7 @@ func getIpmioverlanPolicySchema() map[string]*schema.Schema { }, }, "privilege": { - Description: "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.\n* `admin` - Privilege to perform all actions available through IPMI.\n* `user` - Privilege to perform some functions through IPMI but restriction on performing administrative tasks.\n* `read-only` - Privilege to view information throught IPMI but restriction on making any changes.", + Description: "The highest privilege level that can be assigned to an IPMI session on a server. This configuration is supported by all Standalone C-Series servers. FI-attached C-Series servers with firmware at minimum of 4.2.3a support this configuration. B/X-Series servers with firmware at minimum of 5.1.0.x support this configuration. Privilege level user is not supported for B/X-Series servers.\n* `admin` - Privilege to perform all actions available through IPMI.\n* `user` - Privilege to perform some functions through IPMI but restriction on performing administrative tasks.\n* `read-only` - Privilege to view information throught IPMI but restriction on making any changes.", Type: schema.TypeString, Optional: true, }, diff --git a/intersight/data_source_intersight_ipmioverlan_policy_inventory.go b/intersight/data_source_intersight_ipmioverlan_policy_inventory.go index c71969986f..4d3f3bf4a4 100644 --- a/intersight/data_source_intersight_ipmioverlan_policy_inventory.go +++ b/intersight/data_source_intersight_ipmioverlan_policy_inventory.go @@ -91,7 +91,7 @@ func getIpmioverlanPolicyInventorySchema() map[string]*schema.Schema { Optional: true, }, "encryption_key": { - Description: "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.", + Description: "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 C-Series servers. FI-attached C-Series servers with firmware at minimum of 4.2.3a support this configuration. B/X-Series 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.", Type: schema.TypeString, Optional: true, }, @@ -195,7 +195,7 @@ func getIpmioverlanPolicyInventorySchema() map[string]*schema.Schema { }, }, "privilege": { - Description: "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.\n* `admin` - Privilege to perform all actions available through IPMI.\n* `user` - Privilege to perform some functions through IPMI but restriction on performing administrative tasks.\n* `read-only` - Privilege to view information throught IPMI but restriction on making any changes.", + Description: "The highest privilege level that can be assigned to an IPMI session on a server. This configuration is supported by all Standalone C-Series servers. FI-attached C-Series servers with firmware at minimum of 4.2.3a support this configuration. B/X-Series servers with firmware at minimum of 5.1.0.x support this configuration. Privilege level user is not supported for B/X-Series servers.\n* `admin` - Privilege to perform all actions available through IPMI.\n* `user` - Privilege to perform some functions through IPMI but restriction on performing administrative tasks.\n* `read-only` - Privilege to view information throught IPMI but restriction on making any changes.", Type: schema.TypeString, Optional: true, }, diff --git a/intersight/data_source_intersight_scheduler_task_schedule.go b/intersight/data_source_intersight_scheduler_task_schedule.go index 3172a0dedf..1f9f40fc2f 100644 --- a/intersight/data_source_intersight_scheduler_task_schedule.go +++ b/intersight/data_source_intersight_scheduler_task_schedule.go @@ -22,7 +22,7 @@ func getSchedulerTaskScheduleSchema() map[string]*schema.Schema { Optional: true, }, "action": { - Description: "The action of the scheduled task such as suspend or resume.\n* `None` - No action is set (default).\n* `Suspend` - Suspend a scheduled task indefinitely.\n* `Resume` - Resume a suspended scheduled task.\n* `SuspendTill` - Suspend the scheduled task until a specified end-date.", + Description: "The action of the scheduled task such as suspend or resume.\n* `None` - No action is set (default).\n* `Suspend` - Suspend a scheduled task indefinitely.\n* `Resume` - Resume a suspended scheduled task.\n* `SuspendTill` - Suspend the scheduled task until a specified end-date. Not supported in this release.", Type: schema.TypeString, Optional: true, }, @@ -121,7 +121,7 @@ func getSchedulerTaskScheduleSchema() map[string]*schema.Schema { Optional: true, }, "last_action": { - Description: "The last action for the scheduled task is saved in this field. Set to none if there was no action.\n* `None` - No action is set (default).\n* `Suspend` - Suspend a scheduled task indefinitely.\n* `Resume` - Resume a suspended scheduled task.\n* `SuspendTill` - Suspend the scheduled task until a specified end-date.", + Description: "The last action for the scheduled task is saved in this field. Set to none if there was no action.\n* `None` - No action is set (default).\n* `Suspend` - Suspend a scheduled task indefinitely.\n* `Resume` - Resume a suspended scheduled task.\n* `SuspendTill` - Suspend the scheduled task until a specified end-date. Not supported in this release.", Type: schema.TypeString, Optional: true, }, @@ -220,7 +220,7 @@ func getSchedulerTaskScheduleSchema() map[string]*schema.Schema { }, }, "schedule_params": { - Description: "According to the schedule type this property is evaluated. If the property Type is set to OneTime, then the ObjectType must be scheduler.OneTimeScheduleParams.", + Description: "According to the schedule type this property is evaluated. If the property Type is set to OneTime, then the ObjectType must be scheduler.OneTimeScheduleParams. If the Type is Recurring, then the ObjectType must be scheduler.RecurringScheduleParams.", Type: schema.TypeList, MaxItems: 1, Optional: true, @@ -242,7 +242,7 @@ func getSchedulerTaskScheduleSchema() map[string]*schema.Schema { Optional: true, }, "start_time": { - Description: "The schedule start time. A future time is required. When the start time is updated, it is mandatory to specify the corresponding timeZone property as well.", + Description: "The schedule start time. A future time is required.", Type: schema.TypeString, Optional: true, }, @@ -276,6 +276,11 @@ func getSchedulerTaskScheduleSchema() map[string]*schema.Schema { Type: schema.TypeString, Optional: true, }, + "consecutive_failures": { + Description: "The number of consecutive times the task has failed.", + Type: schema.TypeInt, + Optional: true, + }, "nr_count": { Description: "The task completion count, which includes both successful executions and any failures.", Type: schema.TypeInt, @@ -291,6 +296,11 @@ func getSchedulerTaskScheduleSchema() map[string]*schema.Schema { Type: schema.TypeBool, Optional: true, }, + "last_run_status": { + Description: "The last task completion status, which includes both successful executions and any failures.\n* `None` - No status is set (default).\n* `Scheduled` - The status is set when a task is scheduled.\n* `Running` - The status is set when a task is running.\n* `Completed` - The status is set when a task is complete.\n* `Failed` - The status is set when a task fails.\n* `Suspended` - The status is set when a task is suspended.\n* `Skipped` - The status is set when a task is skipped because the previous task is still running.", + Type: schema.TypeString, + Optional: true, + }, "next_run_start_time": { Description: "The next run time for a recurrently scheduled the task.", Type: schema.TypeString, @@ -395,7 +405,7 @@ func getSchedulerTaskScheduleSchema() map[string]*schema.Schema { Optional: true, }, "timeout": { - Description: "Upper limit on the execution time of a scheduled task. Helps purge run-away scheduled tasks.", + Description: "Upper limit on the execution time of a scheduled task. Helps purge run-away scheduled tasks.\nNot supported in this release.", Type: schema.TypeInt, Optional: true, }, @@ -408,7 +418,7 @@ func getSchedulerTaskScheduleSchema() map[string]*schema.Schema { }, }, "type": { - Description: "An Enum describing the type of scheduler to use.\n* `None` - No value was set for the schedule type (Enum value None).\n* `OneTime` - Define a one-time task execution time that will not automatically repeat.\n* `Recurring` - Specify a recurring task cadence based on a predefined pattern, such as daily, weekly, monthly, yearly, or every pattern. This option is not currently supported.", + Description: "An Enum describing the type of scheduler to use.\n* `None` - No value was set for the schedule type (Enum value None).\n* `OneTime` - Define a one-time task execution time that will not automatically repeat.\n* `Recurring` - Specify a recurring task cadence based on a predefined pattern, such as daily, weekly, monthly, or every pattern.", Type: schema.TypeString, Optional: true, }, diff --git a/intersight/data_source_intersight_server_profile.go b/intersight/data_source_intersight_server_profile.go index e00a367ca5..0293b1c34c 100644 --- a/intersight/data_source_intersight_server_profile.go +++ b/intersight/data_source_intersight_server_profile.go @@ -598,6 +598,11 @@ func getServerProfileSchema() map[string]*schema.Schema { }, }, }, + "management_mode": { + Description: "The management mode of the server.\n* `IntersightStandalone` - Intersight Standalone mode of operation.\n* `Intersight` - Intersight managed mode of operation.", + Type: schema.TypeString, + Optional: true, + }, "mod_time": { Description: "The time when this managed object was last modified.", Type: schema.TypeString, @@ -1906,6 +1911,11 @@ func dataSourceServerProfileRead(c context.Context, d *schema.ResourceData, meta } } + if v, ok := d.GetOk("management_mode"); ok { + x := (v.(string)) + o.SetManagementMode(x) + } + if v, ok := d.GetOk("mod_time"); ok { x, _ := time.Parse(time.RFC1123, v.(string)) o.SetModTime(x) @@ -2708,6 +2718,7 @@ func dataSourceServerProfileRead(c context.Context, d *schema.ResourceData, meta temp["is_pmc_deployed_secure_passphrase_set"] = (s.GetIsPmcDeployedSecurePassphraseSet()) temp["leased_server"] = flattenMapComputePhysicalRelationship(s.GetLeasedServer(), d) + temp["management_mode"] = (s.GetManagementMode()) temp["mod_time"] = (s.GetModTime()).String() temp["moid"] = (s.GetMoid()) diff --git a/intersight/data_source_intersight_server_profile_template.go b/intersight/data_source_intersight_server_profile_template.go index d974a6e59e..99a7b0f11c 100644 --- a/intersight/data_source_intersight_server_profile_template.go +++ b/intersight/data_source_intersight_server_profile_template.go @@ -213,6 +213,11 @@ func getServerProfileTemplateSchema() map[string]*schema.Schema { Type: schema.TypeString, Optional: true, }, + "management_mode": { + Description: "The management mode of the server.\n* `IntersightStandalone` - Intersight Standalone mode of operation.\n* `Intersight` - Intersight managed mode of operation.", + Type: schema.TypeString, + Optional: true, + }, "mod_time": { Description: "The time when this managed object was last modified.", Type: schema.TypeString, @@ -881,6 +886,11 @@ func dataSourceServerProfileTemplateRead(c context.Context, d *schema.ResourceDa o.SetDomainGroupMoid(x) } + if v, ok := d.GetOk("management_mode"); ok { + x := (v.(string)) + o.SetManagementMode(x) + } + if v, ok := d.GetOk("mod_time"); ok { x, _ := time.Parse(time.RFC1123, v.(string)) o.SetModTime(x) @@ -1387,6 +1397,7 @@ func dataSourceServerProfileTemplateRead(c context.Context, d *schema.ResourceDa temp["create_time"] = (s.GetCreateTime()).String() temp["description"] = (s.GetDescription()) temp["domain_group_moid"] = (s.GetDomainGroupMoid()) + temp["management_mode"] = (s.GetManagementMode()) temp["mod_time"] = (s.GetModTime()).String() temp["moid"] = (s.GetMoid()) diff --git a/intersight/data_source_intersight_snmp_policy.go b/intersight/data_source_intersight_snmp_policy.go index 19833a4fa2..c91f22b742 100644 --- a/intersight/data_source_intersight_snmp_policy.go +++ b/intersight/data_source_intersight_snmp_policy.go @@ -17,7 +17,7 @@ import ( func getSnmpPolicySchema() map[string]*schema.Schema { var schemaMap = make(map[string]*schema.Schema) schemaMap = map[string]*schema.Schema{"access_community_string": { - Description: "The default SNMPv1, SNMPv2c community name or SNMPv3 username to include on any trap messages sent to the SNMP host. The name can be 18 characters long.", + Description: "The default SNMPv1, SNMPv2c community name or SNMPv3 username to include on any trap messages sent to the SNMP host. The name can be 32 characters long.", Type: schema.TypeString, Optional: true, }, diff --git a/intersight/data_source_intersight_snmp_policy_inventory.go b/intersight/data_source_intersight_snmp_policy_inventory.go index e42d1c1418..230b3edd44 100644 --- a/intersight/data_source_intersight_snmp_policy_inventory.go +++ b/intersight/data_source_intersight_snmp_policy_inventory.go @@ -17,7 +17,7 @@ import ( func getSnmpPolicyInventorySchema() map[string]*schema.Schema { var schemaMap = make(map[string]*schema.Schema) schemaMap = map[string]*schema.Schema{"access_community_string": { - Description: "The default SNMPv1, SNMPv2c community name or SNMPv3 username to include on any trap messages sent to the SNMP host. The name can be 18 characters long.", + Description: "The default SNMPv1, SNMPv2c community name or SNMPv3 username to include on any trap messages sent to the SNMP host. The name can be 32 characters long.", Type: schema.TypeString, Optional: true, }, diff --git a/intersight/data_source_intersight_storage_drive_group.go b/intersight/data_source_intersight_storage_drive_group.go index 9d893aeefc..4545ae50ea 100644 --- a/intersight/data_source_intersight_storage_drive_group.go +++ b/intersight/data_source_intersight_storage_drive_group.go @@ -288,7 +288,7 @@ func getStorageDriveGroupSchema() map[string]*schema.Schema { Optional: true, }, "secure_drive_group": { - Description: "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.", + Description: "Enables/disables the drive security on all the drives used in this policy. This flag just enables the drive security and only after Remote/Manual key setting configured, the actual security will be applied.", Type: schema.TypeBool, Optional: true, }, diff --git a/intersight/data_source_intersight_storage_drive_security_policy.go b/intersight/data_source_intersight_storage_drive_security_policy.go index 7f85ab9bab..484a10a3fb 100644 --- a/intersight/data_source_intersight_storage_drive_security_policy.go +++ b/intersight/data_source_intersight_storage_drive_security_policy.go @@ -81,7 +81,7 @@ func getStorageDriveSecurityPolicySchema() map[string]*schema.Schema { Optional: true, }, "key_setting": { - Description: "Key details for supporting disk encryption.", + Description: "Key details for supporting drive security.", Type: schema.TypeList, MaxItems: 1, Optional: true, @@ -98,7 +98,7 @@ func getStorageDriveSecurityPolicySchema() map[string]*schema.Schema { Optional: true, }, "key_type": { - Description: "Method to be used for fetching the encryption key.\n* `Kmip` - Remote encryption using KMIP.\n* `Manual` - Drive encryption using manual key.", + Description: "Method to be used for fetching the security key.\n* `Kmip` - Remote security using KMIP.\n* `Manual` - Drive security using manual key.", Type: schema.TypeString, Optional: true, }, @@ -120,7 +120,7 @@ func getStorageDriveSecurityPolicySchema() map[string]*schema.Schema { Optional: true, }, "existing_key": { - Description: "Current Security Key Passphrase which is already configured on the server.", + Description: "Current Security Key Passphrase which is already configured on the server. From the security context, the passphrase should be at least 8 characters long and should include at least one uppercase letter, one lowercase letter, one number, and one special character.", Type: schema.TypeString, Optional: true, }, @@ -135,7 +135,7 @@ func getStorageDriveSecurityPolicySchema() map[string]*schema.Schema { Optional: true, }, "new_key": { - Description: "New Security Key Passphrase to be configured on the controller.", + Description: "New Security Key Passphrase to be configured on the server. From the security context, the passphrase should be at least 8 characters long and should include at least one uppercase letter, one lowercase letter, one number, and one special character.", Type: schema.TypeString, Optional: true, }, @@ -153,7 +153,7 @@ func getStorageDriveSecurityPolicySchema() map[string]*schema.Schema { Optional: true, }, "remote_key": { - Description: "Remote key encryption using KMIP configuration.", + Description: "Remote key security using KMIP configuration.", Type: schema.TypeList, MaxItems: 1, Optional: true, @@ -215,7 +215,7 @@ func getStorageDriveSecurityPolicySchema() map[string]*schema.Schema { Optional: true, }, "existing_key": { - Description: "Current Security Key Passphrase which is already configured on the server.", + Description: "Current Security Key Passphrase which is already configured on the server. From the security context, the passphrase should be at least 8 characters long and should include at least one uppercase letter, one lowercase letter, one number, and one special character.", Type: schema.TypeString, Optional: true, }, @@ -247,7 +247,7 @@ func getStorageDriveSecurityPolicySchema() map[string]*schema.Schema { Optional: true, }, "enable_drive_security": { - Description: "Enable the selected KMIP Server configuration for encryption. This flag just enables the drive security and only after remote key setting configured, the actual encryption will be done.", + Description: "Enable the selected KMIP Server configuration for security. This flag just enables the drive security and only after remote key setting configured, the actual security will be applied.", Type: schema.TypeBool, Optional: true, }, @@ -292,7 +292,7 @@ func getStorageDriveSecurityPolicySchema() map[string]*schema.Schema { Optional: true, }, "enable_drive_security": { - Description: "Enable the selected KMIP Server configuration for encryption. This flag just enables the drive security and only after remote key setting configured, the actual encryption will be done.", + Description: "Enable the selected KMIP Server configuration for security. This flag just enables the drive security and only after remote key setting configured, the actual security will be applied.", Type: schema.TypeBool, Optional: true, }, diff --git a/intersight/flatten_functions.go b/intersight/flatten_functions.go index 70517a05f3..f60b23ea08 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("http_proxy") + password_x, exists := d.GetOk("docker_http_proxy") if exists && password_x != nil { password_y := password_x.([]interface{})[0].(map[string]interface{}) kubernetesproxyconfig["password"] = password_y["password"] @@ -19800,9 +19800,11 @@ func flattenMapSchedulerTaskScheduleStatus(p models.SchedulerTaskScheduleStatus, schedulertaskschedulestatus := make(map[string]interface{}) schedulertaskschedulestatus["additional_properties"] = flattenAdditionalProperties(item.AdditionalProperties) schedulertaskschedulestatus["class_id"] = item.GetClassId() + schedulertaskschedulestatus["consecutive_failures"] = item.GetConsecutiveFailures() schedulertaskschedulestatus["nr_count"] = item.GetCount() schedulertaskschedulestatus["current_status"] = item.GetCurrentStatus() schedulertaskschedulestatus["is_system_suspended"] = item.GetIsSystemSuspended() + schedulertaskschedulestatus["last_run_status"] = item.GetLastRunStatus() schedulertaskschedulestatus["next_run_start_time"] = item.GetNextRunStartTime().String() schedulertaskschedulestatus["object_type"] = item.GetObjectType() schedulertaskschedulestatus["prev_run_end_time"] = item.GetPrevRunEndTime().String() diff --git a/intersight/flatten_functions_test.go b/intersight/flatten_functions_test.go index d6c94807f3..90dd92942e 100644 --- a/intersight/flatten_functions_test.go +++ b/intersight/flatten_functions_test.go @@ -20354,7 +20354,7 @@ func TestFlattenMapSchedulerTaskScheduleRelationship(t *testing.T) { func TestFlattenMapSchedulerTaskScheduleStatus(t *testing.T) { p := models.SchedulerTaskScheduleStatus{} var d = &schema.ResourceData{} - c := `{"ClassId":"scheduler.TaskScheduleStatus","Count":32,"CurrentStatus":"CurrentStatus %d","IsSystemSuspended":true,"ObjectType":"scheduler.TaskScheduleStatus","Reason":"Reason %d"}` + c := `{"ClassId":"scheduler.TaskScheduleStatus","ConsecutiveFailures":32,"Count":32,"CurrentStatus":"CurrentStatus %d","IsSystemSuspended":true,"LastRunStatus":"LastRunStatus %d","ObjectType":"scheduler.TaskScheduleStatus","Reason":"Reason %d"}` //test when the response is empty ffOpEmpty := flattenMapSchedulerTaskScheduleStatus(p, d) @@ -20365,7 +20365,7 @@ func TestFlattenMapSchedulerTaskScheduleStatus(t *testing.T) { err := p.UnmarshalJSON([]byte(strings.Replace(c, "%d", "1", -1))) CheckError(t, err) ffOp := flattenMapSchedulerTaskScheduleStatus(p, d)[0] - expectedOp := map[string]interface{}{"class_id": "scheduler.TaskScheduleStatus", "nr_count": 32, "current_status": "CurrentStatus 1", "is_system_suspended": true, "object_type": "scheduler.TaskScheduleStatus", "reason": "Reason 1"} + expectedOp := map[string]interface{}{"class_id": "scheduler.TaskScheduleStatus", "consecutive_failures": 32, "nr_count": 32, "current_status": "CurrentStatus 1", "is_system_suspended": true, "last_run_status": "LastRunStatus 1", "object_type": "scheduler.TaskScheduleStatus", "reason": "Reason 1"} err = compareMaps(expectedOp, ffOp, t) CheckError(t, err) } diff --git a/intersight/provider_resource_map.go b/intersight/provider_resource_map.go index ff45df930b..be7ca441c3 100755 --- a/intersight/provider_resource_map.go +++ b/intersight/provider_resource_map.go @@ -71,6 +71,7 @@ func GetResourceMapping() map[string]*schema.Resource { "intersight_connectorpack_connector_pack_upgrade": resourceConnectorpackConnectorPackUpgrade(), "intersight_crd_custom_resource": resourceCrdCustomResource(), "intersight_deviceconnector_policy": resourceDeviceconnectorPolicy(), + "intersight_energy_metrics": resourceEnergyMetrics(), "intersight_externalsite_authorization": resourceExternalsiteAuthorization(), "intersight_fabric_appliance_pc_role": resourceFabricAppliancePcRole(), "intersight_fabric_appliance_role": resourceFabricApplianceRole(), diff --git a/intersight/resource_intersight_bulk_mo_cloner.go b/intersight/resource_intersight_bulk_mo_cloner.go index d4a13e41ca..8a6a9b64a3 100644 --- a/intersight/resource_intersight_bulk_mo_cloner.go +++ b/intersight/resource_intersight_bulk_mo_cloner.go @@ -2284,10 +2284,7 @@ func resourceBulkMoClonerCreate(c context.Context, d *schema.ResourceData, meta d.SetId(strconv.FormatInt(time.Now().Unix(), 10)) log.Printf("Mo: %v", resultMo) } - if len(resultMo.GetMoid()) == 0 { - return de - } - return append(de, resourceBulkMoClonerRead(c, d, meta)...) + return de } func resourceBulkMoClonerRead(c context.Context, d *schema.ResourceData, meta interface{}) diag.Diagnostics { diff --git a/intersight/resource_intersight_energy_metrics.go b/intersight/resource_intersight_energy_metrics.go new file mode 100644 index 0000000000..ab637ff893 --- /dev/null +++ b/intersight/resource_intersight_energy_metrics.go @@ -0,0 +1,551 @@ +package intersight + +import ( + "context" + "encoding/json" + "fmt" + "log" + "strconv" + "strings" + "time" + + models "github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk" + "github.com/hashicorp/terraform-plugin-sdk/v2/diag" + "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" + "github.com/hashicorp/terraform-plugin-sdk/v2/helper/validation" +) + +func resourceEnergyMetrics() *schema.Resource { + return &schema.Resource{ + CreateContext: resourceEnergyMetricsCreate, + ReadContext: resourceEnergyMetricsRead, + DeleteContext: resourceEnergyMetricsDelete, + Importer: &schema.ResourceImporter{StateContext: schema.ImportStatePassthroughContext}, + CustomizeDiff: CustomizeTagDiff, + Schema: map[string]*schema.Schema{ + "account_moid": { + Description: "The Account ID for this managed object.", + Type: schema.TypeString, + Optional: true, + Computed: true, + ValidateFunc: func(val interface{}, key string) (warns []string, errs []error) { + if val != nil { + warns = append(warns, fmt.Sprintf("Cannot set read-only property: [%s]", key)) + } + return + }, ForceNew: true, + }, + "additional_properties": { + Type: schema.TypeString, + Optional: true, + DiffSuppressFunc: SuppressDiffAdditionProps, + ForceNew: true, + }, + "ancestors": { + Description: "An array of relationships to moBaseMo resources.", + Type: schema.TypeList, + Optional: true, + Computed: true, + ConfigMode: schema.SchemaConfigModeAttr, + Elem: &schema.Resource{ + Schema: map[string]*schema.Schema{ + "additional_properties": { + Type: schema.TypeString, + Optional: true, + DiffSuppressFunc: SuppressDiffAdditionProps, + ForceNew: true, + }, + "class_id": { + Description: "The fully-qualified name of the instantiated, concrete type.\nThis property is used as a discriminator to identify the type of the payload\nwhen marshaling and unmarshaling data.", + Type: schema.TypeString, + Optional: true, + Default: "mo.MoRef", + ForceNew: true, + }, + "moid": { + Description: "The Moid of the referenced REST resource.", + Type: schema.TypeString, + Optional: true, + Computed: true, + ForceNew: true, + }, + "object_type": { + Description: "The fully-qualified name of the remote type referred by this relationship.", + Type: schema.TypeString, + Optional: true, + Computed: true, + ForceNew: true, + }, + "selector": { + Description: "An OData $filter expression which describes the REST resource to be referenced. This field may\nbe set instead of 'moid' by clients.\n1. If 'moid' is set this field is ignored.\n1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of the\nresource matching the filter expression and populates it in the MoRef that is part of the object\ninstance being inserted/updated to fulfill the REST request.\nAn error is returned if the filter matches zero or more than one REST resource.\nAn example filter string is: Serial eq '3AA8B7T11'.", + Type: schema.TypeString, + Optional: true, + ForceNew: true, + }, + }, + }, + ForceNew: true, + }, + "class_id": { + Description: "The fully-qualified name of the instantiated, concrete type.\nThis property is used as a discriminator to identify the type of the payload\nwhen marshaling and unmarshaling data.\nThe enum values provides the list of concrete types that can be instantiated from this abstract type.", + Type: schema.TypeString, + Optional: true, + Computed: true, + ForceNew: true, + }, + "create_time": { + Description: "The time when this managed object was created.", + Type: schema.TypeString, + Optional: true, + Computed: true, + ValidateFunc: func(val interface{}, key string) (warns []string, errs []error) { + if val != nil { + warns = append(warns, fmt.Sprintf("Cannot set read-only property: [%s]", key)) + } + return + }, ForceNew: true, + }, + "domain_group_moid": { + Description: "The DomainGroup ID for this managed object.", + Type: schema.TypeString, + Optional: true, + Computed: true, + ValidateFunc: func(val interface{}, key string) (warns []string, errs []error) { + if val != nil { + warns = append(warns, fmt.Sprintf("Cannot set read-only property: [%s]", key)) + } + return + }, ForceNew: true, + }, + "mod_time": { + Description: "The time when this managed object was last modified.", + Type: schema.TypeString, + Optional: true, + Computed: true, + ValidateFunc: func(val interface{}, key string) (warns []string, errs []error) { + if val != nil { + warns = append(warns, fmt.Sprintf("Cannot set read-only property: [%s]", key)) + } + return + }, ForceNew: true, + }, + "moid": { + Description: "The unique identifier of this Managed Object instance.", + Type: schema.TypeString, + Optional: true, + Computed: true, + ForceNew: true, + }, + "object_type": { + Description: "The fully-qualified name of the instantiated, concrete type.\nThe value should be the same as the 'ClassId' property.\nThe enum values provides the list of concrete types that can be instantiated from this abstract type.", + Type: schema.TypeString, + Optional: true, + Computed: true, + ForceNew: true, + }, + "owners": { + Type: schema.TypeList, + Optional: true, + Computed: true, + ConfigMode: schema.SchemaConfigModeAttr, + Elem: &schema.Schema{ + Type: schema.TypeString, + }, ForceNew: true, + }, + "parent": { + Description: "A reference to a moBaseMo resource.\nWhen the $expand query parameter is specified, the referenced resource is returned inline.", + Type: schema.TypeList, + MaxItems: 1, + Optional: true, + Computed: true, + ConfigMode: schema.SchemaConfigModeAttr, + Elem: &schema.Resource{ + Schema: map[string]*schema.Schema{ + "additional_properties": { + Type: schema.TypeString, + Optional: true, + DiffSuppressFunc: SuppressDiffAdditionProps, + ForceNew: true, + }, + "class_id": { + Description: "The fully-qualified name of the instantiated, concrete type.\nThis property is used as a discriminator to identify the type of the payload\nwhen marshaling and unmarshaling data.", + Type: schema.TypeString, + Optional: true, + Default: "mo.MoRef", + ForceNew: true, + }, + "moid": { + Description: "The Moid of the referenced REST resource.", + Type: schema.TypeString, + Optional: true, + Computed: true, + ForceNew: true, + }, + "object_type": { + Description: "The fully-qualified name of the remote type referred by this relationship.", + Type: schema.TypeString, + Optional: true, + Computed: true, + ForceNew: true, + }, + "selector": { + Description: "An OData $filter expression which describes the REST resource to be referenced. This field may\nbe set instead of 'moid' by clients.\n1. If 'moid' is set this field is ignored.\n1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of the\nresource matching the filter expression and populates it in the MoRef that is part of the object\ninstance being inserted/updated to fulfill the REST request.\nAn error is returned if the filter matches zero or more than one REST resource.\nAn example filter string is: Serial eq '3AA8B7T11'.", + Type: schema.TypeString, + Optional: true, + ForceNew: true, + }, + }, + }, + ForceNew: true, + }, + "permission_resources": { + Description: "An array of relationships to moBaseMo resources.", + Type: schema.TypeList, + Optional: true, + Computed: true, + ConfigMode: schema.SchemaConfigModeAttr, + Elem: &schema.Resource{ + Schema: map[string]*schema.Schema{ + "additional_properties": { + Type: schema.TypeString, + Optional: true, + DiffSuppressFunc: SuppressDiffAdditionProps, + ForceNew: true, + }, + "class_id": { + Description: "The fully-qualified name of the instantiated, concrete type.\nThis property is used as a discriminator to identify the type of the payload\nwhen marshaling and unmarshaling data.", + Type: schema.TypeString, + Optional: true, + Default: "mo.MoRef", + ForceNew: true, + }, + "moid": { + Description: "The Moid of the referenced REST resource.", + Type: schema.TypeString, + Optional: true, + Computed: true, + ForceNew: true, + }, + "object_type": { + Description: "The fully-qualified name of the remote type referred by this relationship.", + Type: schema.TypeString, + Optional: true, + Computed: true, + ForceNew: true, + }, + "selector": { + Description: "An OData $filter expression which describes the REST resource to be referenced. This field may\nbe set instead of 'moid' by clients.\n1. If 'moid' is set this field is ignored.\n1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of the\nresource matching the filter expression and populates it in the MoRef that is part of the object\ninstance being inserted/updated to fulfill the REST request.\nAn error is returned if the filter matches zero or more than one REST resource.\nAn example filter string is: Serial eq '3AA8B7T11'.", + Type: schema.TypeString, + Optional: true, + ForceNew: true, + }, + }, + }, + ForceNew: true, + }, + "shared_scope": { + Description: "Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.\nObjects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.", + Type: schema.TypeString, + Optional: true, + Computed: true, + ValidateFunc: func(val interface{}, key string) (warns []string, errs []error) { + if val != nil { + warns = append(warns, fmt.Sprintf("Cannot set read-only property: [%s]", key)) + } + return + }, ForceNew: true, + }, + "tags": { + Type: schema.TypeList, + Optional: true, + ConfigMode: schema.SchemaConfigModeAttr, + Computed: true, + Elem: &schema.Resource{ + Schema: map[string]*schema.Schema{ + "additional_properties": { + Type: schema.TypeString, + Optional: true, + DiffSuppressFunc: SuppressDiffAdditionProps, + ForceNew: true, + }, + "key": { + Description: "The string representation of a tag key.", + Type: schema.TypeString, + ValidateFunc: validation.StringLenBetween(1, 128), + Optional: true, + ForceNew: true, + }, + "value": { + Description: "The string representation of a tag value.", + Type: schema.TypeString, + ValidateFunc: validation.StringLenBetween(0, 256), + Optional: true, + ForceNew: true, + }, + }, + }, + ForceNew: true, + }, + "version_context": { + Description: "The versioning info for this managed object.", + Type: schema.TypeList, + MaxItems: 1, + Optional: true, + Computed: true, + ConfigMode: schema.SchemaConfigModeAttr, + Elem: &schema.Resource{ + Schema: map[string]*schema.Schema{ + "additional_properties": { + Type: schema.TypeString, + Optional: true, + DiffSuppressFunc: SuppressDiffAdditionProps, + ForceNew: true, + }, + "class_id": { + Description: "The fully-qualified name of the instantiated, concrete type.\nThis property is used as a discriminator to identify the type of the payload\nwhen marshaling and unmarshaling data.", + Type: schema.TypeString, + Optional: true, + Default: "mo.VersionContext", + ForceNew: true, + }, + "interested_mos": { + Type: schema.TypeList, + Optional: true, + ConfigMode: schema.SchemaConfigModeAttr, + Computed: true, + Elem: &schema.Resource{ + Schema: map[string]*schema.Schema{ + "additional_properties": { + Type: schema.TypeString, + Optional: true, + DiffSuppressFunc: SuppressDiffAdditionProps, + ForceNew: true, + }, + "class_id": { + Description: "The fully-qualified name of the instantiated, concrete type.\nThis property is used as a discriminator to identify the type of the payload\nwhen marshaling and unmarshaling data.", + Type: schema.TypeString, + Optional: true, + Default: "mo.MoRef", + ForceNew: true, + }, + "moid": { + Description: "The Moid of the referenced REST resource.", + Type: schema.TypeString, + Optional: true, + Computed: true, + ForceNew: true, + }, + "object_type": { + Description: "The fully-qualified name of the remote type referred by this relationship.", + Type: schema.TypeString, + Optional: true, + Computed: true, + ForceNew: true, + }, + "selector": { + Description: "An OData $filter expression which describes the REST resource to be referenced. This field may\nbe set instead of 'moid' by clients.\n1. If 'moid' is set this field is ignored.\n1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of the\nresource matching the filter expression and populates it in the MoRef that is part of the object\ninstance being inserted/updated to fulfill the REST request.\nAn error is returned if the filter matches zero or more than one REST resource.\nAn example filter string is: Serial eq '3AA8B7T11'.", + Type: schema.TypeString, + Optional: true, + ForceNew: true, + }, + }, + }, + ForceNew: true, + }, + "marked_for_deletion": { + Description: "The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.", + Type: schema.TypeBool, + Optional: true, + Computed: true, + ValidateFunc: func(val interface{}, key string) (warns []string, errs []error) { + if val != nil { + warns = append(warns, fmt.Sprintf("Cannot set read-only property: [%s]", key)) + } + return + }, ForceNew: true, + }, + "object_type": { + Description: "The fully-qualified name of the instantiated, concrete type.\nThe value should be the same as the 'ClassId' property.", + Type: schema.TypeString, + Optional: true, + Default: "mo.VersionContext", + ForceNew: true, + }, + "ref_mo": { + Description: "A reference to the original Managed Object.", + Type: schema.TypeList, + MaxItems: 1, + Optional: true, + Computed: true, + ConfigMode: schema.SchemaConfigModeAttr, + Elem: &schema.Resource{ + Schema: map[string]*schema.Schema{ + "additional_properties": { + Type: schema.TypeString, + Optional: true, + DiffSuppressFunc: SuppressDiffAdditionProps, + ForceNew: true, + }, + "class_id": { + Description: "The fully-qualified name of the instantiated, concrete type.\nThis property is used as a discriminator to identify the type of the payload\nwhen marshaling and unmarshaling data.", + Type: schema.TypeString, + Optional: true, + Default: "mo.MoRef", + ForceNew: true, + }, + "moid": { + Description: "The Moid of the referenced REST resource.", + Type: schema.TypeString, + Optional: true, + Computed: true, + ForceNew: true, + }, + "object_type": { + Description: "The fully-qualified name of the remote type referred by this relationship.", + Type: schema.TypeString, + Optional: true, + Computed: true, + ForceNew: true, + }, + "selector": { + Description: "An OData $filter expression which describes the REST resource to be referenced. This field may\nbe set instead of 'moid' by clients.\n1. If 'moid' is set this field is ignored.\n1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of the\nresource matching the filter expression and populates it in the MoRef that is part of the object\ninstance being inserted/updated to fulfill the REST request.\nAn error is returned if the filter matches zero or more than one REST resource.\nAn example filter string is: Serial eq '3AA8B7T11'.", + Type: schema.TypeString, + Optional: true, + ForceNew: true, + }, + }, + }, + ForceNew: true, + }, + "timestamp": { + Description: "The time this versioned Managed Object was created.", + Type: schema.TypeString, + Optional: true, + Computed: true, + ValidateFunc: func(val interface{}, key string) (warns []string, errs []error) { + if val != nil { + warns = append(warns, fmt.Sprintf("Cannot set read-only property: [%s]", key)) + } + return + }, ForceNew: true, + }, + "nr_version": { + Description: "The version of the Managed Object, e.g. an incrementing number or a hash id.", + Type: schema.TypeString, + Optional: true, + Computed: true, + ValidateFunc: func(val interface{}, key string) (warns []string, errs []error) { + if val != nil { + warns = append(warns, fmt.Sprintf("Cannot set read-only property: [%s]", key)) + } + return + }, ForceNew: true, + }, + "version_type": { + Description: "Specifies type of version. Currently the only supported value is \"Configured\"\nthat is used to keep track of snapshots of policies and profiles that are intended\nto be configured to target endpoints.\n* `Modified` - Version created every time an object is modified.\n* `Configured` - Version created every time an object is configured to the service profile.\n* `Deployed` - Version created for objects related to a service profile when it is deployed.", + Type: schema.TypeString, + Optional: true, + Computed: true, + ValidateFunc: func(val interface{}, key string) (warns []string, errs []error) { + if val != nil { + warns = append(warns, fmt.Sprintf("Cannot set read-only property: [%s]", key)) + } + return + }, ForceNew: true, + }, + }, + }, + ForceNew: true, + }, + }, + } +} + +func resourceEnergyMetricsCreate(c context.Context, d *schema.ResourceData, meta interface{}) diag.Diagnostics { + log.SetFlags(log.LstdFlags | log.Lshortfile) + conn := meta.(*Config) + var de diag.Diagnostics + var o = models.NewEnergyMetricsWithDefaults() + + if v, ok := d.GetOk("additional_properties"); ok { + x := []byte(v.(string)) + var x1 interface{} + err := json.Unmarshal(x, &x1) + if err == nil && x1 != nil { + o.AdditionalProperties = x1.(map[string]interface{}) + } + } + + o.SetClassId("energy.Metrics") + + if v, ok := d.GetOk("moid"); ok { + x := (v.(string)) + o.SetMoid(x) + } + + o.SetObjectType("energy.Metrics") + + if v, ok := d.GetOk("tags"); ok { + x := make([]models.MoTag, 0) + s := v.([]interface{}) + for i := 0; i < len(s); i++ { + o := models.NewMoTagWithDefaults() + l := s[i].(map[string]interface{}) + if v, ok := l["additional_properties"]; ok { + { + x := []byte(v.(string)) + var x1 interface{} + err := json.Unmarshal(x, &x1) + if err == nil && x1 != nil { + o.AdditionalProperties = x1.(map[string]interface{}) + } + } + } + if v, ok := l["key"]; ok { + { + x := (v.(string)) + o.SetKey(x) + } + } + if v, ok := l["value"]; ok { + { + x := (v.(string)) + o.SetValue(x) + } + } + x = append(x, *o) + } + if len(x) > 0 { + o.SetTags(x) + } + } + + r := conn.ApiClient.EnergyApi.CreateEnergyMetrics(conn.ctx).EnergyMetrics(*o) + resultMo, _, responseErr := r.Execute() + if responseErr != nil { + errorType := fmt.Sprintf("%T", responseErr) + if strings.Contains(errorType, "GenericOpenAPIError") { + responseErr := responseErr.(*models.GenericOpenAPIError) + return diag.Errorf("error occurred while creating EnergyMetrics: %s Response from endpoint: %s", responseErr.Error(), string(responseErr.Body())) + } + return diag.Errorf("error occurred while creating EnergyMetrics: %s", responseErr.Error()) + } + d.SetId(strconv.FormatInt(time.Now().Unix(), 10)) + log.Printf("Mo: %v", resultMo) + return de +} + +func resourceEnergyMetricsRead(c context.Context, d *schema.ResourceData, meta interface{}) diag.Diagnostics { + log.SetFlags(log.LstdFlags | log.Lshortfile) + log.Printf("%v", d) + var de diag.Diagnostics + return de +} + +func resourceEnergyMetricsDelete(c context.Context, d *schema.ResourceData, meta interface{}) diag.Diagnostics { + log.SetFlags(log.LstdFlags | log.Lshortfile) + var de diag.Diagnostics + var warning = diag.Diagnostic{Severity: diag.Warning, Summary: "EnergyMetrics does not allow delete functionality"} + de = append(de, warning) + return de +} diff --git a/intersight/resource_intersight_fabric_eth_network_group_policy.go b/intersight/resource_intersight_fabric_eth_network_group_policy.go index 6a2cc71689..362b52994b 100644 --- a/intersight/resource_intersight_fabric_eth_network_group_policy.go +++ b/intersight/resource_intersight_fabric_eth_network_group_policy.go @@ -488,11 +488,11 @@ func resourceFabricEthNetworkGroupPolicy() *schema.Resource { Default: "fabric.VlanSettings", }, "native_vlan": { - Description: "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.", + Description: "Native VLAN ID of the virtual interface or the corresponding Vethernet on the peer Fabric Interconnect to which the virtual interface is connected. Native VLAN ID maps all incoming untagged traffic i.e. packets without a VLAN tag to the native VLAN for switching purposes. If the native VLAN is not a part of the allowed VLANs, it will automatically be added to the list of allowed VLANs. A native VLAN ID of 0 will indicate to the system to use the system default native VLAN ID and will also prevent native VLAN from being added to the allowed VLAN list.", Type: schema.TypeInt, - ValidateFunc: validation.IntBetween(1, 4093), + ValidateFunc: validation.IntBetween(0, 4093), Optional: true, - Default: 1, + Default: 0, }, "object_type": { Description: "The fully-qualified name of the instantiated, concrete type.\nThe value should be the same as the 'ClassId' property.", diff --git a/intersight/resource_intersight_ipmioverlan_policy.go b/intersight/resource_intersight_ipmioverlan_policy.go index 8a4eff28bf..78d609e383 100644 --- a/intersight/resource_intersight_ipmioverlan_policy.go +++ b/intersight/resource_intersight_ipmioverlan_policy.go @@ -121,7 +121,7 @@ func resourceIpmioverlanPolicy() *schema.Resource { Default: true, }, "encryption_key": { - Description: "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.", + Description: "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 C-Series servers. FI-attached C-Series servers with firmware at minimum of 4.2.3a support this configuration. B/X-Series 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.", Type: schema.TypeString, ValidateFunc: validation.All(validation.StringMatch(regexp.MustCompile("^[a-fA-F0-9]*$"), ""), validation.StringLenBetween(0, 40)), Optional: true, @@ -296,7 +296,7 @@ func resourceIpmioverlanPolicy() *schema.Resource { }, }, "privilege": { - Description: "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.\n* `admin` - Privilege to perform all actions available through IPMI.\n* `user` - Privilege to perform some functions through IPMI but restriction on performing administrative tasks.\n* `read-only` - Privilege to view information throught IPMI but restriction on making any changes.", + Description: "The highest privilege level that can be assigned to an IPMI session on a server. This configuration is supported by all Standalone C-Series servers. FI-attached C-Series servers with firmware at minimum of 4.2.3a support this configuration. B/X-Series servers with firmware at minimum of 5.1.0.x support this configuration. Privilege level user is not supported for B/X-Series servers.\n* `admin` - Privilege to perform all actions available through IPMI.\n* `user` - Privilege to perform some functions through IPMI but restriction on performing administrative tasks.\n* `read-only` - Privilege to view information throught IPMI but restriction on making any changes.", Type: schema.TypeString, ValidateFunc: validation.StringInSlice([]string{"admin", "user", "read-only"}, false), Optional: true, diff --git a/intersight/resource_intersight_scheduler_task_schedule.go b/intersight/resource_intersight_scheduler_task_schedule.go index 190ed78885..807a20847b 100644 --- a/intersight/resource_intersight_scheduler_task_schedule.go +++ b/intersight/resource_intersight_scheduler_task_schedule.go @@ -36,7 +36,7 @@ func resourceSchedulerTaskSchedule() *schema.Resource { return }}, "action": { - Description: "The action of the scheduled task such as suspend or resume.\n* `None` - No action is set (default).\n* `Suspend` - Suspend a scheduled task indefinitely.\n* `Resume` - Resume a suspended scheduled task.\n* `SuspendTill` - Suspend the scheduled task until a specified end-date.", + Description: "The action of the scheduled task such as suspend or resume.\n* `None` - No action is set (default).\n* `Suspend` - Suspend a scheduled task indefinitely.\n* `Resume` - Resume a suspended scheduled task.\n* `SuspendTill` - Suspend the scheduled task until a specified end-date. Not supported in this release.", Type: schema.TypeString, ValidateFunc: validation.StringInSlice([]string{"None", "Suspend", "Resume", "SuspendTill"}, false), Optional: true, @@ -160,7 +160,7 @@ func resourceSchedulerTaskSchedule() *schema.Resource { return }}, "last_action": { - Description: "The last action for the scheduled task is saved in this field. Set to none if there was no action.\n* `None` - No action is set (default).\n* `Suspend` - Suspend a scheduled task indefinitely.\n* `Resume` - Resume a suspended scheduled task.\n* `SuspendTill` - Suspend the scheduled task until a specified end-date.", + Description: "The last action for the scheduled task is saved in this field. Set to none if there was no action.\n* `None` - No action is set (default).\n* `Suspend` - Suspend a scheduled task indefinitely.\n* `Resume` - Resume a suspended scheduled task.\n* `SuspendTill` - Suspend the scheduled task until a specified end-date. Not supported in this release.", Type: schema.TypeString, Optional: true, Computed: true, @@ -287,7 +287,7 @@ func resourceSchedulerTaskSchedule() *schema.Resource { }, }, "schedule_params": { - Description: "According to the schedule type this property is evaluated. If the property Type is set to OneTime, then the ObjectType must be scheduler.OneTimeScheduleParams.", + Description: "According to the schedule type this property is evaluated. If the property Type is set to OneTime, then the ObjectType must be scheduler.OneTimeScheduleParams. If the Type is Recurring, then the ObjectType must be scheduler.RecurringScheduleParams.", Type: schema.TypeList, MaxItems: 1, Optional: true, @@ -313,7 +313,7 @@ func resourceSchedulerTaskSchedule() *schema.Resource { Computed: true, }, "start_time": { - Description: "The schedule start time. A future time is required. When the start time is updated, it is mandatory to specify the corresponding timeZone property as well.", + Description: "The schedule start time. A future time is required.", Type: schema.TypeString, Optional: true, }, @@ -358,6 +358,17 @@ func resourceSchedulerTaskSchedule() *schema.Resource { Optional: true, Default: "scheduler.TaskScheduleStatus", }, + "consecutive_failures": { + Description: "The number of consecutive times the task has failed.", + Type: schema.TypeInt, + Optional: true, + Computed: true, + ValidateFunc: func(val interface{}, key string) (warns []string, errs []error) { + if val != nil { + warns = append(warns, fmt.Sprintf("Cannot set read-only property: [%s]", key)) + } + return + }}, "nr_count": { Description: "The task completion count, which includes both successful executions and any failures.", Type: schema.TypeInt, @@ -391,6 +402,17 @@ func resourceSchedulerTaskSchedule() *schema.Resource { } return }}, + "last_run_status": { + Description: "The last task completion status, which includes both successful executions and any failures.\n* `None` - No status is set (default).\n* `Scheduled` - The status is set when a task is scheduled.\n* `Running` - The status is set when a task is running.\n* `Completed` - The status is set when a task is complete.\n* `Failed` - The status is set when a task fails.\n* `Suspended` - The status is set when a task is suspended.\n* `Skipped` - The status is set when a task is skipped because the previous task is still running.", + Type: schema.TypeString, + Optional: true, + Computed: true, + ValidateFunc: func(val interface{}, key string) (warns []string, errs []error) { + if val != nil { + warns = append(warns, fmt.Sprintf("Cannot set read-only property: [%s]", key)) + } + return + }}, "next_run_start_time": { Description: "The next run time for a recurrently scheduled the task.", Type: schema.TypeString, @@ -528,7 +550,7 @@ func resourceSchedulerTaskSchedule() *schema.Resource { Optional: true, }, "timeout": { - Description: "Upper limit on the execution time of a scheduled task. Helps purge run-away scheduled tasks.", + Description: "Upper limit on the execution time of a scheduled task. Helps purge run-away scheduled tasks.\nNot supported in this release.", Type: schema.TypeInt, Optional: true, }, @@ -541,7 +563,7 @@ func resourceSchedulerTaskSchedule() *schema.Resource { }, }, "type": { - Description: "An Enum describing the type of scheduler to use.\n* `None` - No value was set for the schedule type (Enum value None).\n* `OneTime` - Define a one-time task execution time that will not automatically repeat.\n* `Recurring` - Specify a recurring task cadence based on a predefined pattern, such as daily, weekly, monthly, yearly, or every pattern. This option is not currently supported.", + Description: "An Enum describing the type of scheduler to use.\n* `None` - No value was set for the schedule type (Enum value None).\n* `OneTime` - Define a one-time task execution time that will not automatically repeat.\n* `Recurring` - Specify a recurring task cadence based on a predefined pattern, such as daily, weekly, monthly, or every pattern.", Type: schema.TypeString, ValidateFunc: validation.StringInSlice([]string{"None", "OneTime", "Recurring"}, false), Optional: true, diff --git a/intersight/resource_intersight_server_profile.go b/intersight/resource_intersight_server_profile.go index b1053853a5..dd5a9dcec8 100644 --- a/intersight/resource_intersight_server_profile.go +++ b/intersight/resource_intersight_server_profile.go @@ -785,6 +785,17 @@ func resourceServerProfile() *schema.Resource { }, }, }, + "management_mode": { + Description: "The management mode of the server.\n* `IntersightStandalone` - Intersight Standalone mode of operation.\n* `Intersight` - Intersight managed mode of operation.", + Type: schema.TypeString, + Optional: true, + Computed: true, + ValidateFunc: func(val interface{}, key string) (warns []string, errs []error) { + if val != nil { + warns = append(warns, fmt.Sprintf("Cannot set read-only property: [%s]", key)) + } + return + }}, "mod_time": { Description: "The time when this managed object was last modified.", Type: schema.TypeString, @@ -2523,6 +2534,10 @@ func resourceServerProfileRead(c context.Context, d *schema.ResourceData, meta i return diag.Errorf("error occurred while setting property LeasedServer in ServerProfile object: %s", err.Error()) } + if err := d.Set("management_mode", (s.GetManagementMode())); err != nil { + return diag.Errorf("error occurred while setting property ManagementMode in ServerProfile object: %s", err.Error()) + } + if err := d.Set("mod_time", (s.GetModTime()).String()); err != nil { return diag.Errorf("error occurred while setting property ModTime in ServerProfile object: %s", err.Error()) } diff --git a/intersight/resource_intersight_server_profile_template.go b/intersight/resource_intersight_server_profile_template.go index 01c1c714e8..0dbfe9f7ca 100644 --- a/intersight/resource_intersight_server_profile_template.go +++ b/intersight/resource_intersight_server_profile_template.go @@ -289,6 +289,17 @@ func resourceServerProfileTemplate() *schema.Resource { } return }}, + "management_mode": { + Description: "The management mode of the server.\n* `IntersightStandalone` - Intersight Standalone mode of operation.\n* `Intersight` - Intersight managed mode of operation.", + Type: schema.TypeString, + Optional: true, + Computed: true, + ValidateFunc: func(val interface{}, key string) (warns []string, errs []error) { + if val != nil { + warns = append(warns, fmt.Sprintf("Cannot set read-only property: [%s]", key)) + } + return + }}, "mod_time": { Description: "The time when this managed object was last modified.", Type: schema.TypeString, @@ -1319,6 +1330,10 @@ func resourceServerProfileTemplateRead(c context.Context, d *schema.ResourceData return diag.Errorf("error occurred while setting property DomainGroupMoid in ServerProfileTemplate object: %s", err.Error()) } + if err := d.Set("management_mode", (s.GetManagementMode())); err != nil { + return diag.Errorf("error occurred while setting property ManagementMode in ServerProfileTemplate object: %s", err.Error()) + } + if err := d.Set("mod_time", (s.GetModTime()).String()); err != nil { return diag.Errorf("error occurred while setting property ModTime in ServerProfileTemplate object: %s", err.Error()) } diff --git a/intersight/resource_intersight_snmp_policy.go b/intersight/resource_intersight_snmp_policy.go index 2a7d0a3f24..0c552e455e 100644 --- a/intersight/resource_intersight_snmp_policy.go +++ b/intersight/resource_intersight_snmp_policy.go @@ -26,9 +26,9 @@ func resourceSnmpPolicy() *schema.Resource { CustomizeDiff: CustomizeTagDiff, Schema: map[string]*schema.Schema{ "access_community_string": { - Description: "The default SNMPv1, SNMPv2c community name or SNMPv3 username to include on any trap messages sent to the SNMP host. The name can be 18 characters long.", + Description: "The default SNMPv1, SNMPv2c community name or SNMPv3 username to include on any trap messages sent to the SNMP host. The name can be 32 characters long.", Type: schema.TypeString, - ValidateFunc: StringLenMaximum(18), + ValidateFunc: StringLenMaximum(32), Optional: true, }, "account_moid": { diff --git a/intersight/resource_intersight_storage_drive_group.go b/intersight/resource_intersight_storage_drive_group.go index 58de1d9786..c9473d1b1a 100644 --- a/intersight/resource_intersight_storage_drive_group.go +++ b/intersight/resource_intersight_storage_drive_group.go @@ -368,7 +368,7 @@ func resourceStorageDriveGroup() *schema.Resource { Default: "Raid0", }, "secure_drive_group": { - Description: "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.", + Description: "Enables/disables the drive security on all the drives used in this policy. This flag just enables the drive security and only after Remote/Manual key setting configured, the actual security will be applied.", Type: schema.TypeBool, Optional: true, }, diff --git a/intersight/resource_intersight_storage_drive_security_policy.go b/intersight/resource_intersight_storage_drive_security_policy.go index 54230c7f39..e561e27413 100644 --- a/intersight/resource_intersight_storage_drive_security_policy.go +++ b/intersight/resource_intersight_storage_drive_security_policy.go @@ -115,7 +115,7 @@ func resourceStorageDriveSecurityPolicy() *schema.Resource { return }}, "key_setting": { - Description: "Key details for supporting disk encryption.", + Description: "Key details for supporting drive security.", Type: schema.TypeList, MaxItems: 1, Optional: true, @@ -135,7 +135,7 @@ func resourceStorageDriveSecurityPolicy() *schema.Resource { Default: "storage.KeySetting", }, "key_type": { - Description: "Method to be used for fetching the encryption key.\n* `Kmip` - Remote encryption using KMIP.\n* `Manual` - Drive encryption using manual key.", + Description: "Method to be used for fetching the security key.\n* `Kmip` - Remote security using KMIP.\n* `Manual` - Drive security using manual key.", Type: schema.TypeString, ValidateFunc: validation.StringInSlice([]string{"Kmip", "Manual"}, false), Optional: true, @@ -162,9 +162,9 @@ func resourceStorageDriveSecurityPolicy() *schema.Resource { Default: "storage.LocalKeySetting", }, "existing_key": { - Description: "Current Security Key Passphrase which is already configured on the server.", + Description: "Current Security Key Passphrase which is already configured on the server. From the security context, the passphrase should be at least 8 characters long and should include at least one uppercase letter, one lowercase letter, one number, and one special character.", Type: schema.TypeString, - ValidateFunc: validation.All(validation.StringMatch(regexp.MustCompile("^$|^[a-zA-Z0-9=!&#$%+^@_*-]+$"), ""), StringLenMaximum(32)), + ValidateFunc: StringLenMaximum(32), Optional: true, }, "is_existing_key_set": { @@ -190,7 +190,7 @@ func resourceStorageDriveSecurityPolicy() *schema.Resource { return }}, "new_key": { - Description: "New Security Key Passphrase to be configured on the controller.", + Description: "New Security Key Passphrase to be configured on the server. From the security context, the passphrase should be at least 8 characters long and should include at least one uppercase letter, one lowercase letter, one number, and one special character.", Type: schema.TypeString, ValidateFunc: validation.All(validation.StringMatch(regexp.MustCompile("^$|^[a-zA-Z0-9=!&#$%+^@_*-]+$"), ""), validation.StringLenBetween(8, 32)), Optional: true, @@ -211,7 +211,7 @@ func resourceStorageDriveSecurityPolicy() *schema.Resource { Default: "storage.KeySetting", }, "remote_key": { - Description: "Remote key encryption using KMIP configuration.", + Description: "Remote key security using KMIP configuration.", Type: schema.TypeList, MaxItems: 1, Optional: true, @@ -288,9 +288,9 @@ func resourceStorageDriveSecurityPolicy() *schema.Resource { Default: "storage.RemoteKeySetting", }, "existing_key": { - Description: "Current Security Key Passphrase which is already configured on the server.", + Description: "Current Security Key Passphrase which is already configured on the server. From the security context, the passphrase should be at least 8 characters long and should include at least one uppercase letter, one lowercase letter, one number, and one special character.", Type: schema.TypeString, - ValidateFunc: validation.All(validation.StringMatch(regexp.MustCompile("^$|^[a-zA-Z0-9=!&#$%+^@_*-]+$"), ""), StringLenMaximum(32)), + ValidateFunc: StringLenMaximum(32), Optional: true, }, "is_existing_key_set": { @@ -331,7 +331,7 @@ func resourceStorageDriveSecurityPolicy() *schema.Resource { Default: "storage.KmipServer", }, "enable_drive_security": { - Description: "Enable the selected KMIP Server configuration for encryption. This flag just enables the drive security and only after remote key setting configured, the actual encryption will be done.", + Description: "Enable the selected KMIP Server configuration for security. This flag just enables the drive security and only after remote key setting configured, the actual security will be applied.", Type: schema.TypeBool, Optional: true, }, @@ -384,7 +384,7 @@ func resourceStorageDriveSecurityPolicy() *schema.Resource { Default: "storage.KmipServer", }, "enable_drive_security": { - Description: "Enable the selected KMIP Server configuration for encryption. This flag just enables the drive security and only after remote key setting configured, the actual encryption will be done.", + Description: "Enable the selected KMIP Server configuration for security. This flag just enables the drive security and only after remote key setting configured, the actual security will be applied.", Type: schema.TypeBool, Optional: true, }, diff --git a/intersight_gosdk/.openapi-generator/FILES b/intersight_gosdk/.openapi-generator/FILES index f40bbc93a9..09b90e7629 100644 --- a/intersight_gosdk/.openapi-generator/FILES +++ b/intersight_gosdk/.openapi-generator/FILES @@ -26,6 +26,7 @@ api_convergedinfra.go api_crd.go api_deviceconnector.go api_dnac.go +api_energy.go api_equipment.go api_ether.go api_externalsite.go @@ -1159,6 +1160,8 @@ docs/DnacTransitResponse.md docs/DnacVirtualNetworkFabricSite.md docs/DnacVirtualNetworkFabricSiteList.md docs/DnacVirtualNetworkFabricSiteResponse.md +docs/EnergyApi.md +docs/EnergyMetrics.md docs/EquipmentAbstractDevice.md docs/EquipmentApi.md docs/EquipmentBase.md @@ -3651,7 +3654,6 @@ docs/SchedulerBaseScheduleParams.md docs/SchedulerDailyCadenceParams.md docs/SchedulerEveryCadenceParams.md docs/SchedulerMonthlyCadenceParams.md -docs/SchedulerMonthlyWeekDayFormat.md docs/SchedulerOneTimeScheduleParams.md docs/SchedulerRecurringScheduleParams.md docs/SchedulerRestStimTaskRequest.md @@ -3665,7 +3667,6 @@ docs/SchedulerTaskScheduleRelationship.md docs/SchedulerTaskScheduleResponse.md docs/SchedulerTaskScheduleStatus.md docs/SchedulerWeeklyCadenceParams.md -docs/SchedulerYearlyCadenceParams.md docs/SdaaciApi.md docs/SdaaciConnection.md docs/SdaaciConnectionDetail.md @@ -6184,6 +6185,7 @@ model_dnac_transit_response.go model_dnac_virtual_network_fabric_site.go model_dnac_virtual_network_fabric_site_list.go model_dnac_virtual_network_fabric_site_response.go +model_energy_metrics.go model_equipment_abstract_device.go model_equipment_base.go model_equipment_base_relationship.go @@ -8620,7 +8622,6 @@ model_scheduler_base_schedule_params.go model_scheduler_daily_cadence_params.go model_scheduler_every_cadence_params.go model_scheduler_monthly_cadence_params.go -model_scheduler_monthly_week_day_format.go model_scheduler_one_time_schedule_params.go model_scheduler_recurring_schedule_params.go model_scheduler_rest_stim_task_request.go @@ -8634,7 +8635,6 @@ model_scheduler_task_schedule_relationship.go model_scheduler_task_schedule_response.go model_scheduler_task_schedule_status.go model_scheduler_weekly_cadence_params.go -model_scheduler_yearly_cadence_params.go model_sdaaci_connection.go model_sdaaci_connection_detail.go model_sdaaci_connection_detail_list.go @@ -10123,6 +10123,7 @@ test/api_convergedinfra_test.go test/api_crd_test.go test/api_deviceconnector_test.go test/api_dnac_test.go +test/api_energy_test.go test/api_equipment_test.go test/api_ether_test.go test/api_externalsite_test.go diff --git a/intersight_gosdk/README.md b/intersight_gosdk/README.md index 7f7461739d..a529ddb395 100644 --- a/intersight_gosdk/README.md +++ b/intersight_gosdk/README.md @@ -22,8 +22,8 @@ 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-18012 -- Package version: 1.0.11.18012 +- API version: 1.0.11-18369 +- Package version: 1.0.11.18369 - 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) @@ -867,6 +867,7 @@ Class | Method | HTTP request | Description *DnacApi* | [**GetDnacTransitList**](docs/DnacApi.md#getdnactransitlist) | **Get** /api/v1/dnac/Transits | Read a 'dnac.Transit' resource. *DnacApi* | [**GetDnacVirtualNetworkFabricSiteByMoid**](docs/DnacApi.md#getdnacvirtualnetworkfabricsitebymoid) | **Get** /api/v1/dnac/VirtualNetworkFabricSites/{Moid} | Read a 'dnac.VirtualNetworkFabricSite' resource. *DnacApi* | [**GetDnacVirtualNetworkFabricSiteList**](docs/DnacApi.md#getdnacvirtualnetworkfabricsitelist) | **Get** /api/v1/dnac/VirtualNetworkFabricSites | Read a 'dnac.VirtualNetworkFabricSite' resource. +*EnergyApi* | [**CreateEnergyMetrics**](docs/EnergyApi.md#createenergymetrics) | **Post** /api/v1/energy/Metrics | Create a 'energy.Metrics' resource. *EquipmentApi* | [**GetEquipmentChassisByMoid**](docs/EquipmentApi.md#getequipmentchassisbymoid) | **Get** /api/v1/equipment/Chasses/{Moid} | Read a 'equipment.Chassis' resource. *EquipmentApi* | [**GetEquipmentChassisIdPoolByMoid**](docs/EquipmentApi.md#getequipmentchassisidpoolbymoid) | **Get** /api/v1/equipment/ChassisIdPools/{Moid} | Read a 'equipment.ChassisIdPool' resource. *EquipmentApi* | [**GetEquipmentChassisIdPoolList**](docs/EquipmentApi.md#getequipmentchassisidpoollist) | **Get** /api/v1/equipment/ChassisIdPools | Read a 'equipment.ChassisIdPool' resource. @@ -5011,6 +5012,7 @@ Class | Method | HTTP request | Description - [DnacVirtualNetworkFabricSite](docs/DnacVirtualNetworkFabricSite.md) - [DnacVirtualNetworkFabricSiteList](docs/DnacVirtualNetworkFabricSiteList.md) - [DnacVirtualNetworkFabricSiteResponse](docs/DnacVirtualNetworkFabricSiteResponse.md) + - [EnergyMetrics](docs/EnergyMetrics.md) - [EquipmentAbstractDevice](docs/EquipmentAbstractDevice.md) - [EquipmentBase](docs/EquipmentBase.md) - [EquipmentBaseRelationship](docs/EquipmentBaseRelationship.md) @@ -7447,7 +7449,6 @@ Class | Method | HTTP request | Description - [SchedulerDailyCadenceParams](docs/SchedulerDailyCadenceParams.md) - [SchedulerEveryCadenceParams](docs/SchedulerEveryCadenceParams.md) - [SchedulerMonthlyCadenceParams](docs/SchedulerMonthlyCadenceParams.md) - - [SchedulerMonthlyWeekDayFormat](docs/SchedulerMonthlyWeekDayFormat.md) - [SchedulerOneTimeScheduleParams](docs/SchedulerOneTimeScheduleParams.md) - [SchedulerRecurringScheduleParams](docs/SchedulerRecurringScheduleParams.md) - [SchedulerRestStimTaskRequest](docs/SchedulerRestStimTaskRequest.md) @@ -7461,7 +7462,6 @@ Class | Method | HTTP request | Description - [SchedulerTaskScheduleResponse](docs/SchedulerTaskScheduleResponse.md) - [SchedulerTaskScheduleStatus](docs/SchedulerTaskScheduleStatus.md) - [SchedulerWeeklyCadenceParams](docs/SchedulerWeeklyCadenceParams.md) - - [SchedulerYearlyCadenceParams](docs/SchedulerYearlyCadenceParams.md) - [SdaaciConnection](docs/SdaaciConnection.md) - [SdaaciConnectionDetail](docs/SdaaciConnectionDetail.md) - [SdaaciConnectionDetailList](docs/SdaaciConnectionDetailList.md) @@ -8937,7 +8937,7 @@ Authentication schemes defined for the API: - **API key parameter name**: X-Starship-Token - **Location**: -Note, each API key must be added to a map of `map[string]APIKey` where the key is: X-Starship-Token and passed in as the auth context for each request. +Note, each API key must be added to a map of `map[string]APIKey` where the key is: cookieAuth and passed in as the auth context for each request. Example @@ -8946,7 +8946,7 @@ auth := context.WithValue( context.Background(), intersight.ContextAPIKeys, map[string]intersight.APIKey{ - "X-Starship-Token": {Key: "API_KEY_STRING"}, + "cookieAuth": {Key: "API_KEY_STRING"}, }, ) r, err := client.Service.Operation(auth, args) @@ -9599,6 +9599,7 @@ Example - **READ.dnac.Template**: Read a 'dnac.Template' resource. - **READ.dnac.Transit**: Read a 'dnac.Transit' resource. - **READ.dnac.VirtualNetworkFabricSite**: Read a 'dnac.VirtualNetworkFabricSite' resource. + - **CREATE.energy.Metrics**: Create a 'energy.Metrics' resource. - **READ.equipment.Chassis**: Read a 'equipment.Chassis' resource. - **UPDATE.equipment.Chassis**: Update a 'equipment.Chassis' resource. - **READ.equipment.ChassisIdPool**: Read a 'equipment.ChassisIdPool' resource. diff --git a/intersight_gosdk/api/openapi.yaml b/intersight_gosdk/api/openapi.yaml index e4a16139bb..ad9f75e2b0 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-18012 + version: 1.0.11-18369 externalDocs: description: Online documentation for the Intersight APIs url: /apidocs @@ -63,6 +63,7 @@ tags: - name: crd - name: deviceconnector - name: dnac +- name: energy - name: equipment - name: ether - name: externalsite @@ -144684,6 +144685,148 @@ paths: summary: Read a 'dnac.VirtualNetworkFabricSite' resource. tags: - dnac + /api/v1/energy/Metrics: + post: + operationId: CreateEnergyMetrics + parameters: + - description: |- + For methods that apply server-side changes, and in particular for PUT, If-Match can be used to prevent + the lost update problem. It can check if the modification of a resource that the user wants to upload + will not override another change that has been done since the original resource was fetched. + If the request cannot be fulfilled, the 412 (Precondition Failed) response is returned. + When modifying a resource using POST or PUT, the If-Match header must be set to the value of + the resource ModTime property after which no lost update problem should occur. + For example, a client send a GET request to obtain a resource, which includes the ModTime property. + The ModTime indicates the last time the resource was created or modified. The client then sends + a POST or PUT request with the If-Match header set to the ModTime property of the resource as obtained + in the GET request. + explode: false + in: header + name: If-Match + required: false + schema: + type: string + style: simple + - description: |- + For methods that apply server-side changes, If-None-Match used with the * value can be used to create + a resource not known to exist, guaranteeing that another resource creation didn't happen before, + losing the data of the previous put. The request will be processed only if the eventually existing + resource's ETag doesn't match any of the values listed. Otherwise, the status code 412 + (Precondition Failed) is used. + The asterisk is a special value representing any resource. It is only useful when creating a resource, + usually with PUT, to check if another resource with the identity has already been created before. + The comparison with the stored ETag uses the weak comparison algorithm, meaning two resources are + considered identical if the content is equivalent - they don't have to be identical byte for byte. + explode: false + in: header + name: If-None-Match + required: false + schema: + type: string + style: simple + requestBody: + content: + application/json: + schema: + $ref: '#/components/schemas/energy.Metrics' + description: The 'energy.Metrics' resource to create. + required: true + responses: + "200": + content: + application/json: + schema: + $ref: '#/components/schemas/energy.Metrics' + description: The HTTP 200 status response code indicates that the request + has succeeded and the 'energy.Metrics' resource was created as requested. + The 'energy.Metrics' resource is created before this response is sent + back and the resource is returned in the body of the message. + headers: + Set-Cookie: + $ref: '#/components/headers/Set-Cookie' + x-starship-traceid: + $ref: '#/components/headers/x-starship-traceid' + links: + GetEnergyMetricsByMoid: + description: "The 'Moid' value returned in the response can be used\ + \ as the 'Moid' parameter in 'GET /api/v1/energy/Metrics/{Moid}'." + operationId: GetEnergyMetricsByMoid + parameters: + Moid: $response.body#/Moid + GetIamAccountByMoid: + $ref: '#/components/links/GetIamAccountByMoid' + GetIamDomainGroupByMoid: + $ref: '#/components/links/GetIamDomainGroupByMoid' + "400": + content: + application/json: + schema: + $ref: '#/components/schemas/Error' + description: |- + The request could not be understood by the server due to malformed syntax. + The client SHOULD NOT repeat the request without modifications. + For example, the request may contain an incorrect JSON syntax, or the request fails + validation checks. + The HTTP body may contain a document that provides more details about the error. + headers: + x-starship-traceid: + $ref: '#/components/headers/x-starship-traceid' + "401": + content: + application/json: + schema: + $ref: '#/components/schemas/Error' + description: |- + The request requires user authentication. The client may repeat the request with a suitable Authorization header field. + If the request already included Authorization credentials, then the 401 response indicates that authorization has + been refused for those credentials. + The HTTP body may contain a document that provides more details about the error. + headers: + x-starship-traceid: + $ref: '#/components/headers/x-starship-traceid' + "403": + content: + application/json: + schema: + $ref: '#/components/schemas/Error' + description: |- + The request was properly authenticated, but the server is refusing to fulfill it. + The HTTP body may contain a document that provides more details about the error. + For example, the user may not have sufficient privileges to perform the request. + headers: + x-starship-traceid: + $ref: '#/components/headers/x-starship-traceid' + "404": + content: + application/json: + schema: + $ref: '#/components/schemas/Error' + description: The specified resource was not found. The HTTP body contains + a document that provides more details about the error. + headers: + x-starship-traceid: + $ref: '#/components/headers/x-starship-traceid' + default: + content: + application/json: + schema: + $ref: '#/components/schemas/Error' + description: An unexpected error occurred. + headers: + x-starship-traceid: + $ref: '#/components/headers/x-starship-traceid' + security: + - cookieAuth: [] + - http_signature: [] + - oAuth2: + - CREATE.energy.Metrics + - PRIVSET.Account Administrator + - PRIVSET.Sustainability Metrics Viewer + - ROLE.Account Administrator + - ROLE.Sustainability Metrics Viewer + summary: Create a 'energy.Metrics' resource. + tags: + - energy /api/v1/equipment/Chasses: get: operationId: GetEquipmentChassisList @@ -756150,37 +756293,6 @@ components: capability.AdapterUpdateConstraintMeta: allOf: - $ref: '#/components/schemas/capability.UpdateConstraintMeta' - - description: "Definition of the list of properties defined in 'capability.AdapterUpdateConstraintMeta',\ - \ excluding properties defined in parent classes." - properties: - ClassId: - default: capability.AdapterUpdateConstraintMeta - description: |- - 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. - enum: - - capability.AdapterUpdateConstraintMeta - type: string - x-enum-as-string: true - ObjectType: - default: capability.AdapterUpdateConstraintMeta - description: |- - The fully-qualified name of the instantiated, concrete type. - The value should be the same as the 'ClassId' property. - enum: - - capability.AdapterUpdateConstraintMeta - type: string - x-enum-as-string: true - SupportedPlatform: - description: Platform for which the constraint is to be enforced. - readOnly: true - type: string - x-omitempty: true - required: - - ClassId - - ObjectType - type: object description: Internal meta-data to enable adapter unit update related constraints. example: ServerSpecificConstraint: @@ -756250,16 +756362,12 @@ components: - DisplayNames - DisplayNames PlatformType: PlatformType - SupportedPlatform: SupportedPlatform ModTime: 2000-01-23T04:56:07.000+00:00 Tags: - Value: Value Key: Key - Value: Value Key: Key - SupportedPlatforms: - - SupportedPlatforms - - SupportedPlatforms title: Capability:Adapter Update Constraint Meta x-allOf-name: capability.AdapterUpdateConstraintMeta capability.AdapterUpdateConstraintMeta.List: @@ -760721,9 +760829,6 @@ components: Key: Key - Value: Value Key: Key - SupportedPlatforms: - - SupportedPlatforms - - SupportedPlatforms title: Capability:Processor Unit Update Constraint Meta x-allOf-name: capability.ProcessorUnitUpdateConstraintMeta capability.ProcessorUnitUpdateConstraintMeta.List: @@ -762612,9 +762717,6 @@ components: Key: Key - Value: Value Key: Key - SupportedPlatforms: - - SupportedPlatforms - - SupportedPlatforms title: Capability:Storage Controller Update Constraint Meta x-allOf-name: capability.StorageControllerUpdateConstraintMeta capability.StorageControllerUpdateConstraintMeta.List: @@ -764315,14 +764417,6 @@ components: $ref: '#/components/schemas/capability.ServerComponentConstraint' nullable: true type: array - SupportedPlatforms: - items: - description: Platforms for which the constraint is to be enforced. - readOnly: true - type: string - x-omitempty: true - nullable: true - type: array required: - ClassId - ObjectType @@ -765146,6 +765240,10 @@ components: description: The Catalyst SDWAN device config status message. type: string x-omitempty: true + DeviceId: + description: The Catalyst SDWAN device id. + type: string + x-omitempty: true DeviceState: description: The Catalyst SDWAN device state. type: string @@ -765197,6 +765295,7 @@ components: SiteId: SiteId SiteName: SiteName Parent: null + DeviceId: DeviceId ClassId: catalystsdwan.VedgeDevice Owners: - Owners @@ -780526,6 +780625,17 @@ components: $ref: '#/components/schemas/compute.PersistentMemoryOperation' PersonalitySetting: $ref: '#/components/schemas/compute.PersonalitySetting' + ResetMemoryErrors: + default: Ready + description: |- + Reset Correctable and Uncorrectable ECC errors on all the DIMMs present in the server. + * `Ready` - Reset memory errors operation is allowed on the server in this state. + * `Reset` - Trigger reset memory errors operation on a server. + enum: + - Ready + - Reset + type: string + x-omitempty: true ServerConfig: $ref: '#/components/schemas/compute.ServerConfig' ServerOpStatus: @@ -780659,6 +780769,7 @@ components: - Country ClassId: pkix.DistinguishedName CommonName: CommonName + ResetMemoryErrors: Ready ClassId: compute.ServerSetting ServerOpStatus: - WorkflowInfoMoid: WorkflowInfoMoid @@ -789543,6 +789654,73 @@ components: description: This resource list is returned as a response to a HTTP GET request that does not include a specific resource identifier. title: List of 'dnac.VirtualNetworkFabricSite' resources + energy.Metrics: + allOf: + - $ref: '#/components/schemas/mo.BaseMo' + description: "Returns carbon intensity, power breakdown, and electricity rate\ + \ power metrics for a set of locations and a time span." + example: + SharedScope: SharedScope + Parent: null + CreateTime: 2000-01-23T04:56:07.000+00:00 + ClassId: aaa.AuditRecord + DomainGroupMoid: DomainGroupMoid + PermissionResources: + - null + - null + AccountMoid: AccountMoid + Ancestors: + - ObjectType: aaa.AuditRecord + link: link + Moid: Moid + ClassId: mo.MoRef + Selector: Selector + - ObjectType: aaa.AuditRecord + link: link + Moid: Moid + ClassId: mo.MoRef + Selector: Selector + Owners: + - Owners + - Owners + VersionContext: + ObjectType: mo.VersionContext + InterestedMos: + - ObjectType: aaa.AuditRecord + link: link + Moid: Moid + ClassId: mo.MoRef + Selector: Selector + - ObjectType: aaa.AuditRecord + link: link + Moid: Moid + ClassId: mo.MoRef + Selector: Selector + Version: Version + MarkedForDeletion: false + RefMo: + ObjectType: aaa.AuditRecord + link: link + Moid: Moid + ClassId: mo.MoRef + Selector: Selector + ClassId: mo.VersionContext + Timestamp: 2000-01-23T04:56:07.000+00:00 + VersionType: Modified + ObjectType: aaa.AuditRecord + Moid: Moid + DisplayNames: + key: + - DisplayNames + - DisplayNames + ModTime: 2000-01-23T04:56:07.000+00:00 + Tags: + - Value: Value + Key: Key + - Value: Value + Key: Key + title: Energy:Metrics + x-allOf-name: energy.Metrics equipment.AbstractDevice: allOf: - $ref: '#/components/schemas/equipment.Base' @@ -803136,7 +803314,7 @@ components: CreateTime: 2000-01-23T04:56:07.000+00:00 VlanSettings: ObjectType: fabric.VlanSettings - NativeVlan: 328 + NativeVlan: 327 QinqEnabled: false ClassId: fabric.VlanSettings AllowedVlans: AllowedVlans @@ -803292,7 +803470,7 @@ components: CreateTime: 2000-01-23T04:56:07.000+00:00 VlanSettings: ObjectType: fabric.VlanSettings - NativeVlan: 328 + NativeVlan: 327 QinqEnabled: false ClassId: fabric.VlanSettings AllowedVlans: AllowedVlans @@ -811127,14 +811305,19 @@ components: type: string x-omitempty: true NativeVlan: - default: 1 + default: 0 description: "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." + \ Vethernet on the peer Fabric Interconnect to which the virtual interface\ + \ is connected. Native VLAN ID maps all incoming untagged traffic i.e.\ + \ packets without a VLAN tag to the native VLAN for switching purposes.\ + \ If the native VLAN is not a part of the allowed VLANs, it will automatically\ + \ be added to the list of allowed VLANs. A native VLAN ID of 0 will\ + \ indicate to the system to use the system default native VLAN ID and\ + \ will also prevent native VLAN from being added to the allowed VLAN\ + \ list." format: int64 maximum: 4093 - minimum: 1 + minimum: 0 type: integer x-omitempty: true QinqEnabled: @@ -811157,7 +811340,7 @@ components: description: VLAN configuration for the virtual interface. example: ObjectType: fabric.VlanSettings - NativeVlan: 328 + NativeVlan: 327 QinqEnabled: false ClassId: fabric.VlanSettings AllowedVlans: AllowedVlans @@ -863865,11 +864048,11 @@ components: description: 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. + by all Standalone C-Series servers. FI-attached C-Series servers with + firmware at minimum of 4.2.3a support this configuration. B/X-Series + 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. maxLength: 40 minLength: 0 pattern: "^[a-fA-F0-9]*$" @@ -863886,7 +864069,7 @@ components: Privilege: default: admin description: |- - 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. + The highest privilege level that can be assigned to an IPMI session on a server. This configuration is supported by all Standalone C-Series servers. FI-attached C-Series servers with firmware at minimum of 4.2.3a support this configuration. B/X-Series servers with firmware at minimum of 5.1.0.x support this configuration. Privilege level user is not supported for B/X-Series 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. @@ -864070,11 +864253,11 @@ components: description: 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. + by all Standalone C-Series servers. FI-attached C-Series servers with + firmware at minimum of 4.2.3a support this configuration. B/X-Series + 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. maxLength: 40 minLength: 0 pattern: "^[a-fA-F0-9]*$" @@ -864091,7 +864274,7 @@ components: Privilege: default: admin description: |- - 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. + The highest privilege level that can be assigned to an IPMI session on a server. This configuration is supported by all Standalone C-Series servers. FI-attached C-Series servers with firmware at minimum of 4.2.3a support this configuration. B/X-Series servers with firmware at minimum of 5.1.0.x support this configuration. Privilege level user is not supported for B/X-Series 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. @@ -892006,7 +892189,6 @@ components: - scheduler.TaskResultStatus - scheduler.TaskScheduleStatus - scheduler.WeeklyCadenceParams - - scheduler.YearlyCadenceParams - sdcard.Diagnostics - sdcard.Drivers - sdcard.HostUpgradeUtility @@ -892738,7 +892920,6 @@ components: - scheduler.TaskResultStatus - scheduler.TaskScheduleStatus - scheduler.WeeklyCadenceParams - - scheduler.YearlyCadenceParams - sdcard.Diagnostics - sdcard.Drivers - sdcard.HostUpgradeUtility @@ -893293,6 +893474,7 @@ components: - dnac.Template - dnac.Transit - dnac.VirtualNetworkFabricSite + - energy.Metrics - equipment.Chassis - equipment.ChassisIdPool - equipment.ChassisIdentity @@ -894399,6 +894581,7 @@ components: - dnac.Template - dnac.Transit - dnac.VirtualNetworkFabricSite + - energy.Metrics - equipment.Chassis - equipment.ChassisIdPool - equipment.ChassisIdentity @@ -895609,6 +895792,7 @@ components: - dnac.Template - dnac.Transit - dnac.VirtualNetworkFabricSite + - energy.Metrics - equipment.Chassis - equipment.ChassisIdPool - equipment.ChassisIdentity @@ -948475,6 +948659,7 @@ components: \ excluding properties defined in parent classes." properties: ClassId: + default: scheduler.MonthlyCadenceParams description: |- The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload @@ -948482,17 +948667,16 @@ components: The enum values provides the list of concrete types that can be instantiated from this abstract type. enum: - scheduler.MonthlyCadenceParams - - scheduler.YearlyCadenceParams type: string x-enum-as-string: true ObjectType: + default: scheduler.MonthlyCadenceParams description: |- 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. enum: - scheduler.MonthlyCadenceParams - - scheduler.YearlyCadenceParams type: string x-enum-as-string: true CustomDayOfMonth: @@ -948516,13 +948700,11 @@ components: x-omitempty: true nullable: true type: array - WeekDayFormat: - $ref: '#/components/schemas/scheduler.MonthlyWeekDayFormat' required: - ClassId - ObjectType type: object - description: The monthly cadence applied to yearly and monthly schedules. + description: The monthly cadence applied to monthly schedules. title: Scheduler:Base Monthly Cadence Params x-allOf-name: scheduler.BaseMonthlyCadenceParams scheduler.BaseScheduleParams: @@ -948553,9 +948735,7 @@ components: type: string x-enum-as-string: true StartTime: - description: "The schedule start time. A future time is required. When\ - \ the start time is updated, it is mandatory to specify the corresponding\ - \ timeZone property as well." + description: The schedule start time. A future time is required. format: date-time type: string x-omitempty: true @@ -949171,8 +949351,11 @@ components: type: string x-enum-as-string: true RunEvery: + default: 1 description: Run every day by default if not specified. format: int64 + maximum: 31 + minimum: 1 type: integer x-omitempty: true required: @@ -949209,8 +949392,8 @@ components: x-enum-as-string: true Interval: description: "An interval specified as string where valid time units are\ - \ \"ns\", \"us\", \"ms\", \"s\", \"m\", \"h\". The calender calculations\ - \ use a gregorian calendar with no leap seconds. The default is 24h." + \ \"s\", \"m\", \"h\". The minimum interval is 15 minutes and the maximum\ + \ is 24 hours." type: string x-omitempty: true required: @@ -949226,61 +949409,82 @@ components: description: Used for a monthly cadence. title: Scheduler:Monthly Cadence Params x-allOf-name: scheduler.MonthlyCadenceParams - scheduler.MonthlyWeekDayFormat: + scheduler.OneTimeScheduleParams: allOf: - - $ref: '#/components/schemas/mo.BaseComplexType' - - description: "Definition of the list of properties defined in 'scheduler.MonthlyWeekDayFormat',\ + - $ref: '#/components/schemas/scheduler.BaseScheduleParams' + description: The parameters for configuring a onetime schedule. + title: Scheduler:One Time Schedule Params + x-allOf-name: scheduler.OneTimeScheduleParams + scheduler.RecurringScheduleParams: + allOf: + - $ref: '#/components/schemas/scheduler.BaseScheduleParams' + - description: "Definition of the list of properties defined in 'scheduler.RecurringScheduleParams',\ \ excluding properties defined in parent classes." properties: - DayOfWeek: - items: - default: Monday - description: |- - The days in the week used to schedule a task. - * `Monday` - The first day of the week. - * `Tuesday` - The second day of the week. - * `Wednesday` - The third day of the week. - * `Thursday` - The fourth day of the week. - * `Friday` - The fifth day of the week. - * `Saturday` - The sixth day of the week. - * `Sunday` - The seventh day of the week. - enum: - - Monday - - Tuesday - - Wednesday - - Thursday - - Friday - - Saturday - - Sunday - type: string - x-omitempty: true - nullable: true - type: array - WeekOfMonth: - description: "The week of the month, 1 through 5." + ClassId: + default: scheduler.RecurringScheduleParams + description: |- + 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. + enum: + - scheduler.RecurringScheduleParams + type: string + x-enum-as-string: true + ObjectType: + default: scheduler.RecurringScheduleParams + description: |- + The fully-qualified name of the instantiated, concrete type. + The value should be the same as the 'ClassId' property. + enum: + - scheduler.RecurringScheduleParams + type: string + x-enum-as-string: true + Cadence: + default: None + description: |- + Allowed values for a recurring schedule cadence. + * `None` - No value set for the cadence type (Enum value None). + * `Every` - Use the 'Every' cadence for tasks that need to be run frequently and are relatively small or quick to execute. This could include tasks such as checking the status of a service every 15 minutes, or updating a counter. + * `Daily` - A Daily cadence allows for a scheduled task to be run every day or every n-interval days. + * `Weekly` - A Weekly cadence allows for a scheduled task to be run every week or every n-interval weeks on specific days. + * `Monthly` - A Montly cadence allows for a scheduled task to be run every month on specific days. + enum: + - None + - Every + - Daily + - Weekly + - Monthly + type: string + x-omitempty: true + EndAfterOccurrences: + description: Specify the number of occurrences (instead of an end-time) + for a recurring schedule. format: int64 - maximum: 5 + type: integer + x-omitempty: true + EndTime: + description: "End time for the recurring schedule. The schedule will not\ + \ run beyond this time. If using the endAfterOccurrences parameter instead,\ + \ this field should be set to zero time, i.e, 0001-01-01T00:00:00Z." + format: date-time + type: string + x-omitempty: true + FailureThreshold: + default: 1 + description: The maximum number of consecutive failures until the recurring + scheduled task is suspended by the system. The default is 1. + format: int64 + maximum: 10 minimum: 1 type: integer x-omitempty: true + Params: + $ref: '#/components/schemas/scheduler.BaseCadenceParams' required: - ClassId - ObjectType type: object - description: An alternative for monthly scheduled task. For e.g. third Tuesday - of every month. - nullable: true - title: Scheduler:Monthly Week Day Format - x-allOf-name: scheduler.MonthlyWeekDayFormat - scheduler.OneTimeScheduleParams: - allOf: - - $ref: '#/components/schemas/scheduler.BaseScheduleParams' - description: The parameters for configuring a onetime schedule. - title: Scheduler:One Time Schedule Params - x-allOf-name: scheduler.OneTimeScheduleParams - scheduler.RecurringScheduleParams: - allOf: - - $ref: '#/components/schemas/scheduler.BaseScheduleParams' description: The parameters for configuring a recurring schedule. title: Scheduler:Recurring Schedule Params x-allOf-name: scheduler.RecurringScheduleParams @@ -949326,12 +949530,14 @@ components: type: string x-omitempty: true Response: + deprecated: true description: The response obtained for the scheduled API service. nullable: true x-omitempty: true Timeout: - description: Upper limit on the execution time of a scheduled task. Helps - purge run-away scheduled tasks. + description: |- + Upper limit on the execution time of a scheduled task. Helps purge run-away scheduled tasks. + Not supported in this release. format: int64 type: integer x-omitempty: true @@ -949349,7 +949555,7 @@ components: Response: "" ObjectType: scheduler.RestStimTaskRequest Headers: "" - Timeout: 6 + Timeout: 1 ClassId: scheduler.RestStimTaskRequest Method: Method Protocol: Protocol @@ -950224,7 +950430,7 @@ components: * `None` - No action is set (default). * `Suspend` - Suspend a scheduled task indefinitely. * `Resume` - Resume a suspended scheduled task. - * `SuspendTill` - Suspend the scheduled task until a specified end-date. + * `SuspendTill` - Suspend the scheduled task until a specified end-date. Not supported in this release. enum: - None - Suspend @@ -950243,7 +950449,7 @@ components: * `None` - No action is set (default). * `Suspend` - Suspend a scheduled task indefinitely. * `Resume` - Resume a suspended scheduled task. - * `SuspendTill` - Suspend the scheduled task until a specified end-date. + * `SuspendTill` - Suspend the scheduled task until a specified end-date. Not supported in this release. enum: - None - Suspend @@ -950275,7 +950481,7 @@ components: An Enum describing the type of scheduler to use. * `None` - No value was set for the schedule type (Enum value None). * `OneTime` - Define a one-time task execution time that will not automatically repeat. - * `Recurring` - Specify a recurring task cadence based on a predefined pattern, such as daily, weekly, monthly, yearly, or every pattern. This option is not currently supported. + * `Recurring` - Specify a recurring task cadence based on a predefined pattern, such as daily, weekly, monthly, or every pattern. enum: - None - OneTime @@ -950348,8 +950554,10 @@ components: PrevRunEndTime: 2000-01-23T04:56:07.000+00:00 PrevRunStartTime: 2000-01-23T04:56:07.000+00:00 CurrentStatus: None + LastRunStatus: None ClassId: scheduler.TaskScheduleStatus - Count: 0 + Count: 6 + ConsecutiveFailures: 0 NextRunStartTime: 2000-01-23T04:56:07.000+00:00 Reason: Reason SuspendEndTime: 2000-01-23T04:56:07.000+00:00 @@ -950369,7 +950577,7 @@ components: Response: "" ObjectType: scheduler.RestStimTaskRequest Headers: "" - Timeout: 6 + Timeout: 1 ClassId: scheduler.RestStimTaskRequest Method: Method Protocol: Protocol @@ -950437,6 +950645,12 @@ components: - scheduler.TaskScheduleStatus type: string x-enum-as-string: true + ConsecutiveFailures: + description: The number of consecutive times the task has failed. + format: int64 + readOnly: true + type: integer + x-omitempty: true Count: description: "The task completion count, which includes both successful\ \ executions and any failures." @@ -950471,6 +950685,28 @@ components: readOnly: true type: boolean x-omitempty: true + LastRunStatus: + default: None + description: |- + The last task completion status, which includes both successful executions and any failures. + * `None` - No status is set (default). + * `Scheduled` - The status is set when a task is scheduled. + * `Running` - The status is set when a task is running. + * `Completed` - The status is set when a task is complete. + * `Failed` - The status is set when a task fails. + * `Suspended` - The status is set when a task is suspended. + * `Skipped` - The status is set when a task is skipped because the previous task is still running. + enum: + - None + - Scheduled + - Running + - Completed + - Failed + - Suspended + - Skipped + readOnly: true + type: string + x-omitempty: true NextRunStartTime: description: The next run time for a recurrently scheduled the task. format: date-time @@ -950505,8 +950741,10 @@ components: PrevRunEndTime: 2000-01-23T04:56:07.000+00:00 PrevRunStartTime: 2000-01-23T04:56:07.000+00:00 CurrentStatus: None + LastRunStatus: None ClassId: scheduler.TaskScheduleStatus - Count: 0 + Count: 6 + ConsecutiveFailures: 0 NextRunStartTime: 2000-01-23T04:56:07.000+00:00 Reason: Reason nullable: true @@ -950539,28 +950777,38 @@ components: x-enum-as-string: true DayOfWeek: items: - default: Monday + default: Sunday description: |- - The days of week to schedule a task. If this is not provided, all 7 days are picked by default. + The days of week to schedule a task. If this is not provided, Monday is picked by default. + * `Sunday` - The seventh day of the week. * `Monday` - The first day of the week. * `Tuesday` - The second day of the week. * `Wednesday` - The third day of the week. * `Thursday` - The fourth day of the week. * `Friday` - The fifth day of the week. * `Saturday` - The sixth day of the week. - * `Sunday` - The seventh day of the week. enum: + - Sunday - Monday - Tuesday - Wednesday - Thursday - Friday - Saturday - - Sunday type: string x-omitempty: true nullable: true type: array + RunEvery: + default: 1 + description: "A weekly interval for a task execution. If an interval is\ + \ not explicitly specified, the task will be executed once every week\ + \ by default." + format: int64 + maximum: 52 + minimum: 1 + type: integer + x-omitempty: true required: - ClassId - ObjectType @@ -950568,72 +950816,6 @@ components: description: Parameters used for weekly cadence. title: Scheduler:Weekly Cadence Params x-allOf-name: scheduler.WeeklyCadenceParams - scheduler.YearlyCadenceParams: - allOf: - - $ref: '#/components/schemas/scheduler.BaseMonthlyCadenceParams' - - description: "Definition of the list of properties defined in 'scheduler.YearlyCadenceParams',\ - \ excluding properties defined in parent classes." - properties: - ClassId: - default: scheduler.YearlyCadenceParams - description: |- - 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. - enum: - - scheduler.YearlyCadenceParams - type: string - x-enum-as-string: true - ObjectType: - default: scheduler.YearlyCadenceParams - description: |- - The fully-qualified name of the instantiated, concrete type. - The value should be the same as the 'ClassId' property. - enum: - - scheduler.YearlyCadenceParams - type: string - x-enum-as-string: true - MonthOfYear: - items: - default: January - description: |- - A list of months to run the scheduled-task. - * `January` - The first month of a calendar year. - * `February` - The second month of a calendar year. - * `March` - The third month of a calendar year. - * `April` - The fourth month of a calendar year. - * `May` - The fifth month of a calendar year. - * `June` - The sixth month of a calendar year. - * `July` - The seventh month of a calendar year. - * `August` - The eighth month of a calendar year. - * `September` - The ninth month of a calendar year. - * `October` - The tenth month of a calendar year. - * `November` - The eleventh month of a calendar year. - * `December` - The twelfth month of a calendar year. - enum: - - January - - February - - March - - April - - May - - June - - July - - August - - September - - October - - November - - December - type: string - x-omitempty: true - nullable: true - type: array - required: - - ClassId - - ObjectType - type: object - description: Parameters for a yearly cadence. - title: Scheduler:Yearly Cadence Params - x-allOf-name: scheduler.YearlyCadenceParams sdaaci.Connection.Response: description: |- The response body of a HTTP GET request for the 'sdaaci.Connection' resource. @@ -952197,6 +952379,18 @@ components: - server.ProfileTemplate type: string x-enum-as-string: true + ManagementMode: + default: IntersightStandalone + description: |- + The management mode of the server. + * `IntersightStandalone` - Intersight Standalone mode of operation. + * `Intersight` - Intersight managed mode of operation. + enum: + - IntersightStandalone + - Intersight + readOnly: true + type: string + x-omitempty: true TargetPlatform: default: Standalone description: |- @@ -953513,6 +953707,7 @@ components: Moid: Moid ClassId: mo.MoRef Selector: Selector + ManagementMode: IntersightStandalone Type: instance Uuid: Uuid ScheduledActions: @@ -953717,6 +953912,7 @@ components: Moid: Moid ClassId: mo.MoRef Selector: Selector + ManagementMode: IntersightStandalone Type: instance ScheduledActions: - ObjectType: policy.ScheduledAction @@ -955092,8 +955288,8 @@ components: AccessCommunityString: description: "The default SNMPv1, SNMPv2c community name or SNMPv3 username\ \ to include on any trap messages sent to the SNMP host. The name can\ - \ be 18 characters long." - maxLength: 18 + \ be 32 characters long." + maxLength: 32 type: string x-omitempty: true CommunityAccess: @@ -955452,8 +955648,8 @@ components: AccessCommunityString: description: "The default SNMPv1, SNMPv2c community name or SNMPv3 username\ \ to include on any trap messages sent to the SNMP host. The name can\ - \ be 18 characters long." - maxLength: 18 + \ be 32 characters long." + maxLength: 32 readOnly: true type: string x-omitempty: true @@ -965400,10 +965596,10 @@ components: type: string x-omitempty: true SecureDriveGroup: - description: "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." + description: "Enables/disables the drive security on all the drives used\ + \ in this policy. This flag just enables the drive security and only\ + \ after Remote/Manual key setting configured, the actual security will\ + \ be applied." type: boolean x-omitempty: true Type: @@ -965633,9 +965829,9 @@ components: - ClassId - ObjectType type: object - description: The drive security policy models the KMIP server related configuration - that can be applied on multiple servers. Storage controller encryption can - be enabled through this policy using remote keys from a KMIP server. + description: "The drive security policy defines the configuration for a manual\ + \ key or a KMIP server, which can be applied to multiple servers. You can\ + \ enable drive security on the servers using either configuration.." example: Description: Description Organization: @@ -973904,9 +974100,9 @@ components: KeyType: default: Kmip description: |- - Method to be used for fetching the encryption key. - * `Kmip` - Remote encryption using KMIP. - * `Manual` - Drive encryption using manual key. + Method to be used for fetching the security key. + * `Kmip` - Remote security using KMIP. + * `Manual` - Drive security using manual key. enum: - Kmip - Manual @@ -973920,7 +974116,7 @@ components: - ClassId - ObjectType type: object - description: Models the security key configuration required for the disk encryption. + description: Models the security key configuration required for the drive security. example: ObjectType: storage.KeySetting KeyType: Kmip @@ -974053,9 +974249,9 @@ components: type: string x-enum-as-string: true EnableDriveSecurity: - description: "Enable the selected KMIP Server configuration for encryption.\ + description: "Enable the selected KMIP Server configuration for security.\ \ This flag just enables the drive security and only after remote key\ - \ setting configured, the actual encryption will be done." + \ setting configured, the actual security will be applied." type: boolean x-omitempty: true IpAddress: @@ -974084,7 +974280,7 @@ components: - ClassId - ObjectType type: object - description: Models the KMIP Server configuration used to fetch the encryption + description: Models the KMIP Server configuration used to fetch the drive security key. example: ObjectType: storage.KmipServer @@ -974122,10 +974318,11 @@ components: type: string x-enum-as-string: true ExistingKey: - description: Current Security Key Passphrase which is already configured - on the server. + description: "Current Security Key Passphrase which is already configured\ + \ on the server. From the security context, the passphrase should be\ + \ at least 8 characters long and should include at least one uppercase\ + \ letter, one lowercase letter, one number, and one special character." maxLength: 32 - pattern: "^$|^[a-zA-Z0-9=!&#$%+^@_*-]+$" type: string writeOnly: true x-omitempty: true @@ -974144,7 +974341,10 @@ components: type: boolean x-omitempty: true NewKey: - description: New Security Key Passphrase to be configured on the controller. + description: "New Security Key Passphrase to be configured on the server.\ + \ From the security context, the passphrase should be at least 8 characters\ + \ long and should include at least one uppercase letter, one lowercase\ + \ letter, one number, and one special character." maxLength: 32 minLength: 8 pattern: "^$|^[a-zA-Z0-9=!&#$%+^@_*-]+$" @@ -974155,7 +974355,7 @@ components: - ClassId - ObjectType type: object - description: Models the local key configuration required for disk encryption. + description: Models the local key configuration required for the drive security. example: ObjectType: storage.LocalKeySetting ExistingKey: ExistingKey @@ -990292,10 +990492,11 @@ components: AuthCredentials: $ref: '#/components/schemas/storage.KmipAuthCredentials' ExistingKey: - description: Current Security Key Passphrase which is already configured - on the server. + description: "Current Security Key Passphrase which is already configured\ + \ on the server. From the security context, the passphrase should be\ + \ at least 8 characters long and should include at least one uppercase\ + \ letter, one lowercase letter, one number, and one special character." maxLength: 32 - pattern: "^$|^[a-zA-Z0-9=!&#$%+^@_*-]+$" type: string writeOnly: true x-omitempty: true @@ -990319,7 +990520,7 @@ components: - ClassId - ObjectType type: object - description: Models the remote key configuration required for disk encryption. + description: Models the remote key configuration required for the drive security. example: ObjectType: storage.RemoteKeySetting ServerCertificate: ServerCertificate @@ -991316,8 +991517,8 @@ components: that can be applied on many servers. This policy allows creation of RAID groups using existing disk group policies and virtual drives on the drive groups. The user has options to move all unused disks to JBOD or Unconfigured good - state. The encryption of drives can be enabled through this policy using remote - keys from a KMIP server. + state. The security of drives can be enabled through this policy using remote + keys from a KMIP server or Manually configured keys. example: Description: Description Organization: @@ -1027997,7 +1028198,7 @@ components: type: string x-enum-as-string: true Cloneable: - default: true + default: false description: When set to false task is not cloneable. It is set to true only if task is of ApiTask type and it is not system defined. readOnly: true @@ -1028138,7 +1028339,7 @@ components: SupportStatus: Supported RetryCount: 20 StartsWorkflow: false - Cloneable: true + Cloneable: false ExternalMeta: false TimeoutPolicy: Timeout OutputDefinition: @@ -1032802,7 +1033003,7 @@ components: SupportStatus: Supported RetryCount: 20 StartsWorkflow: false - Cloneable: true + Cloneable: false ExternalMeta: false TimeoutPolicy: Timeout OutputDefinition: @@ -1038654,6 +1038855,7 @@ components: READ.dnac.Transit: Read a 'dnac.Transit' resource. READ.dnac.VirtualNetworkFabricSite: Read a 'dnac.VirtualNetworkFabricSite' resource. + CREATE.energy.Metrics: Create a 'energy.Metrics' resource. READ.equipment.Chassis: Read a 'equipment.Chassis' resource. UPDATE.equipment.Chassis: Update a 'equipment.Chassis' resource. READ.equipment.ChassisIdPool: Read a 'equipment.ChassisIdPool' resource. diff --git a/intersight_gosdk/api_aaa.go b/intersight_gosdk/api_aaa.go index 3a447495ae..eacf98fcff 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/api_access.go b/intersight_gosdk/api_access.go index ce8290ec40..c4034a2fc2 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/api_adapter.go b/intersight_gosdk/api_adapter.go index 53ec3ebdc7..ce97bcc708 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/api_apic.go b/intersight_gosdk/api_apic.go index 7ba1a82bd8..2ebd9b2655 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/api_appliance.go b/intersight_gosdk/api_appliance.go index a3f846421f..4927d06262 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/api_asset.go b/intersight_gosdk/api_asset.go index e61f89a84e..8a3e64be1d 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/api_bios.go b/intersight_gosdk/api_bios.go index 64693a8c97..1bd08be0e4 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/api_boot.go b/intersight_gosdk/api_boot.go index d4ad6c4f24..03a5c5805b 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/api_bulk.go b/intersight_gosdk/api_bulk.go index 87b1cfeabe..ef2852fcae 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/api_capability.go b/intersight_gosdk/api_capability.go index c7d6f1e3cf..a2c6f10148 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/api_catalystsdwan.go b/intersight_gosdk/api_catalystsdwan.go index c15238f003..ebda67fc5d 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/api_certificatemanagement.go b/intersight_gosdk/api_certificatemanagement.go index 839e1aa19a..6ff57d4630 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/api_chassis.go b/intersight_gosdk/api_chassis.go index d8f4be7588..cbfe47cfb9 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/api_cloud.go b/intersight_gosdk/api_cloud.go index 62af845dff..68e000356b 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/api_comm.go b/intersight_gosdk/api_comm.go index 6dcafa9baf..65e79af0e7 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/api_compute.go b/intersight_gosdk/api_compute.go index b639c7ef21..54b4b54a2e 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/api_cond.go b/intersight_gosdk/api_cond.go index ebcf75f367..6b3ee47e5c 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/api_connectorpack.go b/intersight_gosdk/api_connectorpack.go index 2e29797d02..acf1cbc6cd 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/api_console.go b/intersight_gosdk/api_console.go index 93f82f655a..f3c9acccc5 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/api_convergedinfra.go b/intersight_gosdk/api_convergedinfra.go index 90c0b1223b..cfa191062f 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/api_crd.go b/intersight_gosdk/api_crd.go index c7a69ac032..1e1e464859 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/api_deviceconnector.go b/intersight_gosdk/api_deviceconnector.go index d18cc6d7ed..91a7919461 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/api_dnac.go b/intersight_gosdk/api_dnac.go index f5f2b14d9f..1c8f76efdf 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/api_energy.go b/intersight_gosdk/api_energy.go new file mode 100644 index 0000000000..d50cb78f11 --- /dev/null +++ b/intersight_gosdk/api_energy.go @@ -0,0 +1,205 @@ +/* +Cisco Intersight + +Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. + +API version: 1.0.11-18369 +Contact: intersight@cisco.com +*/ + +// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. + +package intersight + +import ( + "bytes" + "context" + "io" + "net/http" + "net/url" +) + +// EnergyApiService EnergyApi service +type EnergyApiService service + +type ApiCreateEnergyMetricsRequest struct { + ctx context.Context + ApiService *EnergyApiService + energyMetrics *EnergyMetrics + ifMatch *string + ifNoneMatch *string +} + +// The 'energy.Metrics' resource to create. +func (r ApiCreateEnergyMetricsRequest) EnergyMetrics(energyMetrics EnergyMetrics) ApiCreateEnergyMetricsRequest { + r.energyMetrics = &energyMetrics + return r +} + +// For methods that apply server-side changes, and in particular for PUT, If-Match can be used to prevent the lost update problem. It can check if the modification of a resource that the user wants to upload will not override another change that has been done since the original resource was fetched. If the request cannot be fulfilled, the 412 (Precondition Failed) response is returned. When modifying a resource using POST or PUT, the If-Match header must be set to the value of the resource ModTime property after which no lost update problem should occur. For example, a client send a GET request to obtain a resource, which includes the ModTime property. The ModTime indicates the last time the resource was created or modified. The client then sends a POST or PUT request with the If-Match header set to the ModTime property of the resource as obtained in the GET request. +func (r ApiCreateEnergyMetricsRequest) IfMatch(ifMatch string) ApiCreateEnergyMetricsRequest { + r.ifMatch = &ifMatch + return r +} + +// For methods that apply server-side changes, If-None-Match used with the * value can be used to create a resource not known to exist, guaranteeing that another resource creation didn't happen before, losing the data of the previous put. The request will be processed only if the eventually existing resource's ETag doesn't match any of the values listed. Otherwise, the status code 412 (Precondition Failed) is used. The asterisk is a special value representing any resource. It is only useful when creating a resource, usually with PUT, to check if another resource with the identity has already been created before. The comparison with the stored ETag uses the weak comparison algorithm, meaning two resources are considered identical if the content is equivalent - they don't have to be identical byte for byte. +func (r ApiCreateEnergyMetricsRequest) IfNoneMatch(ifNoneMatch string) ApiCreateEnergyMetricsRequest { + r.ifNoneMatch = &ifNoneMatch + return r +} + +func (r ApiCreateEnergyMetricsRequest) Execute() (*EnergyMetrics, *http.Response, error) { + return r.ApiService.CreateEnergyMetricsExecute(r) +} + +/* +CreateEnergyMetrics Create a 'energy.Metrics' resource. + + @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). + @return ApiCreateEnergyMetricsRequest +*/ +func (a *EnergyApiService) CreateEnergyMetrics(ctx context.Context) ApiCreateEnergyMetricsRequest { + return ApiCreateEnergyMetricsRequest{ + ApiService: a, + ctx: ctx, + } +} + +// Execute executes the request +// +// @return EnergyMetrics +func (a *EnergyApiService) CreateEnergyMetricsExecute(r ApiCreateEnergyMetricsRequest) (*EnergyMetrics, *http.Response, error) { + var ( + localVarHTTPMethod = http.MethodPost + localVarPostBody interface{} + formFiles []formFile + localVarReturnValue *EnergyMetrics + ) + + localBasePath, err := a.client.cfg.ServerURLWithContext(r.ctx, "EnergyApiService.CreateEnergyMetrics") + if err != nil { + return localVarReturnValue, nil, &GenericOpenAPIError{error: err.Error()} + } + + localVarPath := localBasePath + "/api/v1/energy/Metrics" + + localVarHeaderParams := make(map[string]string) + localVarQueryParams := url.Values{} + localVarFormParams := url.Values{} + if r.energyMetrics == nil { + return localVarReturnValue, nil, reportError("energyMetrics is required and must be specified") + } + + // to determine the Content-Type header + localVarHTTPContentTypes := []string{"application/json"} + + // set Content-Type header + localVarHTTPContentType := selectHeaderContentType(localVarHTTPContentTypes) + if localVarHTTPContentType != "" { + localVarHeaderParams["Content-Type"] = localVarHTTPContentType + } + + // to determine the Accept header + localVarHTTPHeaderAccepts := []string{"application/json"} + + // set Accept header + localVarHTTPHeaderAccept := selectHeaderAccept(localVarHTTPHeaderAccepts) + if localVarHTTPHeaderAccept != "" { + localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept + } + if r.ifMatch != nil { + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") + } + if r.ifNoneMatch != nil { + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") + } + // body params + localVarPostBody = r.energyMetrics + req, err := a.client.prepareRequest(r.ctx, localVarPath, localVarHTTPMethod, localVarPostBody, localVarHeaderParams, localVarQueryParams, localVarFormParams, formFiles) + if err != nil { + return localVarReturnValue, nil, err + } + + localVarHTTPResponse, err := a.client.callAPI(req) + if err != nil || localVarHTTPResponse == nil { + return localVarReturnValue, localVarHTTPResponse, err + } + + localVarBody, err := io.ReadAll(localVarHTTPResponse.Body) + localVarHTTPResponse.Body.Close() + localVarHTTPResponse.Body = io.NopCloser(bytes.NewBuffer(localVarBody)) + if err != nil { + return localVarReturnValue, localVarHTTPResponse, err + } + + if localVarHTTPResponse.StatusCode >= 300 { + newErr := &GenericOpenAPIError{ + body: localVarBody, + error: localVarHTTPResponse.Status, + } + if localVarHTTPResponse.StatusCode == 400 { + var v Error + err = a.client.decode(&v, localVarBody, localVarHTTPResponse.Header.Get("Content-Type")) + if err != nil { + newErr.error = err.Error() + return localVarReturnValue, localVarHTTPResponse, newErr + } + newErr.error = formatErrorMessage(localVarHTTPResponse.Status, &v) + newErr.model = v + return localVarReturnValue, localVarHTTPResponse, newErr + } + if localVarHTTPResponse.StatusCode == 401 { + var v Error + err = a.client.decode(&v, localVarBody, localVarHTTPResponse.Header.Get("Content-Type")) + if err != nil { + newErr.error = err.Error() + return localVarReturnValue, localVarHTTPResponse, newErr + } + newErr.error = formatErrorMessage(localVarHTTPResponse.Status, &v) + newErr.model = v + return localVarReturnValue, localVarHTTPResponse, newErr + } + if localVarHTTPResponse.StatusCode == 403 { + var v Error + err = a.client.decode(&v, localVarBody, localVarHTTPResponse.Header.Get("Content-Type")) + if err != nil { + newErr.error = err.Error() + return localVarReturnValue, localVarHTTPResponse, newErr + } + newErr.error = formatErrorMessage(localVarHTTPResponse.Status, &v) + newErr.model = v + return localVarReturnValue, localVarHTTPResponse, newErr + } + if localVarHTTPResponse.StatusCode == 404 { + var v Error + err = a.client.decode(&v, localVarBody, localVarHTTPResponse.Header.Get("Content-Type")) + if err != nil { + newErr.error = err.Error() + return localVarReturnValue, localVarHTTPResponse, newErr + } + newErr.error = formatErrorMessage(localVarHTTPResponse.Status, &v) + newErr.model = v + return localVarReturnValue, localVarHTTPResponse, newErr + } + var v Error + err = a.client.decode(&v, localVarBody, localVarHTTPResponse.Header.Get("Content-Type")) + if err != nil { + newErr.error = err.Error() + return localVarReturnValue, localVarHTTPResponse, newErr + } + newErr.error = formatErrorMessage(localVarHTTPResponse.Status, &v) + newErr.model = v + return localVarReturnValue, localVarHTTPResponse, newErr + } + + err = a.client.decode(&localVarReturnValue, localVarBody, localVarHTTPResponse.Header.Get("Content-Type")) + if err != nil { + newErr := &GenericOpenAPIError{ + body: localVarBody, + error: err.Error(), + } + return localVarReturnValue, localVarHTTPResponse, newErr + } + + return localVarReturnValue, localVarHTTPResponse, nil +} diff --git a/intersight_gosdk/api_equipment.go b/intersight_gosdk/api_equipment.go index 9c840185c1..5b196e435e 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/api_ether.go b/intersight_gosdk/api_ether.go index c61c6d406b..e3004cb2ea 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/api_externalsite.go b/intersight_gosdk/api_externalsite.go index c7f9dcd3a1..015171e1ca 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/api_fabric.go b/intersight_gosdk/api_fabric.go index 126939c6d5..e483722690 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/api_fault.go b/intersight_gosdk/api_fault.go index 218e640658..8dba26f40c 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/api_fc.go b/intersight_gosdk/api_fc.go index f9742fd91c..72b84e1e66 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/api_fcpool.go b/intersight_gosdk/api_fcpool.go index cff2797321..4fbb57f5ca 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/api_feedback.go b/intersight_gosdk/api_feedback.go index 81be596539..a58bd30e7c 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/api_firmware.go b/intersight_gosdk/api_firmware.go index 9d4c5af5f6..6886b41d8a 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/api_fmc.go b/intersight_gosdk/api_fmc.go index 9fad688b35..103960b90d 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/api_forecast.go b/intersight_gosdk/api_forecast.go index 2ea45e4c3f..1e82b5ea6f 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/api_graphics.go b/intersight_gosdk/api_graphics.go index 81bb0ca213..296e7b0458 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/api_hcl.go b/intersight_gosdk/api_hcl.go index ec2fc6f5b9..a085b0b37c 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/api_hyperflex.go b/intersight_gosdk/api_hyperflex.go index 3c49e0054c..1369a31d3f 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/api_iaas.go b/intersight_gosdk/api_iaas.go index 37a9d066ea..75d5bc7248 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/api_iam.go b/intersight_gosdk/api_iam.go index 3882cc7174..ffabfc5c2e 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/api_inventory.go b/intersight_gosdk/api_inventory.go index 7ee5ad0971..25f42f8878 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/api_ipmioverlan.go b/intersight_gosdk/api_ipmioverlan.go index 4fd0ce860e..a2b8f8356a 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/api_ippool.go b/intersight_gosdk/api_ippool.go index f9ff3c0843..0640e0bba2 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/api_iqnpool.go b/intersight_gosdk/api_iqnpool.go index f8ca2dc0bc..35f2ebd5df 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/api_iwotenant.go b/intersight_gosdk/api_iwotenant.go index 98add5419b..7c21e80ea0 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/api_kubernetes.go b/intersight_gosdk/api_kubernetes.go index 3bac17661f..cc44478815 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/api_kvm.go b/intersight_gosdk/api_kvm.go index eb34f2c16e..ada7b928b9 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/api_license.go b/intersight_gosdk/api_license.go index 4aa461fb99..10c6e473bb 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/api_ls.go b/intersight_gosdk/api_ls.go index 45dc7ce90b..67d5c95e42 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/api_macpool.go b/intersight_gosdk/api_macpool.go index 3c156d1ca3..ead2f25ed6 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/api_management.go b/intersight_gosdk/api_management.go index 1b6d14f7ca..8ace41a7d5 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/api_marketplace.go b/intersight_gosdk/api_marketplace.go index 25a30bc53e..a270da08d2 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/api_memory.go b/intersight_gosdk/api_memory.go index 6e36fc4e1a..22f031df42 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/api_meraki.go b/intersight_gosdk/api_meraki.go index e9e221faa1..5558632151 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/api_meta.go b/intersight_gosdk/api_meta.go index 153ba9c15f..f01f03f1af 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/api_metrics.go b/intersight_gosdk/api_metrics.go index e97e41ce0b..ab3d8b4a4c 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/api_monitoring.go b/intersight_gosdk/api_monitoring.go index 9676f768cc..04039b01f6 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/api_network.go b/intersight_gosdk/api_network.go index 60a634729f..fc561d451b 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/api_networkconfig.go b/intersight_gosdk/api_networkconfig.go index b2e56fbc02..5eba0462be 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/api_niaapi.go b/intersight_gosdk/api_niaapi.go index 9ac708001c..1826f96bc2 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/api_niatelemetry.go b/intersight_gosdk/api_niatelemetry.go index d9588f2f12..a3ac1b6bf5 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/api_notification.go b/intersight_gosdk/api_notification.go index 6d36e61061..d0b3a8e301 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/api_ntp.go b/intersight_gosdk/api_ntp.go index 9d8004568f..888251771e 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/api_oauth.go b/intersight_gosdk/api_oauth.go index 4ff626ffc8..3b1c401e35 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/api_openapi.go b/intersight_gosdk/api_openapi.go index 811d8e8039..9ed3961357 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/api_oprs.go b/intersight_gosdk/api_oprs.go index 77fba42bed..128b8e92b0 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/api_organization.go b/intersight_gosdk/api_organization.go index cd87010782..222591e93b 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/api_os.go b/intersight_gosdk/api_os.go index 4508a88022..488bcfc5ee 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/api_partnerintegration.go b/intersight_gosdk/api_partnerintegration.go index 39d2b057c3..39eaecec10 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/api_pci.go b/intersight_gosdk/api_pci.go index 628a9b5eb7..83429d4312 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/api_port.go b/intersight_gosdk/api_port.go index 660730304a..72378ae4a9 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/api_power.go b/intersight_gosdk/api_power.go index 9d8cdf08c2..39106cd617 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/api_processor.go b/intersight_gosdk/api_processor.go index 966029c5c7..595e1d0cfb 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/api_rack.go b/intersight_gosdk/api_rack.go index 5a073f31e4..6a10db2f5a 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/api_recommendation.go b/intersight_gosdk/api_recommendation.go index 8abc460022..e29d857ca1 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/api_recovery.go b/intersight_gosdk/api_recovery.go index faccc83f5b..03980955a3 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/api_resource.go b/intersight_gosdk/api_resource.go index 711088d81d..a29f358d16 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/api_resourcepool.go b/intersight_gosdk/api_resourcepool.go index 378e46f320..b1a9a15bd1 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/api_rproxy.go b/intersight_gosdk/api_rproxy.go index 12347b4d42..a1bf717000 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/api_scheduler.go b/intersight_gosdk/api_scheduler.go index 29377e8603..9b6d195dd7 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/api_sdaaci.go b/intersight_gosdk/api_sdaaci.go index 441b2f61ae..7b2cc446e6 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/api_sdcard.go b/intersight_gosdk/api_sdcard.go index a5ca8fa429..ea7b8dc00d 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/api_search.go b/intersight_gosdk/api_search.go index 0d17cd9491..d566f44faa 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/api_security.go b/intersight_gosdk/api_security.go index 0366b03f37..7adf44d382 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/api_server.go b/intersight_gosdk/api_server.go index a8a6cc7e72..7b59e941c8 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/api_servicenow.go b/intersight_gosdk/api_servicenow.go index c11022c78f..4ceeffd335 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/api_smtp.go b/intersight_gosdk/api_smtp.go index 8bb4b2f464..97a126e042 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/api_snmp.go b/intersight_gosdk/api_snmp.go index a0b6927cfb..c1356ffd4c 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/api_software.go b/intersight_gosdk/api_software.go index 64516cac9c..109a7c1df7 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/api_softwarerepository.go b/intersight_gosdk/api_softwarerepository.go index 727f501834..9d94b76b83 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/api_sol.go b/intersight_gosdk/api_sol.go index 98d1648e03..fc9f550b54 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/api_ssh.go b/intersight_gosdk/api_ssh.go index d69568e8a9..feb298df4a 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/api_storage.go b/intersight_gosdk/api_storage.go index d2483ceaa7..7a2535751c 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/api_syslog.go b/intersight_gosdk/api_syslog.go index 3fcc9bf803..1b10ef5b1b 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/api_tam.go b/intersight_gosdk/api_tam.go index 1ac271b9fe..aedaee40b2 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/api_task.go b/intersight_gosdk/api_task.go index b86ce073a0..ab7fd1d78b 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/api_techsupportmanagement.go b/intersight_gosdk/api_techsupportmanagement.go index a3b6ab4d68..f391d81451 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/api_telemetry.go b/intersight_gosdk/api_telemetry.go index 20d0d19dd9..047f7213fb 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/api_terminal.go b/intersight_gosdk/api_terminal.go index 4dfc5b76f6..25fb961e60 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/api_terraform.go b/intersight_gosdk/api_terraform.go index ff83e7e2aa..f8732caaa4 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/api_thermal.go b/intersight_gosdk/api_thermal.go index 9dc69a0c36..8caa272648 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/api_top.go b/intersight_gosdk/api_top.go index 332cd552fa..8171660285 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/api_ucsd.go b/intersight_gosdk/api_ucsd.go index 77f1a95c72..86754990f0 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/api_uuidpool.go b/intersight_gosdk/api_uuidpool.go index b0b3993663..0187e6c663 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/api_view.go b/intersight_gosdk/api_view.go index 7a6d996a28..a7fd76814c 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/api_virtualization.go b/intersight_gosdk/api_virtualization.go index 71b8e5d5b2..07f73b7e74 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/api_vmedia.go b/intersight_gosdk/api_vmedia.go index 8fad50994f..c3148d5720 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/api_vmrc.go b/intersight_gosdk/api_vmrc.go index 3127fa67ab..301666e032 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/api_vnic.go b/intersight_gosdk/api_vnic.go index b9e30ece6f..cfb31bfad8 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/api_vrf.go b/intersight_gosdk/api_vrf.go index dafaef1195..2eb4e346e1 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/api_workflow.go b/intersight_gosdk/api_workflow.go index f4f9358949..8283d046a4 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/api_workspace.go b/intersight_gosdk/api_workspace.go index d62c9acbb7..add0732018 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/client.go b/intersight_gosdk/client.go index c2893c140a..ff942f3490 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-18012 +API version: 1.0.11-18369 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-18012 +// APIClient manages communication with the Cisco Intersight API v1.0.11-18369 // In most cases there should be only one, shared, APIClient. type APIClient struct { cfg *Configuration @@ -97,6 +97,8 @@ type APIClient struct { DnacApi *DnacApiService + EnergyApi *EnergyApiService + EquipmentApi *EquipmentApiService EtherApi *EtherApiService @@ -313,6 +315,7 @@ func NewAPIClient(cfg *Configuration) *APIClient { c.CrdApi = (*CrdApiService)(&c.common) c.DeviceconnectorApi = (*DeviceconnectorApiService)(&c.common) c.DnacApi = (*DnacApiService)(&c.common) + c.EnergyApi = (*EnergyApiService)(&c.common) c.EquipmentApi = (*EquipmentApiService)(&c.common) c.EtherApi = (*EtherApiService)(&c.common) c.ExternalsiteApi = (*ExternalsiteApiService)(&c.common) diff --git a/intersight_gosdk/configuration.go b/intersight_gosdk/configuration.go index 583296d80e..e3b54c2281 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-18012 +API version: 1.0.11-18369 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.18012/go", + UserAgent: "OpenAPI-Generator/1.0.11.18369/go", Debug: false, Servers: ServerConfigurations{ { diff --git a/intersight_gosdk/docs/CapabilityAdapterUpdateConstraintMeta.md b/intersight_gosdk/docs/CapabilityAdapterUpdateConstraintMeta.md index 9266811ee7..7e340aa40c 100644 --- a/intersight_gosdk/docs/CapabilityAdapterUpdateConstraintMeta.md +++ b/intersight_gosdk/docs/CapabilityAdapterUpdateConstraintMeta.md @@ -4,15 +4,12 @@ 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 "capability.AdapterUpdateConstraintMeta"] -**ObjectType** | **string** | The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. | [default to "capability.AdapterUpdateConstraintMeta"] -**SupportedPlatform** | Pointer to **string** | Platform for which the constraint is to be enforced. | [optional] [readonly] ## Methods ### NewCapabilityAdapterUpdateConstraintMeta -`func NewCapabilityAdapterUpdateConstraintMeta(classId string, objectType string, ) *CapabilityAdapterUpdateConstraintMeta` +`func NewCapabilityAdapterUpdateConstraintMeta() *CapabilityAdapterUpdateConstraintMeta` NewCapabilityAdapterUpdateConstraintMeta instantiates a new CapabilityAdapterUpdateConstraintMeta object This constructor will assign default values to properties that have it defined, @@ -27,71 +24,6 @@ NewCapabilityAdapterUpdateConstraintMetaWithDefaults instantiates a new Capabili This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set -### GetClassId - -`func (o *CapabilityAdapterUpdateConstraintMeta) GetClassId() string` - -GetClassId returns the ClassId field if non-nil, zero value otherwise. - -### GetClassIdOk - -`func (o *CapabilityAdapterUpdateConstraintMeta) GetClassIdOk() (*string, bool)` - -GetClassIdOk returns a tuple with the ClassId field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetClassId - -`func (o *CapabilityAdapterUpdateConstraintMeta) SetClassId(v string)` - -SetClassId sets ClassId field to given value. - - -### GetObjectType - -`func (o *CapabilityAdapterUpdateConstraintMeta) GetObjectType() string` - -GetObjectType returns the ObjectType field if non-nil, zero value otherwise. - -### GetObjectTypeOk - -`func (o *CapabilityAdapterUpdateConstraintMeta) GetObjectTypeOk() (*string, bool)` - -GetObjectTypeOk returns a tuple with the ObjectType field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetObjectType - -`func (o *CapabilityAdapterUpdateConstraintMeta) SetObjectType(v string)` - -SetObjectType sets ObjectType field to given value. - - -### GetSupportedPlatform - -`func (o *CapabilityAdapterUpdateConstraintMeta) GetSupportedPlatform() string` - -GetSupportedPlatform returns the SupportedPlatform field if non-nil, zero value otherwise. - -### GetSupportedPlatformOk - -`func (o *CapabilityAdapterUpdateConstraintMeta) GetSupportedPlatformOk() (*string, bool)` - -GetSupportedPlatformOk returns a tuple with the SupportedPlatform field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetSupportedPlatform - -`func (o *CapabilityAdapterUpdateConstraintMeta) SetSupportedPlatform(v string)` - -SetSupportedPlatform sets SupportedPlatform field to given value. - -### HasSupportedPlatform - -`func (o *CapabilityAdapterUpdateConstraintMeta) HasSupportedPlatform() bool` - -HasSupportedPlatform returns a boolean if a field has been set. - [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/intersight_gosdk/docs/CapabilityUpdateConstraintMeta.md b/intersight_gosdk/docs/CapabilityUpdateConstraintMeta.md index 25a7fa3558..503512e836 100644 --- a/intersight_gosdk/docs/CapabilityUpdateConstraintMeta.md +++ b/intersight_gosdk/docs/CapabilityUpdateConstraintMeta.md @@ -11,7 +11,6 @@ Name | Type | Description | Notes **Model** | Pointer to **string** | Model of the inventory unit which will be supported in firmware operation. | [optional] [readonly] **PlatformType** | Pointer to **string** | Platform type for which the constraint is to be enforced. | [optional] [readonly] **ServerSpecificConstraint** | Pointer to [**[]CapabilityServerComponentConstraint**](CapabilityServerComponentConstraint.md) | | [optional] -**SupportedPlatforms** | Pointer to **[]string** | | [optional] ## Methods @@ -207,41 +206,6 @@ HasServerSpecificConstraint returns a boolean if a field has been set. `func (o *CapabilityUpdateConstraintMeta) UnsetServerSpecificConstraint()` UnsetServerSpecificConstraint ensures that no value is present for ServerSpecificConstraint, not even an explicit nil -### GetSupportedPlatforms - -`func (o *CapabilityUpdateConstraintMeta) GetSupportedPlatforms() []string` - -GetSupportedPlatforms returns the SupportedPlatforms field if non-nil, zero value otherwise. - -### GetSupportedPlatformsOk - -`func (o *CapabilityUpdateConstraintMeta) GetSupportedPlatformsOk() (*[]string, bool)` - -GetSupportedPlatformsOk returns a tuple with the SupportedPlatforms field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetSupportedPlatforms - -`func (o *CapabilityUpdateConstraintMeta) SetSupportedPlatforms(v []string)` - -SetSupportedPlatforms sets SupportedPlatforms field to given value. - -### HasSupportedPlatforms - -`func (o *CapabilityUpdateConstraintMeta) HasSupportedPlatforms() bool` - -HasSupportedPlatforms returns a boolean if a field has been set. - -### SetSupportedPlatformsNil - -`func (o *CapabilityUpdateConstraintMeta) SetSupportedPlatformsNil(b bool)` - - SetSupportedPlatformsNil sets the value for SupportedPlatforms to be an explicit nil - -### UnsetSupportedPlatforms -`func (o *CapabilityUpdateConstraintMeta) UnsetSupportedPlatforms()` - -UnsetSupportedPlatforms ensures that no value is present for SupportedPlatforms, not even an explicit nil [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/intersight_gosdk/docs/CatalystsdwanVedgeDevice.md b/intersight_gosdk/docs/CatalystsdwanVedgeDevice.md index 28d64d6c4a..213a37b2b5 100644 --- a/intersight_gosdk/docs/CatalystsdwanVedgeDevice.md +++ b/intersight_gosdk/docs/CatalystsdwanVedgeDevice.md @@ -7,6 +7,7 @@ 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 "catalystsdwan.VedgeDevice"] **ObjectType** | **string** | The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. | [default to "catalystsdwan.VedgeDevice"] **ConfigStatusMessage** | Pointer to **string** | The Catalyst SDWAN device config status message. | [optional] +**DeviceId** | Pointer to **string** | The Catalyst SDWAN device id. | [optional] **DeviceState** | Pointer to **string** | The Catalyst SDWAN device state. | [optional] **HostName** | Pointer to **string** | The Catalyst SDWAN device host name. | [optional] **PlatformFamily** | Pointer to **string** | The Catalyst SDWAN device platform family. | [optional] @@ -103,6 +104,31 @@ SetConfigStatusMessage sets ConfigStatusMessage field to given value. HasConfigStatusMessage returns a boolean if a field has been set. +### GetDeviceId + +`func (o *CatalystsdwanVedgeDevice) GetDeviceId() string` + +GetDeviceId returns the DeviceId field if non-nil, zero value otherwise. + +### GetDeviceIdOk + +`func (o *CatalystsdwanVedgeDevice) GetDeviceIdOk() (*string, bool)` + +GetDeviceIdOk returns a tuple with the DeviceId field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetDeviceId + +`func (o *CatalystsdwanVedgeDevice) SetDeviceId(v string)` + +SetDeviceId sets DeviceId field to given value. + +### HasDeviceId + +`func (o *CatalystsdwanVedgeDevice) HasDeviceId() bool` + +HasDeviceId returns a boolean if a field has been set. + ### GetDeviceState `func (o *CatalystsdwanVedgeDevice) GetDeviceState() string` diff --git a/intersight_gosdk/docs/ComputeServerSetting.md b/intersight_gosdk/docs/ComputeServerSetting.md index db935803a8..7439b338c7 100644 --- a/intersight_gosdk/docs/ComputeServerSetting.md +++ b/intersight_gosdk/docs/ComputeServerSetting.md @@ -20,6 +20,7 @@ Name | Type | Description | Notes **OneTimeBootDevice** | Pointer to **string** | The name of the device chosen by user for configuring One-Time Boot device. | [optional] **PersistentMemoryOperation** | Pointer to [**NullableComputePersistentMemoryOperation**](ComputePersistentMemoryOperation.md) | | [optional] **PersonalitySetting** | Pointer to [**NullableComputePersonalitySetting**](ComputePersonalitySetting.md) | | [optional] +**ResetMemoryErrors** | Pointer to **string** | Reset Correctable and Uncorrectable ECC errors on all the DIMMs present in the server. * `Ready` - Reset memory errors operation is allowed on the server in this state. * `Reset` - Trigger reset memory errors operation on a server. | [optional] [default to "Ready"] **ServerConfig** | Pointer to [**NullableComputeServerConfig**](ComputeServerConfig.md) | | [optional] **ServerOpStatus** | Pointer to [**[]ComputeServerOpStatus**](ComputeServerOpStatus.md) | | [optional] **StorageControllerOperation** | Pointer to [**NullableComputeStorageControllerOperation**](ComputeStorageControllerOperation.md) | | [optional] @@ -472,6 +473,31 @@ HasPersonalitySetting returns a boolean if a field has been set. `func (o *ComputeServerSetting) UnsetPersonalitySetting()` UnsetPersonalitySetting ensures that no value is present for PersonalitySetting, not even an explicit nil +### GetResetMemoryErrors + +`func (o *ComputeServerSetting) GetResetMemoryErrors() string` + +GetResetMemoryErrors returns the ResetMemoryErrors field if non-nil, zero value otherwise. + +### GetResetMemoryErrorsOk + +`func (o *ComputeServerSetting) GetResetMemoryErrorsOk() (*string, bool)` + +GetResetMemoryErrorsOk returns a tuple with the ResetMemoryErrors field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetResetMemoryErrors + +`func (o *ComputeServerSetting) SetResetMemoryErrors(v string)` + +SetResetMemoryErrors sets ResetMemoryErrors field to given value. + +### HasResetMemoryErrors + +`func (o *ComputeServerSetting) HasResetMemoryErrors() bool` + +HasResetMemoryErrors returns a boolean if a field has been set. + ### GetServerConfig `func (o *ComputeServerSetting) GetServerConfig() ComputeServerConfig` diff --git a/intersight_gosdk/docs/EnergyApi.md b/intersight_gosdk/docs/EnergyApi.md new file mode 100644 index 0000000000..a3b0f730d2 --- /dev/null +++ b/intersight_gosdk/docs/EnergyApi.md @@ -0,0 +1,77 @@ +# \EnergyApi + +All URIs are relative to *https://intersight.com* + +Method | HTTP request | Description +------------- | ------------- | ------------- +[**CreateEnergyMetrics**](EnergyApi.md#CreateEnergyMetrics) | **Post** /api/v1/energy/Metrics | Create a 'energy.Metrics' resource. + + + +## CreateEnergyMetrics + +> EnergyMetrics CreateEnergyMetrics(ctx).EnergyMetrics(energyMetrics).IfMatch(ifMatch).IfNoneMatch(ifNoneMatch).Execute() + +Create a 'energy.Metrics' resource. + +### Example + +```go +package main + +import ( + "context" + "fmt" + "os" + openapiclient "github.com/CiscoDevNet/intersight-go" +) + +func main() { + energyMetrics := *openapiclient.NewEnergyMetrics("ClassId_example", "ObjectType_example") // EnergyMetrics | The 'energy.Metrics' resource to create. + ifMatch := "ifMatch_example" // string | For methods that apply server-side changes, and in particular for PUT, If-Match can be used to prevent the lost update problem. It can check if the modification of a resource that the user wants to upload will not override another change that has been done since the original resource was fetched. If the request cannot be fulfilled, the 412 (Precondition Failed) response is returned. When modifying a resource using POST or PUT, the If-Match header must be set to the value of the resource ModTime property after which no lost update problem should occur. For example, a client send a GET request to obtain a resource, which includes the ModTime property. The ModTime indicates the last time the resource was created or modified. The client then sends a POST or PUT request with the If-Match header set to the ModTime property of the resource as obtained in the GET request. (optional) + ifNoneMatch := "ifNoneMatch_example" // string | For methods that apply server-side changes, If-None-Match used with the * value can be used to create a resource not known to exist, guaranteeing that another resource creation didn't happen before, losing the data of the previous put. The request will be processed only if the eventually existing resource's ETag doesn't match any of the values listed. Otherwise, the status code 412 (Precondition Failed) is used. The asterisk is a special value representing any resource. It is only useful when creating a resource, usually with PUT, to check if another resource with the identity has already been created before. The comparison with the stored ETag uses the weak comparison algorithm, meaning two resources are considered identical if the content is equivalent - they don't have to be identical byte for byte. (optional) + + configuration := openapiclient.NewConfiguration() + apiClient := openapiclient.NewAPIClient(configuration) + resp, r, err := apiClient.EnergyApi.CreateEnergyMetrics(context.Background()).EnergyMetrics(energyMetrics).IfMatch(ifMatch).IfNoneMatch(ifNoneMatch).Execute() + if err != nil { + fmt.Fprintf(os.Stderr, "Error when calling `EnergyApi.CreateEnergyMetrics``: %v\n", err) + fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r) + } + // response from `CreateEnergyMetrics`: EnergyMetrics + fmt.Fprintf(os.Stdout, "Response from `EnergyApi.CreateEnergyMetrics`: %v\n", resp) +} +``` + +### Path Parameters + + + +### Other Parameters + +Other parameters are passed through a pointer to a apiCreateEnergyMetricsRequest struct via the builder pattern + + +Name | Type | Description | Notes +------------- | ------------- | ------------- | ------------- + **energyMetrics** | [**EnergyMetrics**](EnergyMetrics.md) | The 'energy.Metrics' resource to create. | + **ifMatch** | **string** | For methods that apply server-side changes, and in particular for PUT, If-Match can be used to prevent the lost update problem. It can check if the modification of a resource that the user wants to upload will not override another change that has been done since the original resource was fetched. If the request cannot be fulfilled, the 412 (Precondition Failed) response is returned. When modifying a resource using POST or PUT, the If-Match header must be set to the value of the resource ModTime property after which no lost update problem should occur. For example, a client send a GET request to obtain a resource, which includes the ModTime property. The ModTime indicates the last time the resource was created or modified. The client then sends a POST or PUT request with the If-Match header set to the ModTime property of the resource as obtained in the GET request. | + **ifNoneMatch** | **string** | For methods that apply server-side changes, If-None-Match used with the * value can be used to create a resource not known to exist, guaranteeing that another resource creation didn't happen before, losing the data of the previous put. The request will be processed only if the eventually existing resource's ETag doesn't match any of the values listed. Otherwise, the status code 412 (Precondition Failed) is used. The asterisk is a special value representing any resource. It is only useful when creating a resource, usually with PUT, to check if another resource with the identity has already been created before. The comparison with the stored ETag uses the weak comparison algorithm, meaning two resources are considered identical if the content is equivalent - they don't have to be identical byte for byte. | + +### Return type + +[**EnergyMetrics**](EnergyMetrics.md) + +### Authorization + +[http_signature](../README.md#http_signature), [cookieAuth](../README.md#cookieAuth), [oAuth2](../README.md#oAuth2), [oAuth2](../README.md#oAuth2) + +### HTTP request headers + +- **Content-Type**: application/json +- **Accept**: application/json + +[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) +[[Back to Model list]](../README.md#documentation-for-models) +[[Back to README]](../README.md) + diff --git a/intersight_gosdk/docs/EnergyMetrics.md b/intersight_gosdk/docs/EnergyMetrics.md new file mode 100644 index 0000000000..1ebbfe2fd8 --- /dev/null +++ b/intersight_gosdk/docs/EnergyMetrics.md @@ -0,0 +1,30 @@ +# EnergyMetrics + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- + +## Methods + +### NewEnergyMetrics + +`func NewEnergyMetrics() *EnergyMetrics` + +NewEnergyMetrics instantiates a new EnergyMetrics object +This constructor will assign default values to properties that have it defined, +and makes sure properties required by API are set, but the set of arguments +will change when the set of required properties is changed + +### NewEnergyMetricsWithDefaults + +`func NewEnergyMetricsWithDefaults() *EnergyMetrics` + +NewEnergyMetricsWithDefaults instantiates a new EnergyMetrics object +This constructor will only assign default values to properties that have it defined, +but it doesn't guarantee that properties required by API are set + + +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) + + diff --git a/intersight_gosdk/docs/FabricVlanSettings.md b/intersight_gosdk/docs/FabricVlanSettings.md index 89fa57bbc7..20c6fb15b5 100644 --- a/intersight_gosdk/docs/FabricVlanSettings.md +++ b/intersight_gosdk/docs/FabricVlanSettings.md @@ -7,7 +7,7 @@ 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 "fabric.VlanSettings"] **ObjectType** | **string** | The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. | [default to "fabric.VlanSettings"] **AllowedVlans** | Pointer to **string** | Allowed VLAN IDs of the virtual interface. A list of comma separated VLAN ids and/or VLAN id ranges. | [optional] -**NativeVlan** | Pointer to **int64** | 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. | [optional] [default to 1] +**NativeVlan** | Pointer to **int64** | Native VLAN ID of the virtual interface or the corresponding Vethernet on the peer Fabric Interconnect to which the virtual interface is connected. Native VLAN ID maps all incoming untagged traffic i.e. packets without a VLAN tag to the native VLAN for switching purposes. If the native VLAN is not a part of the allowed VLANs, it will automatically be added to the list of allowed VLANs. A native VLAN ID of 0 will indicate to the system to use the system default native VLAN ID and will also prevent native VLAN from being added to the allowed VLAN list. | [optional] [default to 0] **QinqEnabled** | Pointer to **bool** | Enable QinQ (802.1Q-in-802.1Q) Tunneling on the vNIC. | [optional] [default to false] **QinqVlan** | Pointer to **int64** | Select the VLAN ID for VIC QinQ (802.1Q-in-802.1Q) Tunneling. | [optional] [default to 2] diff --git a/intersight_gosdk/docs/IpmioverlanPolicy.md b/intersight_gosdk/docs/IpmioverlanPolicy.md index e3af7d406e..1070241e15 100644 --- a/intersight_gosdk/docs/IpmioverlanPolicy.md +++ b/intersight_gosdk/docs/IpmioverlanPolicy.md @@ -7,9 +7,9 @@ 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 "ipmioverlan.Policy"] **ObjectType** | **string** | The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. | [default to "ipmioverlan.Policy"] **Enabled** | Pointer to **bool** | State of the IPMI Over LAN service on the endpoint. | [optional] [default to true] -**EncryptionKey** | Pointer to **string** | 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. | [optional] +**EncryptionKey** | Pointer to **string** | 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 C-Series servers. FI-attached C-Series servers with firmware at minimum of 4.2.3a support this configuration. B/X-Series 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. | [optional] **IsEncryptionKeySet** | Pointer to **bool** | Indicates whether the value of the 'encryptionKey' property has been set. | [optional] [readonly] [default to false] -**Privilege** | Pointer to **string** | 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. | [optional] [default to "admin"] +**Privilege** | Pointer to **string** | The highest privilege level that can be assigned to an IPMI session on a server. This configuration is supported by all Standalone C-Series servers. FI-attached C-Series servers with firmware at minimum of 4.2.3a support this configuration. B/X-Series servers with firmware at minimum of 5.1.0.x support this configuration. Privilege level user is not supported for B/X-Series 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. | [optional] [default to "admin"] **Organization** | Pointer to [**NullableOrganizationOrganizationRelationship**](OrganizationOrganizationRelationship.md) | | [optional] **Profiles** | Pointer to [**[]PolicyAbstractConfigProfileRelationship**](PolicyAbstractConfigProfileRelationship.md) | An array of relationships to policyAbstractConfigProfile resources. | [optional] diff --git a/intersight_gosdk/docs/IpmioverlanPolicyInventory.md b/intersight_gosdk/docs/IpmioverlanPolicyInventory.md index 84b3a8f1f4..6a048618d0 100644 --- a/intersight_gosdk/docs/IpmioverlanPolicyInventory.md +++ b/intersight_gosdk/docs/IpmioverlanPolicyInventory.md @@ -7,9 +7,9 @@ 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 "ipmioverlan.PolicyInventory"] **ObjectType** | **string** | The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. | [default to "ipmioverlan.PolicyInventory"] **Enabled** | Pointer to **bool** | State of the IPMI Over LAN service on the endpoint. | [optional] [readonly] [default to true] -**EncryptionKey** | Pointer to **string** | 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. | [optional] +**EncryptionKey** | Pointer to **string** | 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 C-Series servers. FI-attached C-Series servers with firmware at minimum of 4.2.3a support this configuration. B/X-Series 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. | [optional] **IsEncryptionKeySet** | Pointer to **bool** | Indicates whether the value of the 'encryptionKey' property has been set. | [optional] [readonly] [default to false] -**Privilege** | Pointer to **string** | 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. | [optional] [readonly] [default to "admin"] +**Privilege** | Pointer to **string** | The highest privilege level that can be assigned to an IPMI session on a server. This configuration is supported by all Standalone C-Series servers. FI-attached C-Series servers with firmware at minimum of 4.2.3a support this configuration. B/X-Series servers with firmware at minimum of 5.1.0.x support this configuration. Privilege level user is not supported for B/X-Series 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. | [optional] [readonly] [default to "admin"] **TargetMo** | Pointer to [**NullableMoBaseMoRelationship**](MoBaseMoRelationship.md) | | [optional] ## Methods diff --git a/intersight_gosdk/docs/SchedulerBaseMonthlyCadenceParams.md b/intersight_gosdk/docs/SchedulerBaseMonthlyCadenceParams.md index 347a5258bf..b671b096bc 100644 --- a/intersight_gosdk/docs/SchedulerBaseMonthlyCadenceParams.md +++ b/intersight_gosdk/docs/SchedulerBaseMonthlyCadenceParams.md @@ -4,11 +4,10 @@ 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. The enum values provides the list of concrete types that can be instantiated from this abstract type. | -**ObjectType** | **string** | The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. The enum values provides the list of concrete types that can be instantiated from this abstract type. | +**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. The enum values provides the list of concrete types that can be instantiated from this abstract type. | [default to "scheduler.MonthlyCadenceParams"] +**ObjectType** | **string** | The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. The enum values provides the list of concrete types that can be instantiated from this abstract type. | [default to "scheduler.MonthlyCadenceParams"] **CustomDayOfMonth** | Pointer to **string** | Significant business days, such as days when reports are generated for analysis. * `None` - Placeholder. One of the following two fields must be selected. * `FirstWeekDay` - First week day of the month. * `MonthLastDay` - The last day of the month. | [optional] [default to "None"] **DayOfMonth** | Pointer to **[]int64** | | [optional] -**WeekDayFormat** | Pointer to [**NullableSchedulerMonthlyWeekDayFormat**](SchedulerMonthlyWeekDayFormat.md) | | [optional] ## Methods @@ -129,41 +128,6 @@ HasDayOfMonth returns a boolean if a field has been set. `func (o *SchedulerBaseMonthlyCadenceParams) UnsetDayOfMonth()` UnsetDayOfMonth ensures that no value is present for DayOfMonth, not even an explicit nil -### GetWeekDayFormat - -`func (o *SchedulerBaseMonthlyCadenceParams) GetWeekDayFormat() SchedulerMonthlyWeekDayFormat` - -GetWeekDayFormat returns the WeekDayFormat field if non-nil, zero value otherwise. - -### GetWeekDayFormatOk - -`func (o *SchedulerBaseMonthlyCadenceParams) GetWeekDayFormatOk() (*SchedulerMonthlyWeekDayFormat, bool)` - -GetWeekDayFormatOk returns a tuple with the WeekDayFormat field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetWeekDayFormat - -`func (o *SchedulerBaseMonthlyCadenceParams) SetWeekDayFormat(v SchedulerMonthlyWeekDayFormat)` - -SetWeekDayFormat sets WeekDayFormat field to given value. - -### HasWeekDayFormat - -`func (o *SchedulerBaseMonthlyCadenceParams) HasWeekDayFormat() bool` - -HasWeekDayFormat returns a boolean if a field has been set. - -### SetWeekDayFormatNil - -`func (o *SchedulerBaseMonthlyCadenceParams) SetWeekDayFormatNil(b bool)` - - SetWeekDayFormatNil sets the value for WeekDayFormat to be an explicit nil - -### UnsetWeekDayFormat -`func (o *SchedulerBaseMonthlyCadenceParams) UnsetWeekDayFormat()` - -UnsetWeekDayFormat ensures that no value is present for WeekDayFormat, not even an explicit nil [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/intersight_gosdk/docs/SchedulerBaseScheduleParams.md b/intersight_gosdk/docs/SchedulerBaseScheduleParams.md index 7ee5ff1ecd..ad6cf48e20 100644 --- a/intersight_gosdk/docs/SchedulerBaseScheduleParams.md +++ b/intersight_gosdk/docs/SchedulerBaseScheduleParams.md @@ -6,7 +6,7 @@ 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. The enum values provides the list of concrete types that can be instantiated from this abstract type. | **ObjectType** | **string** | The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. The enum values provides the list of concrete types that can be instantiated from this abstract type. | -**StartTime** | Pointer to **time.Time** | The schedule start time. A future time is required. When the start time is updated, it is mandatory to specify the corresponding timeZone property as well. | [optional] +**StartTime** | Pointer to **time.Time** | The schedule start time. A future time is required. | [optional] **TimeZone** | Pointer to **string** | The timezone for the startTime specified. It is a mandatory input property when start time is provided. * `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` - | [optional] [default to "Pacific/Niue"] ## Methods diff --git a/intersight_gosdk/docs/SchedulerDailyCadenceParams.md b/intersight_gosdk/docs/SchedulerDailyCadenceParams.md index 8265780f5f..0f6fd3213a 100644 --- a/intersight_gosdk/docs/SchedulerDailyCadenceParams.md +++ b/intersight_gosdk/docs/SchedulerDailyCadenceParams.md @@ -6,7 +6,7 @@ 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 "scheduler.DailyCadenceParams"] **ObjectType** | **string** | The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. | [default to "scheduler.DailyCadenceParams"] -**RunEvery** | Pointer to **int64** | Run every day by default if not specified. | [optional] +**RunEvery** | Pointer to **int64** | Run every day by default if not specified. | [optional] [default to 1] ## Methods diff --git a/intersight_gosdk/docs/SchedulerEveryCadenceParams.md b/intersight_gosdk/docs/SchedulerEveryCadenceParams.md index 3bb38136c7..b05cc0a63e 100644 --- a/intersight_gosdk/docs/SchedulerEveryCadenceParams.md +++ b/intersight_gosdk/docs/SchedulerEveryCadenceParams.md @@ -6,7 +6,7 @@ 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 "scheduler.EveryCadenceParams"] **ObjectType** | **string** | The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. | [default to "scheduler.EveryCadenceParams"] -**Interval** | Pointer to **string** | An interval specified as string where valid time units are \"ns\", \"us\", \"ms\", \"s\", \"m\", \"h\". The calender calculations use a gregorian calendar with no leap seconds. The default is 24h. | [optional] +**Interval** | Pointer to **string** | An interval specified as string where valid time units are \"s\", \"m\", \"h\". The minimum interval is 15 minutes and the maximum is 24 hours. | [optional] ## Methods diff --git a/intersight_gosdk/docs/SchedulerMonthlyWeekDayFormat.md b/intersight_gosdk/docs/SchedulerMonthlyWeekDayFormat.md deleted file mode 100644 index 71ee24c8d9..0000000000 --- a/intersight_gosdk/docs/SchedulerMonthlyWeekDayFormat.md +++ /dev/null @@ -1,92 +0,0 @@ -# SchedulerMonthlyWeekDayFormat - -## Properties - -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**DayOfWeek** | Pointer to **[]string** | | [optional] -**WeekOfMonth** | Pointer to **int64** | The week of the month, 1 through 5. | [optional] - -## Methods - -### NewSchedulerMonthlyWeekDayFormat - -`func NewSchedulerMonthlyWeekDayFormat() *SchedulerMonthlyWeekDayFormat` - -NewSchedulerMonthlyWeekDayFormat instantiates a new SchedulerMonthlyWeekDayFormat object -This constructor will assign default values to properties that have it defined, -and makes sure properties required by API are set, but the set of arguments -will change when the set of required properties is changed - -### NewSchedulerMonthlyWeekDayFormatWithDefaults - -`func NewSchedulerMonthlyWeekDayFormatWithDefaults() *SchedulerMonthlyWeekDayFormat` - -NewSchedulerMonthlyWeekDayFormatWithDefaults instantiates a new SchedulerMonthlyWeekDayFormat object -This constructor will only assign default values to properties that have it defined, -but it doesn't guarantee that properties required by API are set - -### GetDayOfWeek - -`func (o *SchedulerMonthlyWeekDayFormat) GetDayOfWeek() []string` - -GetDayOfWeek returns the DayOfWeek field if non-nil, zero value otherwise. - -### GetDayOfWeekOk - -`func (o *SchedulerMonthlyWeekDayFormat) GetDayOfWeekOk() (*[]string, bool)` - -GetDayOfWeekOk returns a tuple with the DayOfWeek field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetDayOfWeek - -`func (o *SchedulerMonthlyWeekDayFormat) SetDayOfWeek(v []string)` - -SetDayOfWeek sets DayOfWeek field to given value. - -### HasDayOfWeek - -`func (o *SchedulerMonthlyWeekDayFormat) HasDayOfWeek() bool` - -HasDayOfWeek returns a boolean if a field has been set. - -### SetDayOfWeekNil - -`func (o *SchedulerMonthlyWeekDayFormat) SetDayOfWeekNil(b bool)` - - SetDayOfWeekNil sets the value for DayOfWeek to be an explicit nil - -### UnsetDayOfWeek -`func (o *SchedulerMonthlyWeekDayFormat) UnsetDayOfWeek()` - -UnsetDayOfWeek ensures that no value is present for DayOfWeek, not even an explicit nil -### GetWeekOfMonth - -`func (o *SchedulerMonthlyWeekDayFormat) GetWeekOfMonth() int64` - -GetWeekOfMonth returns the WeekOfMonth field if non-nil, zero value otherwise. - -### GetWeekOfMonthOk - -`func (o *SchedulerMonthlyWeekDayFormat) GetWeekOfMonthOk() (*int64, bool)` - -GetWeekOfMonthOk returns a tuple with the WeekOfMonth field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetWeekOfMonth - -`func (o *SchedulerMonthlyWeekDayFormat) SetWeekOfMonth(v int64)` - -SetWeekOfMonth sets WeekOfMonth field to given value. - -### HasWeekOfMonth - -`func (o *SchedulerMonthlyWeekDayFormat) HasWeekOfMonth() bool` - -HasWeekOfMonth returns a boolean if a field has been set. - - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/intersight_gosdk/docs/SchedulerRecurringScheduleParams.md b/intersight_gosdk/docs/SchedulerRecurringScheduleParams.md index 92543b2fe3..1e1d066986 100644 --- a/intersight_gosdk/docs/SchedulerRecurringScheduleParams.md +++ b/intersight_gosdk/docs/SchedulerRecurringScheduleParams.md @@ -4,12 +4,19 @@ 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 "scheduler.RecurringScheduleParams"] +**ObjectType** | **string** | The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. | [default to "scheduler.RecurringScheduleParams"] +**Cadence** | Pointer to **string** | Allowed values for a recurring schedule cadence. * `None` - No value set for the cadence type (Enum value None). * `Every` - Use the 'Every' cadence for tasks that need to be run frequently and are relatively small or quick to execute. This could include tasks such as checking the status of a service every 15 minutes, or updating a counter. * `Daily` - A Daily cadence allows for a scheduled task to be run every day or every n-interval days. * `Weekly` - A Weekly cadence allows for a scheduled task to be run every week or every n-interval weeks on specific days. * `Monthly` - A Montly cadence allows for a scheduled task to be run every month on specific days. | [optional] [default to "None"] +**EndAfterOccurrences** | Pointer to **int64** | Specify the number of occurrences (instead of an end-time) for a recurring schedule. | [optional] +**EndTime** | Pointer to **time.Time** | End time for the recurring schedule. The schedule will not run beyond this time. If using the endAfterOccurrences parameter instead, this field should be set to zero time, i.e, 0001-01-01T00:00:00Z. | [optional] +**FailureThreshold** | Pointer to **int64** | The maximum number of consecutive failures until the recurring scheduled task is suspended by the system. The default is 1. | [optional] [default to 1] +**Params** | Pointer to [**NullableSchedulerBaseCadenceParams**](SchedulerBaseCadenceParams.md) | | [optional] ## Methods ### NewSchedulerRecurringScheduleParams -`func NewSchedulerRecurringScheduleParams() *SchedulerRecurringScheduleParams` +`func NewSchedulerRecurringScheduleParams(classId string, objectType string, ) *SchedulerRecurringScheduleParams` NewSchedulerRecurringScheduleParams instantiates a new SchedulerRecurringScheduleParams object This constructor will assign default values to properties that have it defined, @@ -24,6 +31,181 @@ NewSchedulerRecurringScheduleParamsWithDefaults instantiates a new SchedulerRecu This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set +### GetClassId + +`func (o *SchedulerRecurringScheduleParams) GetClassId() string` + +GetClassId returns the ClassId field if non-nil, zero value otherwise. + +### GetClassIdOk + +`func (o *SchedulerRecurringScheduleParams) GetClassIdOk() (*string, bool)` + +GetClassIdOk returns a tuple with the ClassId field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetClassId + +`func (o *SchedulerRecurringScheduleParams) SetClassId(v string)` + +SetClassId sets ClassId field to given value. + + +### GetObjectType + +`func (o *SchedulerRecurringScheduleParams) GetObjectType() string` + +GetObjectType returns the ObjectType field if non-nil, zero value otherwise. + +### GetObjectTypeOk + +`func (o *SchedulerRecurringScheduleParams) GetObjectTypeOk() (*string, bool)` + +GetObjectTypeOk returns a tuple with the ObjectType field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetObjectType + +`func (o *SchedulerRecurringScheduleParams) SetObjectType(v string)` + +SetObjectType sets ObjectType field to given value. + + +### GetCadence + +`func (o *SchedulerRecurringScheduleParams) GetCadence() string` + +GetCadence returns the Cadence field if non-nil, zero value otherwise. + +### GetCadenceOk + +`func (o *SchedulerRecurringScheduleParams) GetCadenceOk() (*string, bool)` + +GetCadenceOk returns a tuple with the Cadence field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetCadence + +`func (o *SchedulerRecurringScheduleParams) SetCadence(v string)` + +SetCadence sets Cadence field to given value. + +### HasCadence + +`func (o *SchedulerRecurringScheduleParams) HasCadence() bool` + +HasCadence returns a boolean if a field has been set. + +### GetEndAfterOccurrences + +`func (o *SchedulerRecurringScheduleParams) GetEndAfterOccurrences() int64` + +GetEndAfterOccurrences returns the EndAfterOccurrences field if non-nil, zero value otherwise. + +### GetEndAfterOccurrencesOk + +`func (o *SchedulerRecurringScheduleParams) GetEndAfterOccurrencesOk() (*int64, bool)` + +GetEndAfterOccurrencesOk returns a tuple with the EndAfterOccurrences field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetEndAfterOccurrences + +`func (o *SchedulerRecurringScheduleParams) SetEndAfterOccurrences(v int64)` + +SetEndAfterOccurrences sets EndAfterOccurrences field to given value. + +### HasEndAfterOccurrences + +`func (o *SchedulerRecurringScheduleParams) HasEndAfterOccurrences() bool` + +HasEndAfterOccurrences returns a boolean if a field has been set. + +### GetEndTime + +`func (o *SchedulerRecurringScheduleParams) GetEndTime() time.Time` + +GetEndTime returns the EndTime field if non-nil, zero value otherwise. + +### GetEndTimeOk + +`func (o *SchedulerRecurringScheduleParams) GetEndTimeOk() (*time.Time, bool)` + +GetEndTimeOk returns a tuple with the EndTime field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetEndTime + +`func (o *SchedulerRecurringScheduleParams) SetEndTime(v time.Time)` + +SetEndTime sets EndTime field to given value. + +### HasEndTime + +`func (o *SchedulerRecurringScheduleParams) HasEndTime() bool` + +HasEndTime returns a boolean if a field has been set. + +### GetFailureThreshold + +`func (o *SchedulerRecurringScheduleParams) GetFailureThreshold() int64` + +GetFailureThreshold returns the FailureThreshold field if non-nil, zero value otherwise. + +### GetFailureThresholdOk + +`func (o *SchedulerRecurringScheduleParams) GetFailureThresholdOk() (*int64, bool)` + +GetFailureThresholdOk returns a tuple with the FailureThreshold field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetFailureThreshold + +`func (o *SchedulerRecurringScheduleParams) SetFailureThreshold(v int64)` + +SetFailureThreshold sets FailureThreshold field to given value. + +### HasFailureThreshold + +`func (o *SchedulerRecurringScheduleParams) HasFailureThreshold() bool` + +HasFailureThreshold returns a boolean if a field has been set. + +### GetParams + +`func (o *SchedulerRecurringScheduleParams) GetParams() SchedulerBaseCadenceParams` + +GetParams returns the Params field if non-nil, zero value otherwise. + +### GetParamsOk + +`func (o *SchedulerRecurringScheduleParams) GetParamsOk() (*SchedulerBaseCadenceParams, bool)` + +GetParamsOk returns a tuple with the Params field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetParams + +`func (o *SchedulerRecurringScheduleParams) SetParams(v SchedulerBaseCadenceParams)` + +SetParams sets Params field to given value. + +### HasParams + +`func (o *SchedulerRecurringScheduleParams) HasParams() bool` + +HasParams returns a boolean if a field has been set. + +### SetParamsNil + +`func (o *SchedulerRecurringScheduleParams) SetParamsNil(b bool)` + + SetParamsNil sets the value for Params to be an explicit nil + +### UnsetParams +`func (o *SchedulerRecurringScheduleParams) UnsetParams()` + +UnsetParams ensures that no value is present for Params, not even an explicit nil [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/intersight_gosdk/docs/SchedulerRestStimTaskRequest.md b/intersight_gosdk/docs/SchedulerRestStimTaskRequest.md index cbb7feb453..ec08d64109 100644 --- a/intersight_gosdk/docs/SchedulerRestStimTaskRequest.md +++ b/intersight_gosdk/docs/SchedulerRestStimTaskRequest.md @@ -11,7 +11,7 @@ Name | Type | Description | Notes **Method** | Pointer to **string** | The supported values are POST, PUT, DELETE, PATCH. | [optional] **Protocol** | Pointer to **string** | The accepted web protocol values are http and https. | [optional] **Response** | Pointer to **interface{}** | The response obtained for the scheduled API service. | [optional] -**Timeout** | Pointer to **int64** | Upper limit on the execution time of a scheduled task. Helps purge run-away scheduled tasks. | [optional] +**Timeout** | Pointer to **int64** | Upper limit on the execution time of a scheduled task. Helps purge run-away scheduled tasks. Not supported in this release. | [optional] **Url** | Pointer to **string** | The URL of the resource in the target to which the API request is made. | [optional] ## Methods diff --git a/intersight_gosdk/docs/SchedulerTaskSchedule.md b/intersight_gosdk/docs/SchedulerTaskSchedule.md index 376bd8c454..108c0acd8a 100644 --- a/intersight_gosdk/docs/SchedulerTaskSchedule.md +++ b/intersight_gosdk/docs/SchedulerTaskSchedule.md @@ -6,15 +6,15 @@ 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 "scheduler.TaskSchedule"] **ObjectType** | **string** | The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. | [default to "scheduler.TaskSchedule"] -**Action** | Pointer to **string** | The action of the scheduled task such as suspend or resume. * `None` - No action is set (default). * `Suspend` - Suspend a scheduled task indefinitely. * `Resume` - Resume a suspended scheduled task. * `SuspendTill` - Suspend the scheduled task until a specified end-date. | [optional] [default to "None"] +**Action** | Pointer to **string** | The action of the scheduled task such as suspend or resume. * `None` - No action is set (default). * `Suspend` - Suspend a scheduled task indefinitely. * `Resume` - Resume a suspended scheduled task. * `SuspendTill` - Suspend the scheduled task until a specified end-date. Not supported in this release. | [optional] [default to "None"] **Description** | Pointer to **string** | A description to describe the schedule for easier identification. | [optional] -**LastAction** | Pointer to **string** | The last action for the scheduled task is saved in this field. Set to none if there was no action. * `None` - No action is set (default). * `Suspend` - Suspend a scheduled task indefinitely. * `Resume` - Resume a suspended scheduled task. * `SuspendTill` - Suspend the scheduled task until a specified end-date. | [optional] [readonly] [default to "None"] +**LastAction** | Pointer to **string** | The last action for the scheduled task is saved in this field. Set to none if there was no action. * `None` - No action is set (default). * `Suspend` - Suspend a scheduled task indefinitely. * `Resume` - Resume a suspended scheduled task. * `SuspendTill` - Suspend the scheduled task until a specified end-date. Not supported in this release. | [optional] [readonly] [default to "None"] **Name** | Pointer to **string** | A schedule name for easier identification (not required to be unique). | [optional] **ScheduleParams** | Pointer to [**SchedulerBaseScheduleParams**](SchedulerBaseScheduleParams.md) | | [optional] **Status** | Pointer to [**NullableSchedulerTaskScheduleStatus**](SchedulerTaskScheduleStatus.md) | | [optional] **SuspendEndTime** | Pointer to **time.Time** | Suspend a task until an end date. this applies only to the action suspendTill. | [optional] **TaskRequest** | Pointer to [**SchedulerRestStimTaskRequest**](SchedulerRestStimTaskRequest.md) | | [optional] -**Type** | Pointer to **string** | An Enum describing the type of scheduler to use. * `None` - No value was set for the schedule type (Enum value None). * `OneTime` - Define a one-time task execution time that will not automatically repeat. * `Recurring` - Specify a recurring task cadence based on a predefined pattern, such as daily, weekly, monthly, yearly, or every <interval> pattern. This option is not currently supported. | [optional] [default to "None"] +**Type** | Pointer to **string** | An Enum describing the type of scheduler to use. * `None` - No value was set for the schedule type (Enum value None). * `OneTime` - Define a one-time task execution time that will not automatically repeat. * `Recurring` - Specify a recurring task cadence based on a predefined pattern, such as daily, weekly, monthly, or every <interval> pattern. | [optional] [default to "None"] **AssociatedObject** | Pointer to [**NullableMoBaseMoRelationship**](MoBaseMoRelationship.md) | | [optional] **WorkflowDefinition** | Pointer to [**NullableWorkflowWorkflowDefinitionRelationship**](WorkflowWorkflowDefinitionRelationship.md) | | [optional] diff --git a/intersight_gosdk/docs/SchedulerTaskScheduleStatus.md b/intersight_gosdk/docs/SchedulerTaskScheduleStatus.md index 16b65349eb..8d66afac5b 100644 --- a/intersight_gosdk/docs/SchedulerTaskScheduleStatus.md +++ b/intersight_gosdk/docs/SchedulerTaskScheduleStatus.md @@ -6,9 +6,11 @@ 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 "scheduler.TaskScheduleStatus"] **ObjectType** | **string** | The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. | [default to "scheduler.TaskScheduleStatus"] +**ConsecutiveFailures** | Pointer to **int64** | The number of consecutive times the task has failed. | [optional] [readonly] **Count** | Pointer to **int64** | The task completion count, which includes both successful executions and any failures. | [optional] [readonly] **CurrentStatus** | Pointer to **string** | The status of the current task. * `None` - No status is set (default). * `Scheduled` - The status is set when a task is scheduled. * `Running` - The status is set when a task is running. * `Completed` - The status is set when a task is complete. * `Failed` - The status is set when a task fails. * `Suspended` - The status is set when a task is suspended. * `Skipped` - The status is set when a task is skipped because the previous task is still running. | [optional] [readonly] [default to "None"] **IsSystemSuspended** | Pointer to **bool** | Indicates if this task was suspended by the system. | [optional] [readonly] +**LastRunStatus** | Pointer to **string** | The last task completion status, which includes both successful executions and any failures. * `None` - No status is set (default). * `Scheduled` - The status is set when a task is scheduled. * `Running` - The status is set when a task is running. * `Completed` - The status is set when a task is complete. * `Failed` - The status is set when a task fails. * `Suspended` - The status is set when a task is suspended. * `Skipped` - The status is set when a task is skipped because the previous task is still running. | [optional] [readonly] [default to "None"] **NextRunStartTime** | Pointer to **time.Time** | The next run time for a recurrently scheduled the task. | [optional] [readonly] **PrevRunEndTime** | Pointer to **time.Time** | The time when the last occurrence of scheduled task completed. | [optional] [readonly] **PrevRunStartTime** | Pointer to **time.Time** | The previous time the scheduled task was run. | [optional] [readonly] @@ -73,6 +75,31 @@ and a boolean to check if the value has been set. SetObjectType sets ObjectType field to given value. +### GetConsecutiveFailures + +`func (o *SchedulerTaskScheduleStatus) GetConsecutiveFailures() int64` + +GetConsecutiveFailures returns the ConsecutiveFailures field if non-nil, zero value otherwise. + +### GetConsecutiveFailuresOk + +`func (o *SchedulerTaskScheduleStatus) GetConsecutiveFailuresOk() (*int64, bool)` + +GetConsecutiveFailuresOk returns a tuple with the ConsecutiveFailures field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetConsecutiveFailures + +`func (o *SchedulerTaskScheduleStatus) SetConsecutiveFailures(v int64)` + +SetConsecutiveFailures sets ConsecutiveFailures field to given value. + +### HasConsecutiveFailures + +`func (o *SchedulerTaskScheduleStatus) HasConsecutiveFailures() bool` + +HasConsecutiveFailures returns a boolean if a field has been set. + ### GetCount `func (o *SchedulerTaskScheduleStatus) GetCount() int64` @@ -148,6 +175,31 @@ SetIsSystemSuspended sets IsSystemSuspended field to given value. HasIsSystemSuspended returns a boolean if a field has been set. +### GetLastRunStatus + +`func (o *SchedulerTaskScheduleStatus) GetLastRunStatus() string` + +GetLastRunStatus returns the LastRunStatus field if non-nil, zero value otherwise. + +### GetLastRunStatusOk + +`func (o *SchedulerTaskScheduleStatus) GetLastRunStatusOk() (*string, bool)` + +GetLastRunStatusOk returns a tuple with the LastRunStatus field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetLastRunStatus + +`func (o *SchedulerTaskScheduleStatus) SetLastRunStatus(v string)` + +SetLastRunStatus sets LastRunStatus field to given value. + +### HasLastRunStatus + +`func (o *SchedulerTaskScheduleStatus) HasLastRunStatus() bool` + +HasLastRunStatus returns a boolean if a field has been set. + ### GetNextRunStartTime `func (o *SchedulerTaskScheduleStatus) GetNextRunStartTime() time.Time` diff --git a/intersight_gosdk/docs/SchedulerWeeklyCadenceParams.md b/intersight_gosdk/docs/SchedulerWeeklyCadenceParams.md index 8b29ac66f3..b14a835e3b 100644 --- a/intersight_gosdk/docs/SchedulerWeeklyCadenceParams.md +++ b/intersight_gosdk/docs/SchedulerWeeklyCadenceParams.md @@ -7,6 +7,7 @@ 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 "scheduler.WeeklyCadenceParams"] **ObjectType** | **string** | The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. | [default to "scheduler.WeeklyCadenceParams"] **DayOfWeek** | Pointer to **[]string** | | [optional] +**RunEvery** | Pointer to **int64** | A weekly interval for a task execution. If an interval is not explicitly specified, the task will be executed once every week by default. | [optional] [default to 1] ## Methods @@ -102,6 +103,31 @@ HasDayOfWeek returns a boolean if a field has been set. `func (o *SchedulerWeeklyCadenceParams) UnsetDayOfWeek()` UnsetDayOfWeek ensures that no value is present for DayOfWeek, not even an explicit nil +### GetRunEvery + +`func (o *SchedulerWeeklyCadenceParams) GetRunEvery() int64` + +GetRunEvery returns the RunEvery field if non-nil, zero value otherwise. + +### GetRunEveryOk + +`func (o *SchedulerWeeklyCadenceParams) GetRunEveryOk() (*int64, bool)` + +GetRunEveryOk returns a tuple with the RunEvery field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetRunEvery + +`func (o *SchedulerWeeklyCadenceParams) SetRunEvery(v int64)` + +SetRunEvery sets RunEvery field to given value. + +### HasRunEvery + +`func (o *SchedulerWeeklyCadenceParams) HasRunEvery() bool` + +HasRunEvery returns a boolean if a field has been set. + [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/intersight_gosdk/docs/SchedulerYearlyCadenceParams.md b/intersight_gosdk/docs/SchedulerYearlyCadenceParams.md deleted file mode 100644 index d0abaafaad..0000000000 --- a/intersight_gosdk/docs/SchedulerYearlyCadenceParams.md +++ /dev/null @@ -1,108 +0,0 @@ -# SchedulerYearlyCadenceParams - -## Properties - -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 "scheduler.YearlyCadenceParams"] -**ObjectType** | **string** | The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. | [default to "scheduler.YearlyCadenceParams"] -**MonthOfYear** | Pointer to **[]string** | | [optional] - -## Methods - -### NewSchedulerYearlyCadenceParams - -`func NewSchedulerYearlyCadenceParams(classId string, objectType string, ) *SchedulerYearlyCadenceParams` - -NewSchedulerYearlyCadenceParams instantiates a new SchedulerYearlyCadenceParams object -This constructor will assign default values to properties that have it defined, -and makes sure properties required by API are set, but the set of arguments -will change when the set of required properties is changed - -### NewSchedulerYearlyCadenceParamsWithDefaults - -`func NewSchedulerYearlyCadenceParamsWithDefaults() *SchedulerYearlyCadenceParams` - -NewSchedulerYearlyCadenceParamsWithDefaults instantiates a new SchedulerYearlyCadenceParams object -This constructor will only assign default values to properties that have it defined, -but it doesn't guarantee that properties required by API are set - -### GetClassId - -`func (o *SchedulerYearlyCadenceParams) GetClassId() string` - -GetClassId returns the ClassId field if non-nil, zero value otherwise. - -### GetClassIdOk - -`func (o *SchedulerYearlyCadenceParams) GetClassIdOk() (*string, bool)` - -GetClassIdOk returns a tuple with the ClassId field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetClassId - -`func (o *SchedulerYearlyCadenceParams) SetClassId(v string)` - -SetClassId sets ClassId field to given value. - - -### GetObjectType - -`func (o *SchedulerYearlyCadenceParams) GetObjectType() string` - -GetObjectType returns the ObjectType field if non-nil, zero value otherwise. - -### GetObjectTypeOk - -`func (o *SchedulerYearlyCadenceParams) GetObjectTypeOk() (*string, bool)` - -GetObjectTypeOk returns a tuple with the ObjectType field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetObjectType - -`func (o *SchedulerYearlyCadenceParams) SetObjectType(v string)` - -SetObjectType sets ObjectType field to given value. - - -### GetMonthOfYear - -`func (o *SchedulerYearlyCadenceParams) GetMonthOfYear() []string` - -GetMonthOfYear returns the MonthOfYear field if non-nil, zero value otherwise. - -### GetMonthOfYearOk - -`func (o *SchedulerYearlyCadenceParams) GetMonthOfYearOk() (*[]string, bool)` - -GetMonthOfYearOk returns a tuple with the MonthOfYear field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetMonthOfYear - -`func (o *SchedulerYearlyCadenceParams) SetMonthOfYear(v []string)` - -SetMonthOfYear sets MonthOfYear field to given value. - -### HasMonthOfYear - -`func (o *SchedulerYearlyCadenceParams) HasMonthOfYear() bool` - -HasMonthOfYear returns a boolean if a field has been set. - -### SetMonthOfYearNil - -`func (o *SchedulerYearlyCadenceParams) SetMonthOfYearNil(b bool)` - - SetMonthOfYearNil sets the value for MonthOfYear to be an explicit nil - -### UnsetMonthOfYear -`func (o *SchedulerYearlyCadenceParams) UnsetMonthOfYear()` - -UnsetMonthOfYear ensures that no value is present for MonthOfYear, not even an explicit nil - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/intersight_gosdk/docs/ServerBaseProfile.md b/intersight_gosdk/docs/ServerBaseProfile.md index 9cb92a44e2..2ca3cfa89d 100644 --- a/intersight_gosdk/docs/ServerBaseProfile.md +++ b/intersight_gosdk/docs/ServerBaseProfile.md @@ -6,6 +6,7 @@ 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. The enum values provides the list of concrete types that can be instantiated from this abstract type. | **ObjectType** | **string** | The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. The enum values provides the list of concrete types that can be instantiated from this abstract type. | +**ManagementMode** | Pointer to **string** | The management mode of the server. * `IntersightStandalone` - Intersight Standalone mode of operation. * `Intersight` - Intersight managed mode of operation. | [optional] [readonly] [default to "IntersightStandalone"] **TargetPlatform** | Pointer to **string** | 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. | [optional] [default to "Standalone"] **UuidAddressType** | Pointer to **string** | UUID address allocation type selected to assign an UUID address for the server. * `NONE` - The user did not assign any UUID address. * `STATIC` - The user assigns a static UUID address. * `POOL` - The user selects a pool from which the address will be leased. | [optional] [default to "NONE"] **ConfigResult** | Pointer to [**NullableServerConfigResultRelationship**](ServerConfigResultRelationship.md) | | [optional] @@ -70,6 +71,31 @@ and a boolean to check if the value has been set. SetObjectType sets ObjectType field to given value. +### GetManagementMode + +`func (o *ServerBaseProfile) GetManagementMode() string` + +GetManagementMode returns the ManagementMode field if non-nil, zero value otherwise. + +### GetManagementModeOk + +`func (o *ServerBaseProfile) GetManagementModeOk() (*string, bool)` + +GetManagementModeOk returns a tuple with the ManagementMode field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetManagementMode + +`func (o *ServerBaseProfile) SetManagementMode(v string)` + +SetManagementMode sets ManagementMode field to given value. + +### HasManagementMode + +`func (o *ServerBaseProfile) HasManagementMode() bool` + +HasManagementMode returns a boolean if a field has been set. + ### GetTargetPlatform `func (o *ServerBaseProfile) GetTargetPlatform() string` diff --git a/intersight_gosdk/docs/SnmpPolicy.md b/intersight_gosdk/docs/SnmpPolicy.md index dcf73bb87c..88b044bef3 100644 --- a/intersight_gosdk/docs/SnmpPolicy.md +++ b/intersight_gosdk/docs/SnmpPolicy.md @@ -6,7 +6,7 @@ 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 "snmp.Policy"] **ObjectType** | **string** | The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. | [default to "snmp.Policy"] -**AccessCommunityString** | Pointer to **string** | The default SNMPv1, SNMPv2c community name or SNMPv3 username to include on any trap messages sent to the SNMP host. The name can be 18 characters long. | [optional] +**AccessCommunityString** | Pointer to **string** | The default SNMPv1, SNMPv2c community name or SNMPv3 username to include on any trap messages sent to the SNMP host. The name can be 32 characters long. | [optional] **CommunityAccess** | Pointer to **string** | Controls access to the information in the inventory tables. Applicable only for SNMPv1 and SNMPv2c users. * `Disabled` - Blocks access to the information in the inventory tables. * `Limited` - Partial access to read the information in the inventory tables. * `Full` - Full access to read the information in the inventory tables. | [optional] [default to "Disabled"] **Enabled** | Pointer to **bool** | State of the SNMP Policy on the endpoint. If enabled, the endpoint sends SNMP traps to the designated host. | [optional] [default to true] **EngineId** | Pointer to **string** | User-defined unique identification of the static engine. | [optional] diff --git a/intersight_gosdk/docs/SnmpPolicyInventory.md b/intersight_gosdk/docs/SnmpPolicyInventory.md index 686c0f209f..8c6e5a05a7 100644 --- a/intersight_gosdk/docs/SnmpPolicyInventory.md +++ b/intersight_gosdk/docs/SnmpPolicyInventory.md @@ -6,7 +6,7 @@ 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 "snmp.PolicyInventory"] **ObjectType** | **string** | The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. | [default to "snmp.PolicyInventory"] -**AccessCommunityString** | Pointer to **string** | The default SNMPv1, SNMPv2c community name or SNMPv3 username to include on any trap messages sent to the SNMP host. The name can be 18 characters long. | [optional] [readonly] +**AccessCommunityString** | Pointer to **string** | The default SNMPv1, SNMPv2c community name or SNMPv3 username to include on any trap messages sent to the SNMP host. The name can be 32 characters long. | [optional] [readonly] **CommunityAccess** | Pointer to **string** | Controls access to the information in the inventory tables. Applicable only for SNMPv1 and SNMPv2c users. * `Disabled` - Blocks access to the information in the inventory tables. * `Limited` - Partial access to read the information in the inventory tables. * `Full` - Full access to read the information in the inventory tables. | [optional] [readonly] [default to "Disabled"] **Enabled** | Pointer to **bool** | State of the SNMP Policy on the endpoint. If enabled, the endpoint sends SNMP traps to the designated host. | [optional] [readonly] [default to true] **EngineId** | Pointer to **string** | User-defined unique identification of the static engine. | [optional] [readonly] diff --git a/intersight_gosdk/docs/StorageDriveGroup.md b/intersight_gosdk/docs/StorageDriveGroup.md index 58be1ce5b9..e72c6b92b0 100644 --- a/intersight_gosdk/docs/StorageDriveGroup.md +++ b/intersight_gosdk/docs/StorageDriveGroup.md @@ -10,7 +10,7 @@ Name | Type | Description | Notes **ManualDriveGroup** | Pointer to [**NullableStorageManualDriveGroup**](StorageManualDriveGroup.md) | | [optional] **Name** | Pointer to **string** | 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. | [optional] **RaidLevel** | Pointer to **string** | 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. | [optional] [default to "Raid0"] -**SecureDriveGroup** | Pointer to **bool** | 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. | [optional] +**SecureDriveGroup** | Pointer to **bool** | Enables/disables the drive security on all the drives used in this policy. This flag just enables the drive security and only after Remote/Manual key setting configured, the actual security will be applied. | [optional] **Type** | Pointer to **int32** | Type of drive selection to be used for this drive group. * `0` - Drives are selected manually by the user. * `1` - Drives are selected automatically based on the RAID and virtual drive configuration. | [optional] [readonly] [default to 0] **VirtualDrives** | Pointer to [**[]StorageVirtualDriveConfiguration**](StorageVirtualDriveConfiguration.md) | | [optional] **StoragePolicy** | Pointer to [**NullableStorageStoragePolicyRelationship**](StorageStoragePolicyRelationship.md) | | [optional] diff --git a/intersight_gosdk/docs/StorageKeySetting.md b/intersight_gosdk/docs/StorageKeySetting.md index 8bfbf38259..c1ec10fac8 100644 --- a/intersight_gosdk/docs/StorageKeySetting.md +++ b/intersight_gosdk/docs/StorageKeySetting.md @@ -6,7 +6,7 @@ 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 "storage.KeySetting"] **ObjectType** | **string** | The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. | [default to "storage.KeySetting"] -**KeyType** | Pointer to **string** | Method to be used for fetching the encryption key. * `Kmip` - Remote encryption using KMIP. * `Manual` - Drive encryption using manual key. | [optional] [default to "Kmip"] +**KeyType** | Pointer to **string** | Method to be used for fetching the security key. * `Kmip` - Remote security using KMIP. * `Manual` - Drive security using manual key. | [optional] [default to "Kmip"] **ManualKey** | Pointer to [**NullableStorageLocalKeySetting**](StorageLocalKeySetting.md) | | [optional] **RemoteKey** | Pointer to [**NullableStorageRemoteKeySetting**](StorageRemoteKeySetting.md) | | [optional] diff --git a/intersight_gosdk/docs/StorageKmipServer.md b/intersight_gosdk/docs/StorageKmipServer.md index 6f5517e52b..b3acd87569 100644 --- a/intersight_gosdk/docs/StorageKmipServer.md +++ b/intersight_gosdk/docs/StorageKmipServer.md @@ -6,7 +6,7 @@ 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 "storage.KmipServer"] **ObjectType** | **string** | The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. | [default to "storage.KmipServer"] -**EnableDriveSecurity** | Pointer to **bool** | Enable the selected KMIP Server configuration for encryption. This flag just enables the drive security and only after remote key setting configured, the actual encryption will be done. | [optional] +**EnableDriveSecurity** | Pointer to **bool** | Enable the selected KMIP Server configuration for security. This flag just enables the drive security and only after remote key setting configured, the actual security will be applied. | [optional] **IpAddress** | Pointer to **string** | The IP address of the KMIP server. It could be an IPv4 address, an IPv6 address, or a hostname. Hostnames are valid only when Inband is configured for the CIMC address. | [optional] **Port** | Pointer to **int64** | The port to which the KMIP client should connect. | [optional] [default to 5696] **Timeout** | Pointer to **int64** | The timeout before which the KMIP client should connect. | [optional] [default to 60] diff --git a/intersight_gosdk/docs/StorageLocalKeySetting.md b/intersight_gosdk/docs/StorageLocalKeySetting.md index 21c525c2fd..e5aadb5720 100644 --- a/intersight_gosdk/docs/StorageLocalKeySetting.md +++ b/intersight_gosdk/docs/StorageLocalKeySetting.md @@ -6,10 +6,10 @@ 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 "storage.LocalKeySetting"] **ObjectType** | **string** | The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. | [default to "storage.LocalKeySetting"] -**ExistingKey** | Pointer to **string** | Current Security Key Passphrase which is already configured on the server. | [optional] +**ExistingKey** | Pointer to **string** | Current Security Key Passphrase which is already configured on the server. From the security context, the passphrase should be at least 8 characters long and should include at least one uppercase letter, one lowercase letter, one number, and one special character. | [optional] **IsExistingKeySet** | Pointer to **bool** | Indicates whether the value of the 'existingKey' property has been set. | [optional] [readonly] [default to false] **IsNewKeySet** | Pointer to **bool** | Indicates whether the value of the 'newKey' property has been set. | [optional] [readonly] [default to false] -**NewKey** | Pointer to **string** | New Security Key Passphrase to be configured on the controller. | [optional] +**NewKey** | Pointer to **string** | New Security Key Passphrase to be configured on the server. From the security context, the passphrase should be at least 8 characters long and should include at least one uppercase letter, one lowercase letter, one number, and one special character. | [optional] ## Methods diff --git a/intersight_gosdk/docs/StorageRemoteKeySetting.md b/intersight_gosdk/docs/StorageRemoteKeySetting.md index b55207224d..1d3d361495 100644 --- a/intersight_gosdk/docs/StorageRemoteKeySetting.md +++ b/intersight_gosdk/docs/StorageRemoteKeySetting.md @@ -7,7 +7,7 @@ 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 "storage.RemoteKeySetting"] **ObjectType** | **string** | The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. | [default to "storage.RemoteKeySetting"] **AuthCredentials** | Pointer to [**NullableStorageKmipAuthCredentials**](StorageKmipAuthCredentials.md) | | [optional] -**ExistingKey** | Pointer to **string** | Current Security Key Passphrase which is already configured on the server. | [optional] +**ExistingKey** | Pointer to **string** | Current Security Key Passphrase which is already configured on the server. From the security context, the passphrase should be at least 8 characters long and should include at least one uppercase letter, one lowercase letter, one number, and one special character. | [optional] **IsExistingKeySet** | Pointer to **bool** | Indicates whether the value of the 'existingKey' property has been set. | [optional] [readonly] [default to false] **PrimaryServer** | Pointer to [**NullableStorageKmipServer**](StorageKmipServer.md) | | [optional] **SecondaryServer** | Pointer to [**NullableStorageKmipServer**](StorageKmipServer.md) | | [optional] diff --git a/intersight_gosdk/docs/WorkflowProperties.md b/intersight_gosdk/docs/WorkflowProperties.md index 68285e6e71..1c9887f467 100644 --- a/intersight_gosdk/docs/WorkflowProperties.md +++ b/intersight_gosdk/docs/WorkflowProperties.md @@ -6,7 +6,7 @@ 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.Properties"] **ObjectType** | **string** | The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. | [default to "workflow.Properties"] -**Cloneable** | Pointer to **bool** | When set to false task is not cloneable. It is set to true only if task is of ApiTask type and it is not system defined. | [optional] [readonly] [default to true] +**Cloneable** | Pointer to **bool** | When set to false task is not cloneable. It is set to true only if task is of ApiTask type and it is not system defined. | [optional] [readonly] [default to false] **ExternalMeta** | Pointer to **bool** | When set to false the task definition can only be used by internal system workflows. When set to true then the task can be included in user defined workflows. | [optional] [readonly] [default to false] **InputDefinition** | Pointer to [**[]WorkflowBaseDataType**](WorkflowBaseDataType.md) | | [optional] **OutputDefinition** | Pointer to [**[]WorkflowBaseDataType**](WorkflowBaseDataType.md) | | [optional] diff --git a/intersight_gosdk/model_aaa_abstract_audit_record.go b/intersight_gosdk/model_aaa_abstract_audit_record.go index 11ad6d1faa..282102a4d3 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_aaa_audit_record.go b/intersight_gosdk/model_aaa_audit_record.go index 178eac4377..c2e4991109 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_aaa_audit_record_list.go b/intersight_gosdk/model_aaa_audit_record_list.go index 155ce0e5b0..4c781bca52 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-18012 +API version: 1.0.11-18369 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 7d1a915569..353ceb90d1 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_aaa_retention_config.go b/intersight_gosdk/model_aaa_retention_config.go index 1de09b594f..20ffe4f114 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-18012 +API version: 1.0.11-18369 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 29366baa40..22b14ee655 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-18012 +API version: 1.0.11-18369 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 3263a924c9..34c6be9a8e 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_aaa_retention_policy.go b/intersight_gosdk/model_aaa_retention_policy.go index b59e478473..a0f3937070 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-18012 +API version: 1.0.11-18369 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 a78d667852..cd2e4741cd 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-18012 +API version: 1.0.11-18369 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 864d568cb5..9011bb4409 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_aaa_user_agent.go b/intersight_gosdk/model_aaa_user_agent.go index d4f1c9e43a..07725b623c 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_access_address_type.go b/intersight_gosdk/model_access_address_type.go index f03042c2b6..ff053afdd2 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_access_configuration_type.go b/intersight_gosdk/model_access_configuration_type.go index 34189d1233..6b924f60f4 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_access_ip_address.go b/intersight_gosdk/model_access_ip_address.go index 4b2ac7cb04..da069fa73c 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_access_ip_address_list.go b/intersight_gosdk/model_access_ip_address_list.go index 0a4458b8bb..29bf8af12e 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-18012 +API version: 1.0.11-18369 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 aedfa5c587..f039bbc2b5 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_access_policy.go b/intersight_gosdk/model_access_policy.go index d413f35371..31ad332280 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_access_policy_inventory.go b/intersight_gosdk/model_access_policy_inventory.go index 1a10b59716..f7e64f76dc 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-18012 +API version: 1.0.11-18369 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 1e98d19ea1..fe2dad930b 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-18012 +API version: 1.0.11-18369 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 0c8f6b3015..4de4713a57 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_access_policy_list.go b/intersight_gosdk/model_access_policy_list.go index 71c535edbc..d5bec942e7 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_access_policy_response.go b/intersight_gosdk/model_access_policy_response.go index e8c14bdec0..9afb0cad37 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_adapter_adapter_config.go b/intersight_gosdk/model_adapter_adapter_config.go index da4f2d18d6..36da2b7760 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_adapter_config_policy.go b/intersight_gosdk/model_adapter_config_policy.go index 39545527f6..364f86aa63 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-18012 +API version: 1.0.11-18369 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 570afed2c5..fe47ea3a52 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-18012 +API version: 1.0.11-18369 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 c70ba0ac98..03a3f06994 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-18012 +API version: 1.0.11-18369 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 4b881f3e70..cf2e744439 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_adapter_eth_settings.go b/intersight_gosdk/model_adapter_eth_settings.go index 3b36d15e51..10b5496dfd 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-18012 +API version: 1.0.11-18369 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 dc0e2c9557..86df2f5345 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-18012 +API version: 1.0.11-18369 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 ad73990d40..45b3a2fdb5 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-18012 +API version: 1.0.11-18369 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 febd9a863f..01ce7a3ccb 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-18012 +API version: 1.0.11-18369 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 01888f87c4..1d9403a30a 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_adapter_fc_settings.go b/intersight_gosdk/model_adapter_fc_settings.go index 2839f9ed11..bc80210f3f 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-18012 +API version: 1.0.11-18369 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 fdc3bf3884..c975854ffe 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-18012 +API version: 1.0.11-18369 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 f143f5baa3..9133861396 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-18012 +API version: 1.0.11-18369 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 671c5408a6..a76de6345e 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-18012 +API version: 1.0.11-18369 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 5e8ef5e19e..922b02d678 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-18012 +API version: 1.0.11-18369 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 6e3d40314a..6ca07a8e2b 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-18012 +API version: 1.0.11-18369 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 811d593721..ecb04d5e7c 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-18012 +API version: 1.0.11-18369 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 d00d3f695f..deeccea4fd 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-18012 +API version: 1.0.11-18369 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 3fa281639d..a3aff30135 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-18012 +API version: 1.0.11-18369 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 3ba8b9445d..1b49601126 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-18012 +API version: 1.0.11-18369 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 ed87916afa..bed4d77c2b 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-18012 +API version: 1.0.11-18369 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 a70e92f99c..8183ae66e3 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-18012 +API version: 1.0.11-18369 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 d5ca0ab3bc..f7fde9c35c 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-18012 +API version: 1.0.11-18369 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 f0ae7b92d6..0c9b0e7310 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-18012 +API version: 1.0.11-18369 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 1ed21b87aa..4fea3d6f99 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_adapter_unit.go b/intersight_gosdk/model_adapter_unit.go index 2ebaf54a18..12b95b60a2 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_adapter_unit_expander.go b/intersight_gosdk/model_adapter_unit_expander.go index eac130e421..5e17f3f6ff 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-18012 +API version: 1.0.11-18369 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 a6556a71bf..d0dd2afe13 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-18012 +API version: 1.0.11-18369 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 707088edc1..256eae8876 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-18012 +API version: 1.0.11-18369 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 1070f23cf8..7105e997d5 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_adapter_unit_list.go b/intersight_gosdk/model_adapter_unit_list.go index 2f669f45a6..f16cad30c7 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_adapter_unit_relationship.go b/intersight_gosdk/model_adapter_unit_relationship.go index dfb1af2218..ab80f74082 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_adapter_unit_response.go b/intersight_gosdk/model_adapter_unit_response.go index b3f604dc06..8902cc9f4a 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_apic_aci_pod.go b/intersight_gosdk/model_apic_aci_pod.go index 12dcae7719..3e4eba8a6a 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-18012 +API version: 1.0.11-18369 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 85ecad7fd9..977fccfacb 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-18012 +API version: 1.0.11-18369 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 70a9e6ab3e..13d27badfe 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_apic_application.go b/intersight_gosdk/model_apic_application.go index a5516c0f83..6cb0b96611 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-18012 +API version: 1.0.11-18369 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 b96d079dd0..0e08703575 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-18012 +API version: 1.0.11-18369 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 0fb66d5dd2..89cb5bb1cc 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-18012 +API version: 1.0.11-18369 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 add17227c1..e29ba32460 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_apic_application_list.go b/intersight_gosdk/model_apic_application_list.go index d462220b1e..407042d66c 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_apic_application_relationship.go b/intersight_gosdk/model_apic_application_relationship.go index d18da9aa8b..fe92163ec3 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_apic_application_response.go b/intersight_gosdk/model_apic_application_response.go index 12509015e1..42e79b409a 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_apic_bridge_domain.go b/intersight_gosdk/model_apic_bridge_domain.go index 0c4817637b..2f272f85f8 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-18012 +API version: 1.0.11-18369 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 7c75ff7305..c1ce0fbc35 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-18012 +API version: 1.0.11-18369 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 d9913d2046..a9a2ca582e 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-18012 +API version: 1.0.11-18369 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 c0f81b7b8d..5e35ed84a4 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-18012 +API version: 1.0.11-18369 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 bdec9170a8..c8fdce9e5b 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-18012 +API version: 1.0.11-18369 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 4761fe17c6..7dbfa2a45a 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-18012 +API version: 1.0.11-18369 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 e6feb22300..c581cc10ed 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-18012 +API version: 1.0.11-18369 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 64b729d8a7..6e636920d2 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-18012 +API version: 1.0.11-18369 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 935aab77f3..5add948891 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-18012 +API version: 1.0.11-18369 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 d1da5a021e..dc7ac3d78e 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-18012 +API version: 1.0.11-18369 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 8d8e28edd1..5df78aa2d5 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-18012 +API version: 1.0.11-18369 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 3ea7349a04..98b741e05b 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-18012 +API version: 1.0.11-18369 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 6688aa8883..7afb0265ff 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-18012 +API version: 1.0.11-18369 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 d48774d455..6dd697d4c1 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-18012 +API version: 1.0.11-18369 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 ea8204a191..a306d1405e 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_apic_inventory_entity.go b/intersight_gosdk/model_apic_inventory_entity.go index 443a265cee..a8bfc41a41 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_apic_out.go b/intersight_gosdk/model_apic_out.go index 47a2f8301d..9d0dbe5283 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_apic_out_list.go b/intersight_gosdk/model_apic_out_list.go index c2a0a5b5f0..3564ca56ab 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_apic_out_response.go b/intersight_gosdk/model_apic_out_response.go index 2ac5b0423c..9b1bcd303a 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_apic_subnet.go b/intersight_gosdk/model_apic_subnet.go index ec5747d6b5..3fce390f4a 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_apic_subnet_list.go b/intersight_gosdk/model_apic_subnet_list.go index 6d596ea8ab..d6e146edb6 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_apic_subnet_response.go b/intersight_gosdk/model_apic_subnet_response.go index 57c1046ccd..468b940801 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_apic_tenant.go b/intersight_gosdk/model_apic_tenant.go index d56c85ba05..3b62845f65 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_apic_tenant_list.go b/intersight_gosdk/model_apic_tenant_list.go index 092870d241..747d646050 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_apic_tenant_relationship.go b/intersight_gosdk/model_apic_tenant_relationship.go index 396353ddeb..018d78796f 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_apic_tenant_response.go b/intersight_gosdk/model_apic_tenant_response.go index e914abbaa7..d30eb3c8d4 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_apic_vpc_group.go b/intersight_gosdk/model_apic_vpc_group.go index edf85ad7e6..8adb38a568 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-18012 +API version: 1.0.11-18369 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 58172e2ff7..96fa6e3cf9 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-18012 +API version: 1.0.11-18369 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 8dd26cd9f6..6a2b168d34 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_apic_vrfs.go b/intersight_gosdk/model_apic_vrfs.go index 7a2db51f4b..709dd3f515 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_apic_vrfs_list.go b/intersight_gosdk/model_apic_vrfs_list.go index 16e5716318..e119e88ad9 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_apic_vrfs_response.go b/intersight_gosdk/model_apic_vrfs_response.go index c63e8d2d06..c479a3ffd1 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_api_status.go b/intersight_gosdk/model_appliance_api_status.go index 34301d5e63..6b3ccdc982 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-18012 +API version: 1.0.11-18369 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 3044a73e54..85d78bc5c1 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-18012 +API version: 1.0.11-18369 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 d5eaa98366..6b10236387 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-18012 +API version: 1.0.11-18369 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 026972719d..4ac855aaf1 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-18012 +API version: 1.0.11-18369 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 cd92fce93b..675513e609 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_app_status.go b/intersight_gosdk/model_appliance_app_status.go index 0ab778d749..34a29dda73 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-18012 +API version: 1.0.11-18369 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 79920e643b..b216218d78 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-18012 +API version: 1.0.11-18369 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 a5105de134..23e97fa73f 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-18012 +API version: 1.0.11-18369 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 1b716414ec..9bde316495 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-18012 +API version: 1.0.11-18369 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 37b257da7e..8716988af2 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-18012 +API version: 1.0.11-18369 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 c2610612fe..61598fec48 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-18012 +API version: 1.0.11-18369 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 a7815f7693..b003ee79c0 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_backup.go b/intersight_gosdk/model_appliance_backup.go index ea009bbf4b..64889dc093 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_backup_base.go b/intersight_gosdk/model_appliance_backup_base.go index 779ad46c09..d8e59fb868 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_backup_list.go b/intersight_gosdk/model_appliance_backup_list.go index 711cb51168..6ad268a7c5 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_backup_monitor.go b/intersight_gosdk/model_appliance_backup_monitor.go index 114de4b148..8f2d13594a 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-18012 +API version: 1.0.11-18369 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 2b684c1dce..24d8334dd6 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-18012 +API version: 1.0.11-18369 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 4f6f6dfe56..f09cd7a4a8 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_backup_policy.go b/intersight_gosdk/model_appliance_backup_policy.go index 78ba047cac..a4c48f69a3 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_backup_policy_list.go b/intersight_gosdk/model_appliance_backup_policy_list.go index eaeaf77640..ede2d99afc 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-18012 +API version: 1.0.11-18369 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 3be856196a..238adca9ce 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_backup_response.go b/intersight_gosdk/model_appliance_backup_response.go index 8821e98354..e7fdadfe56 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-18012 +API version: 1.0.11-18369 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 17515a63bf..3c950fe3f6 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-18012 +API version: 1.0.11-18369 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 42ea9653db..33b7493d51 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-18012 +API version: 1.0.11-18369 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 9e93bf1ac4..5b05a6df9b 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-18012 +API version: 1.0.11-18369 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 ebfcff7587..04106868b2 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_certificate_setting.go b/intersight_gosdk/model_appliance_certificate_setting.go index 3f5df11eb2..2193cfc68c 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-18012 +API version: 1.0.11-18369 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 4f8566d842..ca6b9da5d0 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-18012 +API version: 1.0.11-18369 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 be99be13c2..4f38b11bd5 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_cluster_info.go b/intersight_gosdk/model_appliance_cluster_info.go index 17308dec4a..7fb19f5645 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-18012 +API version: 1.0.11-18369 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 aedeed5d0e..327dcb2552 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-18012 +API version: 1.0.11-18369 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 0b790ba603..2a4e404460 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_cluster_install.go b/intersight_gosdk/model_appliance_cluster_install.go index 32916f2133..7e28f75a43 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-18012 +API version: 1.0.11-18369 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 700c86d406..671608c4e7 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-18012 +API version: 1.0.11-18369 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 2c9151e360..e5d9bb8460 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-18012 +API version: 1.0.11-18369 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 8c52924e06..c1e5aaf803 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-18012 +API version: 1.0.11-18369 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 2dad70ed41..6e03237a16 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-18012 +API version: 1.0.11-18369 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 19a6ffb3e5..143af7adc5 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-18012 +API version: 1.0.11-18369 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 7ef0fa5c01..fe840bfc37 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-18012 +API version: 1.0.11-18369 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 28bb104928..d6e72ffec8 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-18012 +API version: 1.0.11-18369 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 66dfbd21f4..4807ba174f 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-18012 +API version: 1.0.11-18369 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 d2e6ecdb19..a1bb3a70ec 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-18012 +API version: 1.0.11-18369 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 058f0d99d4..fe232567c5 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-18012 +API version: 1.0.11-18369 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 a0041a1bfe..713444ed16 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_device_certificate.go b/intersight_gosdk/model_appliance_device_certificate.go index d214958295..1cfbbe8a58 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-18012 +API version: 1.0.11-18369 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 6a8274dcd9..89c47a1aa8 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-18012 +API version: 1.0.11-18369 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 0fde16035a..f496c23589 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_device_claim.go b/intersight_gosdk/model_appliance_device_claim.go index 492d734b02..12c0397ba7 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-18012 +API version: 1.0.11-18369 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 cf34817a40..cb013ffba5 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-18012 +API version: 1.0.11-18369 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 9a4f73ad0f..b7a5d49532 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-18012 +API version: 1.0.11-18369 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 044ad6ac39..297623236e 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-18012 +API version: 1.0.11-18369 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 b98708e900..8b0aa59b0d 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-18012 +API version: 1.0.11-18369 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 cd8b7af601..e2ce756af3 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_device_state.go b/intersight_gosdk/model_appliance_device_state.go index e7539a31af..14b2862d55 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-18012 +API version: 1.0.11-18369 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 d81addf7bb..c17f541959 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-18012 +API version: 1.0.11-18369 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 54ce82191f..de1a6bfe7c 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-18012 +API version: 1.0.11-18369 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 650343c78a..682507bb3d 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-18012 +API version: 1.0.11-18369 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 485670dfac..aec6fab7d7 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-18012 +API version: 1.0.11-18369 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 11eec0c85a..61337231b4 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-18012 +API version: 1.0.11-18369 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 82e294de41..07bb134c21 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_diag_setting.go b/intersight_gosdk/model_appliance_diag_setting.go index 02ce93739b..62991c5fc1 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-18012 +API version: 1.0.11-18369 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 21e7a8fb4a..2acff5edbd 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-18012 +API version: 1.0.11-18369 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 91f8ebf660..565ba09c06 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-18012 +API version: 1.0.11-18369 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 6d6722f002..6ec46fd088 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-18012 +API version: 1.0.11-18369 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 f40e653678..255d94d9d1 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-18012 +API version: 1.0.11-18369 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 737ec1ee9f..cffb84a3dc 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_file_gateway.go b/intersight_gosdk/model_appliance_file_gateway.go index 9977d68ddd..fe96a389be 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-18012 +API version: 1.0.11-18369 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 4ec93882cb..2ad5fda629 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-18012 +API version: 1.0.11-18369 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 34cc801efa..1cf8cbd773 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-18012 +API version: 1.0.11-18369 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 0e2b354d1b..b6e6bf0c44 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-18012 +API version: 1.0.11-18369 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 8b69022492..243f3410bc 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-18012 +API version: 1.0.11-18369 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 8d302cc58f..929dbbf210 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-18012 +API version: 1.0.11-18369 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 28a331c393..2fb23a5a77 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-18012 +API version: 1.0.11-18369 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 6ed6a8a54b..a76d9b4ed8 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-18012 +API version: 1.0.11-18369 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 7b4fc18c0e..13bd71c634 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-18012 +API version: 1.0.11-18369 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 b80719b915..eb408c4792 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-18012 +API version: 1.0.11-18369 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 199907fa1d..8ba42bbed5 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-18012 +API version: 1.0.11-18369 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 2c6c07d68c..27f02d5712 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-18012 +API version: 1.0.11-18369 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 42c2028d7d..370f78d2c7 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-18012 +API version: 1.0.11-18369 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 1bec649fdf..a175568493 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-18012 +API version: 1.0.11-18369 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 4c7ff6602d..13102cabee 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_group_status.go b/intersight_gosdk/model_appliance_group_status.go index 157582a213..caee388052 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-18012 +API version: 1.0.11-18369 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 c060f42a76..6a89e6ab57 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-18012 +API version: 1.0.11-18369 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 cd2d4b17d5..ad1384d85d 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-18012 +API version: 1.0.11-18369 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 ee030cf90d..480d36e3ee 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_image_bundle.go b/intersight_gosdk/model_appliance_image_bundle.go index 467e740339..54ec5ec9c2 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-18012 +API version: 1.0.11-18369 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 3429c84db8..6d5f6e7d96 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-18012 +API version: 1.0.11-18369 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 9155c210e8..17b30d90e6 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-18012 +API version: 1.0.11-18369 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 95060b5393..7bd10c9227 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-18012 +API version: 1.0.11-18369 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 3799503d76..d4c2730da5 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_meta_manifest.go b/intersight_gosdk/model_appliance_meta_manifest.go index bfd0909abc..25736cfaaa 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-18012 +API version: 1.0.11-18369 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 507acddc5a..1adfd90c49 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-18012 +API version: 1.0.11-18369 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 1dae1e6cab..53caaffa2b 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-18012 +API version: 1.0.11-18369 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 a1196abb14..4a4c616700 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_metrics_config.go b/intersight_gosdk/model_appliance_metrics_config.go index d43c406a83..5e1483b147 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-18012 +API version: 1.0.11-18369 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 b0f8931714..bb04aebd20 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-18012 +API version: 1.0.11-18369 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 f2f2a8b213..45e34cc13e 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-18012 +API version: 1.0.11-18369 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 c5c36f0548..3c780a7b48 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-18012 +API version: 1.0.11-18369 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 5080226f69..bb2c01327a 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-18012 +API version: 1.0.11-18369 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 b5c886d844..fc2159dcd4 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-18012 +API version: 1.0.11-18369 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 838a2111fc..f08623f72c 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_network_status.go b/intersight_gosdk/model_appliance_network_status.go index 695d4ef49f..2a4b43e67b 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_node_info.go b/intersight_gosdk/model_appliance_node_info.go index 0dd11b59f7..5ad337f307 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-18012 +API version: 1.0.11-18369 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 3e8d58e33e..abf6706449 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-18012 +API version: 1.0.11-18369 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 bc5876a146..bda9339345 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-18012 +API version: 1.0.11-18369 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 29bc6016f8..f7bd87c576 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-18012 +API version: 1.0.11-18369 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 142652cbcb..910f512357 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-18012 +API version: 1.0.11-18369 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 5c173d9520..f798436316 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-18012 +API version: 1.0.11-18369 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 5009299136..484c9a16a6 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-18012 +API version: 1.0.11-18369 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 27e340522d..4685d6e8d8 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-18012 +API version: 1.0.11-18369 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 f2f6328239..d3c51510ef 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_node_status.go b/intersight_gosdk/model_appliance_node_status.go index d4e24a0afb..563e3ca7c3 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-18012 +API version: 1.0.11-18369 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 a999f3f780..62227e8bf2 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-18012 +API version: 1.0.11-18369 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 ee2e3ec66f..ba3c7ae159 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-18012 +API version: 1.0.11-18369 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 2935dd753e..cd876ec95a 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_release_note.go b/intersight_gosdk/model_appliance_release_note.go index 9ac19b8ea6..c9b62b1ce8 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-18012 +API version: 1.0.11-18369 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 e3df13c4e9..474b46845a 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-18012 +API version: 1.0.11-18369 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 74cbaa57cf..541723c4ed 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-18012 +API version: 1.0.11-18369 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 14425074c9..090ed495b2 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-18012 +API version: 1.0.11-18369 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 344bb33339..5c06203739 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-18012 +API version: 1.0.11-18369 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 4b5ee1fcc7..a0585c1d30 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_restore.go b/intersight_gosdk/model_appliance_restore.go index 164b39af67..4c896ec6e8 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_restore_list.go b/intersight_gosdk/model_appliance_restore_list.go index 876e7ce011..1b84c17c88 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_restore_response.go b/intersight_gosdk/model_appliance_restore_response.go index 31fca21538..79157adfc4 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_setup_info.go b/intersight_gosdk/model_appliance_setup_info.go index c41a63c63a..b500666ccd 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-18012 +API version: 1.0.11-18369 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 da634dc7d1..b219ad6c2f 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-18012 +API version: 1.0.11-18369 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 2616f265d3..64cd4fd2b5 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_status_check.go b/intersight_gosdk/model_appliance_status_check.go index d671a1c421..099c234260 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_system_info.go b/intersight_gosdk/model_appliance_system_info.go index f4823f15df..ca5023bfaf 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-18012 +API version: 1.0.11-18369 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 32fefe0a06..475f4507d3 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-18012 +API version: 1.0.11-18369 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 e4d1ebcc9a..570f2a3908 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-18012 +API version: 1.0.11-18369 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 124ce695d7..0b8cda6099 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-18012 +API version: 1.0.11-18369 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 72d9d3de0b..c284682d8a 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-18012 +API version: 1.0.11-18369 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 65a5ef9ae2..d7c39eb61f 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-18012 +API version: 1.0.11-18369 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 8cbe116778..6abbeb089c 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-18012 +API version: 1.0.11-18369 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 3bda01ede2..823c237e5a 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_system_status.go b/intersight_gosdk/model_appliance_system_status.go index 5a857d0ff5..273cbf478d 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-18012 +API version: 1.0.11-18369 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 2f1c005151..3ce16b4614 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-18012 +API version: 1.0.11-18369 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 2199c16dba..19691deb13 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-18012 +API version: 1.0.11-18369 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 10018f51d6..8f158af9a7 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_upgrade.go b/intersight_gosdk/model_appliance_upgrade.go index 055e2e7982..230dc014af 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_upgrade_list.go b/intersight_gosdk/model_appliance_upgrade_list.go index 86452b5af9..aeb4a4d413 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_upgrade_policy.go b/intersight_gosdk/model_appliance_upgrade_policy.go index 36d9dce812..430c792a71 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-18012 +API version: 1.0.11-18369 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 0462c9f71f..0734484f03 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-18012 +API version: 1.0.11-18369 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 b06bece30d..911922d272 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_upgrade_relationship.go b/intersight_gosdk/model_appliance_upgrade_relationship.go index ee5b9ca6cf..908a3903ba 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_upgrade_response.go b/intersight_gosdk/model_appliance_upgrade_response.go index 263a8d5c99..49f2486a73 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_appliance_upgrade_tracker.go b/intersight_gosdk/model_appliance_upgrade_tracker.go index b1c0a1d641..19af84bf41 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-18012 +API version: 1.0.11-18369 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 52dc0dfb62..9a537d022a 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-18012 +API version: 1.0.11-18369 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 13c1d8b905..c2dd7c295f 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_address_information.go b/intersight_gosdk/model_asset_address_information.go index c3623092f4..cd9bce8ba6 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_alarm_summary.go b/intersight_gosdk/model_asset_alarm_summary.go index 8baa958285..27f5070df3 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-18012 +API version: 1.0.11-18369 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 861538b4df..8258de1ad2 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_claim_signature.go b/intersight_gosdk/model_asset_claim_signature.go index 7833f2119d..859f823036 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-18012 +API version: 1.0.11-18369 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 4c7aa23bea..68392e39b7 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_cloud_connection.go b/intersight_gosdk/model_asset_cloud_connection.go index a3d4fb03b3..36697fb9e9 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_cluster_member.go b/intersight_gosdk/model_asset_cluster_member.go index 1bd56e7caa..3a76d8022c 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-18012 +API version: 1.0.11-18369 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 7d1c348545..d28b2943f2 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-18012 +API version: 1.0.11-18369 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 7f01d46c22..6ca1242be0 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-18012 +API version: 1.0.11-18369 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 a024803775..b5e3921a3c 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_connection.go b/intersight_gosdk/model_asset_connection.go index eef263c7b6..96923438ca 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_contract_information.go b/intersight_gosdk/model_asset_contract_information.go index 0d56380b2c..78f4342eeb 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_credential.go b/intersight_gosdk/model_asset_credential.go index 666dbf3184..d67cae8f61 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_customer_information.go b/intersight_gosdk/model_asset_customer_information.go index c9cad864d6..d9f102a8ed 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_deployment.go b/intersight_gosdk/model_asset_deployment.go index eb67e91a12..a5bfac0565 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-18012 +API version: 1.0.11-18369 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 73660d3797..f7bcc0ceff 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_deployment_device.go b/intersight_gosdk/model_asset_deployment_device.go index 36c2ba3625..21fd56a4a0 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-18012 +API version: 1.0.11-18369 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 fa14914833..f9be7b3f10 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-18012 +API version: 1.0.11-18369 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 ec27c13519..e421bf97d7 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-18012 +API version: 1.0.11-18369 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 3138002dca..be1da77055 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-18012 +API version: 1.0.11-18369 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 9ced35abde..60243df223 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-18012 +API version: 1.0.11-18369 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 8446d23b8b..07ef77cbb9 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_deployment_list.go b/intersight_gosdk/model_asset_deployment_list.go index 9de07c1005..e8839bd1bb 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_deployment_relationship.go b/intersight_gosdk/model_asset_deployment_relationship.go index fedbfef22b..4f6700a649 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_deployment_response.go b/intersight_gosdk/model_asset_deployment_response.go index 748c3f8a10..8105ccc778 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_device_claim.go b/intersight_gosdk/model_asset_device_claim.go index c2e9157522..66283cf78b 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-18012 +API version: 1.0.11-18369 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 008d635f11..efcb1e737b 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_device_configuration.go b/intersight_gosdk/model_asset_device_configuration.go index d178963fca..750170f9e0 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-18012 +API version: 1.0.11-18369 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 91046e27e9..c92ba06338 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-18012 +API version: 1.0.11-18369 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 62a295c9b0..73e301f6fd 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-18012 +API version: 1.0.11-18369 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 4cdf6c7bd4..f585045c69 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_device_connection.go b/intersight_gosdk/model_asset_device_connection.go index e00be6dea9..9124c6cd34 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-18012 +API version: 1.0.11-18369 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 1b72e89e8d..45e7bef0bb 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-18012 +API version: 1.0.11-18369 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 49e587ab8a..95ecb48207 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-18012 +API version: 1.0.11-18369 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 ab55dc6da1..1ed6b9233f 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-18012 +API version: 1.0.11-18369 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 c87039d7ae..70726f19b2 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-18012 +API version: 1.0.11-18369 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 a024d4d5a1..685e6eec31 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-18012 +API version: 1.0.11-18369 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 cad8568822..b9d99c6dbe 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-18012 +API version: 1.0.11-18369 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 a4a0da55f2..ca58e01df3 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-18012 +API version: 1.0.11-18369 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 500323dc98..23ceebccaf 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-18012 +API version: 1.0.11-18369 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 93fdf477f1..59a5631623 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-18012 +API version: 1.0.11-18369 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 bf8fd82a1a..9425635aed 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_device_information.go b/intersight_gosdk/model_asset_device_information.go index 54b024abdf..b09a10ae21 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_device_registration.go b/intersight_gosdk/model_asset_device_registration.go index 7421f86ef7..3a1cbf2f7c 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-18012 +API version: 1.0.11-18369 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 019cf59ee1..1490a49131 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-18012 +API version: 1.0.11-18369 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 0d3deba41f..a2b5a92ec7 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-18012 +API version: 1.0.11-18369 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 625fc7a084..c29fa8beb4 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_device_statistics.go b/intersight_gosdk/model_asset_device_statistics.go index 3bff197f34..b88823c0b3 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_device_transaction.go b/intersight_gosdk/model_asset_device_transaction.go index b177f89960..b6009e6d6c 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-18012 +API version: 1.0.11-18369 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 56e02124ad..78183cfa06 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_global_ultimate.go b/intersight_gosdk/model_asset_global_ultimate.go index d6b0dcd6fb..e6c949cd1b 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-18012 +API version: 1.0.11-18369 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 83e117d8b7..78895e6bb7 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_http_connection.go b/intersight_gosdk/model_asset_http_connection.go index 8c5c5988b2..991523f0e5 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-18012 +API version: 1.0.11-18369 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 81dfa18c25..dba0f0f59b 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-18012 +API version: 1.0.11-18369 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 3c670331fa..45644bcc00 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_metering_type.go b/intersight_gosdk/model_asset_metering_type.go index 9d58339244..5bf279cd1a 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-18012 +API version: 1.0.11-18369 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 371d459d1f..debdf50c6a 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-18012 +API version: 1.0.11-18369 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 3f47db30d6..d3adc36a8d 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-18012 +API version: 1.0.11-18369 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 7084c21c07..62950cf6dc 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-18012 +API version: 1.0.11-18369 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 f6f7b46d08..e33e874066 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-18012 +API version: 1.0.11-18369 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 47f4678d5e..9d2459bfbc 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-18012 +API version: 1.0.11-18369 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 58ef3d53a2..8028fd2133 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-18012 +API version: 1.0.11-18369 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 3a96ba8aa9..fd30824781 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_orchestration_service.go b/intersight_gosdk/model_asset_orchestration_service.go index fcab154bc8..327e03e720 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-18012 +API version: 1.0.11-18369 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 59ac22de07..7539f9b355 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-18012 +API version: 1.0.11-18369 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 9f91053ce4..384b2675dd 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_product_information.go b/intersight_gosdk/model_asset_product_information.go index 10cb96a684..ea2c88de9c 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-18012 +API version: 1.0.11-18369 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 2f47d7f4aa..ae780b8457 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_service.go b/intersight_gosdk/model_asset_service.go index 03c2dd9fc1..23ce953dc2 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-18012 +API version: 1.0.11-18369 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 3b78fc0760..b98cd56e6b 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_service_options.go b/intersight_gosdk/model_asset_service_options.go index 1c76ee0ddc..bf6d371f3c 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_ssh_connection.go b/intersight_gosdk/model_asset_ssh_connection.go index 797f776c91..35628cbd00 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_subscription.go b/intersight_gosdk/model_asset_subscription.go index 1ae5b79448..2ea8fb32ce 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_subscription_account.go b/intersight_gosdk/model_asset_subscription_account.go index 6c213e5e72..7fd7de360c 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-18012 +API version: 1.0.11-18369 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 8236c39ec0..acadb8e44d 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-18012 +API version: 1.0.11-18369 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 c405a490c1..2ea561f641 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-18012 +API version: 1.0.11-18369 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 4d94de5a78..bf7442f0ac 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-18012 +API version: 1.0.11-18369 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 5796fa7e53..4032218ce8 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-18012 +API version: 1.0.11-18369 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 879a8e6885..7a1d21d53d 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-18012 +API version: 1.0.11-18369 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 804a13e562..8cbfdd4165 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_subscription_list.go b/intersight_gosdk/model_asset_subscription_list.go index 5f20db151d..60d24ee9cb 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_subscription_relationship.go b/intersight_gosdk/model_asset_subscription_relationship.go index b080fb7833..d905050027 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_subscription_response.go b/intersight_gosdk/model_asset_subscription_response.go index bef17dedc8..095d0d0929 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_sudi_info.go b/intersight_gosdk/model_asset_sudi_info.go index 68e826f6f7..8261b41579 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_target.go b/intersight_gosdk/model_asset_target.go index c7eae94374..bed4d011b9 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_target_key.go b/intersight_gosdk/model_asset_target_key.go index 0b5ea283a1..b18fc29a8c 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_target_list.go b/intersight_gosdk/model_asset_target_list.go index 661c793480..14ff0de788 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_target_relationship.go b/intersight_gosdk/model_asset_target_relationship.go index 91d85ab326..277ccb8756 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_target_response.go b/intersight_gosdk/model_asset_target_response.go index 98aee51e42..242caeeb0a 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_target_signature.go b/intersight_gosdk/model_asset_target_signature.go index 7046194699..787c22f162 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-18012 +API version: 1.0.11-18369 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 0e85964fb3..187192485a 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-18012 +API version: 1.0.11-18369 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 35b4aac607..1560194041 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-18012 +API version: 1.0.11-18369 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 07ce7dc96e..8604facff5 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-18012 +API version: 1.0.11-18369 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 cbe13a3df2..07fbf7f0d5 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-18012 +API version: 1.0.11-18369 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 b44a5eca49..7441207589 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-18012 +API version: 1.0.11-18369 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 125158ed0e..e9f860d9c3 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-18012 +API version: 1.0.11-18369 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 2193f57f1e..684504cf7b 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_virtualization_service.go b/intersight_gosdk/model_asset_virtualization_service.go index 6a4037972b..518b727c55 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_asset_vm_host.go b/intersight_gosdk/model_asset_vm_host.go index 041e44acb3..d30badab2d 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-18012 +API version: 1.0.11-18369 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 374549a11d..d00694008d 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-18012 +API version: 1.0.11-18369 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 ad71825f01..9b10963cce 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-18012 +API version: 1.0.11-18369 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 e5b6fd4335..671afc5816 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-18012 +API version: 1.0.11-18369 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 069ce5f724..1309be8ec0 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-18012 +API version: 1.0.11-18369 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 33909d0b4c..d62ecd8bb4 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-18012 +API version: 1.0.11-18369 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 fe711f2b84..f4dd34b479 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-18012 +API version: 1.0.11-18369 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 041c5dc36b..39abf368de 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-18012 +API version: 1.0.11-18369 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 f24983fced..c11c65eca4 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-18012 +API version: 1.0.11-18369 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 297df2e6ed..847c6711ea 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-18012 +API version: 1.0.11-18369 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 5468fcfe8c..bf223ecea9 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-18012 +API version: 1.0.11-18369 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 101077e384..e4134bdd4a 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-18012 +API version: 1.0.11-18369 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 ad4ddd46f4..63bf6500ab 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-18012 +API version: 1.0.11-18369 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 3419a9edca..6a7c4d9963 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-18012 +API version: 1.0.11-18369 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 2d67e797a1..e71d8bc24f 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-18012 +API version: 1.0.11-18369 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 c6c3aeb101..8ec6f37c11 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_bios_boot_device.go b/intersight_gosdk/model_bios_boot_device.go index 638360e604..a66dd5744b 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-18012 +API version: 1.0.11-18369 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 b04dd1ab4a..1d8dd0431e 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-18012 +API version: 1.0.11-18369 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 2596e0a09d..5cc3e24a1a 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-18012 +API version: 1.0.11-18369 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 7135116f21..d6437a46fa 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_bios_boot_mode.go b/intersight_gosdk/model_bios_boot_mode.go index f090471410..84896f0805 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-18012 +API version: 1.0.11-18369 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 abe1eb638c..fdefd1c5f3 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-18012 +API version: 1.0.11-18369 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 be2bed3ab1..76830c71d0 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-18012 +API version: 1.0.11-18369 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 afe8f89028..f4d4873e78 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_bios_policy.go b/intersight_gosdk/model_bios_policy.go index 55d8318457..da90e626ed 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_bios_policy_list.go b/intersight_gosdk/model_bios_policy_list.go index 83d334eae2..91a34ae340 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_bios_policy_response.go b/intersight_gosdk/model_bios_policy_response.go index db6e0ce178..043ae727d3 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-18012 +API version: 1.0.11-18369 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 ecce15ebfe..6100f7afa6 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-18012 +API version: 1.0.11-18369 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 5a739aba26..03afbd7b9f 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-18012 +API version: 1.0.11-18369 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 66db6cca82..137f714908 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-18012 +API version: 1.0.11-18369 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 47fe0234fe..549a858236 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_bios_token_settings.go b/intersight_gosdk/model_bios_token_settings.go index c01d0e4898..654b977e72 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-18012 +API version: 1.0.11-18369 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 9e70a26781..10089d5ef8 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-18012 +API version: 1.0.11-18369 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 ce9e9b3aec..e3844aa8df 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-18012 +API version: 1.0.11-18369 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 33055921fd..efd51cc184 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_bios_unit.go b/intersight_gosdk/model_bios_unit.go index 5b2bfb626a..69ac6b9808 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_bios_unit_list.go b/intersight_gosdk/model_bios_unit_list.go index f631a94bde..d2bd80e29e 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_bios_unit_relationship.go b/intersight_gosdk/model_bios_unit_relationship.go index 72a04a87a5..413ab6a1bf 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_bios_unit_response.go b/intersight_gosdk/model_bios_unit_response.go index bacdc9ef13..7b31e5343a 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-18012 +API version: 1.0.11-18369 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 d094575d3f..44c560065e 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-18012 +API version: 1.0.11-18369 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 74dd4467ed..dddd39f65c 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-18012 +API version: 1.0.11-18369 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 cd14a25e6b..dff45a2a5b 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-18012 +API version: 1.0.11-18369 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 29d1c1dc84..04055967e2 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_boot_bootloader.go b/intersight_gosdk/model_boot_bootloader.go index ca7b8d56e2..164d30c87a 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_boot_cdd_device.go b/intersight_gosdk/model_boot_cdd_device.go index 262e39ee3c..f1971e903a 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-18012 +API version: 1.0.11-18369 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 7c79204059..bbb0f8deb5 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-18012 +API version: 1.0.11-18369 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 747b0e4050..b3f4edb1de 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-18012 +API version: 1.0.11-18369 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 660682a4d8..658d47bd34 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_boot_configured_device.go b/intersight_gosdk/model_boot_configured_device.go index 06fddaa794..25768573dd 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_boot_device_base.go b/intersight_gosdk/model_boot_device_base.go index 5b3beec2d4..ada5937efe 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_boot_device_boot_mode.go b/intersight_gosdk/model_boot_device_boot_mode.go index 4fd90762b9..091452ec77 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-18012 +API version: 1.0.11-18369 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 b89c3409b3..c73e1a3805 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-18012 +API version: 1.0.11-18369 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 874ebd0a42..9ee6d29104 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-18012 +API version: 1.0.11-18369 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 26aa0b851d..020d7c3f8c 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-18012 +API version: 1.0.11-18369 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 203bec516d..908ab2d8f3 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-18012 +API version: 1.0.11-18369 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 434cc27724..02d1ab08bb 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-18012 +API version: 1.0.11-18369 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 d21cfaf999..ff38eb472c 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-18012 +API version: 1.0.11-18369 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 2ead4386fc..a20221c295 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_boot_flex_mmc.go b/intersight_gosdk/model_boot_flex_mmc.go index 74c69d0038..83bd537ed1 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_boot_hdd_device.go b/intersight_gosdk/model_boot_hdd_device.go index f84885777e..4209dab274 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-18012 +API version: 1.0.11-18369 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 908178f294..253154cc93 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-18012 +API version: 1.0.11-18369 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 8c38442118..dde0e75457 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-18012 +API version: 1.0.11-18369 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 b69a8bd280..1e7659ea19 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_boot_http.go b/intersight_gosdk/model_boot_http.go index d2d75ac21b..4959d8f99d 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_boot_iscsi.go b/intersight_gosdk/model_boot_iscsi.go index 4c0a1fe56b..f016da181c 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_boot_iscsi_device.go b/intersight_gosdk/model_boot_iscsi_device.go index 01cd6a5059..b8db74cea8 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-18012 +API version: 1.0.11-18369 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 0884fe67e7..c238e4d7cd 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-18012 +API version: 1.0.11-18369 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 d3c32e3ab6..a488ff53ab 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-18012 +API version: 1.0.11-18369 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 8bf19ec3ea..b4c97ec9b2 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_boot_local_cdd.go b/intersight_gosdk/model_boot_local_cdd.go index 5d08394e6a..b021436269 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_boot_local_disk.go b/intersight_gosdk/model_boot_local_disk.go index e49e297e8d..b02b93da27 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_boot_nvme.go b/intersight_gosdk/model_boot_nvme.go index 31b8d706a3..911fbcb791 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_boot_nvme_device.go b/intersight_gosdk/model_boot_nvme_device.go index 5e83c18e3a..1543b60863 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-18012 +API version: 1.0.11-18369 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 4cb616eb91..c4ad721a46 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-18012 +API version: 1.0.11-18369 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 01c2685a72..1713fa3aab 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-18012 +API version: 1.0.11-18369 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 aa7defff94..b6d628c676 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_boot_pch_storage.go b/intersight_gosdk/model_boot_pch_storage.go index e5dad40a8b..b2c543d01e 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-18012 +API version: 1.0.11-18369 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 0e676a1ad0..2a1f1fa128 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-18012 +API version: 1.0.11-18369 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 9a07373536..f826a91e54 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-18012 +API version: 1.0.11-18369 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 dc3013d5d2..050744c7e0 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-18012 +API version: 1.0.11-18369 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 0e73a92322..5d016a4af0 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_boot_precision_policy.go b/intersight_gosdk/model_boot_precision_policy.go index 5fd3a91870..4dd6035f6d 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-18012 +API version: 1.0.11-18369 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 4d4ac66b5d..dc497511f6 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-18012 +API version: 1.0.11-18369 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 1240ea1a67..b04c092ccd 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_boot_pxe.go b/intersight_gosdk/model_boot_pxe.go index 092c32c143..c96d7ff519 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_boot_pxe_device.go b/intersight_gosdk/model_boot_pxe_device.go index 4808d47d42..01002be6ff 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-18012 +API version: 1.0.11-18369 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 c72c70cd9f..2ce16d8b17 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-18012 +API version: 1.0.11-18369 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 9952a7de76..43f8f859cd 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-18012 +API version: 1.0.11-18369 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 8bf267a85f..25a29f6b9d 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_boot_san.go b/intersight_gosdk/model_boot_san.go index 76c6027605..e11c02bb64 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_boot_san_device.go b/intersight_gosdk/model_boot_san_device.go index 948c98290f..3b782e899b 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-18012 +API version: 1.0.11-18369 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 18f455d49e..1374f4aba6 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-18012 +API version: 1.0.11-18369 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 74a0f553bc..3c4e5e1f91 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-18012 +API version: 1.0.11-18369 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 3dcdbdac97..1c43b2c347 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_boot_sd_card.go b/intersight_gosdk/model_boot_sd_card.go index 3919cc62f1..94d79319c5 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_boot_sd_device.go b/intersight_gosdk/model_boot_sd_device.go index f46f409a2e..99d9c35e32 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-18012 +API version: 1.0.11-18369 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 9a5f974a1b..8c2a275d12 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-18012 +API version: 1.0.11-18369 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 caa567017b..9b26950925 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-18012 +API version: 1.0.11-18369 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 1075a0abd3..e03b4c1b12 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-18012 +API version: 1.0.11-18369 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 1978508912..21e709fcf8 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_boot_static_ip_v6_settings.go b/intersight_gosdk/model_boot_static_ip_v6_settings.go index 8642dc30c2..7f30c0663f 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_boot_uefi_shell.go b/intersight_gosdk/model_boot_uefi_shell.go index 1c43ce084a..aedab01db2 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-18012 +API version: 1.0.11-18369 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 e32e6a4ac5..b4406b51c0 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-18012 +API version: 1.0.11-18369 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 2b807427e2..52fa261d2f 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-18012 +API version: 1.0.11-18369 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 74ab05b1d6..6d7d60b698 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-18012 +API version: 1.0.11-18369 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 f9fca1686c..90217de9f3 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_boot_usb.go b/intersight_gosdk/model_boot_usb.go index 6844a4cf3e..63c98f3f7d 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_boot_usb_device.go b/intersight_gosdk/model_boot_usb_device.go index 4bb06c9127..d92ede7e5f 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-18012 +API version: 1.0.11-18369 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 96ccf664fa..d1314dc496 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-18012 +API version: 1.0.11-18369 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 39233a30b5..57c32a3e82 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-18012 +API version: 1.0.11-18369 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 cbf6793cfe..bbc13ecda0 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_boot_virtual_media.go b/intersight_gosdk/model_boot_virtual_media.go index 002162fdeb..e1209e768b 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_boot_vmedia_device.go b/intersight_gosdk/model_boot_vmedia_device.go index 64514aa6e0..dffa7f0f31 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-18012 +API version: 1.0.11-18369 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 f1527e3b7b..adb6dc814b 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-18012 +API version: 1.0.11-18369 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 123675c755..b0e2e7e1f3 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-18012 +API version: 1.0.11-18369 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 1c6e9e14ca..d0d246d835 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_bulk_api_result.go b/intersight_gosdk/model_bulk_api_result.go index 5ffdba1c8a..d2d80ea605 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_bulk_export.go b/intersight_gosdk/model_bulk_export.go index c4217923bc..6f04f20b02 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_bulk_export_list.go b/intersight_gosdk/model_bulk_export_list.go index f534e1791a..09e136a7c4 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_bulk_export_relationship.go b/intersight_gosdk/model_bulk_export_relationship.go index 4d70cf0ce3..9bef8bc045 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_bulk_export_response.go b/intersight_gosdk/model_bulk_export_response.go index 6e8c9d95c2..7908423458 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_bulk_exported_item.go b/intersight_gosdk/model_bulk_exported_item.go index e7479daa1f..c29a35368a 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-18012 +API version: 1.0.11-18369 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 ac58eaad45..6994b57283 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-18012 +API version: 1.0.11-18369 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 914cddbf86..dc65ba2f75 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-18012 +API version: 1.0.11-18369 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 3384a431cd..72510e3d45 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_bulk_http_header.go b/intersight_gosdk/model_bulk_http_header.go index c28514bb18..1ed6a552d9 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_bulk_mo_cloner.go b/intersight_gosdk/model_bulk_mo_cloner.go index 830b087cec..c1642f204a 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_bulk_mo_cloner_list.go b/intersight_gosdk/model_bulk_mo_cloner_list.go index 6e07348b08..456a3f59ed 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-18012 +API version: 1.0.11-18369 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 8631a1ae60..3479414880 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-18012 +API version: 1.0.11-18369 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 ede9e76fc7..8e09bf8b42 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-18012 +API version: 1.0.11-18369 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 01f6511842..26f8633892 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_bulk_mo_deep_cloner_list.go b/intersight_gosdk/model_bulk_mo_deep_cloner_list.go index b90ee054ff..4c45fdfb1c 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-18012 +API version: 1.0.11-18369 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 e5be3e87b0..db52aa7909 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-18012 +API version: 1.0.11-18369 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 370b42bf5d..8849de3da9 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_bulk_mo_merger.go b/intersight_gosdk/model_bulk_mo_merger.go index 36ba446931..fed1c14c7e 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_bulk_mo_merger_list.go b/intersight_gosdk/model_bulk_mo_merger_list.go index 83623f129e..343faa47ea 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-18012 +API version: 1.0.11-18369 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 43cdb8c474..04768bc2e7 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-18012 +API version: 1.0.11-18369 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 0f85fffd7e..4780a4b454 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-18012 +API version: 1.0.11-18369 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 b2550f00f3..ba513a1b6a 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_bulk_patch_content.go b/intersight_gosdk/model_bulk_patch_content.go index 7df7deddff..6ca25a55a1 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_bulk_request.go b/intersight_gosdk/model_bulk_request.go index bafd780aa3..bb04ecc7f1 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_bulk_request_list.go b/intersight_gosdk/model_bulk_request_list.go index 0fbb5d5bfe..10ae600036 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_bulk_request_relationship.go b/intersight_gosdk/model_bulk_request_relationship.go index b807ce329f..0a0a969ace 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_bulk_request_response.go b/intersight_gosdk/model_bulk_request_response.go index e1ff474a28..ef3c78c2f5 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_bulk_rest_result.go b/intersight_gosdk/model_bulk_rest_result.go index 52f753db13..9fc48c9960 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-18012 +API version: 1.0.11-18369 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 f289d199da..d013df5bf7 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_bulk_result.go b/intersight_gosdk/model_bulk_result.go index 94e9408d8d..827e395a9e 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_bulk_result_list.go b/intersight_gosdk/model_bulk_result_list.go index dda2540a6d..2ad8ea7042 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_bulk_result_relationship.go b/intersight_gosdk/model_bulk_result_relationship.go index 24b26f90d8..460f9d0d50 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_bulk_result_response.go b/intersight_gosdk/model_bulk_result_response.go index 2b14473ba3..7f4e7f7321 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-18012 +API version: 1.0.11-18369 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 190acaf863..3044baff86 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_bulk_sub_request.go b/intersight_gosdk/model_bulk_sub_request.go index 1a6df6466d..84ead2d366 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-18012 +API version: 1.0.11-18369 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 afbadeb780..26cab74f09 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-18012 +API version: 1.0.11-18369 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 b16a418bd4..13ec28107a 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-18012 +API version: 1.0.11-18369 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 b362e6eb22..b6ac8527a9 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-18012 +API version: 1.0.11-18369 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 1233af2b81..57b6948977 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-18012 +API version: 1.0.11-18369 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 801e4541b6..edd746dcd1 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-18012 +API version: 1.0.11-18369 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 7886f18c57..bcf56732f2 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-18012 +API version: 1.0.11-18369 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 b0f934de1c..eab4cf5686 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-18012 +API version: 1.0.11-18369 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 e99e144075..c2d8ace089 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-18012 +API version: 1.0.11-18369 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 a00445283e..28a8bfe09c 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-18012 +API version: 1.0.11-18369 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 a228909cc0..0e3554feac 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-18012 +API version: 1.0.11-18369 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 c1e0ea146e..342693f5a2 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-18012 +API version: 1.0.11-18369 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 93c77bd359..40cd42876f 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-18012 +API version: 1.0.11-18369 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 990b28384d..b1d9e46327 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-18012 +API version: 1.0.11-18369 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 5c91fe715c..b59587caf2 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-18012 +API version: 1.0.11-18369 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 9ac76483e5..b81b967aa3 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-18012 +API version: 1.0.11-18369 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 91e97aa6a9..a2c7573f11 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-18012 +API version: 1.0.11-18369 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 9d8d812c24..d43063008b 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ @@ -24,12 +24,6 @@ var _ MappedNullable = &CapabilityAdapterUpdateConstraintMeta{} // CapabilityAdapterUpdateConstraintMeta Internal meta-data to enable adapter unit update related constraints. type CapabilityAdapterUpdateConstraintMeta struct { CapabilityUpdateConstraintMeta - // 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. - 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"` - // Platform for which the constraint is to be enforced. - SupportedPlatform *string `json:"SupportedPlatform,omitempty"` AdditionalProperties map[string]interface{} } @@ -51,103 +45,9 @@ func NewCapabilityAdapterUpdateConstraintMeta(classId string, objectType string) // but it doesn't guarantee that properties required by API are set func NewCapabilityAdapterUpdateConstraintMetaWithDefaults() *CapabilityAdapterUpdateConstraintMeta { this := CapabilityAdapterUpdateConstraintMeta{} - var classId string = "capability.AdapterUpdateConstraintMeta" - this.ClassId = classId - var objectType string = "capability.AdapterUpdateConstraintMeta" - this.ObjectType = objectType return &this } -// GetClassId returns the ClassId field value -func (o *CapabilityAdapterUpdateConstraintMeta) GetClassId() string { - if o == nil { - var ret string - return ret - } - - return o.ClassId -} - -// GetClassIdOk returns a tuple with the ClassId field value -// and a boolean to check if the value has been set. -func (o *CapabilityAdapterUpdateConstraintMeta) GetClassIdOk() (*string, bool) { - if o == nil { - return nil, false - } - return &o.ClassId, true -} - -// SetClassId sets field value -func (o *CapabilityAdapterUpdateConstraintMeta) SetClassId(v string) { - o.ClassId = v -} - -// GetDefaultClassId returns the default value "capability.AdapterUpdateConstraintMeta" of the ClassId field. -func (o *CapabilityAdapterUpdateConstraintMeta) GetDefaultClassId() interface{} { - return "capability.AdapterUpdateConstraintMeta" -} - -// GetObjectType returns the ObjectType field value -func (o *CapabilityAdapterUpdateConstraintMeta) GetObjectType() string { - if o == nil { - var ret string - return ret - } - - return o.ObjectType -} - -// GetObjectTypeOk returns a tuple with the ObjectType field value -// and a boolean to check if the value has been set. -func (o *CapabilityAdapterUpdateConstraintMeta) GetObjectTypeOk() (*string, bool) { - if o == nil { - return nil, false - } - return &o.ObjectType, true -} - -// SetObjectType sets field value -func (o *CapabilityAdapterUpdateConstraintMeta) SetObjectType(v string) { - o.ObjectType = v -} - -// GetDefaultObjectType returns the default value "capability.AdapterUpdateConstraintMeta" of the ObjectType field. -func (o *CapabilityAdapterUpdateConstraintMeta) GetDefaultObjectType() interface{} { - return "capability.AdapterUpdateConstraintMeta" -} - -// GetSupportedPlatform returns the SupportedPlatform field value if set, zero value otherwise. -func (o *CapabilityAdapterUpdateConstraintMeta) GetSupportedPlatform() string { - if o == nil || IsNil(o.SupportedPlatform) { - var ret string - return ret - } - return *o.SupportedPlatform -} - -// GetSupportedPlatformOk returns a tuple with the SupportedPlatform field value if set, nil otherwise -// and a boolean to check if the value has been set. -func (o *CapabilityAdapterUpdateConstraintMeta) GetSupportedPlatformOk() (*string, bool) { - if o == nil || IsNil(o.SupportedPlatform) { - return nil, false - } - return o.SupportedPlatform, true -} - -// HasSupportedPlatform returns a boolean if a field has been set. -func (o *CapabilityAdapterUpdateConstraintMeta) HasSupportedPlatform() bool { - if o != nil && !IsNil(o.SupportedPlatform) { - return true - } - - return false -} - -// SetSupportedPlatform gets a reference to the given string and assigns it to the SupportedPlatform field. -func (o *CapabilityAdapterUpdateConstraintMeta) SetSupportedPlatform(v string) { - o.SupportedPlatform = &v -} - func (o CapabilityAdapterUpdateConstraintMeta) MarshalJSON() ([]byte, error) { toSerialize, err := o.ToMap() if err != nil { @@ -166,17 +66,6 @@ func (o CapabilityAdapterUpdateConstraintMeta) ToMap() (map[string]interface{}, if errCapabilityUpdateConstraintMeta != nil { return map[string]interface{}{}, errCapabilityUpdateConstraintMeta } - if _, exists := toSerialize["ClassId"]; !exists { - toSerialize["ClassId"] = o.GetDefaultClassId() - } - toSerialize["ClassId"] = o.ClassId - if _, exists := toSerialize["ObjectType"]; !exists { - toSerialize["ObjectType"] = o.GetDefaultObjectType() - } - toSerialize["ObjectType"] = o.ObjectType - if !IsNil(o.SupportedPlatform) { - toSerialize["SupportedPlatform"] = o.SupportedPlatform - } for key, value := range o.AdditionalProperties { toSerialize[key] = value @@ -196,10 +85,7 @@ func (o *CapabilityAdapterUpdateConstraintMeta) UnmarshalJSON(data []byte) (err // defaultValueFuncMap captures the default values for required properties. // These values are used when required properties are missing from the payload. - defaultValueFuncMap := map[string]func() interface{}{ - "ClassId": o.GetDefaultClassId, - "ObjectType": o.GetDefaultObjectType, - } + defaultValueFuncMap := map[string]func() interface{}{} var defaultValueApplied bool allProperties := make(map[string]interface{}) @@ -228,12 +114,6 @@ func (o *CapabilityAdapterUpdateConstraintMeta) UnmarshalJSON(data []byte) (err } } type CapabilityAdapterUpdateConstraintMetaWithoutEmbeddedStruct struct { - // 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. - 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"` - // Platform for which the constraint is to be enforced. - SupportedPlatform *string `json:"SupportedPlatform,omitempty"` } varCapabilityAdapterUpdateConstraintMetaWithoutEmbeddedStruct := CapabilityAdapterUpdateConstraintMetaWithoutEmbeddedStruct{} @@ -241,9 +121,6 @@ func (o *CapabilityAdapterUpdateConstraintMeta) UnmarshalJSON(data []byte) (err err = json.Unmarshal(data, &varCapabilityAdapterUpdateConstraintMetaWithoutEmbeddedStruct) if err == nil { varCapabilityAdapterUpdateConstraintMeta := _CapabilityAdapterUpdateConstraintMeta{} - varCapabilityAdapterUpdateConstraintMeta.ClassId = varCapabilityAdapterUpdateConstraintMetaWithoutEmbeddedStruct.ClassId - varCapabilityAdapterUpdateConstraintMeta.ObjectType = varCapabilityAdapterUpdateConstraintMetaWithoutEmbeddedStruct.ObjectType - varCapabilityAdapterUpdateConstraintMeta.SupportedPlatform = varCapabilityAdapterUpdateConstraintMetaWithoutEmbeddedStruct.SupportedPlatform *o = CapabilityAdapterUpdateConstraintMeta(varCapabilityAdapterUpdateConstraintMeta) } else { return err @@ -261,9 +138,6 @@ func (o *CapabilityAdapterUpdateConstraintMeta) UnmarshalJSON(data []byte) (err additionalProperties := make(map[string]interface{}) if err = json.Unmarshal(data, &additionalProperties); err == nil { - delete(additionalProperties, "ClassId") - delete(additionalProperties, "ObjectType") - delete(additionalProperties, "SupportedPlatform") // remove fields from embedded structs reflectCapabilityUpdateConstraintMeta := reflect.ValueOf(o.CapabilityUpdateConstraintMeta) 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 13568b2e47..c3ca709108 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-18012 +API version: 1.0.11-18369 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 004729f543..b98500020f 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-18012 +API version: 1.0.11-18369 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 efb3d620d7..87e829fd11 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-18012 +API version: 1.0.11-18369 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 c8718bfebc..091ff8c02f 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-18012 +API version: 1.0.11-18369 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 e1758b6ca3..ac83be4fce 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_capability.go b/intersight_gosdk/model_capability_capability.go index 54d7a71020..b6b7fc8f95 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_capability_relationship.go b/intersight_gosdk/model_capability_capability_relationship.go index 4297bd16b2..85f7673301 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_catalog.go b/intersight_gosdk/model_capability_catalog.go index 793fc7786e..ecd2b5b03d 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_catalog_list.go b/intersight_gosdk/model_capability_catalog_list.go index bc3a552a0e..b87e0fb414 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_catalog_response.go b/intersight_gosdk/model_capability_catalog_response.go index 5e92fe751a..47ea841b1f 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_chassis_descriptor.go b/intersight_gosdk/model_capability_chassis_descriptor.go index 6785b96ae2..fa1db4f5b2 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-18012 +API version: 1.0.11-18369 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 8f531ee08f..3c69274234 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-18012 +API version: 1.0.11-18369 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 b9bc38e944..699ad48841 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-18012 +API version: 1.0.11-18369 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 e064d9946e..81061c9e43 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-18012 +API version: 1.0.11-18369 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 fff66fe074..9001f059ba 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-18012 +API version: 1.0.11-18369 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 9d84abce4f..c12bdaf622 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-18012 +API version: 1.0.11-18369 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 a021265e9d..4f1c992f41 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-18012 +API version: 1.0.11-18369 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 cd35416a9f..a2d9993e88 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-18012 +API version: 1.0.11-18369 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 6883d13d22..9b67d4c447 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-18012 +API version: 1.0.11-18369 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 a3bd33d3f2..9743957240 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-18012 +API version: 1.0.11-18369 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 8907dca496..1268a14da2 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-18012 +API version: 1.0.11-18369 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 5314ecb48d..4367405a08 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-18012 +API version: 1.0.11-18369 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 a38e0cd2ba..456b3f30ed 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-18012 +API version: 1.0.11-18369 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 7b25ec731f..68c15b33d9 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-18012 +API version: 1.0.11-18369 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 0e70f4ae2a..9affa915fb 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-18012 +API version: 1.0.11-18369 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 0054ab5464..242babba44 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-18012 +API version: 1.0.11-18369 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 3552c21327..c397ef2aac 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-18012 +API version: 1.0.11-18369 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 468ab599d7..07762b2ee3 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-18012 +API version: 1.0.11-18369 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 a7b960e68e..8dccce703b 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-18012 +API version: 1.0.11-18369 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 efab8e43fc..c914f8172c 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-18012 +API version: 1.0.11-18369 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 4eee41a2f9..2dc2d0e541 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_endpoint_descriptor.go b/intersight_gosdk/model_capability_endpoint_descriptor.go index 0b59cc521c..493783b052 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-18012 +API version: 1.0.11-18369 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 f3b57ddd52..0eaf6152b9 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-18012 +API version: 1.0.11-18369 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 10b8a0508c..33a3dccf00 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-18012 +API version: 1.0.11-18369 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 d08eb5e532..807f476f30 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-18012 +API version: 1.0.11-18369 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 6ea9f6d88f..f0d1ef822a 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-18012 +API version: 1.0.11-18369 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 8968ace918..ef1199bb1b 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-18012 +API version: 1.0.11-18369 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 d84eaa8157..e7d8fee153 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-18012 +API version: 1.0.11-18369 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 bfb200e2d2..5c4489b07c 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-18012 +API version: 1.0.11-18369 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 66895cb360..8256a29829 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-18012 +API version: 1.0.11-18369 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 7b8daad856..0c4414a15b 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-18012 +API version: 1.0.11-18369 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 704318f28a..35ede3fa92 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-18012 +API version: 1.0.11-18369 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 4428619f58..a0412a1490 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-18012 +API version: 1.0.11-18369 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 dea70968d7..a8d0669f70 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_feature_config.go b/intersight_gosdk/model_capability_feature_config.go index cad6f998e9..070003c477 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-18012 +API version: 1.0.11-18369 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 dd1e521aae..b85989979c 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-18012 +API version: 1.0.11-18369 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 285211612f..1bbd92532c 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-18012 +API version: 1.0.11-18369 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 5da28d1d2b..31aa807c09 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_fex_descriptor.go b/intersight_gosdk/model_capability_fex_descriptor.go index e6c29d34a1..105aab4388 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-18012 +API version: 1.0.11-18369 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 94ecd73d2e..b2de483eaa 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-18012 +API version: 1.0.11-18369 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 e5657e6089..91376a6593 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-18012 +API version: 1.0.11-18369 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 5eb63fc0d8..af5db0cc0f 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-18012 +API version: 1.0.11-18369 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 90e5acdec8..bc5a9852da 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-18012 +API version: 1.0.11-18369 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 3e83368ef9..ec76c1178c 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-18012 +API version: 1.0.11-18369 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 06a48460c5..8a8dfe0c05 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-18012 +API version: 1.0.11-18369 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 31a0ad5ec2..14e39c324f 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-18012 +API version: 1.0.11-18369 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 fe5cadcb9b..bf585b5592 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_hardware_descriptor.go b/intersight_gosdk/model_capability_hardware_descriptor.go index bb3a19f88f..8295e09a83 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-18012 +API version: 1.0.11-18369 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 f80708a4ac..c320327c16 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-18012 +API version: 1.0.11-18369 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 1a807eb7c7..7aec7f98a9 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-18012 +API version: 1.0.11-18369 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 c9ab8853f8..ba21563cd4 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-18012 +API version: 1.0.11-18369 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 f3800888fe..2727e4915d 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-18012 +API version: 1.0.11-18369 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 389e9f5eb6..fb52b86c01 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-18012 +API version: 1.0.11-18369 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 461f55e1e4..9b3c204aea 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-18012 +API version: 1.0.11-18369 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 3de93486da..afd74e13d6 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-18012 +API version: 1.0.11-18369 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 d353903268..9fda1f51ef 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-18012 +API version: 1.0.11-18369 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 55434f087e..38dd08b50d 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-18012 +API version: 1.0.11-18369 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 72d6b55056..5dce3100ef 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-18012 +API version: 1.0.11-18369 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 c7acf9dc2b..dc78d39aa8 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-18012 +API version: 1.0.11-18369 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 f65403728b..f9d8c13957 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-18012 +API version: 1.0.11-18369 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 87a2d57676..aa91fd155a 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-18012 +API version: 1.0.11-18369 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 46aa7cd997..8c06c120b4 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-18012 +API version: 1.0.11-18369 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 b108b48fe4..994c9c7a61 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-18012 +API version: 1.0.11-18369 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 f6269eba67..b96f19ac95 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-18012 +API version: 1.0.11-18369 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 2f5ddca981..348e1bba07 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-18012 +API version: 1.0.11-18369 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 7c9733fd4b..af574014c9 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-18012 +API version: 1.0.11-18369 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 8ff22350a4..366a78ebb7 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_port_range.go b/intersight_gosdk/model_capability_port_range.go index 40f3b19d31..da99cfcd86 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-18012 +API version: 1.0.11-18369 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 3660722eda..eecc0c2f7d 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-18012 +API version: 1.0.11-18369 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 a8d138c2a8..87b62ecfa6 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-18012 +API version: 1.0.11-18369 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 17ae3d00af..ee72f532c4 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_psu_descriptor.go b/intersight_gosdk/model_capability_psu_descriptor.go index 00b62aa029..87dbd2bd33 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-18012 +API version: 1.0.11-18369 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 9281b5d405..fc5749e53e 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-18012 +API version: 1.0.11-18369 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 cf75e9c227..8eb989e37e 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-18012 +API version: 1.0.11-18369 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 668f84cb05..ab467a2b46 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-18012 +API version: 1.0.11-18369 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 7caf26bad5..3973d270e7 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-18012 +API version: 1.0.11-18369 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 09f178a3af..b697fd0eeb 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-18012 +API version: 1.0.11-18369 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 94f4aaa60c..00b3793d1d 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-18012 +API version: 1.0.11-18369 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 df42cc8d32..a769903cea 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-18012 +API version: 1.0.11-18369 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 7ec2b6da5f..37049c2f1e 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-18012 +API version: 1.0.11-18369 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 4472197d35..ca26027da7 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_server_descriptor.go b/intersight_gosdk/model_capability_server_descriptor.go index 5d9970d8bb..71ef5d80a4 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-18012 +API version: 1.0.11-18369 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 57616aaed6..234117ec48 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-18012 +API version: 1.0.11-18369 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 4b9c23e079..551e72bdc8 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-18012 +API version: 1.0.11-18369 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 d633b11812..b8de03eb47 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-18012 +API version: 1.0.11-18369 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 b9491253fb..dc7b034029 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-18012 +API version: 1.0.11-18369 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 a82ae257e9..844be215fe 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-18012 +API version: 1.0.11-18369 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 5c9fd4a354..59e4b227b2 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-18012 +API version: 1.0.11-18369 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 4fe7ecefc8..664ee44f59 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-18012 +API version: 1.0.11-18369 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 48ab91e4dd..b147b888bc 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-18012 +API version: 1.0.11-18369 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 be2b8897a6..9d2bbf4890 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-18012 +API version: 1.0.11-18369 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 367136db3d..ef714d6c6b 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-18012 +API version: 1.0.11-18369 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 13b29eae79..7f4de290de 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-18012 +API version: 1.0.11-18369 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 aeb149a73c..85ab81a683 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-18012 +API version: 1.0.11-18369 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 4bca976d21..bc6a0f8859 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-18012 +API version: 1.0.11-18369 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 5bf914f08b..17cee804cd 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-18012 +API version: 1.0.11-18369 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 1de78abde7..ee0bedb4e0 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-18012 +API version: 1.0.11-18369 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 5b290a810b..e17b3bf071 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-18012 +API version: 1.0.11-18369 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 9cf1a92722..09eec0ce11 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-18012 +API version: 1.0.11-18369 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 ebe04ff10e..c914d3e309 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-18012 +API version: 1.0.11-18369 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 724f79e9de..1c1c60228d 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-18012 +API version: 1.0.11-18369 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 462ccc52d1..ed0bae8c00 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-18012 +API version: 1.0.11-18369 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 d8fc9e1d02..7b10c45f9f 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-18012 +API version: 1.0.11-18369 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 cdaf7e1914..8530de8c6c 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-18012 +API version: 1.0.11-18369 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 a8d07d8305..163a11ec61 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_switch_capability.go b/intersight_gosdk/model_capability_switch_capability.go index a088fe1b7d..1d1e78ac68 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-18012 +API version: 1.0.11-18369 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 7c4e1d1e91..a3f6aa1439 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-18012 +API version: 1.0.11-18369 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 e9c603eb86..7a54d00d18 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-18012 +API version: 1.0.11-18369 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 6e43bd0209..a0b3fdb493 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_switch_descriptor.go b/intersight_gosdk/model_capability_switch_descriptor.go index 63a7d7668a..c23b03d2ba 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-18012 +API version: 1.0.11-18369 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 087701c4e6..7395392a2a 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-18012 +API version: 1.0.11-18369 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 ddbee45c9b..984e381889 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-18012 +API version: 1.0.11-18369 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 2f01524a90..d7dca33cd2 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-18012 +API version: 1.0.11-18369 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 cf0f4e7341..1121f4f8d2 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-18012 +API version: 1.0.11-18369 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 05e4e6ba2f..048adf90d4 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-18012 +API version: 1.0.11-18369 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 b78ce20b59..049bfe50e8 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-18012 +API version: 1.0.11-18369 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 831902db97..95ee7df9f6 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-18012 +API version: 1.0.11-18369 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 ed31387797..a122565cc3 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-18012 +API version: 1.0.11-18369 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 29628dff99..ff127a414d 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-18012 +API version: 1.0.11-18369 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 7cc3c1b22b..585065aedc 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-18012 +API version: 1.0.11-18369 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 32cd2cfb8b..c7a17b0428 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-18012 +API version: 1.0.11-18369 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 540c679e45..f00be8d3cb 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-18012 +API version: 1.0.11-18369 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 b6b1040916..d271c9ac3c 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_template_catalog.go b/intersight_gosdk/model_capability_template_catalog.go index 035304a7b5..02e4034ebe 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-18012 +API version: 1.0.11-18369 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 09ed5448c2..db81663c0d 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-18012 +API version: 1.0.11-18369 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 2a4cdce970..d284534c27 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-18012 +API version: 1.0.11-18369 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 921b8741ff..30ae11816d 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-18012 +API version: 1.0.11-18369 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 a2a48d8be2..4085841440 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ @@ -37,7 +37,6 @@ type CapabilityUpdateConstraintMeta struct { // Platform type for which the constraint is to be enforced. PlatformType *string `json:"PlatformType,omitempty"` ServerSpecificConstraint []CapabilityServerComponentConstraint `json:"ServerSpecificConstraint,omitempty"` - SupportedPlatforms []string `json:"SupportedPlatforms,omitempty"` AdditionalProperties map[string]interface{} } @@ -271,39 +270,6 @@ func (o *CapabilityUpdateConstraintMeta) SetServerSpecificConstraint(v []Capabil o.ServerSpecificConstraint = v } -// GetSupportedPlatforms returns the SupportedPlatforms field value if set, zero value otherwise (both if not set or set to explicit null). -func (o *CapabilityUpdateConstraintMeta) GetSupportedPlatforms() []string { - if o == nil { - var ret []string - return ret - } - return o.SupportedPlatforms -} - -// GetSupportedPlatformsOk returns a tuple with the SupportedPlatforms 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 *CapabilityUpdateConstraintMeta) GetSupportedPlatformsOk() ([]string, bool) { - if o == nil || IsNil(o.SupportedPlatforms) { - return nil, false - } - return o.SupportedPlatforms, true -} - -// HasSupportedPlatforms returns a boolean if a field has been set. -func (o *CapabilityUpdateConstraintMeta) HasSupportedPlatforms() bool { - if o != nil && !IsNil(o.SupportedPlatforms) { - return true - } - - return false -} - -// SetSupportedPlatforms gets a reference to the given []string and assigns it to the SupportedPlatforms field. -func (o *CapabilityUpdateConstraintMeta) SetSupportedPlatforms(v []string) { - o.SupportedPlatforms = v -} - func (o CapabilityUpdateConstraintMeta) MarshalJSON() ([]byte, error) { toSerialize, err := o.ToMap() if err != nil { @@ -339,9 +305,6 @@ func (o CapabilityUpdateConstraintMeta) ToMap() (map[string]interface{}, error) if o.ServerSpecificConstraint != nil { toSerialize["ServerSpecificConstraint"] = o.ServerSpecificConstraint } - if o.SupportedPlatforms != nil { - toSerialize["SupportedPlatforms"] = o.SupportedPlatforms - } for key, value := range o.AdditionalProperties { toSerialize[key] = value @@ -403,7 +366,6 @@ func (o *CapabilityUpdateConstraintMeta) UnmarshalJSON(data []byte) (err error) // Platform type for which the constraint is to be enforced. PlatformType *string `json:"PlatformType,omitempty"` ServerSpecificConstraint []CapabilityServerComponentConstraint `json:"ServerSpecificConstraint,omitempty"` - SupportedPlatforms []string `json:"SupportedPlatforms,omitempty"` } varCapabilityUpdateConstraintMetaWithoutEmbeddedStruct := CapabilityUpdateConstraintMetaWithoutEmbeddedStruct{} @@ -418,7 +380,6 @@ func (o *CapabilityUpdateConstraintMeta) UnmarshalJSON(data []byte) (err error) varCapabilityUpdateConstraintMeta.Model = varCapabilityUpdateConstraintMetaWithoutEmbeddedStruct.Model varCapabilityUpdateConstraintMeta.PlatformType = varCapabilityUpdateConstraintMetaWithoutEmbeddedStruct.PlatformType varCapabilityUpdateConstraintMeta.ServerSpecificConstraint = varCapabilityUpdateConstraintMetaWithoutEmbeddedStruct.ServerSpecificConstraint - varCapabilityUpdateConstraintMeta.SupportedPlatforms = varCapabilityUpdateConstraintMetaWithoutEmbeddedStruct.SupportedPlatforms *o = CapabilityUpdateConstraintMeta(varCapabilityUpdateConstraintMeta) } else { return err @@ -443,7 +404,6 @@ func (o *CapabilityUpdateConstraintMeta) UnmarshalJSON(data []byte) (err error) delete(additionalProperties, "Model") delete(additionalProperties, "PlatformType") delete(additionalProperties, "ServerSpecificConstraint") - delete(additionalProperties, "SupportedPlatforms") // remove fields from embedded structs reflectCapabilityCapability := reflect.ValueOf(o.CapabilityCapability) diff --git a/intersight_gosdk/model_capability_update_order_list_type.go b/intersight_gosdk/model_capability_update_order_list_type.go index e9d2b5c2ab..affa1a5ddb 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-18012 +API version: 1.0.11-18369 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 096b1d84da..ce007f21a9 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-18012 +API version: 1.0.11-18369 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 a5c28382ba..0b6e593022 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-18012 +API version: 1.0.11-18369 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 cb5c284749..898a9e824f 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_capability_vic_descriptor.go b/intersight_gosdk/model_capability_vic_descriptor.go index 7b21ecc067..27cf28b632 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-18012 +API version: 1.0.11-18369 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 a5e297cfdc..d941c9ae2c 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-18012 +API version: 1.0.11-18369 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 8942566aaa..d04eaf7480 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_catalystsdwan_config_group.go b/intersight_gosdk/model_catalystsdwan_config_group.go index 8ce2de6e3f..f35f0f4a4f 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-18012 +API version: 1.0.11-18369 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 bba16af36f..cd1a0d92bf 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-18012 +API version: 1.0.11-18369 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 5d262c2dc1..0c67c489e1 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_catalystsdwan_inventory_entity.go b/intersight_gosdk/model_catalystsdwan_inventory_entity.go index 4088fe1630..2d0255b95a 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_catalystsdwan_policy_group.go b/intersight_gosdk/model_catalystsdwan_policy_group.go index b2fd79f26c..7a1044902a 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-18012 +API version: 1.0.11-18369 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 b0f4c377fd..7d89ebdba7 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-18012 +API version: 1.0.11-18369 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 fe4d994a66..1813285496 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_catalystsdwan_vedge_device.go b/intersight_gosdk/model_catalystsdwan_vedge_device.go index 630a372de9..c9c238aafc 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ @@ -30,6 +30,8 @@ type CatalystsdwanVedgeDevice struct { ObjectType string `json:"ObjectType"` // The Catalyst SDWAN device config status message. ConfigStatusMessage *string `json:"ConfigStatusMessage,omitempty"` + // The Catalyst SDWAN device id. + DeviceId *string `json:"DeviceId,omitempty"` // The Catalyst SDWAN device state. DeviceState *string `json:"DeviceState,omitempty"` // The Catalyst SDWAN device host name. @@ -169,6 +171,38 @@ func (o *CatalystsdwanVedgeDevice) SetConfigStatusMessage(v string) { o.ConfigStatusMessage = &v } +// GetDeviceId returns the DeviceId field value if set, zero value otherwise. +func (o *CatalystsdwanVedgeDevice) GetDeviceId() string { + if o == nil || IsNil(o.DeviceId) { + var ret string + return ret + } + return *o.DeviceId +} + +// GetDeviceIdOk returns a tuple with the DeviceId field value if set, nil otherwise +// and a boolean to check if the value has been set. +func (o *CatalystsdwanVedgeDevice) GetDeviceIdOk() (*string, bool) { + if o == nil || IsNil(o.DeviceId) { + return nil, false + } + return o.DeviceId, true +} + +// HasDeviceId returns a boolean if a field has been set. +func (o *CatalystsdwanVedgeDevice) HasDeviceId() bool { + if o != nil && !IsNil(o.DeviceId) { + return true + } + + return false +} + +// SetDeviceId gets a reference to the given string and assigns it to the DeviceId field. +func (o *CatalystsdwanVedgeDevice) SetDeviceId(v string) { + o.DeviceId = &v +} + // GetDeviceState returns the DeviceState field value if set, zero value otherwise. func (o *CatalystsdwanVedgeDevice) GetDeviceState() string { if o == nil || IsNil(o.DeviceState) { @@ -561,6 +595,9 @@ func (o CatalystsdwanVedgeDevice) ToMap() (map[string]interface{}, error) { if !IsNil(o.ConfigStatusMessage) { toSerialize["ConfigStatusMessage"] = o.ConfigStatusMessage } + if !IsNil(o.DeviceId) { + toSerialize["DeviceId"] = o.DeviceId + } if !IsNil(o.DeviceState) { toSerialize["DeviceState"] = o.DeviceState } @@ -651,6 +688,8 @@ func (o *CatalystsdwanVedgeDevice) UnmarshalJSON(data []byte) (err error) { ObjectType string `json:"ObjectType"` // The Catalyst SDWAN device config status message. ConfigStatusMessage *string `json:"ConfigStatusMessage,omitempty"` + // The Catalyst SDWAN device id. + DeviceId *string `json:"DeviceId,omitempty"` // The Catalyst SDWAN device state. DeviceState *string `json:"DeviceState,omitempty"` // The Catalyst SDWAN device host name. @@ -682,6 +721,7 @@ func (o *CatalystsdwanVedgeDevice) UnmarshalJSON(data []byte) (err error) { varCatalystsdwanVedgeDevice.ClassId = varCatalystsdwanVedgeDeviceWithoutEmbeddedStruct.ClassId varCatalystsdwanVedgeDevice.ObjectType = varCatalystsdwanVedgeDeviceWithoutEmbeddedStruct.ObjectType varCatalystsdwanVedgeDevice.ConfigStatusMessage = varCatalystsdwanVedgeDeviceWithoutEmbeddedStruct.ConfigStatusMessage + varCatalystsdwanVedgeDevice.DeviceId = varCatalystsdwanVedgeDeviceWithoutEmbeddedStruct.DeviceId varCatalystsdwanVedgeDevice.DeviceState = varCatalystsdwanVedgeDeviceWithoutEmbeddedStruct.DeviceState varCatalystsdwanVedgeDevice.HostName = varCatalystsdwanVedgeDeviceWithoutEmbeddedStruct.HostName varCatalystsdwanVedgeDevice.PlatformFamily = varCatalystsdwanVedgeDeviceWithoutEmbeddedStruct.PlatformFamily @@ -713,6 +753,7 @@ func (o *CatalystsdwanVedgeDevice) UnmarshalJSON(data []byte) (err error) { delete(additionalProperties, "ClassId") delete(additionalProperties, "ObjectType") delete(additionalProperties, "ConfigStatusMessage") + delete(additionalProperties, "DeviceId") delete(additionalProperties, "DeviceState") delete(additionalProperties, "HostName") delete(additionalProperties, "PlatformFamily") diff --git a/intersight_gosdk/model_catalystsdwan_vedge_device_list.go b/intersight_gosdk/model_catalystsdwan_vedge_device_list.go index 062ebf143b..53e64c452e 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-18012 +API version: 1.0.11-18369 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 712a7a8906..c01d73744d 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_certificatemanagement_certificate_base.go b/intersight_gosdk/model_certificatemanagement_certificate_base.go index 1f725a25d3..8139752807 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_certificatemanagement_imc.go b/intersight_gosdk/model_certificatemanagement_imc.go index 4c41d812c9..6688cdff31 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_certificatemanagement_policy.go b/intersight_gosdk/model_certificatemanagement_policy.go index c370479a29..566ef28e7c 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_certificatemanagement_policy_inventory.go b/intersight_gosdk/model_certificatemanagement_policy_inventory.go index 1a8b39ef23..1928fcefd4 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-18012 +API version: 1.0.11-18369 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 042e40da50..6f49e1a0ec 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-18012 +API version: 1.0.11-18369 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 3a59e73f7b..e75f16469f 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_certificatemanagement_policy_list.go b/intersight_gosdk/model_certificatemanagement_policy_list.go index fc67da63c9..02154886ab 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_certificatemanagement_policy_response.go b/intersight_gosdk/model_certificatemanagement_policy_response.go index 0109cefdb8..88282b5857 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-18012 +API version: 1.0.11-18369 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 dee96767c6..364042bc89 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_chassis_base_profile.go b/intersight_gosdk/model_chassis_base_profile.go index ca6f5e2839..7acbeeda43 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-18012 +API version: 1.0.11-18369 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 78843c713e..2697b156f7 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-18012 +API version: 1.0.11-18369 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 cc369e2074..4dccbbb605 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-18012 +API version: 1.0.11-18369 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 fa1d45cc93..3015bbd92b 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-18012 +API version: 1.0.11-18369 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 c5529e9b57..80f7965233 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-18012 +API version: 1.0.11-18369 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 ae5aee2be6..105fd78c45 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_chassis_config_import.go b/intersight_gosdk/model_chassis_config_import.go index 3019759457..ae3e0c38d8 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_chassis_config_import_list.go b/intersight_gosdk/model_chassis_config_import_list.go index f956a80b20..39a947e079 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-18012 +API version: 1.0.11-18369 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 38096cb7bb..6cd6a7f37c 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_chassis_config_result.go b/intersight_gosdk/model_chassis_config_result.go index c769c1a867..8ee4d12651 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-18012 +API version: 1.0.11-18369 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 dbc6f2ef58..866303e533 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-18012 +API version: 1.0.11-18369 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 f11dda14cc..4406b89a68 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-18012 +API version: 1.0.11-18369 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 98f91e1f12..4a584196a0 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-18012 +API version: 1.0.11-18369 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 fa88ee3273..1481f69d26 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-18012 +API version: 1.0.11-18369 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 530b1e57c7..8cd1281cde 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-18012 +API version: 1.0.11-18369 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 72b11c9a39..6be225ee53 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-18012 +API version: 1.0.11-18369 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 11183f50e7..1bb19be472 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_chassis_iom_profile.go b/intersight_gosdk/model_chassis_iom_profile.go index d571facf8f..008cf2ded4 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-18012 +API version: 1.0.11-18369 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 89fd020330..964af2ff4a 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-18012 +API version: 1.0.11-18369 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 21ab23e864..e4a0e95eeb 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-18012 +API version: 1.0.11-18369 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 891a4013a9..b34657cd6f 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_chassis_profile.go b/intersight_gosdk/model_chassis_profile.go index 1db047c619..45460e8b05 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_chassis_profile_list.go b/intersight_gosdk/model_chassis_profile_list.go index 6f96148433..76d3f3319b 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_chassis_profile_relationship.go b/intersight_gosdk/model_chassis_profile_relationship.go index 7259c04898..02cc95d684 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_chassis_profile_response.go b/intersight_gosdk/model_chassis_profile_response.go index 4bdf0677a5..9c7be27d23 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_chassis_profile_template.go b/intersight_gosdk/model_chassis_profile_template.go index f86426caea..37d12673ed 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-18012 +API version: 1.0.11-18369 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 2a8a858e9f..46be6872f6 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-18012 +API version: 1.0.11-18369 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 f2e82727dc..6f93afa25a 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cloud_availability_zone.go b/intersight_gosdk/model_cloud_availability_zone.go index d7a8ad4cc3..148b92bc5f 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-18012 +API version: 1.0.11-18369 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 26ac3b50ae..52d94a8c20 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cloud_aws_billing_unit_list.go b/intersight_gosdk/model_cloud_aws_billing_unit_list.go index dba6886fa0..f37dbfa169 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-18012 +API version: 1.0.11-18369 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 2cf24be370..7f2ab168f7 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-18012 +API version: 1.0.11-18369 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 1a9898b256..62c2bd632d 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-18012 +API version: 1.0.11-18369 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 59cd7f7396..c4916eab64 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-18012 +API version: 1.0.11-18369 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 a3e52dc48c..bbd6ec6240 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-18012 +API version: 1.0.11-18369 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 df3feff566..098384b13a 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-18012 +API version: 1.0.11-18369 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 3a1b0c2018..fbce26f611 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-18012 +API version: 1.0.11-18369 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 b5d0026333..19e20c68cb 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-18012 +API version: 1.0.11-18369 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 63063fa1bc..221ac18119 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-18012 +API version: 1.0.11-18369 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 08adbbf951..3b8dc3c49b 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-18012 +API version: 1.0.11-18369 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 e706b1659c..b6bd181d51 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-18012 +API version: 1.0.11-18369 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 835a945330..eaa7e9f626 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-18012 +API version: 1.0.11-18369 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 eba5960740..9ecbab31d2 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-18012 +API version: 1.0.11-18369 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 02997b6a84..4ea24d25bf 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-18012 +API version: 1.0.11-18369 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 0640e82159..0e3acbf421 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-18012 +API version: 1.0.11-18369 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 755fdfc06d..ed5f57e543 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-18012 +API version: 1.0.11-18369 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 297f147dbb..632309171f 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-18012 +API version: 1.0.11-18369 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 e8d8c893e4..414cc8430d 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cloud_aws_subnet.go b/intersight_gosdk/model_cloud_aws_subnet.go index 8142e81c2e..d8e9016190 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-18012 +API version: 1.0.11-18369 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 c9ec28c1f5..0481b65c04 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-18012 +API version: 1.0.11-18369 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 97f76b6d68..c9980bc716 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-18012 +API version: 1.0.11-18369 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 477841ec56..1a77477303 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-18012 +API version: 1.0.11-18369 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 5f4815341f..24614949d0 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-18012 +API version: 1.0.11-18369 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 267eda7f80..8d542fa984 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-18012 +API version: 1.0.11-18369 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 61018239be..f66247da3f 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cloud_aws_volume.go b/intersight_gosdk/model_cloud_aws_volume.go index 524b0e505e..522ff5ff12 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-18012 +API version: 1.0.11-18369 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 ae1e52b44b..8018316a6d 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-18012 +API version: 1.0.11-18369 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 bd5e68ebd4..e7daaa43e9 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cloud_aws_vpc.go b/intersight_gosdk/model_cloud_aws_vpc.go index e95f115d5f..f6ad2acb2b 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-18012 +API version: 1.0.11-18369 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 6a0aa7eddd..e0da4a3fce 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-18012 +API version: 1.0.11-18369 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 edb0ac1119..167be14bbe 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-18012 +API version: 1.0.11-18369 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 b29385aa58..063c941b18 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-18012 +API version: 1.0.11-18369 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 1d260a1c64..e54e77f2a4 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cloud_base_entity.go b/intersight_gosdk/model_cloud_base_entity.go index 24737e4720..b8692d722b 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cloud_base_network.go b/intersight_gosdk/model_cloud_base_network.go index c91c7f7483..30cf1165a6 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-18012 +API version: 1.0.11-18369 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 1db0041170..f9355faf48 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cloud_base_placement.go b/intersight_gosdk/model_cloud_base_placement.go index 089a951161..e0017d48d0 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cloud_base_sku.go b/intersight_gosdk/model_cloud_base_sku.go index 61fb5bb770..357bc263ea 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-18012 +API version: 1.0.11-18369 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 fc45f21cf2..22f4d10ba0 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-18012 +API version: 1.0.11-18369 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 b543698d41..796601b94b 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cloud_base_volume.go b/intersight_gosdk/model_cloud_base_volume.go index cd1f20bc46..5bc7f79afb 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cloud_billing_unit.go b/intersight_gosdk/model_cloud_billing_unit.go index eaa7ae35bf..0a4f3ae78c 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cloud_cloud_region.go b/intersight_gosdk/model_cloud_cloud_region.go index e4afd78102..c0dabf0791 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cloud_cloud_tag.go b/intersight_gosdk/model_cloud_cloud_tag.go index a98f0a8c85..d544c2098d 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cloud_collect_inventory.go b/intersight_gosdk/model_cloud_collect_inventory.go index 66c5a48427..45471de63a 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cloud_custom_attributes.go b/intersight_gosdk/model_cloud_custom_attributes.go index d4d0670172..ddedfcd8c7 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cloud_image_reference.go b/intersight_gosdk/model_cloud_image_reference.go index d0d7974cb4..952b35a1b7 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cloud_instance_type.go b/intersight_gosdk/model_cloud_instance_type.go index 97aad73732..f28b69dd91 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-18012 +API version: 1.0.11-18369 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 7ff2527c31..5bab07f953 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cloud_network_address.go b/intersight_gosdk/model_cloud_network_address.go index deeab92fc7..fa64033b25 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-18012 +API version: 1.0.11-18369 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 43bcca3e9f..f6316a607c 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-18012 +API version: 1.0.11-18369 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 1cc0fefaba..f0452f96ff 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cloud_regions.go b/intersight_gosdk/model_cloud_regions.go index 3916d87fc2..184ff2df0b 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cloud_regions_list.go b/intersight_gosdk/model_cloud_regions_list.go index d4837ea2f5..b0038b3c10 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cloud_regions_relationship.go b/intersight_gosdk/model_cloud_regions_relationship.go index 2683449018..7d0f65751d 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cloud_regions_response.go b/intersight_gosdk/model_cloud_regions_response.go index 6634cd1fe8..0fbc84857d 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-18012 +API version: 1.0.11-18369 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 9d02b230be..e36f055a18 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-18012 +API version: 1.0.11-18369 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 34a335c29b..02e8788718 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-18012 +API version: 1.0.11-18369 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 7d2f81a9e3..cea65ff962 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-18012 +API version: 1.0.11-18369 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 25eac6d798..c003f6964d 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-18012 +API version: 1.0.11-18369 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 9cfbed351b..7e2fb65a75 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-18012 +API version: 1.0.11-18369 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 9e4690275f..08d87370ba 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-18012 +API version: 1.0.11-18369 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 1c43d0f518..37fa71d4c7 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-18012 +API version: 1.0.11-18369 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 db2dab7c46..69145fa6a7 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-18012 +API version: 1.0.11-18369 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 0172580cc5..2137e1109c 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-18012 +API version: 1.0.11-18369 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 e65bd7ae4b..d2d97dcd04 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-18012 +API version: 1.0.11-18369 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 aa73372421..b31923d59b 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-18012 +API version: 1.0.11-18369 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 fa0114d76b..da862b42ee 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-18012 +API version: 1.0.11-18369 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 5ef44512a0..b7d9d28a66 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-18012 +API version: 1.0.11-18369 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 5549100714..698869e707 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-18012 +API version: 1.0.11-18369 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 a158aa7694..b8b10cf917 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-18012 +API version: 1.0.11-18369 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 57735ef201..ae61423aa6 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-18012 +API version: 1.0.11-18369 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 2cdb51b837..f4ba22fc10 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-18012 +API version: 1.0.11-18369 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 966e9de816..aeb92a0c6c 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-18012 +API version: 1.0.11-18369 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 602a23b8ea..4fe7c2fb78 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cloud_tfc_agentpool.go b/intersight_gosdk/model_cloud_tfc_agentpool.go index 97c6ed1f2f..d379d9ab72 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-18012 +API version: 1.0.11-18369 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 a7b89217e5..64a6ed04e0 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-18012 +API version: 1.0.11-18369 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 a6578fc020..b794ac1c93 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cloud_tfc_organization.go b/intersight_gosdk/model_cloud_tfc_organization.go index 4452292628..25d43e4050 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-18012 +API version: 1.0.11-18369 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 815f6774d3..5d03c26d60 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-18012 +API version: 1.0.11-18369 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 6d5074c023..8715b02500 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-18012 +API version: 1.0.11-18369 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 775d57a9d9..3d84dd4cca 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cloud_tfc_workspace.go b/intersight_gosdk/model_cloud_tfc_workspace.go index 017b95a995..bff43ae155 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-18012 +API version: 1.0.11-18369 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 46b68721d6..b6edc1dc1c 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-18012 +API version: 1.0.11-18369 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 a58046676e..a6f628b675 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-18012 +API version: 1.0.11-18369 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 3cffb0c69a..4cf2f1409a 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cloud_volume_attachment.go b/intersight_gosdk/model_cloud_volume_attachment.go index c570c35e0e..2a5f63c32a 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-18012 +API version: 1.0.11-18369 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 ce477e937c..9168226018 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-18012 +API version: 1.0.11-18369 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 2148d06911..222f082639 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cloud_volume_type.go b/intersight_gosdk/model_cloud_volume_type.go index eccbad4df0..b41c849737 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cmrf_cm_rf.go b/intersight_gosdk/model_cmrf_cm_rf.go index 50621810ea..810296fdcf 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-18012 +API version: 1.0.11-18369 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 5bfe897682..832515f3b9 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_comm_http_proxy_policy.go b/intersight_gosdk/model_comm_http_proxy_policy.go index 7744ee58d9..3d5d70b7f6 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-18012 +API version: 1.0.11-18369 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 e3bf68d0f2..344a3fa8e2 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-18012 +API version: 1.0.11-18369 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 d402592757..248cb60e4f 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-18012 +API version: 1.0.11-18369 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 8cbc530eb9..6fcf4b19bf 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-18012 +API version: 1.0.11-18369 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 3ccec4873b..8722060913 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_comm_ip_v4_interface.go b/intersight_gosdk/model_comm_ip_v4_interface.go index cfad5614b9..32ca7bad83 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_comm_ip_v6_interface.go b/intersight_gosdk/model_comm_ip_v6_interface.go index 25fbe027c0..9c18e85bc3 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_compute_alarm_summary.go b/intersight_gosdk/model_compute_alarm_summary.go index 57f8ea41f5..23fce30936 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_compute_base_cluster.go b/intersight_gosdk/model_compute_base_cluster.go index 8fd11b7d31..0b6cebc19a 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-18012 +API version: 1.0.11-18369 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 ffd3615728..5df7ffb039 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_compute_blade.go b/intersight_gosdk/model_compute_blade.go index 018942d750..7375502abe 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_compute_blade_identity.go b/intersight_gosdk/model_compute_blade_identity.go index 91e791ca5e..e98b74dd82 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-18012 +API version: 1.0.11-18369 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 3be09bb31a..43e7eb8c4e 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-18012 +API version: 1.0.11-18369 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 0fa437b573..e243d84b4c 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-18012 +API version: 1.0.11-18369 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 0755ecaeac..9122d9ac62 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_compute_blade_list.go b/intersight_gosdk/model_compute_blade_list.go index 2087a4feb5..c8af2770ae 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_compute_blade_relationship.go b/intersight_gosdk/model_compute_blade_relationship.go index 10755f3ecf..90144b9228 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_compute_blade_response.go b/intersight_gosdk/model_compute_blade_response.go index a07f58a203..35b518ca99 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_compute_board.go b/intersight_gosdk/model_compute_board.go index a5944d9b2c..f5f5bce880 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_compute_board_list.go b/intersight_gosdk/model_compute_board_list.go index b1700d6b7c..4ed1e7ace1 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_compute_board_relationship.go b/intersight_gosdk/model_compute_board_relationship.go index 6cc3ecc7e5..7e21de589f 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_compute_board_response.go b/intersight_gosdk/model_compute_board_response.go index d62f1d8df5..68dd588977 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_compute_download_status.go b/intersight_gosdk/model_compute_download_status.go index aa24d184b0..261e2fd7c7 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-18012 +API version: 1.0.11-18369 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 4ebaafbc94..c6f82842b7 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-18012 +API version: 1.0.11-18369 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 543cf3231b..ffa6843419 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-18012 +API version: 1.0.11-18369 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 e783e94333..f532227f29 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-18012 +API version: 1.0.11-18369 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 cab1d4854a..d0be8edf87 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-18012 +API version: 1.0.11-18369 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 813db9e942..9443e71a47 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-18012 +API version: 1.0.11-18369 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 3e11cc9e98..e0338ef468 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-18012 +API version: 1.0.11-18369 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 9fafca5bbd..9ecea1697c 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_compute_ip_address.go b/intersight_gosdk/model_compute_ip_address.go index ce425ee543..f20f4abd90 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_compute_mapping.go b/intersight_gosdk/model_compute_mapping.go index 82f81b1d49..a4a0b631a3 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_compute_mapping_list.go b/intersight_gosdk/model_compute_mapping_list.go index 35089416b5..c72ca2693a 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_compute_mapping_relationship.go b/intersight_gosdk/model_compute_mapping_relationship.go index 8d7f1663cc..a861867362 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_compute_mapping_response.go b/intersight_gosdk/model_compute_mapping_response.go index ddce2387b4..f76fa46843 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-18012 +API version: 1.0.11-18369 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 6500c38277..7ea8a35a0f 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-18012 +API version: 1.0.11-18369 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 f775a54d63..0f2787df10 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-18012 +API version: 1.0.11-18369 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 a445aeafcd..b2c24775ad 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_compute_personality.go b/intersight_gosdk/model_compute_personality.go index 2fe9f6fcab..e4493dcc63 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_compute_personality_list.go b/intersight_gosdk/model_compute_personality_list.go index b4cb4fe68d..5f08cb6f63 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_compute_personality_relationship.go b/intersight_gosdk/model_compute_personality_relationship.go index 9c1aacaf5a..eb02ef6ea5 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_compute_personality_response.go b/intersight_gosdk/model_compute_personality_response.go index db181fd024..fa7e1a17bc 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_compute_personality_setting.go b/intersight_gosdk/model_compute_personality_setting.go index 9525614e4f..96b67847c5 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_compute_physical.go b/intersight_gosdk/model_compute_physical.go index 114029fce6..296fc28830 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_compute_physical_relationship.go b/intersight_gosdk/model_compute_physical_relationship.go index 8e201579f0..1986a76b88 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_compute_physical_summary.go b/intersight_gosdk/model_compute_physical_summary.go index a7ed3c4894..c4c851ef52 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-18012 +API version: 1.0.11-18369 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 5ee6ef5b2c..988e2dc6c1 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-18012 +API version: 1.0.11-18369 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 00ca6a490a..8611653305 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-18012 +API version: 1.0.11-18369 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 f3d407ee9e..d5d4e04608 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_compute_rack_unit.go b/intersight_gosdk/model_compute_rack_unit.go index 3daf6a9b4a..fa3146f22e 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-18012 +API version: 1.0.11-18369 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 43bf02ed4e..fdd3fc4540 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-18012 +API version: 1.0.11-18369 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 195a89e4de..4554cf95bf 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-18012 +API version: 1.0.11-18369 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 ff959822d5..65d0dfb91b 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-18012 +API version: 1.0.11-18369 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 18b775422f..65ca3de28d 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-18012 +API version: 1.0.11-18369 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 81da9ea294..5116fceb18 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-18012 +API version: 1.0.11-18369 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 f57852790f..922ba796a3 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_compute_server_config.go b/intersight_gosdk/model_compute_server_config.go index 13ab1d84f7..3bd19a890b 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_compute_server_id_pool.go b/intersight_gosdk/model_compute_server_id_pool.go index 32e6c69bc4..55e7cae257 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-18012 +API version: 1.0.11-18369 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 fd1d8a6466..a412863ad4 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-18012 +API version: 1.0.11-18369 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 5980e8e0f6..74e36d505b 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-18012 +API version: 1.0.11-18369 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 d6ff24bb96..f095c5ae69 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-18012 +API version: 1.0.11-18369 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 610ba4b348..5f9c6335dd 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-18012 +API version: 1.0.11-18369 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 bf4b1dae7b..e113a28685 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-18012 +API version: 1.0.11-18369 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 fd246b44f4..c820d18bb2 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_compute_server_setting.go b/intersight_gosdk/model_compute_server_setting.go index 5e475cb148..351efea8b1 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ @@ -50,9 +50,11 @@ type ComputeServerSetting struct { // The property used to identify the name of the server it is associated with. Name *string `json:"Name,omitempty"` // The name of the device chosen by user for configuring One-Time Boot device. - OneTimeBootDevice *string `json:"OneTimeBootDevice,omitempty"` - PersistentMemoryOperation NullableComputePersistentMemoryOperation `json:"PersistentMemoryOperation,omitempty"` - PersonalitySetting NullableComputePersonalitySetting `json:"PersonalitySetting,omitempty"` + OneTimeBootDevice *string `json:"OneTimeBootDevice,omitempty"` + PersistentMemoryOperation NullableComputePersistentMemoryOperation `json:"PersistentMemoryOperation,omitempty"` + PersonalitySetting NullableComputePersonalitySetting `json:"PersonalitySetting,omitempty"` + // Reset Correctable and Uncorrectable ECC errors on all the DIMMs present in the server. * `Ready` - Reset memory errors operation is allowed on the server in this state. * `Reset` - Trigger reset memory errors operation on a server. + ResetMemoryErrors *string `json:"ResetMemoryErrors,omitempty"` ServerConfig NullableComputeServerConfig `json:"ServerConfig,omitempty"` ServerOpStatus []ComputeServerOpStatus `json:"ServerOpStatus,omitempty"` StorageControllerOperation NullableComputeStorageControllerOperation `json:"StorageControllerOperation,omitempty"` @@ -94,6 +96,8 @@ func NewComputeServerSetting(classId string, objectType string) *ComputeServerSe this.FrontPanelLockState = &frontPanelLockState var kvmReset string = "Ready" this.KvmReset = &kvmReset + var resetMemoryErrors string = "Ready" + this.ResetMemoryErrors = &resetMemoryErrors var tpmReset string = "None" this.TpmReset = &tpmReset var tunneledKvmState string = "Ready" @@ -124,6 +128,8 @@ func NewComputeServerSettingWithDefaults() *ComputeServerSetting { this.FrontPanelLockState = &frontPanelLockState var kvmReset string = "Ready" this.KvmReset = &kvmReset + var resetMemoryErrors string = "Ready" + this.ResetMemoryErrors = &resetMemoryErrors var tpmReset string = "None" this.TpmReset = &tpmReset var tunneledKvmState string = "Ready" @@ -670,6 +676,38 @@ func (o *ComputeServerSetting) UnsetPersonalitySetting() { o.PersonalitySetting.Unset() } +// GetResetMemoryErrors returns the ResetMemoryErrors field value if set, zero value otherwise. +func (o *ComputeServerSetting) GetResetMemoryErrors() string { + if o == nil || IsNil(o.ResetMemoryErrors) { + var ret string + return ret + } + return *o.ResetMemoryErrors +} + +// GetResetMemoryErrorsOk returns a tuple with the ResetMemoryErrors field value if set, nil otherwise +// and a boolean to check if the value has been set. +func (o *ComputeServerSetting) GetResetMemoryErrorsOk() (*string, bool) { + if o == nil || IsNil(o.ResetMemoryErrors) { + return nil, false + } + return o.ResetMemoryErrors, true +} + +// HasResetMemoryErrors returns a boolean if a field has been set. +func (o *ComputeServerSetting) HasResetMemoryErrors() bool { + if o != nil && !IsNil(o.ResetMemoryErrors) { + return true + } + + return false +} + +// SetResetMemoryErrors gets a reference to the given string and assigns it to the ResetMemoryErrors field. +func (o *ComputeServerSetting) SetResetMemoryErrors(v string) { + o.ResetMemoryErrors = &v +} + // GetServerConfig returns the ServerConfig field value if set, zero value otherwise (both if not set or set to explicit null). func (o *ComputeServerSetting) GetServerConfig() ComputeServerConfig { if o == nil || IsNil(o.ServerConfig.Get()) { @@ -1222,6 +1260,9 @@ func (o ComputeServerSetting) ToMap() (map[string]interface{}, error) { if o.PersonalitySetting.IsSet() { toSerialize["PersonalitySetting"] = o.PersonalitySetting.Get() } + if !IsNil(o.ResetMemoryErrors) { + toSerialize["ResetMemoryErrors"] = o.ResetMemoryErrors + } if o.ServerConfig.IsSet() { toSerialize["ServerConfig"] = o.ServerConfig.Get() } @@ -1335,9 +1376,11 @@ func (o *ComputeServerSetting) UnmarshalJSON(data []byte) (err error) { // The property used to identify the name of the server it is associated with. Name *string `json:"Name,omitempty"` // The name of the device chosen by user for configuring One-Time Boot device. - OneTimeBootDevice *string `json:"OneTimeBootDevice,omitempty"` - PersistentMemoryOperation NullableComputePersistentMemoryOperation `json:"PersistentMemoryOperation,omitempty"` - PersonalitySetting NullableComputePersonalitySetting `json:"PersonalitySetting,omitempty"` + OneTimeBootDevice *string `json:"OneTimeBootDevice,omitempty"` + PersistentMemoryOperation NullableComputePersistentMemoryOperation `json:"PersistentMemoryOperation,omitempty"` + PersonalitySetting NullableComputePersonalitySetting `json:"PersonalitySetting,omitempty"` + // Reset Correctable and Uncorrectable ECC errors on all the DIMMs present in the server. * `Ready` - Reset memory errors operation is allowed on the server in this state. * `Reset` - Trigger reset memory errors operation on a server. + ResetMemoryErrors *string `json:"ResetMemoryErrors,omitempty"` ServerConfig NullableComputeServerConfig `json:"ServerConfig,omitempty"` ServerOpStatus []ComputeServerOpStatus `json:"ServerOpStatus,omitempty"` StorageControllerOperation NullableComputeStorageControllerOperation `json:"StorageControllerOperation,omitempty"` @@ -1375,6 +1418,7 @@ func (o *ComputeServerSetting) UnmarshalJSON(data []byte) (err error) { varComputeServerSetting.OneTimeBootDevice = varComputeServerSettingWithoutEmbeddedStruct.OneTimeBootDevice varComputeServerSetting.PersistentMemoryOperation = varComputeServerSettingWithoutEmbeddedStruct.PersistentMemoryOperation varComputeServerSetting.PersonalitySetting = varComputeServerSettingWithoutEmbeddedStruct.PersonalitySetting + varComputeServerSetting.ResetMemoryErrors = varComputeServerSettingWithoutEmbeddedStruct.ResetMemoryErrors varComputeServerSetting.ServerConfig = varComputeServerSettingWithoutEmbeddedStruct.ServerConfig varComputeServerSetting.ServerOpStatus = varComputeServerSettingWithoutEmbeddedStruct.ServerOpStatus varComputeServerSetting.StorageControllerOperation = varComputeServerSettingWithoutEmbeddedStruct.StorageControllerOperation @@ -1420,6 +1464,7 @@ func (o *ComputeServerSetting) UnmarshalJSON(data []byte) (err error) { delete(additionalProperties, "OneTimeBootDevice") delete(additionalProperties, "PersistentMemoryOperation") delete(additionalProperties, "PersonalitySetting") + delete(additionalProperties, "ResetMemoryErrors") delete(additionalProperties, "ServerConfig") delete(additionalProperties, "ServerOpStatus") delete(additionalProperties, "StorageControllerOperation") diff --git a/intersight_gosdk/model_compute_server_setting_list.go b/intersight_gosdk/model_compute_server_setting_list.go index ea6a7ec020..2ec71a1a96 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-18012 +API version: 1.0.11-18369 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 f36fcc30b8..9f955d2901 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-18012 +API version: 1.0.11-18369 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 07e2ad38ce..e16c7dbd0a 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-18012 +API version: 1.0.11-18369 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 ca45e0b6f5..9e13883c00 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-18012 +API version: 1.0.11-18369 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 872510c489..dbd142fffe 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-18012 +API version: 1.0.11-18369 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 ae1e8f6b4d..a063ccf1fb 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-18012 +API version: 1.0.11-18369 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 ce214b5342..9e857ce0b5 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-18012 +API version: 1.0.11-18369 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 315644826a..5d1d8a84fa 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_compute_vmedia.go b/intersight_gosdk/model_compute_vmedia.go index 23ef3973a9..31a7b2beb9 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_compute_vmedia_list.go b/intersight_gosdk/model_compute_vmedia_list.go index 2a4fe64bc9..611f1b69e9 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_compute_vmedia_relationship.go b/intersight_gosdk/model_compute_vmedia_relationship.go index 60adc48830..cf2db438f6 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_compute_vmedia_response.go b/intersight_gosdk/model_compute_vmedia_response.go index 3ce71dc3d4..fbd1d05d48 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cond_alarm.go b/intersight_gosdk/model_cond_alarm.go index 6a689355d4..7ad5f42e8e 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cond_alarm_action.go b/intersight_gosdk/model_cond_alarm_action.go index a0b9e369c3..96910a29a5 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cond_alarm_aggregation.go b/intersight_gosdk/model_cond_alarm_aggregation.go index b81a3f3ecf..713a0b9692 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-18012 +API version: 1.0.11-18369 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 ce88a62149..e7f836cb2a 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-18012 +API version: 1.0.11-18369 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 d0e3caebc8..ce661ccadd 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cond_alarm_classification.go b/intersight_gosdk/model_cond_alarm_classification.go index 6c6e811e6c..cf488c9022 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cond_alarm_classification_eligibility.go b/intersight_gosdk/model_cond_alarm_classification_eligibility.go index 2ca59d8fb8..d6c4e78424 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-18012 +API version: 1.0.11-18369 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 e0bb7faf42..52a3d61f85 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-18012 +API version: 1.0.11-18369 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 d47373dd99..b25109082b 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-18012 +API version: 1.0.11-18369 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 d0dac180f5..5f65c784d2 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cond_alarm_definition.go b/intersight_gosdk/model_cond_alarm_definition.go index 975d242d4b..8bc01916a3 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-18012 +API version: 1.0.11-18369 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 09b4fc36c4..a5de8d0d48 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-18012 +API version: 1.0.11-18369 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 14ce10397c..7ce48ad861 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-18012 +API version: 1.0.11-18369 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 923c3b2edc..4bf171b1ca 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cond_alarm_list.go b/intersight_gosdk/model_cond_alarm_list.go index c0e835492a..0c56b947c1 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cond_alarm_response.go b/intersight_gosdk/model_cond_alarm_response.go index 73a7aa1c4b..0676f00e1c 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cond_alarm_spec.go b/intersight_gosdk/model_cond_alarm_spec.go index 5d6ad55057..ec4afda130 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cond_alarm_summary.go b/intersight_gosdk/model_cond_alarm_summary.go index 58d11e44fd..2fec44086e 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cond_alarm_suppression.go b/intersight_gosdk/model_cond_alarm_suppression.go index d4e8e78806..d5a10d4314 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-18012 +API version: 1.0.11-18369 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 f8df0917db..455238f89d 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-18012 +API version: 1.0.11-18369 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 a306c23b9c..160105847f 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_cond_hcl_status.go b/intersight_gosdk/model_cond_hcl_status.go index 762ac69573..0944181936 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-18012 +API version: 1.0.11-18369 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 8e8f255fbf..813c6c01c8 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-18012 +API version: 1.0.11-18369 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 2e82ec8243..bb982bcee4 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-18012 +API version: 1.0.11-18369 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 d9aa917bc4..6379490fa7 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-18012 +API version: 1.0.11-18369 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 6b3dba85ae..da093019e9 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-18012 +API version: 1.0.11-18369 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 ce8e5a028d..7557c3e925 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-18012 +API version: 1.0.11-18369 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 d6eb3e3532..3c734aa8f0 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-18012 +API version: 1.0.11-18369 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 cd1c87791c..1fdf4e311c 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-18012 +API version: 1.0.11-18369 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 e52c204b18..95dc04f0ee 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-18012 +API version: 1.0.11-18369 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 97e824b9b6..56825ac05c 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-18012 +API version: 1.0.11-18369 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 1904b23b4c..a1159b53f2 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_connector_auth_message.go b/intersight_gosdk/model_connector_auth_message.go index de0b38cc81..78f685ea76 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_connector_base_message.go b/intersight_gosdk/model_connector_base_message.go index 8970e17dcc..abc8ad761a 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-18012 +API version: 1.0.11-18369 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 eebe5b6c34..60004cc53e 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-18012 +API version: 1.0.11-18369 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 a5953c9d9f..d8381454a0 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-18012 +API version: 1.0.11-18369 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 3cb2119924..b6c476d4cb 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_connector_download_status.go b/intersight_gosdk/model_connector_download_status.go index 6db9078177..b2c61e4205 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_connector_event_log.go b/intersight_gosdk/model_connector_event_log.go index ad5048ba1c..07cdf7ee21 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_connector_expect_prompt.go b/intersight_gosdk/model_connector_expect_prompt.go index b8abd42a8e..4b323bcc5a 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-18012 +API version: 1.0.11-18369 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 372ef6fe00..196e4be34d 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_connector_file_checksum.go b/intersight_gosdk/model_connector_file_checksum.go index 5abfb1dcca..09c1809791 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_connector_file_message.go b/intersight_gosdk/model_connector_file_message.go index 49c3d65059..d725b7c1d8 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_connector_http_request.go b/intersight_gosdk/model_connector_http_request.go index 142d023f50..d93f4cf0a4 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-18012 +API version: 1.0.11-18369 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 5632ec4cd9..45656f79dd 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_connector_scoped_inventory.go b/intersight_gosdk/model_connector_scoped_inventory.go index 97b3ded10a..5388bb7cf5 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_connector_ssh_config.go b/intersight_gosdk/model_connector_ssh_config.go index f544edc241..cccd0ad7a0 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_connector_ssh_message.go b/intersight_gosdk/model_connector_ssh_message.go index 1d708d3e02..c04b8e5660 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_connector_start_stream.go b/intersight_gosdk/model_connector_start_stream.go index 3089b2dbe5..91e1661033 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-18012 +API version: 1.0.11-18369 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 0a523eb492..270b51a09a 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_connector_stream_acknowledge.go b/intersight_gosdk/model_connector_stream_acknowledge.go index afb0129891..53d9ca2687 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_connector_stream_input.go b/intersight_gosdk/model_connector_stream_input.go index 41761f15af..d3fe892af4 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_connector_stream_keepalive.go b/intersight_gosdk/model_connector_stream_keepalive.go index 014bb83e71..85a52ac5a7 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_connector_stream_message.go b/intersight_gosdk/model_connector_stream_message.go index e765e15446..8948894829 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-18012 +API version: 1.0.11-18369 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 07ea6e5ccc..ce5dd24c19 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_connector_target_specification.go b/intersight_gosdk/model_connector_target_specification.go index c8b50e783f..e6f16ff72c 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_connector_url.go b/intersight_gosdk/model_connector_url.go index 6c9304ad39..e2efbbecc8 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_connector_winrm_request.go b/intersight_gosdk/model_connector_winrm_request.go index 2e819d9d34..2ff9069ce6 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-18012 +API version: 1.0.11-18369 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 5120476e83..d023419c6a 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-18012 +API version: 1.0.11-18369 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 49201b8c90..2127f62ffc 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-18012 +API version: 1.0.11-18369 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 bd36a5390f..856f59cbc0 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-18012 +API version: 1.0.11-18369 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 cbddb9d307..ca520ea279 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-18012 +API version: 1.0.11-18369 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 23034cd039..bc434c0417 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_connectorpack_upgrade_impact.go b/intersight_gosdk/model_connectorpack_upgrade_impact.go index 93410d40ff..1a51acccc7 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-18012 +API version: 1.0.11-18369 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 c40f2ca153..4a820a218d 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-18012 +API version: 1.0.11-18369 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 944fe2a511..fe5bb916c1 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_console_console_config.go b/intersight_gosdk/model_console_console_config.go index 6c98f6d1e9..07df70781b 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-18012 +API version: 1.0.11-18369 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 88ed9f83e7..47f61aba2d 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-18012 +API version: 1.0.11-18369 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 d51a2d3752..c1689667b6 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-18012 +API version: 1.0.11-18369 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 94ae9df52a..2c88fe528b 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_content_base_parameter.go b/intersight_gosdk/model_content_base_parameter.go index 2970bfa1b5..ac2d96fa00 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_content_complex_type.go b/intersight_gosdk/model_content_complex_type.go index 6cfe20b5a5..32fc71dbdc 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_content_parameter.go b/intersight_gosdk/model_content_parameter.go index 2c2f40ab92..7dcc7f98bb 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_content_text_parameter.go b/intersight_gosdk/model_content_text_parameter.go index 75c934fb08..fc3f903e2a 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-18012 +API version: 1.0.11-18369 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 ead7ecee5d..f336e15562 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-18012 +API version: 1.0.11-18369 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 de8cf99bd9..fcae654cf6 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-18012 +API version: 1.0.11-18369 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 dfe8134c88..a560c4e3ad 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-18012 +API version: 1.0.11-18369 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 4d238b6a45..e6f470fab3 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_convergedinfra_alarm_summary.go b/intersight_gosdk/model_convergedinfra_alarm_summary.go index 91e5380583..340def8e77 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-18012 +API version: 1.0.11-18369 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 185bf37f29..b4c503bade 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-18012 +API version: 1.0.11-18369 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 2eeefa6b17..fd9ebf4843 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_convergedinfra_base_pod.go b/intersight_gosdk/model_convergedinfra_base_pod.go index 7e49f7c86b..1562c9816b 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_convergedinfra_base_pod_summary.go b/intersight_gosdk/model_convergedinfra_base_pod_summary.go index 6ae0b0cf1a..ad3f283aa8 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_convergedinfra_compliance_summary.go b/intersight_gosdk/model_convergedinfra_compliance_summary.go index 3d1978a218..c4ef3bcbaa 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_convergedinfra_pod.go b/intersight_gosdk/model_convergedinfra_pod.go index 3707727e3f..47e0628004 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-18012 +API version: 1.0.11-18369 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 38ca5b27f2..ab709867cf 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-18012 +API version: 1.0.11-18369 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 806fdf1dc6..87d78008c5 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-18012 +API version: 1.0.11-18369 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 f09e094dfa..2e2f7d0625 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-18012 +API version: 1.0.11-18369 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 8be1c09020..497d843688 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_convergedinfra_pod_list.go b/intersight_gosdk/model_convergedinfra_pod_list.go index 8071b5c05b..30a1e1f337 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_convergedinfra_pod_relationship.go b/intersight_gosdk/model_convergedinfra_pod_relationship.go index 4d2fd1b2dd..5be4205f5d 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_convergedinfra_pod_response.go b/intersight_gosdk/model_convergedinfra_pod_response.go index 977e885348..ee683b99a2 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_convergedinfra_pod_summary.go b/intersight_gosdk/model_convergedinfra_pod_summary.go index 021abd53a6..f6d139f590 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-18012 +API version: 1.0.11-18369 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 ae8fcb878d..9f922b243a 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-18012 +API version: 1.0.11-18369 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 a6c445a249..64c60cd612 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-18012 +API version: 1.0.11-18369 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 169125ecb4..0c02758ea8 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-18012 +API version: 1.0.11-18369 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 a5a624a6b1..8a0e7e5dc0 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-18012 +API version: 1.0.11-18369 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 6adf05ad65..e0dc496fff 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-18012 +API version: 1.0.11-18369 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 0c459c9c98..cd630361ea 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-18012 +API version: 1.0.11-18369 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 a53b92a360..b401d8e166 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-18012 +API version: 1.0.11-18369 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 88e697d50a..f4abaaad52 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-18012 +API version: 1.0.11-18369 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 63604cfe54..8e01410ad9 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-18012 +API version: 1.0.11-18369 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 efef2b8c44..2f3e99bc8c 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-18012 +API version: 1.0.11-18369 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 afc4e9d513..2f5c682923 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-18012 +API version: 1.0.11-18369 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 931608738b..e2ba370990 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_crd_custom_resource.go b/intersight_gosdk/model_crd_custom_resource.go index 347adb2a5a..7781747487 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-18012 +API version: 1.0.11-18369 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 e528a44ead..586f663a97 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-18012 +API version: 1.0.11-18369 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 024c7bd500..c9eed9e209 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-18012 +API version: 1.0.11-18369 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 04927ba041..27274ffee8 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_deviceconnector_policy.go b/intersight_gosdk/model_deviceconnector_policy.go index 7e00b2369d..5b040c02ed 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_deviceconnector_policy_list.go b/intersight_gosdk/model_deviceconnector_policy_list.go index 37f11fbcae..636f1ba83a 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_deviceconnector_policy_response.go b/intersight_gosdk/model_deviceconnector_policy_response.go index 7c40978589..8a9dea72b1 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_dnac_device.go b/intersight_gosdk/model_dnac_device.go index bb816b37d5..8be0ca689b 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_dnac_device_interface.go b/intersight_gosdk/model_dnac_device_interface.go index d52a45257f..e17ec31d7e 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-18012 +API version: 1.0.11-18369 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 4c8a6ab2b8..6e387d1eab 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-18012 +API version: 1.0.11-18369 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 621fdbf0eb..56f80aaa80 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_dnac_device_list.go b/intersight_gosdk/model_dnac_device_list.go index 0c33337a1e..af4d94c5f6 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_dnac_device_response.go b/intersight_gosdk/model_dnac_device_response.go index 1706c00a7b..0a6e076ac9 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-18012 +API version: 1.0.11-18369 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 4426095eae..33a5d1ed91 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-18012 +API version: 1.0.11-18369 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 27b18628c5..5e73949cf0 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-18012 +API version: 1.0.11-18369 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 fdb380876c..63a3e476ee 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-18012 +API version: 1.0.11-18369 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 71a3764e3d..479511a9d8 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-18012 +API version: 1.0.11-18369 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 4a90d82f5d..5fc069d74d 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-18012 +API version: 1.0.11-18369 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 67e029612d..ddb135a48c 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_dnac_fabric_site.go b/intersight_gosdk/model_dnac_fabric_site.go index 22c5ecd709..492ecc1764 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-18012 +API version: 1.0.11-18369 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 8a48a4dbc2..6a0a1f07ce 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-18012 +API version: 1.0.11-18369 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 d91ac2d8f6..c204a5f528 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_dnac_inventory_entity.go b/intersight_gosdk/model_dnac_inventory_entity.go index ed11666a10..e943653546 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_dnac_site.go b/intersight_gosdk/model_dnac_site.go index 3dc3c6d16e..c46c3d6f54 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-18012 +API version: 1.0.11-18369 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 53f1a54980..59ea77c352 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-18012 +API version: 1.0.11-18369 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 f545ac3bb2..1b9d6a9636 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-18012 +API version: 1.0.11-18369 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 fca1a71b20..505ac53c34 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_dnac_site_list.go b/intersight_gosdk/model_dnac_site_list.go index 17da77de99..236e82cfd4 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_dnac_site_response.go b/intersight_gosdk/model_dnac_site_response.go index 93e3ef9445..1e586f817e 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_dnac_template.go b/intersight_gosdk/model_dnac_template.go index 041fcf041c..1cae5fd83f 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_dnac_template_list.go b/intersight_gosdk/model_dnac_template_list.go index d480ef5b1f..10a7f91309 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_dnac_template_response.go b/intersight_gosdk/model_dnac_template_response.go index f592922a03..fea93c2407 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_dnac_transit.go b/intersight_gosdk/model_dnac_transit.go index 555da323af..3962ff5442 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_dnac_transit_list.go b/intersight_gosdk/model_dnac_transit_list.go index 61310291c8..d9a650dfcf 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_dnac_transit_response.go b/intersight_gosdk/model_dnac_transit_response.go index 514894c8f5..ef96e686ca 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-18012 +API version: 1.0.11-18369 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 823a719949..1945d127a3 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-18012 +API version: 1.0.11-18369 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 20b83cc4a6..30daf9bc8e 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-18012 +API version: 1.0.11-18369 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 a0e336d78d..32fc7f86f4 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_energy_metrics.go b/intersight_gosdk/model_energy_metrics.go new file mode 100644 index 0000000000..a6126d4c14 --- /dev/null +++ b/intersight_gosdk/model_energy_metrics.go @@ -0,0 +1,200 @@ +/* +Cisco Intersight + +Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. + +API version: 1.0.11-18369 +Contact: intersight@cisco.com +*/ + +// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. + +package intersight + +import ( + "encoding/json" + "fmt" + "reflect" + "strings" +) + +// checks if the EnergyMetrics type satisfies the MappedNullable interface at compile time +var _ MappedNullable = &EnergyMetrics{} + +// EnergyMetrics Returns carbon intensity, power breakdown, and electricity rate power metrics for a set of locations and a time span. +type EnergyMetrics struct { + MoBaseMo + AdditionalProperties map[string]interface{} +} + +type _EnergyMetrics EnergyMetrics + +// NewEnergyMetrics instantiates a new EnergyMetrics object +// This constructor will assign default values to properties that have it defined, +// and makes sure properties required by API are set, but the set of arguments +// will change when the set of required properties is changed +func NewEnergyMetrics(classId string, objectType string) *EnergyMetrics { + this := EnergyMetrics{} + this.ClassId = classId + this.ObjectType = objectType + return &this +} + +// NewEnergyMetricsWithDefaults instantiates a new EnergyMetrics object +// This constructor will only assign default values to properties that have it defined, +// but it doesn't guarantee that properties required by API are set +func NewEnergyMetricsWithDefaults() *EnergyMetrics { + this := EnergyMetrics{} + return &this +} + +func (o EnergyMetrics) MarshalJSON() ([]byte, error) { + toSerialize, err := o.ToMap() + if err != nil { + return []byte{}, err + } + return json.Marshal(toSerialize) +} + +func (o EnergyMetrics) ToMap() (map[string]interface{}, error) { + toSerialize := map[string]interface{}{} + serializedMoBaseMo, errMoBaseMo := json.Marshal(o.MoBaseMo) + if errMoBaseMo != nil { + return map[string]interface{}{}, errMoBaseMo + } + errMoBaseMo = json.Unmarshal([]byte(serializedMoBaseMo), &toSerialize) + if errMoBaseMo != nil { + return map[string]interface{}{}, errMoBaseMo + } + + for key, value := range o.AdditionalProperties { + toSerialize[key] = value + } + + return toSerialize, nil +} + +func (o *EnergyMetrics) UnmarshalJSON(data []byte) (err error) { + // This validates that all required properties are included in the JSON object + // by unmarshalling the object into a generic map with string keys and checking + // that every required field exists as a key in the generic map. + requiredProperties := []string{ + "ClassId", + "ObjectType", + } + + // defaultValueFuncMap captures the default values for required properties. + // These values are used when required properties are missing from the payload. + defaultValueFuncMap := map[string]func() interface{}{} + var defaultValueApplied bool + allProperties := make(map[string]interface{}) + + err = json.Unmarshal(data, &allProperties) + + if err != nil { + return err + } + + for _, requiredProperty := range requiredProperties { + if value, exists := allProperties[requiredProperty]; !exists || value == "" { + if _, ok := defaultValueFuncMap[requiredProperty]; ok { + allProperties[requiredProperty] = defaultValueFuncMap[requiredProperty]() + defaultValueApplied = true + } + } + if value, exists := allProperties[requiredProperty]; !exists || value == "" { + return fmt.Errorf("no value given for required property %v", requiredProperty) + } + } + + if defaultValueApplied { + data, err = json.Marshal(allProperties) + if err != nil { + return err + } + } + type EnergyMetricsWithoutEmbeddedStruct struct { + } + + varEnergyMetricsWithoutEmbeddedStruct := EnergyMetricsWithoutEmbeddedStruct{} + + err = json.Unmarshal(data, &varEnergyMetricsWithoutEmbeddedStruct) + if err == nil { + varEnergyMetrics := _EnergyMetrics{} + *o = EnergyMetrics(varEnergyMetrics) + } else { + return err + } + + varEnergyMetrics := _EnergyMetrics{} + + err = json.Unmarshal(data, &varEnergyMetrics) + if err == nil { + o.MoBaseMo = varEnergyMetrics.MoBaseMo + } else { + return err + } + + additionalProperties := make(map[string]interface{}) + + if err = json.Unmarshal(data, &additionalProperties); err == nil { + + // remove fields from embedded structs + reflectMoBaseMo := reflect.ValueOf(o.MoBaseMo) + for i := 0; i < reflectMoBaseMo.Type().NumField(); i++ { + t := reflectMoBaseMo.Type().Field(i) + + if jsonTag := t.Tag.Get("json"); jsonTag != "" { + fieldName := "" + if commaIdx := strings.Index(jsonTag, ","); commaIdx > 0 { + fieldName = jsonTag[:commaIdx] + } else { + fieldName = jsonTag + } + if fieldName != "AdditionalProperties" { + delete(additionalProperties, fieldName) + } + } + } + + o.AdditionalProperties = additionalProperties + } + + return err +} + +type NullableEnergyMetrics struct { + value *EnergyMetrics + isSet bool +} + +func (v NullableEnergyMetrics) Get() *EnergyMetrics { + return v.value +} + +func (v *NullableEnergyMetrics) Set(val *EnergyMetrics) { + v.value = val + v.isSet = true +} + +func (v NullableEnergyMetrics) IsSet() bool { + return v.isSet +} + +func (v *NullableEnergyMetrics) Unset() { + v.value = nil + v.isSet = false +} + +func NewNullableEnergyMetrics(val *EnergyMetrics) *NullableEnergyMetrics { + return &NullableEnergyMetrics{value: val, isSet: true} +} + +func (v NullableEnergyMetrics) MarshalJSON() ([]byte, error) { + return json.Marshal(v.value) +} + +func (v *NullableEnergyMetrics) UnmarshalJSON(src []byte) error { + v.isSet = true + return json.Unmarshal(src, &v.value) +} diff --git a/intersight_gosdk/model_equipment_abstract_device.go b/intersight_gosdk/model_equipment_abstract_device.go index 4363d304b3..8c3ab8f462 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_base.go b/intersight_gosdk/model_equipment_base.go index 701b6a8819..0b244d4eae 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_base_relationship.go b/intersight_gosdk/model_equipment_base_relationship.go index a75b233673..eb38913a91 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_base_sensor.go b/intersight_gosdk/model_equipment_base_sensor.go index dbe157c496..ab896fd483 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_chassis.go b/intersight_gosdk/model_equipment_chassis.go index 5e8f5b93d3..9e9185dcfe 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_chassis_id_pool.go b/intersight_gosdk/model_equipment_chassis_id_pool.go index 0ed2eec422..9b5e745161 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-18012 +API version: 1.0.11-18369 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 ed178e790f..120f11041e 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-18012 +API version: 1.0.11-18369 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 45289749eb..e4a86da64c 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_chassis_identity.go b/intersight_gosdk/model_equipment_chassis_identity.go index 05495a318b..3942f2ace1 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-18012 +API version: 1.0.11-18369 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 9d0e236e05..0db48a859c 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-18012 +API version: 1.0.11-18369 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 558f853cd8..22a0886e5b 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_chassis_list.go b/intersight_gosdk/model_equipment_chassis_list.go index 5c628e0925..4adc76b74c 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_chassis_operation.go b/intersight_gosdk/model_equipment_chassis_operation.go index 5f97b4e5cf..bbffa4809b 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-18012 +API version: 1.0.11-18369 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 28937f352b..3d9b1c63f1 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-18012 +API version: 1.0.11-18369 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 73205de594..7c1bcb7fc4 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-18012 +API version: 1.0.11-18369 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 a1f8b9c599..6794819a3d 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_chassis_relationship.go b/intersight_gosdk/model_equipment_chassis_relationship.go index af9573bd4d..70207dd45d 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_chassis_response.go b/intersight_gosdk/model_equipment_chassis_response.go index 7d1c945dd6..aa58ba44da 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_device_location.go b/intersight_gosdk/model_equipment_device_location.go index edb28c12e4..a8b2a1ae5b 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_device_summary.go b/intersight_gosdk/model_equipment_device_summary.go index 3bc959fb57..10f04e81b3 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-18012 +API version: 1.0.11-18369 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 cfd73f43be..2cae9289f7 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-18012 +API version: 1.0.11-18369 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 b4fa903cdd..6e369e29b9 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-18012 +API version: 1.0.11-18369 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 44086f8ac4..8093c94478 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-18012 +API version: 1.0.11-18369 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 1eb352d79e..d6257c69bc 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-18012 +API version: 1.0.11-18369 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 a8090bd1ff..32f6b94bf4 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_expander_module.go b/intersight_gosdk/model_equipment_expander_module.go index b32cb449e8..dfa88c8b3b 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-18012 +API version: 1.0.11-18369 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 769d2ae3ee..9e49290e92 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-18012 +API version: 1.0.11-18369 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 7d557b6e48..9bfca15bb8 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-18012 +API version: 1.0.11-18369 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 10c956a842..9e1759cdda 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_fan.go b/intersight_gosdk/model_equipment_fan.go index 70c8898200..4381fe113e 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_fan_control.go b/intersight_gosdk/model_equipment_fan_control.go index 16ab43847a..9e07e6e7a0 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-18012 +API version: 1.0.11-18369 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 62cdfddb20..b355a0b3c2 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-18012 +API version: 1.0.11-18369 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 76e9aee408..52419787fb 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-18012 +API version: 1.0.11-18369 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 d7fc831033..41f6a03b00 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_fan_list.go b/intersight_gosdk/model_equipment_fan_list.go index 8ff9d91c44..b67d66e4fc 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_fan_module.go b/intersight_gosdk/model_equipment_fan_module.go index d294a298d4..a29df76a6d 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-18012 +API version: 1.0.11-18369 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 dfe3313fdb..32472e6c46 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-18012 +API version: 1.0.11-18369 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 d3b2b3203f..ce771c358e 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-18012 +API version: 1.0.11-18369 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 ae10e97111..31eae5c640 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_fan_relationship.go b/intersight_gosdk/model_equipment_fan_relationship.go index daacff717e..428f5b0ad2 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_fan_response.go b/intersight_gosdk/model_equipment_fan_response.go index 1421ba734f..15651298d6 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_fex.go b/intersight_gosdk/model_equipment_fex.go index 65249476bd..75d9dc1704 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_fex_identity.go b/intersight_gosdk/model_equipment_fex_identity.go index c54c7af030..34504e53a5 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-18012 +API version: 1.0.11-18369 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 678b7f78dd..f69962f27f 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-18012 +API version: 1.0.11-18369 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 f5eb7f1ea7..eb6a4b9e86 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_fex_list.go b/intersight_gosdk/model_equipment_fex_list.go index 509697e48b..b8d20f8a20 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_fex_operation.go b/intersight_gosdk/model_equipment_fex_operation.go index 90f3715037..ed6d0255c0 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-18012 +API version: 1.0.11-18369 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 353a60bdcf..0fe728a20f 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-18012 +API version: 1.0.11-18369 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 ea2c646370..b2f09dfa85 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_fex_relationship.go b/intersight_gosdk/model_equipment_fex_relationship.go index 4660a9bbb9..f6d5ba2582 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_fex_response.go b/intersight_gosdk/model_equipment_fex_response.go index e05389f91d..e23a4ec685 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_fru.go b/intersight_gosdk/model_equipment_fru.go index 371f6cfd8a..f371663085 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_fru_list.go b/intersight_gosdk/model_equipment_fru_list.go index effcda753e..21f3cda526 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_fru_relationship.go b/intersight_gosdk/model_equipment_fru_relationship.go index e3a5b48fb0..8d16f5e27d 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_fru_response.go b/intersight_gosdk/model_equipment_fru_response.go index ec57259952..cbe000d5cf 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-18012 +API version: 1.0.11-18369 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 7929007178..a4d7bbbc39 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-18012 +API version: 1.0.11-18369 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 245bc28802..bd10670bc7 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-18012 +API version: 1.0.11-18369 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 761d60dcdc..493ceb5867 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-18012 +API version: 1.0.11-18369 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 4a706f20b8..6897e8172c 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_identity.go b/intersight_gosdk/model_equipment_identity.go index 8d162bc106..caa3bc9e76 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_io_card.go b/intersight_gosdk/model_equipment_io_card.go index 8499d6f2da..f8d0ede4f0 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-18012 +API version: 1.0.11-18369 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 cfe7716622..a3174f7766 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-18012 +API version: 1.0.11-18369 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 46e332f548..e2cbaa5283 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-18012 +API version: 1.0.11-18369 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 7dba955144..4894c37265 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-18012 +API version: 1.0.11-18369 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 9eac91e59a..279a9ef8ea 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-18012 +API version: 1.0.11-18369 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 019b093bc6..976608f528 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-18012 +API version: 1.0.11-18369 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 045fcb865e..17b038645c 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-18012 +API version: 1.0.11-18369 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 0bc9963640..5f39303f2f 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-18012 +API version: 1.0.11-18369 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 3d87d145ad..9298cabe4e 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-18012 +API version: 1.0.11-18369 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 c52f6859ad..3502b752ee 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-18012 +API version: 1.0.11-18369 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 531e96ed7e..5cb7375167 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_io_expander.go b/intersight_gosdk/model_equipment_io_expander.go index 6ec0e48400..62c210af11 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-18012 +API version: 1.0.11-18369 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 07a1838ba9..ce361a894e 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-18012 +API version: 1.0.11-18369 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 73d7852cdc..3072f9b868 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-18012 +API version: 1.0.11-18369 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 f953029282..7dd04297a3 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_locator_led.go b/intersight_gosdk/model_equipment_locator_led.go index 5e9c47e0d6..5d9ee61492 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-18012 +API version: 1.0.11-18369 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 77670b4aa4..af478f59b2 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-18012 +API version: 1.0.11-18369 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 7142fc9275..6c0aadcce8 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-18012 +API version: 1.0.11-18369 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 768659695e..79977a5841 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_log_download.go b/intersight_gosdk/model_equipment_log_download.go index 4fdeff3f18..cfc3bfde02 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-18012 +API version: 1.0.11-18369 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 7daf5f7187..dbb45465ff 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-18012 +API version: 1.0.11-18369 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 9e11f3a65a..8d4f1bfea5 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_physical_identity.go b/intersight_gosdk/model_equipment_physical_identity.go index 38c158e25e..ce1901e815 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-18012 +API version: 1.0.11-18369 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 4b6e28e909..d2ea8930f9 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_psu.go b/intersight_gosdk/model_equipment_psu.go index e9f26608fc..bca0f9ca4e 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_psu_control.go b/intersight_gosdk/model_equipment_psu_control.go index c93252f0b3..ba4ce3c7f0 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-18012 +API version: 1.0.11-18369 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 228e9b7945..ac888a9a78 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-18012 +API version: 1.0.11-18369 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 dc256b311e..cf18d09269 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-18012 +API version: 1.0.11-18369 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 6e31dff87d..78855df81a 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_psu_list.go b/intersight_gosdk/model_equipment_psu_list.go index 3b93b201aa..6cfc83c8bb 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_psu_relationship.go b/intersight_gosdk/model_equipment_psu_relationship.go index 75d715417b..45302f4a53 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_psu_response.go b/intersight_gosdk/model_equipment_psu_response.go index 69c805f806..8d9668e080 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_rack_enclosure.go b/intersight_gosdk/model_equipment_rack_enclosure.go index 92ed5d83d7..9f6eacf2f0 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-18012 +API version: 1.0.11-18369 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 294f9b58ff..b49141a38f 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-18012 +API version: 1.0.11-18369 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 08464be146..2dd93263ea 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-18012 +API version: 1.0.11-18369 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 c3801f9f5c..9849d425e1 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-18012 +API version: 1.0.11-18369 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 0ee79d3383..8a2404fecc 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-18012 +API version: 1.0.11-18369 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 995c010f45..34ed61caa3 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-18012 +API version: 1.0.11-18369 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 c967253c38..a42fbf9b55 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-18012 +API version: 1.0.11-18369 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 73e013ce31..94c3ac2604 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_reset_action.go b/intersight_gosdk/model_equipment_reset_action.go index 36e11e21e7..b81b111a18 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_sensor.go b/intersight_gosdk/model_equipment_sensor.go index 89e52cab56..eb7803d0ef 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_sensor_list.go b/intersight_gosdk/model_equipment_sensor_list.go index eb6c05fcf8..26c9e9b398 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_sensor_relationship.go b/intersight_gosdk/model_equipment_sensor_relationship.go index 38e8463141..95e08539fd 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_sensor_response.go b/intersight_gosdk/model_equipment_sensor_response.go index 2a3422a0bf..89087b2483 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-18012 +API version: 1.0.11-18369 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 6564d00254..d017a1ac0d 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-18012 +API version: 1.0.11-18369 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 5062d09ae3..e45e0de38b 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-18012 +API version: 1.0.11-18369 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 cb62dc3b29..9ec321775d 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-18012 +API version: 1.0.11-18369 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 6923d426a1..100303e8b4 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_slot.go b/intersight_gosdk/model_equipment_slot.go index dbc0392561..2cc17d030c 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_switch_card.go b/intersight_gosdk/model_equipment_switch_card.go index 9b9155808c..ec9972d6ca 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-18012 +API version: 1.0.11-18369 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 d04fe03f5e..99fd801e1c 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-18012 +API version: 1.0.11-18369 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 75dc9faa3c..e0800af311 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-18012 +API version: 1.0.11-18369 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 70ab881ed0..8d16d914c7 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_switch_operation.go b/intersight_gosdk/model_equipment_switch_operation.go index 9bd012fbea..01484d53fb 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-18012 +API version: 1.0.11-18369 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 f12b88422c..fd4db78097 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-18012 +API version: 1.0.11-18369 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 113d7d7128..f90f070c94 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-18012 +API version: 1.0.11-18369 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 880f81144a..95d8aaea20 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-18012 +API version: 1.0.11-18369 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 a1b5808d95..816a55c370 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-18012 +API version: 1.0.11-18369 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 0988b83032..a87e516b48 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-18012 +API version: 1.0.11-18369 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 a6790fa561..741c4347ba 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_tpm.go b/intersight_gosdk/model_equipment_tpm.go index 0940e3cc1b..181784e2a0 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_tpm_list.go b/intersight_gosdk/model_equipment_tpm_list.go index 57b8e9ab08..a8b2479482 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_tpm_relationship.go b/intersight_gosdk/model_equipment_tpm_relationship.go index 9053eb421d..bfd578a2d0 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_tpm_response.go b/intersight_gosdk/model_equipment_tpm_response.go index 776b048e59..6389854a72 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_transceiver.go b/intersight_gosdk/model_equipment_transceiver.go index 6419f530ae..56160be7e2 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_transceiver_list.go b/intersight_gosdk/model_equipment_transceiver_list.go index 793bbc40fc..c02c4f6a6c 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_equipment_transceiver_response.go b/intersight_gosdk/model_equipment_transceiver_response.go index f1abe5bfa6..e688b32816 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_error.go b/intersight_gosdk/model_error.go index 7d6eb0253c..1b16b80420 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_ether_host_port.go b/intersight_gosdk/model_ether_host_port.go index 66638153d2..680aa5e25d 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-18012 +API version: 1.0.11-18369 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 a3b14f8907..9ed092d171 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-18012 +API version: 1.0.11-18369 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 4545f7f915..831c37e582 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-18012 +API version: 1.0.11-18369 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 179ab69a68..5d2ca66c41 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_ether_network_port.go b/intersight_gosdk/model_ether_network_port.go index 33779d31c9..3080b8fc49 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-18012 +API version: 1.0.11-18369 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 2f20d49ba6..976a8845af 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-18012 +API version: 1.0.11-18369 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 d0a65def20..7318b64536 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-18012 +API version: 1.0.11-18369 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 313d092dd4..f5fc492d09 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_ether_physical_port.go b/intersight_gosdk/model_ether_physical_port.go index 828eaab7a3..5196dd4c8f 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-18012 +API version: 1.0.11-18369 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 20ad9e056c..b0d0c9b7c6 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-18012 +API version: 1.0.11-18369 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 3c466e4ce4..f7b7105ab5 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-18012 +API version: 1.0.11-18369 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 7d27eb6048..2292492672 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-18012 +API version: 1.0.11-18369 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 248fe47a11..ee38cee9b3 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-18012 +API version: 1.0.11-18369 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 101f32e415..9202dcd1c1 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_ether_port_channel.go b/intersight_gosdk/model_ether_port_channel.go index ce5b068854..adb5e9625d 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-18012 +API version: 1.0.11-18369 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 352e6539a1..e1033b2bc1 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-18012 +API version: 1.0.11-18369 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 93748907d2..afdef31088 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-18012 +API version: 1.0.11-18369 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 f5aa80e491..1c69f3c868 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_externalsite_authorization.go b/intersight_gosdk/model_externalsite_authorization.go index 4848350bdd..03b2dfe98e 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_externalsite_authorization_list.go b/intersight_gosdk/model_externalsite_authorization_list.go index 4ff86b3f8b..e933143a0b 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_externalsite_authorization_response.go b/intersight_gosdk/model_externalsite_authorization_response.go index bb5d65cba8..ad454161a5 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-18012 +API version: 1.0.11-18369 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 ba1e9a0444..26a008c78a 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-18012 +API version: 1.0.11-18369 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 d01aa4b6e2..d775cd18d7 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-18012 +API version: 1.0.11-18369 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 7e389c3c55..d1eaafd50a 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-18012 +API version: 1.0.11-18369 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 cefaf44431..8bfe49649f 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-18012 +API version: 1.0.11-18369 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 9f2bafe744..61b58cc383 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_abstract_span_source.go b/intersight_gosdk/model_fabric_abstract_span_source.go index b5a9ce61c0..799df3eae1 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-18012 +API version: 1.0.11-18369 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 734c36d3d5..c183bd46d9 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-18012 +API version: 1.0.11-18369 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 8b4187a2c6..b8abe10c5f 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-18012 +API version: 1.0.11-18369 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 6a3520694e..910caac986 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-18012 +API version: 1.0.11-18369 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 c6f44e0763..84d052d108 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-18012 +API version: 1.0.11-18369 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 3e297647c2..ee11b13b3d 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-18012 +API version: 1.0.11-18369 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 16f50e0340..e2c9e424de 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-18012 +API version: 1.0.11-18369 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 e63ab8da43..d8ab5c9db6 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-18012 +API version: 1.0.11-18369 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 d0581f242a..a7b3126c42 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-18012 +API version: 1.0.11-18369 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 3c5cb4b3d2..d7d3b39c3d 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_appliance_role.go b/intersight_gosdk/model_fabric_appliance_role.go index 2796895376..ee33df8ee7 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-18012 +API version: 1.0.11-18369 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 d9a1e4c826..6d6e9248d1 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-18012 +API version: 1.0.11-18369 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 e89a99efb3..b59fcb3c18 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-18012 +API version: 1.0.11-18369 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 0857fc9332..9f5e500f39 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-18012 +API version: 1.0.11-18369 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 08b528fb95..819dcb1ed4 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-18012 +API version: 1.0.11-18369 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 718cd9ba2c..e370820a02 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_cluster_assignment.go b/intersight_gosdk/model_fabric_cluster_assignment.go index d8e1175127..865bbe5e67 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_config_change_detail.go b/intersight_gosdk/model_fabric_config_change_detail.go index 8367aed950..7d26b23fe3 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-18012 +API version: 1.0.11-18369 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 8a6a4c92e5..b2157622cf 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-18012 +API version: 1.0.11-18369 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 432d5a12e0..ce89c0e1ea 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-18012 +API version: 1.0.11-18369 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 b11bcac47e..a2da239f94 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_config_result.go b/intersight_gosdk/model_fabric_config_result.go index c0c081876d..b7d018c236 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-18012 +API version: 1.0.11-18369 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 078a34250e..97e3f3dd9b 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-18012 +API version: 1.0.11-18369 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 4be126fffd..e6184eae6d 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-18012 +API version: 1.0.11-18369 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 384236f19a..4a0f3b5972 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-18012 +API version: 1.0.11-18369 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 a05bb6b620..a567cc3821 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-18012 +API version: 1.0.11-18369 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 0d9d73a21f..a3ab1588e3 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-18012 +API version: 1.0.11-18369 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 9faeb9fad0..4ad52b08dc 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-18012 +API version: 1.0.11-18369 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 3db7b332d4..a26d67a270 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_element_identity.go b/intersight_gosdk/model_fabric_element_identity.go index 12449547fa..2ce7472638 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-18012 +API version: 1.0.11-18369 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 fb6a53b975..2925f16965 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-18012 +API version: 1.0.11-18369 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 680e505fdf..e16b8c0982 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_estimate_impact.go b/intersight_gosdk/model_fabric_estimate_impact.go index 2cc8a5d444..e3333091ef 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-18012 +API version: 1.0.11-18369 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 b50a350136..655f7f3742 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-18012 +API version: 1.0.11-18369 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 817e12668d..ce7e49c5e7 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-18012 +API version: 1.0.11-18369 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 0e69c2cd0d..8029bf9d8c 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-18012 +API version: 1.0.11-18369 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 c786fa16c3..0fc1894e53 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-18012 +API version: 1.0.11-18369 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 ca5cf2e754..d6dc6370d1 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-18012 +API version: 1.0.11-18369 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 78f835926f..bed095ef64 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-18012 +API version: 1.0.11-18369 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 7a95c87f2c..4f70ac22a7 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-18012 +API version: 1.0.11-18369 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 ef8da42642..06367f835c 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-18012 +API version: 1.0.11-18369 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 04d5d08ee2..b0b290f600 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-18012 +API version: 1.0.11-18369 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 4b8d7fb46e..9eb48bd2a9 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-18012 +API version: 1.0.11-18369 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 9fa9e86245..8ab9e55830 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-18012 +API version: 1.0.11-18369 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 8818343407..444503c1fd 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-18012 +API version: 1.0.11-18369 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 76b6d9c23a..fe61c579ae 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-18012 +API version: 1.0.11-18369 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 45e51c8e26..0b08a9a64a 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-18012 +API version: 1.0.11-18369 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 c06d7bc016..7fc659f4c3 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-18012 +API version: 1.0.11-18369 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 bda94ea028..403002a91f 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-18012 +API version: 1.0.11-18369 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 c4aab72679..92ea1dc161 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-18012 +API version: 1.0.11-18369 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 6d6df7118b..0069d33f0e 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-18012 +API version: 1.0.11-18369 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 c19c93f3a2..4028af5e82 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-18012 +API version: 1.0.11-18369 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 015ff9f785..5cf28f716e 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-18012 +API version: 1.0.11-18369 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 161e34d35e..10864f427c 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-18012 +API version: 1.0.11-18369 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 1589fa1e1c..8c4124c7c7 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-18012 +API version: 1.0.11-18369 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 9e6d71bc0c..ad4687f7e8 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-18012 +API version: 1.0.11-18369 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 287a73699f..4d49d9dc52 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-18012 +API version: 1.0.11-18369 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 b5bd701d8e..5fe9160f99 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-18012 +API version: 1.0.11-18369 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 92c9e61fc1..53f21f819f 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-18012 +API version: 1.0.11-18369 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 7847573987..f2cb309a2f 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-18012 +API version: 1.0.11-18369 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 915d1b315f..11f79c0a5d 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-18012 +API version: 1.0.11-18369 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 7081f18de9..4caca68c2b 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-18012 +API version: 1.0.11-18369 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 9b91d19746..601f35b0d1 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-18012 +API version: 1.0.11-18369 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 807f08efa0..aa54707317 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-18012 +API version: 1.0.11-18369 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 a6528201d8..f439de16af 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-18012 +API version: 1.0.11-18369 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 2c1015a2c0..1846799a75 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-18012 +API version: 1.0.11-18369 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 53367149e0..139b0e2feb 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_fc_zone_policy.go b/intersight_gosdk/model_fabric_fc_zone_policy.go index e99caf1713..1f383a0128 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-18012 +API version: 1.0.11-18369 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 15d1c31c5e..a668271124 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-18012 +API version: 1.0.11-18369 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 8d946c3329..af98e8f135 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-18012 +API version: 1.0.11-18369 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 bf700b4573..8e0f99b013 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-18012 +API version: 1.0.11-18369 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 7b5a50a8af..ab659dad0d 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-18012 +API version: 1.0.11-18369 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 77a3b1b37c..3b82f15c83 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-18012 +API version: 1.0.11-18369 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 600afb0bea..2a70bef218 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-18012 +API version: 1.0.11-18369 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 a727597687..4a6f314340 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-18012 +API version: 1.0.11-18369 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 d42d436101..69e2532be9 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-18012 +API version: 1.0.11-18369 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 f950fae785..b978a2b7e0 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-18012 +API version: 1.0.11-18369 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 942b469061..c170c25461 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-18012 +API version: 1.0.11-18369 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 eeddd88e4c..039b10f1ff 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-18012 +API version: 1.0.11-18369 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 9d29dfbc89..86cba1a4aa 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-18012 +API version: 1.0.11-18369 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 539b86f369..5faa811746 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-18012 +API version: 1.0.11-18369 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 63799f7a28..241a158b8e 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-18012 +API version: 1.0.11-18369 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 6197368cef..95ff2dbe1a 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-18012 +API version: 1.0.11-18369 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 54f6266f73..efdd41ae16 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-18012 +API version: 1.0.11-18369 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 c0d58a8305..765e627d4d 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-18012 +API version: 1.0.11-18369 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 2aa5e1d48a..1568473e0d 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-18012 +API version: 1.0.11-18369 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 ff4e310492..7de25322e3 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-18012 +API version: 1.0.11-18369 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 915e1a8a28..e52c82d36a 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-18012 +API version: 1.0.11-18369 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 ecdd677ef2..42908c03f1 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-18012 +API version: 1.0.11-18369 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 401637f94b..63b435a6b7 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-18012 +API version: 1.0.11-18369 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 7d39cc5e2e..375e6090d7 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-18012 +API version: 1.0.11-18369 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 cfba749f3a..3a4cf51c3e 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_lldp_settings.go b/intersight_gosdk/model_fabric_lldp_settings.go index 832cd39fc3..d779f5c5f1 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-18012 +API version: 1.0.11-18369 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 dda2f5cb99..dd914554f9 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_multicast_policy.go b/intersight_gosdk/model_fabric_multicast_policy.go index 441e8cab1a..f0a0600128 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_multicast_policy_list.go b/intersight_gosdk/model_fabric_multicast_policy_list.go index 7ad379be33..07c5fb884b 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-18012 +API version: 1.0.11-18369 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 7c0b184575..a3d3daa474 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-18012 +API version: 1.0.11-18369 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 46da8ac7df..6f38cfd201 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_pc_member.go b/intersight_gosdk/model_fabric_pc_member.go index 70e90cd560..b3f98872ae 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-18012 +API version: 1.0.11-18369 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 61f142de9a..79c5378321 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-18012 +API version: 1.0.11-18369 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 d2eeba1131..846fe1c921 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_pc_operation.go b/intersight_gosdk/model_fabric_pc_operation.go index f35e7f0acf..57181b481a 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-18012 +API version: 1.0.11-18369 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 d61120fcac..e7e592f871 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-18012 +API version: 1.0.11-18369 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 a5a9c6ee83..14317a08c1 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_pin_group.go b/intersight_gosdk/model_fabric_pin_group.go index 484186dd71..a1536209b2 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_port_base.go b/intersight_gosdk/model_fabric_port_base.go index 2ada9243f9..93e132d3ab 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-18012 +API version: 1.0.11-18369 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 32c1eded78..bee0721201 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_port_identifier.go b/intersight_gosdk/model_fabric_port_identifier.go index 0360991d07..7584038827 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_port_mode.go b/intersight_gosdk/model_fabric_port_mode.go index 68089976df..004acb985f 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-18012 +API version: 1.0.11-18369 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 d1a6d17d71..8f6cdde8c6 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-18012 +API version: 1.0.11-18369 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 cf301595de..0671541bfd 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_port_operation.go b/intersight_gosdk/model_fabric_port_operation.go index 65f29dac38..7414d075ac 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-18012 +API version: 1.0.11-18369 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 cc3996d2d4..ce49b32488 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-18012 +API version: 1.0.11-18369 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 995ac068a0..4b9668df9e 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_port_policy.go b/intersight_gosdk/model_fabric_port_policy.go index ca69904d60..64c2969028 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-18012 +API version: 1.0.11-18369 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 cf29de9541..2a12110678 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-18012 +API version: 1.0.11-18369 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 8be5ba01ca..ab3b752a5f 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-18012 +API version: 1.0.11-18369 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 9b57f0e376..3fe6b64826 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_port_role.go b/intersight_gosdk/model_fabric_port_role.go index f2a0a0849a..4ba470b42f 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_qos_class.go b/intersight_gosdk/model_fabric_qos_class.go index efc28e672c..d10d469169 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-18012 +API version: 1.0.11-18369 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 fa45fe60eb..c056785b53 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-18012 +API version: 1.0.11-18369 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 1c32fd5b2f..a945d2f364 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-18012 +API version: 1.0.11-18369 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 d1eb85da60..c78748c0f1 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_server_role.go b/intersight_gosdk/model_fabric_server_role.go index d7611d18cc..c7e75190fe 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-18012 +API version: 1.0.11-18369 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 94377958b5..00722991ed 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-18012 +API version: 1.0.11-18369 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 8ad937cbf6..bc77af900d 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-18012 +API version: 1.0.11-18369 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 2c23f178be..f9c7a97a13 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-18012 +API version: 1.0.11-18369 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 5dd04ed99c..d9eda22b52 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-18012 +API version: 1.0.11-18369 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 c77786acea..8942d0d4f8 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_span_session.go b/intersight_gosdk/model_fabric_span_session.go index d157c8ccf0..ef23581edd 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-18012 +API version: 1.0.11-18369 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 5d106dbb69..c54cbc678d 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-18012 +API version: 1.0.11-18369 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 e41e7f96a6..c8458d0c5f 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-18012 +API version: 1.0.11-18369 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 833663da0c..ac10b8d44a 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-18012 +API version: 1.0.11-18369 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 463c56bb65..dbc667f124 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-18012 +API version: 1.0.11-18369 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 e9b8039228..26f8fc4c99 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-18012 +API version: 1.0.11-18369 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 015778d6dd..14fe8f5cc0 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-18012 +API version: 1.0.11-18369 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 1f49196e1e..01811395c8 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-18012 +API version: 1.0.11-18369 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 c39727f8e1..3c7283d541 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-18012 +API version: 1.0.11-18369 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 d2d4f9aa46..c5a2b9a501 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-18012 +API version: 1.0.11-18369 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 43e273b974..ad32030fb9 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-18012 +API version: 1.0.11-18369 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 9f9955b91a..8d8769acba 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-18012 +API version: 1.0.11-18369 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 facc04eaff..e29584613c 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-18012 +API version: 1.0.11-18369 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 c36080fc7e..cae9f8e9d9 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-18012 +API version: 1.0.11-18369 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 a6d3324181..839f5c8319 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-18012 +API version: 1.0.11-18369 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 bdc8c5bc99..de1f57ea0e 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-18012 +API version: 1.0.11-18369 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 36bc323edb..6cd1b30326 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-18012 +API version: 1.0.11-18369 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 0b76bd8775..145e245ae5 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_switch_cluster_profile_list.go b/intersight_gosdk/model_fabric_switch_cluster_profile_list.go index 6dd59456d9..aea79557c7 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-18012 +API version: 1.0.11-18369 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 639bb3697f..0a78f41b98 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-18012 +API version: 1.0.11-18369 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 0169229900..b27f234638 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-18012 +API version: 1.0.11-18369 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 b86eba4c22..50991326c3 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-18012 +API version: 1.0.11-18369 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 60cc2c7f82..2cedb319a2 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-18012 +API version: 1.0.11-18369 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 8b33047812..ac9e592a35 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-18012 +API version: 1.0.11-18369 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 da06997678..21ae1ba6e0 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-18012 +API version: 1.0.11-18369 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 c0faf7431f..20952bbb67 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-18012 +API version: 1.0.11-18369 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 ea9063826e..543eab0c87 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-18012 +API version: 1.0.11-18369 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 71167ec466..ae02120c25 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_switch_profile.go b/intersight_gosdk/model_fabric_switch_profile.go index f1b5fa1b1a..4212224c86 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-18012 +API version: 1.0.11-18369 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 8802859ecc..e3219234ef 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-18012 +API version: 1.0.11-18369 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 f5e6b7b012..a6f85fa979 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-18012 +API version: 1.0.11-18369 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 f7f1c4c56d..e261ddc8bc 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-18012 +API version: 1.0.11-18369 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 179b95d7a1..1860564a9d 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-18012 +API version: 1.0.11-18369 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 bd97741298..0575abbc9f 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-18012 +API version: 1.0.11-18369 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 8b46fe844f..dcbde33078 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-18012 +API version: 1.0.11-18369 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 be8ac2a5f3..aa08962c7a 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-18012 +API version: 1.0.11-18369 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 b840ebff6c..de1235e343 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-18012 +API version: 1.0.11-18369 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 7426e05733..920191af15 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-18012 +API version: 1.0.11-18369 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 01585ebe8c..17db59abd6 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_transceiver_role.go b/intersight_gosdk/model_fabric_transceiver_role.go index 67f3a842fa..50db294c18 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-18012 +API version: 1.0.11-18369 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 88803cd875..69d9764d93 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_udld_settings.go b/intersight_gosdk/model_fabric_udld_settings.go index aef3139c48..0a6df27117 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-18012 +API version: 1.0.11-18369 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 f8dd60e129..7363233c8d 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-18012 +API version: 1.0.11-18369 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 b5794b56e6..110aa85c4f 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-18012 +API version: 1.0.11-18369 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 c038d90623..243167d8a3 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_uplink_role.go b/intersight_gosdk/model_fabric_uplink_role.go index d88e824bcc..620f909390 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-18012 +API version: 1.0.11-18369 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 1dfa4f007f..eee5047181 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-18012 +API version: 1.0.11-18369 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 623fe5166e..4f6a831652 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_vlan.go b/intersight_gosdk/model_fabric_vlan.go index 715521be73..c562441b3c 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_vlan_inventory.go b/intersight_gosdk/model_fabric_vlan_inventory.go index f5b91f9ae7..87089864a9 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-18012 +API version: 1.0.11-18369 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 99f3a239ad..11fd0af72f 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-18012 +API version: 1.0.11-18369 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 c3001c2e46..0afe86ed90 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_vlan_list.go b/intersight_gosdk/model_fabric_vlan_list.go index d874fae7c4..64a2b34af1 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_vlan_response.go b/intersight_gosdk/model_fabric_vlan_response.go index 6eea2cc22d..dacba36692 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_vlan_set.go b/intersight_gosdk/model_fabric_vlan_set.go index 16f4bf355e..a083904466 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_vlan_set_list.go b/intersight_gosdk/model_fabric_vlan_set_list.go index 829fa31690..5938fa84ee 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-18012 +API version: 1.0.11-18369 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 a79d2982a5..4d24b51509 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-18012 +API version: 1.0.11-18369 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 773d5bbdb2..e7f119f573 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_vlan_settings.go b/intersight_gosdk/model_fabric_vlan_settings.go index d1450f1bb2..b36fa123c6 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ @@ -30,7 +30,7 @@ type FabricVlanSettings struct { 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" 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. + // Native VLAN ID of the virtual interface or the corresponding Vethernet on the peer Fabric Interconnect to which the virtual interface is connected. Native VLAN ID maps all incoming untagged traffic i.e. packets without a VLAN tag to the native VLAN for switching purposes. If the native VLAN is not a part of the allowed VLANs, it will automatically be added to the list of allowed VLANs. A native VLAN ID of 0 will indicate to the system to use the system default native VLAN ID and will also prevent native VLAN from being added to the allowed VLAN list. NativeVlan *int64 `json:"NativeVlan,omitempty"` // Enable QinQ (802.1Q-in-802.1Q) Tunneling on the vNIC. QinqEnabled *bool `json:"QinqEnabled,omitempty"` @@ -49,7 +49,7 @@ func NewFabricVlanSettings(classId string, objectType string) *FabricVlanSetting this := FabricVlanSettings{} this.ClassId = classId this.ObjectType = objectType - var nativeVlan int64 = 1 + var nativeVlan int64 = 0 this.NativeVlan = &nativeVlan var qinqEnabled bool = false this.QinqEnabled = &qinqEnabled @@ -67,7 +67,7 @@ func NewFabricVlanSettingsWithDefaults() *FabricVlanSettings { this.ClassId = classId var objectType string = "fabric.VlanSettings" this.ObjectType = objectType - var nativeVlan int64 = 1 + var nativeVlan int64 = 0 this.NativeVlan = &nativeVlan var qinqEnabled bool = false this.QinqEnabled = &qinqEnabled @@ -357,7 +357,7 @@ func (o *FabricVlanSettings) UnmarshalJSON(data []byte) (err error) { 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" 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. + // Native VLAN ID of the virtual interface or the corresponding Vethernet on the peer Fabric Interconnect to which the virtual interface is connected. Native VLAN ID maps all incoming untagged traffic i.e. packets without a VLAN tag to the native VLAN for switching purposes. If the native VLAN is not a part of the allowed VLANs, it will automatically be added to the list of allowed VLANs. A native VLAN ID of 0 will indicate to the system to use the system default native VLAN ID and will also prevent native VLAN from being added to the allowed VLAN list. NativeVlan *int64 `json:"NativeVlan,omitempty"` // Enable QinQ (802.1Q-in-802.1Q) Tunneling on the vNIC. QinqEnabled *bool `json:"QinqEnabled,omitempty"` diff --git a/intersight_gosdk/model_fabric_vsan.go b/intersight_gosdk/model_fabric_vsan.go index 59e5297703..81c55fa650 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_vsan_inventory.go b/intersight_gosdk/model_fabric_vsan_inventory.go index 5ec879ee14..4bff773dba 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-18012 +API version: 1.0.11-18369 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 f71fcfcd4b..fc3b7c5d5e 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-18012 +API version: 1.0.11-18369 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 18ab9bc422..f8f3e75343 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_vsan_list.go b/intersight_gosdk/model_fabric_vsan_list.go index fa5a217f0e..2a92004ee7 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fabric_vsan_response.go b/intersight_gosdk/model_fabric_vsan_response.go index cb26eb2eb1..886c99bb9c 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fault_instance.go b/intersight_gosdk/model_fault_instance.go index bbeebf1204..77c27e357d 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fault_instance_list.go b/intersight_gosdk/model_fault_instance_list.go index 6469ad617c..2c5f10ae05 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fault_instance_response.go b/intersight_gosdk/model_fault_instance_response.go index 0f1bab67b8..f7981f8fa7 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fc_neighbor.go b/intersight_gosdk/model_fc_neighbor.go index ac8eadfbb8..918f6e08f3 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fc_neighbor_list.go b/intersight_gosdk/model_fc_neighbor_list.go index 61f0d1688e..adbafd32ee 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fc_neighbor_relationship.go b/intersight_gosdk/model_fc_neighbor_relationship.go index 3e517acb46..90398c657b 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fc_neighbor_response.go b/intersight_gosdk/model_fc_neighbor_response.go index 461270a2e7..b727b4776f 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fc_physical_port.go b/intersight_gosdk/model_fc_physical_port.go index 4cc70a905a..f3b86ac710 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-18012 +API version: 1.0.11-18369 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 6129f12816..45d7e5aa0a 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-18012 +API version: 1.0.11-18369 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 f5229ffbd3..e78d506294 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-18012 +API version: 1.0.11-18369 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 39e0d5193d..77c2d2692e 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fc_port_channel.go b/intersight_gosdk/model_fc_port_channel.go index f5a501aed5..d93a2b2544 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-18012 +API version: 1.0.11-18369 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 400c84c141..4b3d30e3c8 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-18012 +API version: 1.0.11-18369 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 4cf4f84717..ed894a4919 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-18012 +API version: 1.0.11-18369 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 499321d412..ad4eb78dc6 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fcpool_block.go b/intersight_gosdk/model_fcpool_block.go index ab6467ab17..2981229c3b 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fcpool_fc_block.go b/intersight_gosdk/model_fcpool_fc_block.go index 951d1d7e6f..a417fe064e 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-18012 +API version: 1.0.11-18369 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 12bc2510f2..7cb66ae17d 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-18012 +API version: 1.0.11-18369 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 92f8261a57..7e33fd67f2 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-18012 +API version: 1.0.11-18369 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 e8f422f862..9cf17e9891 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fcpool_lease.go b/intersight_gosdk/model_fcpool_lease.go index 0019f344b0..5d4b13e2dd 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fcpool_lease_list.go b/intersight_gosdk/model_fcpool_lease_list.go index 8dcd07a2a9..491962454e 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fcpool_lease_relationship.go b/intersight_gosdk/model_fcpool_lease_relationship.go index 5032d24e9c..b65725160d 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fcpool_lease_response.go b/intersight_gosdk/model_fcpool_lease_response.go index dd5e54df7e..7dea1d80d6 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fcpool_pool.go b/intersight_gosdk/model_fcpool_pool.go index f35dd5993c..d53f2e7220 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fcpool_pool_list.go b/intersight_gosdk/model_fcpool_pool_list.go index 29072499a0..20d745825d 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fcpool_pool_member.go b/intersight_gosdk/model_fcpool_pool_member.go index 62e0a64662..04d8763d0c 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fcpool_pool_member_list.go b/intersight_gosdk/model_fcpool_pool_member_list.go index ed9805a4bb..7c066d9a69 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-18012 +API version: 1.0.11-18369 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 cd89110c46..f8d40dbc02 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-18012 +API version: 1.0.11-18369 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 fdf7f032b4..6409f4efbc 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fcpool_pool_relationship.go b/intersight_gosdk/model_fcpool_pool_relationship.go index 32e69e3bbb..eefcfbb150 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fcpool_pool_response.go b/intersight_gosdk/model_fcpool_pool_response.go index 4fe2cb887e..12a32f6b6b 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fcpool_reservation.go b/intersight_gosdk/model_fcpool_reservation.go index f533f46e42..e5492dbd34 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fcpool_reservation_list.go b/intersight_gosdk/model_fcpool_reservation_list.go index 2a694ae593..1fe106f7c8 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fcpool_reservation_reference.go b/intersight_gosdk/model_fcpool_reservation_reference.go index c8de2eb9a5..6528ed044a 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fcpool_reservation_relationship.go b/intersight_gosdk/model_fcpool_reservation_relationship.go index 37169bbd20..746d60b06b 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fcpool_reservation_response.go b/intersight_gosdk/model_fcpool_reservation_response.go index ca835947cc..874f96f249 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fcpool_universe.go b/intersight_gosdk/model_fcpool_universe.go index 83e4b0a26f..dc8080b232 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fcpool_universe_list.go b/intersight_gosdk/model_fcpool_universe_list.go index d6ac740d04..9498e41248 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fcpool_universe_relationship.go b/intersight_gosdk/model_fcpool_universe_relationship.go index 7662d5c23a..ca288d6452 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fcpool_universe_response.go b/intersight_gosdk/model_fcpool_universe_response.go index f4f18909fb..2796701e24 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_feedback_feedback_data.go b/intersight_gosdk/model_feedback_feedback_data.go index d639e86abe..5ac087e749 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_feedback_feedback_post.go b/intersight_gosdk/model_feedback_feedback_post.go index 9ec066af5a..eb207d4122 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_base_distributable.go b/intersight_gosdk/model_firmware_base_distributable.go index daa32c0510..b9ca32a5ef 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-18012 +API version: 1.0.11-18369 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 8b1f38b3a6..27af04540d 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_base_impact.go b/intersight_gosdk/model_firmware_base_impact.go index 4fe8316018..4aee106e96 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_bios_descriptor.go b/intersight_gosdk/model_firmware_bios_descriptor.go index 2d1be7d236..d5fd25130e 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-18012 +API version: 1.0.11-18369 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 896066961a..b759728189 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-18012 +API version: 1.0.11-18369 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 8b73990774..a6872c6b42 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-18012 +API version: 1.0.11-18369 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 ad2bf82576..9d1d67885b 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-18012 +API version: 1.0.11-18369 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 4458b4b5f2..e505eef159 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-18012 +API version: 1.0.11-18369 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 19b1bf14b2..c05f071148 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_chassis_upgrade.go b/intersight_gosdk/model_firmware_chassis_upgrade.go index fc723d89fa..aa36a3e15b 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-18012 +API version: 1.0.11-18369 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 34759c6ca1..804a0b563a 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-18012 +API version: 1.0.11-18369 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 4d3957ebce..b2c0debb24 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-18012 +API version: 1.0.11-18369 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 da97a55927..ffe81da94e 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_cifs_server.go b/intersight_gosdk/model_firmware_cifs_server.go index 7b074ce1fc..660f05fc5d 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_cimc_descriptor.go b/intersight_gosdk/model_firmware_cimc_descriptor.go index a1090c3e07..08b5fbb3e5 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-18012 +API version: 1.0.11-18369 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 62fda7bb20..8c41ca46cb 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-18012 +API version: 1.0.11-18369 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 19a67c6179..096f0666c7 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_component_descriptor.go b/intersight_gosdk/model_firmware_component_descriptor.go index 87322adc59..36e5a0892e 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_component_impact.go b/intersight_gosdk/model_firmware_component_impact.go index 668d328bb4..b3d8ebab4d 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_component_meta.go b/intersight_gosdk/model_firmware_component_meta.go index e42612208b..f4e870aa38 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_dimm_descriptor.go b/intersight_gosdk/model_firmware_dimm_descriptor.go index d4d6bcfc56..fc764a4518 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-18012 +API version: 1.0.11-18369 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 42967d7ecd..8c5e03004c 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-18012 +API version: 1.0.11-18369 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 a110a8a756..64553f6d54 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_direct_download.go b/intersight_gosdk/model_firmware_direct_download.go index f46677887b..9aee6fedfc 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_distributable.go b/intersight_gosdk/model_firmware_distributable.go index 29f4948b6d..13a21165a9 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_distributable_list.go b/intersight_gosdk/model_firmware_distributable_list.go index 536c314e7b..5ccf13fa6e 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_distributable_meta.go b/intersight_gosdk/model_firmware_distributable_meta.go index 0ef119e6be..9b3ad6d510 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-18012 +API version: 1.0.11-18369 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 7d55791810..43dec8d701 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-18012 +API version: 1.0.11-18369 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 3d9c174e23..238cc21d34 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-18012 +API version: 1.0.11-18369 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 607b41c6dc..53469f77c3 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_distributable_relationship.go b/intersight_gosdk/model_firmware_distributable_relationship.go index 4c52351b89..56f3a4d135 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_distributable_response.go b/intersight_gosdk/model_firmware_distributable_response.go index 822fa4526d..acd37d09e7 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_drive_descriptor.go b/intersight_gosdk/model_firmware_drive_descriptor.go index ff3a4236d9..0a17615341 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-18012 +API version: 1.0.11-18369 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 a277a930ee..1cad021107 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-18012 +API version: 1.0.11-18369 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 7132c53b90..1505453ae6 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_driver_distributable.go b/intersight_gosdk/model_firmware_driver_distributable.go index 40bc250f2f..f093c7794c 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-18012 +API version: 1.0.11-18369 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 8924df6e67..28728715b2 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-18012 +API version: 1.0.11-18369 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 6105f9f6dc..8201cd7268 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_eula.go b/intersight_gosdk/model_firmware_eula.go index 648f2e55c8..4307dc898a 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_eula_list.go b/intersight_gosdk/model_firmware_eula_list.go index c88742d611..6dba9fc24e 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_eula_response.go b/intersight_gosdk/model_firmware_eula_response.go index 288d3585d5..1ae1f1647b 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-18012 +API version: 1.0.11-18369 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 a87f785109..3dfc87e1bb 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-18012 +API version: 1.0.11-18369 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 c81eb6fbb8..7a3f8b7770 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_firmware_inventory.go b/intersight_gosdk/model_firmware_firmware_inventory.go index 3503aa3cac..74be41cd48 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_firmware_summary.go b/intersight_gosdk/model_firmware_firmware_summary.go index 2357e6fad4..2d462357fd 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-18012 +API version: 1.0.11-18369 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 55b6e776d9..48295d07c6 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-18012 +API version: 1.0.11-18369 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 ce7f64d77b..da0cf88b40 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_gpu_descriptor.go b/intersight_gosdk/model_firmware_gpu_descriptor.go index 77d77e9e38..89b4c2b77d 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-18012 +API version: 1.0.11-18369 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 cf20e8bd65..fda8c64e24 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-18012 +API version: 1.0.11-18369 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 0032170396..fd1b52af5d 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_hba_descriptor.go b/intersight_gosdk/model_firmware_hba_descriptor.go index d9ea70bd20..bf8e9db645 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-18012 +API version: 1.0.11-18369 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 673dc5ff6f..b43733736d 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-18012 +API version: 1.0.11-18369 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 ec6fb9e716..3ebe6a297f 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_http_server.go b/intersight_gosdk/model_firmware_http_server.go index 8155ad6d19..004a137f75 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_iom_descriptor.go b/intersight_gosdk/model_firmware_iom_descriptor.go index 6916c43049..d269b0539e 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-18012 +API version: 1.0.11-18369 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 1cb88f920e..9a229ca256 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-18012 +API version: 1.0.11-18369 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 14fb4ebafa..484ed44882 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-18012 +API version: 1.0.11-18369 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 56d5a87457..0d7137c961 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_mswitch_descriptor.go b/intersight_gosdk/model_firmware_mswitch_descriptor.go index d574e84c1a..c1fdfd0eef 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-18012 +API version: 1.0.11-18369 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 55a991808e..5c6801a8cc 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-18012 +API version: 1.0.11-18369 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 929121a523..3d1777cc90 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_network_share.go b/intersight_gosdk/model_firmware_network_share.go index 2b1b107800..2fa5da4ae7 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_nfs_server.go b/intersight_gosdk/model_firmware_nfs_server.go index f1bd17e857..6a8299535f 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_nxos_descriptor.go b/intersight_gosdk/model_firmware_nxos_descriptor.go index 101393a0ea..1d67862727 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-18012 +API version: 1.0.11-18369 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 793e507181..383515d389 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-18012 +API version: 1.0.11-18369 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 18e101a6dd..f9996a7363 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_pcie_descriptor.go b/intersight_gosdk/model_firmware_pcie_descriptor.go index 3b976f4bb5..bf0bde2360 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-18012 +API version: 1.0.11-18369 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 e2a3427a2e..3f7817b466 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-18012 +API version: 1.0.11-18369 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 cb2e775826..bff86dde3d 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_policy.go b/intersight_gosdk/model_firmware_policy.go index 84f704b026..8c55a7af76 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_policy_list.go b/intersight_gosdk/model_firmware_policy_list.go index 9bf56ed460..c84d09616c 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_policy_response.go b/intersight_gosdk/model_firmware_policy_response.go index 5ceea26488..84757d3c1d 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_psu_descriptor.go b/intersight_gosdk/model_firmware_psu_descriptor.go index 6daab08fce..d600cfc83f 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-18012 +API version: 1.0.11-18369 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 be1ba2b573..8ec582a53d 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-18012 +API version: 1.0.11-18369 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 93f6a6fa0d..4e574b969c 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_running_firmware.go b/intersight_gosdk/model_firmware_running_firmware.go index 26c25915d1..fb190ab04b 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-18012 +API version: 1.0.11-18369 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 79c308b33a..ac12937b34 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-18012 +API version: 1.0.11-18369 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 3053b709d2..dd70ca8134 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-18012 +API version: 1.0.11-18369 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 9763da4e26..9d85d89b6a 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-18012 +API version: 1.0.11-18369 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 654c00bd7f..0dc6a079a6 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-18012 +API version: 1.0.11-18369 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 be469f1bf1..beff123fa3 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-18012 +API version: 1.0.11-18369 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 8bfd6bcc4d..a777b27be9 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-18012 +API version: 1.0.11-18369 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 850f54b4cb..1d655b1517 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-18012 +API version: 1.0.11-18369 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 c7b3ff7872..5a3781d786 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-18012 +API version: 1.0.11-18369 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 93981f446c..9e38517fad 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-18012 +API version: 1.0.11-18369 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 8171a4867d..94e288d814 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-18012 +API version: 1.0.11-18369 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 d9ae7543e0..99de6eec03 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-18012 +API version: 1.0.11-18369 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 c694c6a1e8..a9830392f0 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-18012 +API version: 1.0.11-18369 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 a61396c0a0..4f6f586727 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-18012 +API version: 1.0.11-18369 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 19bff52a1a..4513192db2 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_switch_upgrade.go b/intersight_gosdk/model_firmware_switch_upgrade.go index 9bf1075b09..5d391ef946 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-18012 +API version: 1.0.11-18369 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 634233a7f7..d0e299f65c 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-18012 +API version: 1.0.11-18369 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 7d9b5f1521..363e7fb52c 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-18012 +API version: 1.0.11-18369 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 3e91985e7d..45eb1c7d26 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-18012 +API version: 1.0.11-18369 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 2753c4eb7a..96e41382f5 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-18012 +API version: 1.0.11-18369 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 eba7ecec7b..4a98e5fc72 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_upgrade.go b/intersight_gosdk/model_firmware_upgrade.go index 5628a71a3f..6242ed5bfd 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_upgrade_base.go b/intersight_gosdk/model_firmware_upgrade_base.go index 6d7353776c..28778c6af0 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-18012 +API version: 1.0.11-18369 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 62f9e5b4c9..b041d685ca 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_upgrade_impact.go b/intersight_gosdk/model_firmware_upgrade_impact.go index 286963848d..e9189de1ca 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-18012 +API version: 1.0.11-18369 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 25a4b61abf..8e231c4dc6 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-18012 +API version: 1.0.11-18369 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 01c57c7c67..01af595d00 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-18012 +API version: 1.0.11-18369 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 68f4759194..a601d11a87 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-18012 +API version: 1.0.11-18369 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 b3d28babbf..6e783a3f4d 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-18012 +API version: 1.0.11-18369 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 f52d70b54f..501f66d4ef 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_upgrade_list.go b/intersight_gosdk/model_firmware_upgrade_list.go index 19f4273dea..fc6147f2d2 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_upgrade_response.go b/intersight_gosdk/model_firmware_upgrade_response.go index b5e9823bc7..704334eeb4 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_upgrade_status.go b/intersight_gosdk/model_firmware_upgrade_status.go index 127f9e4a19..bd1d34e4d7 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-18012 +API version: 1.0.11-18369 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 62d698f28c..e06f680a35 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-18012 +API version: 1.0.11-18369 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 cb9adb08e9..6a0dddfa2e 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-18012 +API version: 1.0.11-18369 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 822a70cdb6..84c2bb1f5d 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_upgrade_validity.go b/intersight_gosdk/model_firmware_upgrade_validity.go index 6629971f85..a0c0638b9b 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_firmware_version_map.go b/intersight_gosdk/model_firmware_version_map.go index adbe997f72..fc66a8fabf 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fmc_device.go b/intersight_gosdk/model_fmc_device.go index 6892ea73c3..4e440733b6 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-18012 +API version: 1.0.11-18369 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 f19cdb5445..b9996305da 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-18012 +API version: 1.0.11-18369 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 2d25067445..14ac10769a 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-18012 +API version: 1.0.11-18369 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 b8e6b70478..58f9cdfda7 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fmc_device_list.go b/intersight_gosdk/model_fmc_device_list.go index 02aeb5d363..835ecfefec 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fmc_device_response.go b/intersight_gosdk/model_fmc_device_response.go index ce872dd3d9..049a5fc59f 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fmc_domain.go b/intersight_gosdk/model_fmc_domain.go index 1a19c4ab2c..b66bf524b6 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fmc_domain_list.go b/intersight_gosdk/model_fmc_domain_list.go index 33706309ab..f51b765151 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fmc_domain_response.go b/intersight_gosdk/model_fmc_domain_response.go index ee4c17f2d8..a7e77918e4 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fmc_inventory_entity.go b/intersight_gosdk/model_fmc_inventory_entity.go index 66eaf60544..49dcf92c77 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_fmc_physical_interface.go b/intersight_gosdk/model_fmc_physical_interface.go index a22b8841b4..8b20ba3ac7 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-18012 +API version: 1.0.11-18369 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 f2b7a16d04..d65c83b602 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-18012 +API version: 1.0.11-18369 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 a62ea2b90f..a393c4cb93 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_forecast_catalog.go b/intersight_gosdk/model_forecast_catalog.go index 946e5897e2..0257abe5a1 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_forecast_catalog_list.go b/intersight_gosdk/model_forecast_catalog_list.go index 7304e4d99d..e650cb6909 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_forecast_catalog_relationship.go b/intersight_gosdk/model_forecast_catalog_relationship.go index e2ab770141..3304dc8a4d 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_forecast_catalog_response.go b/intersight_gosdk/model_forecast_catalog_response.go index 4565635ed3..81599c9847 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_forecast_definition.go b/intersight_gosdk/model_forecast_definition.go index 852301c5b3..4534103ac1 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_forecast_definition_list.go b/intersight_gosdk/model_forecast_definition_list.go index 8f6baffbaf..cc3f48c085 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_forecast_definition_relationship.go b/intersight_gosdk/model_forecast_definition_relationship.go index a84fd02e71..f67d7603b6 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_forecast_definition_response.go b/intersight_gosdk/model_forecast_definition_response.go index 00b142a8c9..fa7c582f91 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_forecast_instance.go b/intersight_gosdk/model_forecast_instance.go index af8f4bdc2c..b3e16123b9 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_forecast_instance_list.go b/intersight_gosdk/model_forecast_instance_list.go index fbb89e6170..b57a0397fd 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_forecast_instance_relationship.go b/intersight_gosdk/model_forecast_instance_relationship.go index f43df681bc..c1aa10cc80 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_forecast_instance_response.go b/intersight_gosdk/model_forecast_instance_response.go index 2b00d4da17..e7494afccc 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_forecast_model.go b/intersight_gosdk/model_forecast_model.go index fb3938ebb9..a5497061f0 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_graphics_card.go b/intersight_gosdk/model_graphics_card.go index 2fdb44e1dd..8b1ee048ac 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_graphics_card_list.go b/intersight_gosdk/model_graphics_card_list.go index 94df337852..709a033b62 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_graphics_card_relationship.go b/intersight_gosdk/model_graphics_card_relationship.go index 639bda19a9..3071d7055c 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_graphics_card_response.go b/intersight_gosdk/model_graphics_card_response.go index 806661eed6..47f57e5d62 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_graphics_controller.go b/intersight_gosdk/model_graphics_controller.go index 3c5519c0a4..6f6326254b 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_graphics_controller_list.go b/intersight_gosdk/model_graphics_controller_list.go index 3d16b9f636..bfccbd376f 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_graphics_controller_relationship.go b/intersight_gosdk/model_graphics_controller_relationship.go index 6dab36ae64..cc7e26a834 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_graphics_controller_response.go b/intersight_gosdk/model_graphics_controller_response.go index d3e603750a..f799b3a32e 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hcl_compatibility_status.go b/intersight_gosdk/model_hcl_compatibility_status.go index dcc6ea734e..48385192ad 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hcl_constraint.go b/intersight_gosdk/model_hcl_constraint.go index 34de7e80da..0d74defeff 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hcl_driver_image.go b/intersight_gosdk/model_hcl_driver_image.go index 115b2244c3..f0bb13bbd5 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-18012 +API version: 1.0.11-18369 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 34b9d627bc..ae55dde27f 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-18012 +API version: 1.0.11-18369 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 3926d0c142..1e3d8935c0 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hcl_exempted_catalog.go b/intersight_gosdk/model_hcl_exempted_catalog.go index be5e80336b..0cd41d43f8 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-18012 +API version: 1.0.11-18369 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 88966c369f..62a58ce922 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-18012 +API version: 1.0.11-18369 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 b802281797..c52fff9477 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hcl_firmware.go b/intersight_gosdk/model_hcl_firmware.go index 865000ed0b..928ec6052d 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-18012 +API version: 1.0.11-18369 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 4081df944a..9a893118f2 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-18012 +API version: 1.0.11-18369 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 1ed3c18fd8..0b492010b3 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-18012 +API version: 1.0.11-18369 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 d142d347c7..9de8351a6b 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-18012 +API version: 1.0.11-18369 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 fb54786105..0ee091c556 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-18012 +API version: 1.0.11-18369 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 626a05416b..f0490d0e1b 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-18012 +API version: 1.0.11-18369 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 f50af61d2b..225f2cbd34 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-18012 +API version: 1.0.11-18369 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 93cb9765de..9d24034375 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-18012 +API version: 1.0.11-18369 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 de0e781584..b793f355fe 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-18012 +API version: 1.0.11-18369 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 c26c7ab1a0..191a7dfeeb 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hcl_operating_system.go b/intersight_gosdk/model_hcl_operating_system.go index 197f091d23..d34c41fd28 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-18012 +API version: 1.0.11-18369 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 7b36691705..fca85ba4b8 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-18012 +API version: 1.0.11-18369 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 6a876e89c6..8fb1cd0eb1 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-18012 +API version: 1.0.11-18369 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 5482a7f5b6..e17d1d15b7 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-18012 +API version: 1.0.11-18369 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 cd6cdc8f87..77cde73680 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-18012 +API version: 1.0.11-18369 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 a8e36eb744..239a33ebb7 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-18012 +API version: 1.0.11-18369 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 63970fb1ba..2346ff8115 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-18012 +API version: 1.0.11-18369 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 8b84ebc097..c3331a424a 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hcl_product.go b/intersight_gosdk/model_hcl_product.go index 634cfad74d..1fd1602883 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-18012 +API version: 1.0.11-18369 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 1ae447565b..b3f681f9a0 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-18012 +API version: 1.0.11-18369 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 3e949f2d6d..d211b34c43 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-18012 +API version: 1.0.11-18369 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 fabd48eb42..306b5dbaf9 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-18012 +API version: 1.0.11-18369 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 68a216ec91..71b9467ebb 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-18012 +API version: 1.0.11-18369 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 145d2bbd81..4a9f84e141 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-18012 +API version: 1.0.11-18369 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 7b8ccf33ed..a426b66e27 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_alarm.go b/intersight_gosdk/model_hyperflex_alarm.go index e2ee56dec8..6335595912 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_alarm_list.go b/intersight_gosdk/model_hyperflex_alarm_list.go index a86d54ae78..80f1b62833 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_alarm_relationship.go b/intersight_gosdk/model_hyperflex_alarm_relationship.go index d52476e803..3ed5951106 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_alarm_response.go b/intersight_gosdk/model_hyperflex_alarm_response.go index 88f2045459..3a23c9ef7b 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_alarm_summary.go b/intersight_gosdk/model_hyperflex_alarm_summary.go index 94076ec8c9..f370f100c5 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_app_catalog.go b/intersight_gosdk/model_hyperflex_app_catalog.go index 23d28e27d7..b8cdca79f5 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-18012 +API version: 1.0.11-18369 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 93cf4e1f78..29084afccf 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-18012 +API version: 1.0.11-18369 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 9b579c9f26..37f67c4103 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-18012 +API version: 1.0.11-18369 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 30c5213c0d..4795d4561a 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-18012 +API version: 1.0.11-18369 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 b8cd998644..845bcc5a99 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-18012 +API version: 1.0.11-18369 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 6006205821..9a9f7701ce 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_auto_support_policy_list.go b/intersight_gosdk/model_hyperflex_auto_support_policy_list.go index f7e3dfca52..ffa099170c 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-18012 +API version: 1.0.11-18369 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 013464e4c9..c882a03d6b 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-18012 +API version: 1.0.11-18369 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 d433006256..dcd42e40f1 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_backup_cluster.go b/intersight_gosdk/model_hyperflex_backup_cluster.go index 0d991a1593..b6903fef42 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-18012 +API version: 1.0.11-18369 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 50eb6a935b..7588f21a9d 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-18012 +API version: 1.0.11-18369 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 ea8a8dfec6..1d255cfac9 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-18012 +API version: 1.0.11-18369 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 ecc21a65c1..3b6812e8db 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-18012 +API version: 1.0.11-18369 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 060490251a..d42e802625 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_base_cluster.go b/intersight_gosdk/model_hyperflex_base_cluster.go index b47a3be3ea..9194754598 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-18012 +API version: 1.0.11-18369 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 ca48545b74..bb885de8a2 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_capability.go b/intersight_gosdk/model_hyperflex_capability.go index 2867d364dd..a5c02f16cd 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_capability_info.go b/intersight_gosdk/model_hyperflex_capability_info.go index 506ee2ec3c..578eac1541 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-18012 +API version: 1.0.11-18369 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 63b967e289..8688b334f3 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-18012 +API version: 1.0.11-18369 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 099a802d2e..8028fb12db 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-18012 +API version: 1.0.11-18369 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 75966440cd..0a3cecae81 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_cluster.go b/intersight_gosdk/model_hyperflex_cluster.go index e824b4757d..96fe8dc030 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-18012 +API version: 1.0.11-18369 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 e71ab39d84..f9b6bdfcf0 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-18012 +API version: 1.0.11-18369 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 835e4e39f8..57d558acea 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-18012 +API version: 1.0.11-18369 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 99a3923b46..330fcc6135 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-18012 +API version: 1.0.11-18369 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 1ac2f29120..4dbd2222d6 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-18012 +API version: 1.0.11-18369 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 c41c30e949..323135b33a 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-18012 +API version: 1.0.11-18369 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 bc1165210a..782ff0736d 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-18012 +API version: 1.0.11-18369 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 62fa0f7223..34498835a1 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-18012 +API version: 1.0.11-18369 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 99d091805c..5e54c7b3e6 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-18012 +API version: 1.0.11-18369 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 795ed13975..d79354a98d 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-18012 +API version: 1.0.11-18369 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 b7a490093d..960844ffd1 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-18012 +API version: 1.0.11-18369 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 db7035ff98..706f1ea452 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-18012 +API version: 1.0.11-18369 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 ad68878ed9..03b0568149 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-18012 +API version: 1.0.11-18369 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 51672c357c..183db9ecae 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_cluster_list.go b/intersight_gosdk/model_hyperflex_cluster_list.go index a388fa1ba7..8ffd2e9b87 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-18012 +API version: 1.0.11-18369 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 616aa99493..8e15444871 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-18012 +API version: 1.0.11-18369 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 43f5089e99..cb3e145b1a 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-18012 +API version: 1.0.11-18369 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 acf81ad440..da50ab01a8 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-18012 +API version: 1.0.11-18369 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 730ba965b3..12a8580608 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_cluster_profile.go b/intersight_gosdk/model_hyperflex_cluster_profile.go index 78d82bdcb8..51db4e4de0 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_cluster_profile_list.go b/intersight_gosdk/model_hyperflex_cluster_profile_list.go index c782562434..f98c2538e2 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-18012 +API version: 1.0.11-18369 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 705b7cbffb..d6c9656467 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-18012 +API version: 1.0.11-18369 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 5e66fb1774..f7c67c9503 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_cluster_relationship.go b/intersight_gosdk/model_hyperflex_cluster_relationship.go index 6888fd5f56..c1c9b20c64 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-18012 +API version: 1.0.11-18369 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 c6d4997f0e..dc8ec004ee 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-18012 +API version: 1.0.11-18369 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 a507831f8b..b70576369e 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-18012 +API version: 1.0.11-18369 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 0095605f84..4755cf90ec 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-18012 +API version: 1.0.11-18369 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 5b15187259..292537f5ed 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-18012 +API version: 1.0.11-18369 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 a394d27156..26c51c20c0 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-18012 +API version: 1.0.11-18369 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 4bcf8211fb..f6110fab8e 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_cluster_response.go b/intersight_gosdk/model_hyperflex_cluster_response.go index 43d1fa96d1..af19bbd173 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-18012 +API version: 1.0.11-18369 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 d63a549676..55b7f21800 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-18012 +API version: 1.0.11-18369 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 c0558194ed..c0b92c700d 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-18012 +API version: 1.0.11-18369 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 15ef11945a..e10973e7a9 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-18012 +API version: 1.0.11-18369 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 bd787d5b95..afb1108f3e 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_config_result.go b/intersight_gosdk/model_hyperflex_config_result.go index a35a82275a..ad48f45d85 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-18012 +API version: 1.0.11-18369 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 4f1f8581ef..5335838b82 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-18012 +API version: 1.0.11-18369 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 bda2b39de4..b56a8de170 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-18012 +API version: 1.0.11-18369 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 208e8eb032..39bdc98971 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-18012 +API version: 1.0.11-18369 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 05bceec73f..3033fb3d0d 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-18012 +API version: 1.0.11-18369 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 17b0054f1e..095bbabdf3 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-18012 +API version: 1.0.11-18369 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 41a4151ce0..e2554b38ce 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-18012 +API version: 1.0.11-18369 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 fb9b7c5346..6d46bb85cb 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-18012 +API version: 1.0.11-18369 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 619c81753c..c6239e3b8f 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-18012 +API version: 1.0.11-18369 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 d948ce4864..1019187a4c 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-18012 +API version: 1.0.11-18369 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 19700b30d4..ec31d45bba 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-18012 +API version: 1.0.11-18369 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 46293555a7..8844208e29 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_datastore_info.go b/intersight_gosdk/model_hyperflex_datastore_info.go index 0c06d3a6db..42be465739 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_datastore_statistic.go b/intersight_gosdk/model_hyperflex_datastore_statistic.go index 43d743382d..680319911a 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-18012 +API version: 1.0.11-18369 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 0d2335a7d9..3d1b86a0a6 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-18012 +API version: 1.0.11-18369 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 e26c450ee9..bba9260a19 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-18012 +API version: 1.0.11-18369 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 b7f5da023a..bec70f369f 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-18012 +API version: 1.0.11-18369 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 fa3641028c..82025167fb 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-18012 +API version: 1.0.11-18369 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 bc9ccf1692..d7ac71ebef 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-18012 +API version: 1.0.11-18369 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 d1a3a7983e..e942443699 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_drive.go b/intersight_gosdk/model_hyperflex_drive.go index ac687e24fc..29c61ff8cf 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_drive_list.go b/intersight_gosdk/model_hyperflex_drive_list.go index 455bef61d8..bf0b952b96 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_drive_relationship.go b/intersight_gosdk/model_hyperflex_drive_relationship.go index f3f0e3f8ed..af9e599d32 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_drive_response.go b/intersight_gosdk/model_hyperflex_drive_response.go index 302f567e98..2c30f16f2e 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_encryption.go b/intersight_gosdk/model_hyperflex_encryption.go index 840add55dd..62b4e0ed85 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_encryption_list.go b/intersight_gosdk/model_hyperflex_encryption_list.go index b781208cfd..d858ca00c6 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_encryption_relationship.go b/intersight_gosdk/model_hyperflex_encryption_relationship.go index 95a95ba677..caf527e293 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_encryption_response.go b/intersight_gosdk/model_hyperflex_encryption_response.go index 533dfb3bf7..cc3135664c 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_entity_reference.go b/intersight_gosdk/model_hyperflex_entity_reference.go index 0d2068d611..e083689e1d 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_error_stack.go b/intersight_gosdk/model_hyperflex_error_stack.go index 8a7aaf8f3b..112fa80a11 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-18012 +API version: 1.0.11-18369 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 041394162b..0faf98fee5 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-18012 +API version: 1.0.11-18369 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 ce1d9f7ea5..70bd408412 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-18012 +API version: 1.0.11-18369 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 7fb282598d..7e213ad40e 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-18012 +API version: 1.0.11-18369 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 1430bc2184..7a3b06c414 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-18012 +API version: 1.0.11-18369 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 4737691203..ac2793b98c 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-18012 +API version: 1.0.11-18369 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 e3efd42b36..73b7eb5c56 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-18012 +API version: 1.0.11-18369 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 f395914160..7f39afda93 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-18012 +API version: 1.0.11-18369 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 00127fa77c..3731665e4b 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-18012 +API version: 1.0.11-18369 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 27c96cb644..dcb3f5ad48 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-18012 +API version: 1.0.11-18369 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 a4f3334aef..fa115ae8d9 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-18012 +API version: 1.0.11-18369 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 8c963424f6..19d7d331c8 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-18012 +API version: 1.0.11-18369 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 deceece5dd..538aee763a 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-18012 +API version: 1.0.11-18369 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 ae76992349..d3519b9221 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-18012 +API version: 1.0.11-18369 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 29f490a2be..ecc66ddbd9 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-18012 +API version: 1.0.11-18369 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 770cf2327e..9db13994aa 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-18012 +API version: 1.0.11-18369 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 601be1be63..a866af94df 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-18012 +API version: 1.0.11-18369 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 369e05f9d4..cac1b076fc 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_file_path.go b/intersight_gosdk/model_hyperflex_file_path.go index 492734658a..f7145f0df4 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_health.go b/intersight_gosdk/model_hyperflex_health.go index 375919c42c..660abf2bfc 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-18012 +API version: 1.0.11-18369 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 025a4d2a4a..792a1be6cc 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-18012 +API version: 1.0.11-18369 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 3c2c6cb27d..47f24753fe 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-18012 +API version: 1.0.11-18369 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 58dd50d819..945d34c6d5 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-18012 +API version: 1.0.11-18369 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 6f0337f09c..07605597db 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-18012 +API version: 1.0.11-18369 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 6db9cc76ff..f0748294d3 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-18012 +API version: 1.0.11-18369 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 f7e78fbc56..44927c62fa 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-18012 +API version: 1.0.11-18369 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 fb87fb4ad8..b6c5a3400a 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-18012 +API version: 1.0.11-18369 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 5e03e3073a..2012e3daa5 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-18012 +API version: 1.0.11-18369 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 b5c0a14371..31ac7e7650 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-18012 +API version: 1.0.11-18369 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 f66bb8d2ff..df14b4b146 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-18012 +API version: 1.0.11-18369 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 6c34cf2a86..6cbd0b72fe 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-18012 +API version: 1.0.11-18369 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 5b2100ce65..f1278b475d 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-18012 +API version: 1.0.11-18369 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 87699088e3..04408b7641 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-18012 +API version: 1.0.11-18369 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 5671a7b87f..4775464126 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-18012 +API version: 1.0.11-18369 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 ac358ea8e4..14b20ed579 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-18012 +API version: 1.0.11-18369 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 4786ed0f5e..edc8693681 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-18012 +API version: 1.0.11-18369 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 4b20464f67..076e720b99 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-18012 +API version: 1.0.11-18369 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 2c7afd031e..cb626677ce 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_health_list.go b/intersight_gosdk/model_hyperflex_health_list.go index e4e0169f6c..6ea0fcf205 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_health_relationship.go b/intersight_gosdk/model_hyperflex_health_relationship.go index 69c553e0a6..fce5295bdf 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_health_response.go b/intersight_gosdk/model_hyperflex_health_response.go index 4f0c4173d5..ed01fa1b58 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_hw_catalog.go b/intersight_gosdk/model_hyperflex_hw_catalog.go index 1556d607ca..56d9abd04f 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-18012 +API version: 1.0.11-18369 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 2ae97ff990..4eb04f18ac 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-18012 +API version: 1.0.11-18369 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 093af96cbd..259130aa64 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-18012 +API version: 1.0.11-18369 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 065edd8452..3628f6adb3 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-18012 +API version: 1.0.11-18369 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 b98d5421c3..a57e70df5f 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-18012 +API version: 1.0.11-18369 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 90f8adf8dd..c41b4e5a45 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-18012 +API version: 1.0.11-18369 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 1865902cc4..5570670073 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-18012 +API version: 1.0.11-18369 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 b5e4718c5a..0ef79b6321 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-18012 +API version: 1.0.11-18369 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 1e4afca92c..aa8d4b9ccf 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-18012 +API version: 1.0.11-18369 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 da1aeb8c44..ea06f59f59 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-18012 +API version: 1.0.11-18369 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 0229bc9310..f869aa0bf7 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-18012 +API version: 1.0.11-18369 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 6cdaa6592e..ae9248d420 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-18012 +API version: 1.0.11-18369 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 b5590d2cc1..227341ea2b 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-18012 +API version: 1.0.11-18369 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 982f3be0fa..a7723c359a 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_hxdp_version.go b/intersight_gosdk/model_hyperflex_hxdp_version.go index aa8ec93abf..494c3b7426 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-18012 +API version: 1.0.11-18369 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 cf807e4c38..c615a8822c 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-18012 +API version: 1.0.11-18369 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 c753f44b69..9d50c1e3d7 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-18012 +API version: 1.0.11-18369 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 0bd3629de1..7795854485 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_hypervisor_host.go b/intersight_gosdk/model_hyperflex_hypervisor_host.go index 3e544700b5..08276ece1f 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-18012 +API version: 1.0.11-18369 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 b1a6bdf61c..71026dddaf 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-18012 +API version: 1.0.11-18369 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 605b764251..d8d5fff47e 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-18012 +API version: 1.0.11-18369 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 bc8df65a49..fdafb12f00 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-18012 +API version: 1.0.11-18369 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 f3d99c1c99..d65945e6b9 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-18012 +API version: 1.0.11-18369 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 7a5be8b131..8973ae0d60 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-18012 +API version: 1.0.11-18369 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 d16930d4ff..68fa90f71f 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_initiator_group.go b/intersight_gosdk/model_hyperflex_initiator_group.go index 4848d9f675..ebfd5b7bf0 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-18012 +API version: 1.0.11-18369 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 462347e343..0b101dff31 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-18012 +API version: 1.0.11-18369 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 ea1b5740ef..10baa714cf 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-18012 +API version: 1.0.11-18369 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 381d3ba7f6..2dde1f0645 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-18012 +API version: 1.0.11-18369 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 141d8bc6b2..7e511aee82 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_iscsi_network.go b/intersight_gosdk/model_hyperflex_iscsi_network.go index 9b67da6042..537372fb34 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-18012 +API version: 1.0.11-18369 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 a545c19eb8..956a5bb907 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-18012 +API version: 1.0.11-18369 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 c382ad82ae..366bfcea7c 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-18012 +API version: 1.0.11-18369 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 8fc941110d..7ebe4cdb8d 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-18012 +API version: 1.0.11-18369 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 490712b694..03728912cc 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-18012 +API version: 1.0.11-18369 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 8c42e66ce3..90cfe10d11 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_license.go b/intersight_gosdk/model_hyperflex_license.go index 50388a5f03..9327495e2b 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_license_list.go b/intersight_gosdk/model_hyperflex_license_list.go index 6f6d46feda..2a0e0c59bf 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_license_relationship.go b/intersight_gosdk/model_hyperflex_license_relationship.go index e97f9bcd5d..5b7bc32687 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_license_response.go b/intersight_gosdk/model_hyperflex_license_response.go index 61797bcf23..d985fa7fce 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-18012 +API version: 1.0.11-18369 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 a19c62632f..b145c13d42 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_local_credential_policy_list.go b/intersight_gosdk/model_hyperflex_local_credential_policy_list.go index 22c539e041..da019139f9 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-18012 +API version: 1.0.11-18369 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 62329c6dae..4dec40e146 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-18012 +API version: 1.0.11-18369 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 e352e5c787..af833b50da 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-18012 +API version: 1.0.11-18369 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 680cff4061..bbd4fafcf3 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_lun.go b/intersight_gosdk/model_hyperflex_lun.go index 98471067aa..96ca9a1b3d 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_lun_list.go b/intersight_gosdk/model_hyperflex_lun_list.go index 1ffda85334..d8b7efd157 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_lun_relationship.go b/intersight_gosdk/model_hyperflex_lun_relationship.go index 29584247c4..e72012ab1e 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_lun_response.go b/intersight_gosdk/model_hyperflex_lun_response.go index 6501a99d67..2eab556057 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-18012 +API version: 1.0.11-18369 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 5b32eec580..7f45e7aea9 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 77f4d897f8..e8ee203b58 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-18012 +API version: 1.0.11-18369 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 c80227ab29..d8d3f0309c 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-18012 +API version: 1.0.11-18369 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 f494a7f2b1..9154bdc13c 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_named_vlan.go b/intersight_gosdk/model_hyperflex_named_vlan.go index 6a97a8eea6..a6f5367e82 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_named_vsan.go b/intersight_gosdk/model_hyperflex_named_vsan.go index a95070d881..c8ee5de614 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_network_configuration.go b/intersight_gosdk/model_hyperflex_network_configuration.go index 95f4b1241e..b251a4a413 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_node.go b/intersight_gosdk/model_hyperflex_node.go index 3b4016f29a..d6214180fb 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-18012 +API version: 1.0.11-18369 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 e880ba01c0..4c22bfd5cc 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_node_config_policy_list.go b/intersight_gosdk/model_hyperflex_node_config_policy_list.go index e5c15cadaa..c0dafb599e 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-18012 +API version: 1.0.11-18369 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 bf774786b1..74f795849a 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-18012 +API version: 1.0.11-18369 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 622f6975bb..fa4206b3b2 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_node_list.go b/intersight_gosdk/model_hyperflex_node_list.go index 1abfb47b92..900aa5cefb 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_node_profile.go b/intersight_gosdk/model_hyperflex_node_profile.go index f842a34b76..c2352edd6f 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_node_profile_list.go b/intersight_gosdk/model_hyperflex_node_profile_list.go index c50a1c96ae..dffcff963e 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-18012 +API version: 1.0.11-18369 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 37286b5ccc..7ddd8090b1 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-18012 +API version: 1.0.11-18369 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 9eb7dccc4f..1f86ba56f7 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_node_relationship.go b/intersight_gosdk/model_hyperflex_node_relationship.go index 2ec54c1b2f..96a1f630df 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_node_response.go b/intersight_gosdk/model_hyperflex_node_response.go index 74c84ae373..ffcf853d0e 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-18012 +API version: 1.0.11-18369 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 59f910540f..701a623a2e 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_protected_cluster.go b/intersight_gosdk/model_hyperflex_protected_cluster.go index 8eddf7dc12..06acbfcc5a 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-18012 +API version: 1.0.11-18369 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 72119b2f9a..2a0808dda9 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-18012 +API version: 1.0.11-18369 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 bacbec80cf..7bf781b9c2 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_protection_info.go b/intersight_gosdk/model_hyperflex_protection_info.go index 300546cd44..6d0dd0cdea 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-18012 +API version: 1.0.11-18369 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 8fe14430d2..012e572b44 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_proxy_setting_policy_list.go b/intersight_gosdk/model_hyperflex_proxy_setting_policy_list.go index 3375a74788..086dbe07d4 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-18012 +API version: 1.0.11-18369 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 e027c44adc..f580457870 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-18012 +API version: 1.0.11-18369 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 b85c6c7087..d1cd9b3a9d 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-18012 +API version: 1.0.11-18369 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 4263b5cb0a..f3844445e5 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-18012 +API version: 1.0.11-18369 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 5b4f2e067d..665d4e4fdc 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-18012 +API version: 1.0.11-18369 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 c206004814..f497982a70 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-18012 +API version: 1.0.11-18369 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 a2d85630c5..a681cc39b8 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-18012 +API version: 1.0.11-18369 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 c08913d44e..6809355c3d 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-18012 +API version: 1.0.11-18369 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 afab44a84d..551c1b65fc 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-18012 +API version: 1.0.11-18369 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 a26f58f675..b915f86f54 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-18012 +API version: 1.0.11-18369 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 0fadda2dd7..6c02fe527d 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_replication_schedule.go b/intersight_gosdk/model_hyperflex_replication_schedule.go index e9c8d095c6..ac8f0635dd 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_replication_status.go b/intersight_gosdk/model_hyperflex_replication_status.go index d230f6da46..66a3457b0a 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_rpo_status.go b/intersight_gosdk/model_hyperflex_rpo_status.go index 186c20763a..d2657d5939 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-18012 +API version: 1.0.11-18369 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 02d7ebc6fe..a83c43ccc8 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-18012 +API version: 1.0.11-18369 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 7646fc1cad..9cd8cf3f33 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 61136a68e7..277ad3f750 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-18012 +API version: 1.0.11-18369 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 0e231c397a..03e4909b48 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-18012 +API version: 1.0.11-18369 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 f52d377e36..1d3baf876a 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-18012 +API version: 1.0.11-18369 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 c9a428b789..c90d4ebbbf 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_server_firmware_version_list.go b/intersight_gosdk/model_hyperflex_server_firmware_version_list.go index bb35e79d9b..60d0246081 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-18012 +API version: 1.0.11-18369 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 f52db84962..1ee37dd19b 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-18012 +API version: 1.0.11-18369 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 3224ea3843..222f9748f8 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_server_model.go b/intersight_gosdk/model_hyperflex_server_model.go index 41e4311d54..b33f4da1a8 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-18012 +API version: 1.0.11-18369 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 702cbf8ce5..c714c77118 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-18012 +API version: 1.0.11-18369 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 1f11ac5fb1..5675950362 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-18012 +API version: 1.0.11-18369 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 cdaa4baeb0..881d93ed5b 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-18012 +API version: 1.0.11-18369 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 c06c6a1ff7..7f8bb6582f 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-18012 +API version: 1.0.11-18369 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 74541b5aa7..542aa78583 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-18012 +API version: 1.0.11-18369 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 e1f71e7e44..33ceea5dc6 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-18012 +API version: 1.0.11-18369 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 a1147da907..983a9fe85d 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_site_details.go b/intersight_gosdk/model_hyperflex_site_details.go index 7701a0bcf7..f20786909f 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_snapshot_files.go b/intersight_gosdk/model_hyperflex_snapshot_files.go index 16402966f2..5c4e582ffa 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-18012 +API version: 1.0.11-18369 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 fc3646522a..f6ab142910 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_snapshot_point.go b/intersight_gosdk/model_hyperflex_snapshot_point.go index 0cb1598563..0e6cd43a01 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_snapshot_status.go b/intersight_gosdk/model_hyperflex_snapshot_status.go index d8845d85b8..5f41bb9fce 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-18012 +API version: 1.0.11-18369 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 185e391caa..55e85749ee 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-18012 +API version: 1.0.11-18369 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 f2df037a2e..896e0ee5d9 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-18012 +API version: 1.0.11-18369 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 4169c0fa5a..b4d563dcc6 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-18012 +API version: 1.0.11-18369 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 0ba9dca311..517f851f39 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-18012 +API version: 1.0.11-18369 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 6d2df56b2f..496685471d 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-18012 +API version: 1.0.11-18369 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 fb1ffcd3bd..8205ec6a10 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-18012 +API version: 1.0.11-18369 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 93264fba15..6a15131460 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-18012 +API version: 1.0.11-18369 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 3b5d6d1dd4..fb58020a17 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-18012 +API version: 1.0.11-18369 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 1f90d51cc2..12fbd26130 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-18012 +API version: 1.0.11-18369 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 3b7c69c32d..cd4293070b 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-18012 +API version: 1.0.11-18369 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 ef89482064..73638b85bb 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-18012 +API version: 1.0.11-18369 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 a80f4c54e9..10cc016410 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-18012 +API version: 1.0.11-18369 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 31215e20c5..5c9511d33a 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_software_version_policy_list.go b/intersight_gosdk/model_hyperflex_software_version_policy_list.go index dafb21be4d..7bf7786be1 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-18012 +API version: 1.0.11-18369 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 56559a897b..270d8d02a4 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-18012 +API version: 1.0.11-18369 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 73cb62602f..0746f73121 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-18012 +API version: 1.0.11-18369 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 6de2fb269b..85b495a0c4 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-18012 +API version: 1.0.11-18369 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 b2f9edc179..7105253897 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-18012 +API version: 1.0.11-18369 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 762e08ac10..fdf7b17a30 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-18012 +API version: 1.0.11-18369 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 62218d80d0..ebf948cde4 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-18012 +API version: 1.0.11-18369 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 4ff19673c7..c0312c1517 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_storage_container.go b/intersight_gosdk/model_hyperflex_storage_container.go index e2735fd03a..daadbb5dfa 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-18012 +API version: 1.0.11-18369 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 abf1b3a129..433fa6d3ba 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-18012 +API version: 1.0.11-18369 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 a8e34bdffc..d7d2c2b803 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-18012 +API version: 1.0.11-18369 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 d335b1e615..ed4f968c93 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_summary.go b/intersight_gosdk/model_hyperflex_summary.go index 1efbb3db72..29e8e48be5 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-18012 +API version: 1.0.11-18369 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 84946881b1..6c4d3d0262 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_sys_config_policy_list.go b/intersight_gosdk/model_hyperflex_sys_config_policy_list.go index 89719a558a..359f3dcda5 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-18012 +API version: 1.0.11-18369 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 33bf77f3e3..3fc786d373 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-18012 +API version: 1.0.11-18369 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 8d1808f9f8..4e74b72927 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_target.go b/intersight_gosdk/model_hyperflex_target.go index 3a81ab2dce..74d3aa628c 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_target_list.go b/intersight_gosdk/model_hyperflex_target_list.go index 16e2531219..3a8822922d 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_target_relationship.go b/intersight_gosdk/model_hyperflex_target_relationship.go index dc0e5a9e30..e04e28fac4 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_target_response.go b/intersight_gosdk/model_hyperflex_target_response.go index bb7cb70d94..cb181e1f8c 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_tracked_disk.go b/intersight_gosdk/model_hyperflex_tracked_disk.go index 4bd390f8c1..2041fd7367 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_tracked_file.go b/intersight_gosdk/model_hyperflex_tracked_file.go index f367856210..fd8164eb68 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-18012 +API version: 1.0.11-18369 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 172a7d8a4c..91a5f907b3 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_ucsm_config_policy_list.go b/intersight_gosdk/model_hyperflex_ucsm_config_policy_list.go index 2d764581f6..a082f5e953 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-18012 +API version: 1.0.11-18369 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 d8c55a0f09..b4ac80cce2 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-18012 +API version: 1.0.11-18369 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 5aceec9d98..6d5f35e453 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-18012 +API version: 1.0.11-18369 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 4532e1a848..1c06291ee8 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_vcenter_config_policy_list.go b/intersight_gosdk/model_hyperflex_vcenter_config_policy_list.go index c13a35c3ee..e428cf99d7 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-18012 +API version: 1.0.11-18369 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 46f5e207c2..6fbbe0da34 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-18012 +API version: 1.0.11-18369 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 c2ef5effc7..c6447f71ac 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_vcenter_configuration.go b/intersight_gosdk/model_hyperflex_vcenter_configuration.go index eefabf2b1c..f5eb8046a0 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_virtual_machine.go b/intersight_gosdk/model_hyperflex_virtual_machine.go index c305fe6d66..3969770bf0 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-18012 +API version: 1.0.11-18369 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 a522f94d96..8429ac5505 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-18012 +API version: 1.0.11-18369 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 f9947e7427..0a9bf26635 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-18012 +API version: 1.0.11-18369 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 1d548c0cfd..6ebf792af9 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-18012 +API version: 1.0.11-18369 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 6950b990eb..c99b4295a5 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-18012 +API version: 1.0.11-18369 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 0bf5f36fe0..9e5f94025f 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-18012 +API version: 1.0.11-18369 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 04c17dc71a..5516a3b997 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-18012 +API version: 1.0.11-18369 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 d5a1747968..4db71793c6 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-18012 +API version: 1.0.11-18369 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 63fe977ce6..6cf9861868 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-18012 +API version: 1.0.11-18369 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 beb07fa726..a20dd4fbbd 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-18012 +API version: 1.0.11-18369 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 28372e1d28..b015a401f9 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-18012 +API version: 1.0.11-18369 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 f2a37aa893..d77aab0529 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-18012 +API version: 1.0.11-18369 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 16af12df2a..fd1ecf41a0 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-18012 +API version: 1.0.11-18369 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 7f53a49c98..5380156f55 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-18012 +API version: 1.0.11-18369 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 449b115495..f1b91953b0 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-18012 +API version: 1.0.11-18369 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 dbdc1cdfb8..e4ac4a6cf1 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-18012 +API version: 1.0.11-18369 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 22b8df8452..3b742e8478 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_volume.go b/intersight_gosdk/model_hyperflex_volume.go index d680c1b6fc..c75eba77d9 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_volume_list.go b/intersight_gosdk/model_hyperflex_volume_list.go index 799901f1e7..8c79335468 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_volume_relationship.go b/intersight_gosdk/model_hyperflex_volume_relationship.go index 96209afea2..34ee24d676 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_volume_response.go b/intersight_gosdk/model_hyperflex_volume_response.go index 407915d5a5..4cf6efac5b 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_hyperflex_witness_configuration.go b/intersight_gosdk/model_hyperflex_witness_configuration.go index df032b8d45..bd12dca923 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-18012 +API version: 1.0.11-18369 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 46a8da8d8d..e2d95f396a 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-18012 +API version: 1.0.11-18369 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 2c4012579a..65fca19ca2 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-18012 +API version: 1.0.11-18369 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 a520164756..9360100f93 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_i18n_message.go b/intersight_gosdk/model_i18n_message.go index 41aa71962b..f10aa87b4a 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_i18n_message_param.go b/intersight_gosdk/model_i18n_message_param.go index 1b8f4bcf75..c3876f1fbd 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iaas_connector_pack.go b/intersight_gosdk/model_iaas_connector_pack.go index c59a7d8b7f..8f6036ce69 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-18012 +API version: 1.0.11-18369 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 94ffa9efff..fb00e7d9d9 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-18012 +API version: 1.0.11-18369 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 fb55372edf..c5ec533028 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-18012 +API version: 1.0.11-18369 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 9369ddc3bb..0682c945e8 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-18012 +API version: 1.0.11-18369 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 e1a6d2706c..8561197988 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-18012 +API version: 1.0.11-18369 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 b14a6c894e..99fc685d47 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-18012 +API version: 1.0.11-18369 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 6f412d76e8..8cf0842e19 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-18012 +API version: 1.0.11-18369 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 4c3a77e7d2..31366c5858 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iaas_device_status.go b/intersight_gosdk/model_iaas_device_status.go index b404b28401..692ea3cfec 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-18012 +API version: 1.0.11-18369 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 fb856d0fc4..de3a290bb4 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-18012 +API version: 1.0.11-18369 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 b726d065c0..e4f086b26c 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-18012 +API version: 1.0.11-18369 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 85aca30015..c308007f8a 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iaas_diagnostic_messages.go b/intersight_gosdk/model_iaas_diagnostic_messages.go index d19dd0f237..313996bab1 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-18012 +API version: 1.0.11-18369 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 6acbb8dd0b..170a3b81d9 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-18012 +API version: 1.0.11-18369 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 89c3d34c19..0e08e5b139 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iaas_license_info.go b/intersight_gosdk/model_iaas_license_info.go index cea2b6431b..e186189380 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-18012 +API version: 1.0.11-18369 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 708a5f7d5c..8654002f9e 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-18012 +API version: 1.0.11-18369 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 a63ae62939..595d635d7d 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-18012 +API version: 1.0.11-18369 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 138caec4db..2fbd4038cc 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-18012 +API version: 1.0.11-18369 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 67aecd43cc..a43f0c2023 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-18012 +API version: 1.0.11-18369 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 22b06fa3a2..608a97441e 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-18012 +API version: 1.0.11-18369 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 bd0b88271d..3317a103b5 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-18012 +API version: 1.0.11-18369 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 067ea3cbe7..20c8ae8e1f 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-18012 +API version: 1.0.11-18369 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 919cd7c343..a47e879486 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-18012 +API version: 1.0.11-18369 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 7b7f90237c..835b6addee 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iaas_service_request.go b/intersight_gosdk/model_iaas_service_request.go index 568c03f2b8..352fccd8e4 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-18012 +API version: 1.0.11-18369 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 4a863d0f0e..7c4df3c943 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-18012 +API version: 1.0.11-18369 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 4808c80f50..af3e24e24a 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-18012 +API version: 1.0.11-18369 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 bf6dc71566..1354493a3c 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-18012 +API version: 1.0.11-18369 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 24cfeb5964..b415fa71ea 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-18012 +API version: 1.0.11-18369 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 7168c8c086..ee990336c7 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-18012 +API version: 1.0.11-18369 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 48e25a9f1c..31a19d7458 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iaas_ucsd_info.go b/intersight_gosdk/model_iaas_ucsd_info.go index b419b736d2..5208628b80 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-18012 +API version: 1.0.11-18369 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 165cde3bfd..d6e7d67fdd 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-18012 +API version: 1.0.11-18369 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 7d8278e2db..1887adc3cf 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-18012 +API version: 1.0.11-18369 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 aa3e220b3d..66dbd9679c 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-18012 +API version: 1.0.11-18369 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 096dcb36f3..2c3e0dfd4e 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-18012 +API version: 1.0.11-18369 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 2a3204df39..ce0dbe39ca 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-18012 +API version: 1.0.11-18369 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 678afc0059..98705f10ab 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-18012 +API version: 1.0.11-18369 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 7e8e28f198..1c2fa98df8 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iaas_ucsd_messages.go b/intersight_gosdk/model_iaas_ucsd_messages.go index d91024d362..5bdaebf0bd 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-18012 +API version: 1.0.11-18369 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 677aeec0fa..70c1cd6376 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-18012 +API version: 1.0.11-18369 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 4d83a5a346..273b49e04d 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iaas_workflow_steps.go b/intersight_gosdk/model_iaas_workflow_steps.go index 2eff4a4d2d..4ebd8ffa79 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_account.go b/intersight_gosdk/model_iam_account.go index c66a629165..ee0d745208 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_account_experience.go b/intersight_gosdk/model_iam_account_experience.go index 8bfd05cc42..5c129f17de 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-18012 +API version: 1.0.11-18369 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 0a99002a8b..c82cceb728 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-18012 +API version: 1.0.11-18369 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 2668f7e324..789f45e9bc 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_account_list.go b/intersight_gosdk/model_iam_account_list.go index 8a18263918..7e0d119cfc 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_account_permissions.go b/intersight_gosdk/model_iam_account_permissions.go index d1c87b904b..80e1225b72 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_account_relationship.go b/intersight_gosdk/model_iam_account_relationship.go index e5a86edd49..7157e0c6ac 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_account_response.go b/intersight_gosdk/model_iam_account_response.go index c1d49548aa..34f97b1884 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_account_tags.go b/intersight_gosdk/model_iam_account_tags.go index 570f898ea7..edf5bf21c7 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_api_key.go b/intersight_gosdk/model_iam_api_key.go index 13195c42fc..42f3599df5 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-18012 +API version: 1.0.11-18369 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 72ce7804cc..8c29d9e850 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-18012 +API version: 1.0.11-18369 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 68fe9fa0d3..f05719e15c 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-18012 +API version: 1.0.11-18369 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 4ac76d4d0f..b7c63b8038 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_app_registration.go b/intersight_gosdk/model_iam_app_registration.go index f4547b50ef..e1854e8eb4 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-18012 +API version: 1.0.11-18369 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 9a6a202c69..d93709bfa6 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-18012 +API version: 1.0.11-18369 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 1e9a15680f..b0fa08ff7e 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-18012 +API version: 1.0.11-18369 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 6ae5ed2ec7..fb8720fd55 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_banner_message.go b/intersight_gosdk/model_iam_banner_message.go index 570e0ee745..6781bac257 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-18012 +API version: 1.0.11-18369 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 01c0be12a4..780c22fe29 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-18012 +API version: 1.0.11-18369 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 9400ac0cc6..07c52f4cbc 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_certificate.go b/intersight_gosdk/model_iam_certificate.go index 25c216a915..443d847365 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_certificate_list.go b/intersight_gosdk/model_iam_certificate_list.go index 87eec60b90..d996a22da2 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_certificate_relationship.go b/intersight_gosdk/model_iam_certificate_relationship.go index 2cf1d99e54..167a4f4c65 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_certificate_request.go b/intersight_gosdk/model_iam_certificate_request.go index 7a2ab45d2b..db8e4bfc01 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-18012 +API version: 1.0.11-18369 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 3604d9e434..d0e14eb03a 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-18012 +API version: 1.0.11-18369 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 6ac1b0c900..f56f8fe07d 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-18012 +API version: 1.0.11-18369 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 d9964f5837..5fa0a0ef08 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_certificate_response.go b/intersight_gosdk/model_iam_certificate_response.go index 7af80b0ab4..07a445e775 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_client_meta.go b/intersight_gosdk/model_iam_client_meta.go index fe3a6e8450..ad67d6dfe0 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_domain_group.go b/intersight_gosdk/model_iam_domain_group.go index 8da70cae47..5669dd53d0 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-18012 +API version: 1.0.11-18369 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 9f890ca08b..c700850825 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-18012 +API version: 1.0.11-18369 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 726834a3c3..15e0701897 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-18012 +API version: 1.0.11-18369 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 dcf8b90a26..754b9900e7 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-18012 +API version: 1.0.11-18369 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 2deec93a8e..ad62ce89b9 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_domain_name_info_list.go b/intersight_gosdk/model_iam_domain_name_info_list.go index 20e69122f4..c5eb446505 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-18012 +API version: 1.0.11-18369 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 45a677c3bb..15e22a3ecb 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-18012 +API version: 1.0.11-18369 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 fae32a60a7..20ee1cb108 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-18012 +API version: 1.0.11-18369 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 7b3df3c528..5802e9e898 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-18012 +API version: 1.0.11-18369 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 6c1af9d0fc..58bb470d48 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-18012 +API version: 1.0.11-18369 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 669adb36be..d734ec7afe 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-18012 +API version: 1.0.11-18369 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 32c9480621..5169210b18 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-18012 +API version: 1.0.11-18369 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 59342a9ee1..b7659f724e 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-18012 +API version: 1.0.11-18369 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 5d6826d919..e134e401f0 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-18012 +API version: 1.0.11-18369 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 1a31e7ae98..28a28c09d7 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-18012 +API version: 1.0.11-18369 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 30f44f5539..afae7651f4 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-18012 +API version: 1.0.11-18369 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 ac12e43616..26521691c2 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_end_point_user_inventory.go b/intersight_gosdk/model_iam_end_point_user_inventory.go index c94b856b74..06889679d5 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 c8ba5efe3d..df5bca407f 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-18012 +API version: 1.0.11-18369 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 bad2bff219..849a53db9c 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-18012 +API version: 1.0.11-18369 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 4b2f166614..cb409683e3 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-18012 +API version: 1.0.11-18369 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 2aeb144c09..b4a11d7425 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-18012 +API version: 1.0.11-18369 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 8a4e615584..dd3d191092 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-18012 +API version: 1.0.11-18369 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 37c90cde32..65cceed279 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-18012 +API version: 1.0.11-18369 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 61d880a657..fd97665b5e 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-18012 +API version: 1.0.11-18369 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 940d19450f..a3e84a02d0 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-18012 +API version: 1.0.11-18369 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 581a54d3db..1c8982a690 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-18012 +API version: 1.0.11-18369 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 2e811c692a..62e69c2603 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-18012 +API version: 1.0.11-18369 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 c8ce904660..f5467d3f08 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-18012 +API version: 1.0.11-18369 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 220865c70a..be95120be9 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-18012 +API version: 1.0.11-18369 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 f4df3a2885..b80159b225 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-18012 +API version: 1.0.11-18369 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 0acd1528ee..19e91f5c85 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-18012 +API version: 1.0.11-18369 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 b1e2b74ca9..4cfa7bfa6b 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 5255f023e6..ca732bcd50 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 5270a2f5b9..044baf007f 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-18012 +API version: 1.0.11-18369 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 3c3dda4256..ad4b5bc14d 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-18012 +API version: 1.0.11-18369 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 9297547aa7..f4e313f7fd 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-18012 +API version: 1.0.11-18369 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 12991793a4..b8682c8a5c 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-18012 +API version: 1.0.11-18369 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 14281fd873..ae6f9dc013 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-18012 +API version: 1.0.11-18369 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 b0f8aef927..c9f4c52049 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_failure_details.go b/intersight_gosdk/model_iam_failure_details.go index 463b559aa8..d91478bd0a 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_feature_definition.go b/intersight_gosdk/model_iam_feature_definition.go index b6d6372df5..b0c80044e4 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-18012 +API version: 1.0.11-18369 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 64dad2f328..ce539400a2 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_idp.go b/intersight_gosdk/model_iam_idp.go index b54e445f19..1b7aa57e72 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_idp_list.go b/intersight_gosdk/model_iam_idp_list.go index f2fcb5d577..a1f2dd608b 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_idp_reference.go b/intersight_gosdk/model_iam_idp_reference.go index b560922797..6d59fcc35c 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-18012 +API version: 1.0.11-18369 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 375382113e..ea4f161e14 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-18012 +API version: 1.0.11-18369 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 3db3ec0250..f80fca4c44 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-18012 +API version: 1.0.11-18369 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 b259e0de26..165b5b204a 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_idp_relationship.go b/intersight_gosdk/model_iam_idp_relationship.go index 33c59daac2..8784ffc3cc 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_idp_response.go b/intersight_gosdk/model_iam_idp_response.go index 3082959e0a..5be9514f0b 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-18012 +API version: 1.0.11-18369 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 45309b78eb..af59953961 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-18012 +API version: 1.0.11-18369 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 0a5e98de72..275e9c5268 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-18012 +API version: 1.0.11-18369 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 80eda239b0..66ef1d4f1c 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-18012 +API version: 1.0.11-18369 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 9acb8f3e14..d32b419c1e 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_ip_address.go b/intersight_gosdk/model_iam_ip_address.go index 4670c5c52c..3599a604f0 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-18012 +API version: 1.0.11-18369 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 cdf42e74c2..5e97a7e016 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-18012 +API version: 1.0.11-18369 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 7bee8f69fd..8712049c68 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-18012 +API version: 1.0.11-18369 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 736c0c9a36..0a7941d820 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-18012 +API version: 1.0.11-18369 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 4ed18522e8..d2b8a22c4a 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_ldap_config_params.go b/intersight_gosdk/model_iam_ldap_config_params.go index e8969c44bc..e81d05b958 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-18012 +API version: 1.0.11-18369 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 3afb74dc21..60aa02c32d 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-18012 +API version: 1.0.11-18369 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 0f2e49c522..b28ed574b1 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-18012 +API version: 1.0.11-18369 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 9ddd204f30..042f19d1b6 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_ldap_group.go b/intersight_gosdk/model_iam_ldap_group.go index 28a996a324..93445b725d 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_ldap_group_list.go b/intersight_gosdk/model_iam_ldap_group_list.go index c6651667c5..b47bdf6f01 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-18012 +API version: 1.0.11-18369 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 7b57605267..8e07e4c5f1 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-18012 +API version: 1.0.11-18369 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 82f8086ab8..4d2797fc22 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_ldap_policy.go b/intersight_gosdk/model_iam_ldap_policy.go index 345aa938a3..3f5f8d9fe6 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-18012 +API version: 1.0.11-18369 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 ba7d7397a8..f38e7534fd 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-18012 +API version: 1.0.11-18369 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 a6c73a8577..ea76147742 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-18012 +API version: 1.0.11-18369 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 52f4d7808b..3458e663c3 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_ldap_provider.go b/intersight_gosdk/model_iam_ldap_provider.go index e308ed5ca3..d835e93c79 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-18012 +API version: 1.0.11-18369 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 26fced23ad..79112e06d9 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-18012 +API version: 1.0.11-18369 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 2bc036eef6..ea33d436b1 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-18012 +API version: 1.0.11-18369 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 eb0106e27e..81a442bf08 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-18012 +API version: 1.0.11-18369 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 0fc29dd8c4..e1b7d85b28 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-18012 +API version: 1.0.11-18369 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 b0f5f10471..5964b8a3b1 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-18012 +API version: 1.0.11-18369 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 2dee6c8e11..fd2d1dd338 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-18012 +API version: 1.0.11-18369 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 70e0c7e8ce..4167119112 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-18012 +API version: 1.0.11-18369 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 cf51e921da..524f378018 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-18012 +API version: 1.0.11-18369 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 94fd79573e..499f022956 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-18012 +API version: 1.0.11-18369 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 20004e3db2..97334ce36b 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-18012 +API version: 1.0.11-18369 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 448618f86b..c099c7b5eb 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-18012 +API version: 1.0.11-18369 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 23708f9113..11eb8eb061 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-18012 +API version: 1.0.11-18369 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 7941a7fe3c..3a770c5093 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-18012 +API version: 1.0.11-18369 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 9b568a3f36..35f8c9cc11 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_permission.go b/intersight_gosdk/model_iam_permission.go index 831e3d8676..98b09c923e 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_permission_list.go b/intersight_gosdk/model_iam_permission_list.go index 6ac91ac0e0..72b9412596 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_permission_reference.go b/intersight_gosdk/model_iam_permission_reference.go index 74154e3014..5c5c67bce9 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_permission_relationship.go b/intersight_gosdk/model_iam_permission_relationship.go index 191b5478aa..4fa592b793 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_permission_response.go b/intersight_gosdk/model_iam_permission_response.go index 0f6e57a9d6..71d6eae8e4 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-18012 +API version: 1.0.11-18369 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 7aea75fdd8..ad4f607251 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-18012 +API version: 1.0.11-18369 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 d9aa55666d..82d0c45ff7 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-18012 +API version: 1.0.11-18369 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 d56e1a9b57..c4fdfcffda 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-18012 +API version: 1.0.11-18369 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 ad838d2e1a..267d857aea 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-18012 +API version: 1.0.11-18369 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 24d89fae5c..a89f224511 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_privilege.go b/intersight_gosdk/model_iam_privilege.go index 4cfc84a4e3..dc8f68afa3 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_privilege_list.go b/intersight_gosdk/model_iam_privilege_list.go index 16b4f66c8a..344c3df391 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_privilege_relationship.go b/intersight_gosdk/model_iam_privilege_relationship.go index 9c8d0ea1bc..e02dc3d2ec 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_privilege_response.go b/intersight_gosdk/model_iam_privilege_response.go index 32bbbe73df..6eb7aadf69 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_privilege_set.go b/intersight_gosdk/model_iam_privilege_set.go index b12ad4ce7a..8aeb974fcb 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_privilege_set_list.go b/intersight_gosdk/model_iam_privilege_set_list.go index bd3beda914..b28a7a8c6e 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-18012 +API version: 1.0.11-18369 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 1c2e71ec6a..c0e4dadc14 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-18012 +API version: 1.0.11-18369 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 fc7495c4bb..3cb76d391e 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_qualifier.go b/intersight_gosdk/model_iam_qualifier.go index 80aa1bb94f..23c56b999f 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_qualifier_list.go b/intersight_gosdk/model_iam_qualifier_list.go index a40a0af2af..493f652b2c 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_qualifier_relationship.go b/intersight_gosdk/model_iam_qualifier_relationship.go index 6aff6360ba..3b0ccc19ad 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_qualifier_response.go b/intersight_gosdk/model_iam_qualifier_response.go index a768abe0de..0989fdee25 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_resource_limits.go b/intersight_gosdk/model_iam_resource_limits.go index 94ace8037c..f809ee52c7 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-18012 +API version: 1.0.11-18369 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 6c466852cb..ae87915176 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-18012 +API version: 1.0.11-18369 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 5989efa6a2..21b1d090ce 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-18012 +API version: 1.0.11-18369 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 d9815c408b..dcbb12c0d2 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_resource_permission.go b/intersight_gosdk/model_iam_resource_permission.go index 4b41fa2888..72d1d2b799 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-18012 +API version: 1.0.11-18369 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 2f52b4d87c..50cbe234c7 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-18012 +API version: 1.0.11-18369 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 997ed2feed..ccd6b4e137 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-18012 +API version: 1.0.11-18369 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 cf8e69ae6a..6779901770 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_resource_role.go b/intersight_gosdk/model_iam_resource_role.go index 7086734401..bd6b9b7614 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_resource_roles.go b/intersight_gosdk/model_iam_resource_roles.go index aeccbad03d..b146553953 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-18012 +API version: 1.0.11-18369 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 4fe3fddbe3..084e5ab055 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-18012 +API version: 1.0.11-18369 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 56a24b81d7..cffb9c1319 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-18012 +API version: 1.0.11-18369 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 b29edbf3ff..8154533f1f 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_role.go b/intersight_gosdk/model_iam_role.go index 9f2e7da496..a6dd1b05b8 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_role_list.go b/intersight_gosdk/model_iam_role_list.go index 60ba9c4aec..9c6b0fb9e1 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_role_relationship.go b/intersight_gosdk/model_iam_role_relationship.go index ffcf6edc57..f59a1e42ce 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_role_response.go b/intersight_gosdk/model_iam_role_response.go index 7146e0aa8f..59ec0b4a07 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_rule.go b/intersight_gosdk/model_iam_rule.go index af64c1454f..3742dee769 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-18012 +API version: 1.0.11-18369 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 3983396b08..5f6fa82a7a 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_security_context.go b/intersight_gosdk/model_iam_security_context.go index 84a17c1d08..222ab81ff1 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_security_holder.go b/intersight_gosdk/model_iam_security_holder.go index aeef52a4c0..f2d416f828 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-18012 +API version: 1.0.11-18369 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 4be74f3357..192f05e892 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-18012 +API version: 1.0.11-18369 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 05d7859bea..5a638c016e 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-18012 +API version: 1.0.11-18369 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 21aecab8bf..ac91cc940a 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_service_provider.go b/intersight_gosdk/model_iam_service_provider.go index aa3811bfb8..4eae2218ba 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-18012 +API version: 1.0.11-18369 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 e41c976c2a..6dbfeafe99 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-18012 +API version: 1.0.11-18369 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 739fdd9158..30aacb9863 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-18012 +API version: 1.0.11-18369 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 1c325e66b7..3f7a91a995 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_session.go b/intersight_gosdk/model_iam_session.go index 280723e81f..1515dda025 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_session_limits.go b/intersight_gosdk/model_iam_session_limits.go index 55afb16d14..901c33aa27 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-18012 +API version: 1.0.11-18369 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 fcff470705..e2f22b7ef9 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-18012 +API version: 1.0.11-18369 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 fc00dcd2a6..e91ef91bcc 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-18012 +API version: 1.0.11-18369 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 beba028a0c..3f09f7c7e5 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_session_list.go b/intersight_gosdk/model_iam_session_list.go index 0fce3df9c4..e35b9c5583 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_session_relationship.go b/intersight_gosdk/model_iam_session_relationship.go index 95d31f01d0..bcbb4806b3 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_session_response.go b/intersight_gosdk/model_iam_session_response.go index 3d5a3f19f9..6305b8031a 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_sharing_rule.go b/intersight_gosdk/model_iam_sharing_rule.go index cfb478f3ce..0f8efac6bc 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-18012 +API version: 1.0.11-18369 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 c053d366a3..1662df6a11 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-18012 +API version: 1.0.11-18369 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 acd84e90b1..98ac1e4726 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-18012 +API version: 1.0.11-18369 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 9a4cdcd720..f917f7e316 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-18012 +API version: 1.0.11-18369 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 e481befeaf..a78fe54b90 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_system.go b/intersight_gosdk/model_iam_system.go index a69fa28e1e..8f63177b06 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_system_list.go b/intersight_gosdk/model_iam_system_list.go index 4a61174586..64cd68dbe5 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_system_relationship.go b/intersight_gosdk/model_iam_system_relationship.go index 6bcc60c239..8a823e2328 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_system_response.go b/intersight_gosdk/model_iam_system_response.go index 92514ab9cd..76365ebdcc 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_trust_point.go b/intersight_gosdk/model_iam_trust_point.go index bda4fb5b82..0d4b0c1a70 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-18012 +API version: 1.0.11-18369 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 ad1c7633d6..476b8f7753 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-18012 +API version: 1.0.11-18369 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 6c07cd499f..e300564582 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-18012 +API version: 1.0.11-18369 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 d4e0708306..f3461c5ae2 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_user.go b/intersight_gosdk/model_iam_user.go index f70cbc13c1..bdcab0f22b 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_user_group.go b/intersight_gosdk/model_iam_user_group.go index 2a40e6a976..ab0633a8b2 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-18012 +API version: 1.0.11-18369 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 0ea5493db6..85a663124e 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-18012 +API version: 1.0.11-18369 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 de1420fd3e..9b3bcb16c1 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-18012 +API version: 1.0.11-18369 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 1c2ba48b65..0d2c579f2b 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_user_list.go b/intersight_gosdk/model_iam_user_list.go index 1dcd688dfa..04fa661a41 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_user_preference.go b/intersight_gosdk/model_iam_user_preference.go index aa1782b8c0..bf76e357e4 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-18012 +API version: 1.0.11-18369 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 77ccea2980..58485cf390 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-18012 +API version: 1.0.11-18369 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 7bf5df8649..5b9fa9b501 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-18012 +API version: 1.0.11-18369 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 3c840af167..50ca58c407 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_user_relationship.go b/intersight_gosdk/model_iam_user_relationship.go index e5e909e37b..e465c6f102 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_user_response.go b/intersight_gosdk/model_iam_user_response.go index 48a9806543..94b00be9b1 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iam_user_setting.go b/intersight_gosdk/model_iam_user_setting.go index 4064777c65..670fc8ea83 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-18012 +API version: 1.0.11-18369 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 c778b20d0c..79e0d20c85 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-18012 +API version: 1.0.11-18369 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 c03defa23d..887f3061f2 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-18012 +API version: 1.0.11-18369 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 bc10cc2106..299dfda5eb 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-18012 +API version: 1.0.11-18369 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 bff7f17c86..18b4232dce 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_infra_base_cluster.go b/intersight_gosdk/model_infra_base_cluster.go index 0849bf2eb8..0856383e60 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_infra_base_cluster_relationship.go b/intersight_gosdk/model_infra_base_cluster_relationship.go index c6362d069b..edcf30f5ec 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-18012 +API version: 1.0.11-18369 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 823e02fa81..02020c36ba 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-18012 +API version: 1.0.11-18369 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 cbb9fbb732..220f6bf162 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_infra_gpu_configuration.go b/intersight_gosdk/model_infra_gpu_configuration.go index 853cc8f961..05b333d786 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_infra_hardware_info.go b/intersight_gosdk/model_infra_hardware_info.go index 40fad16e1e..9f2eeaa98f 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_infra_meta_data.go b/intersight_gosdk/model_infra_meta_data.go index c678677521..5c8f22524c 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-18012 +API version: 1.0.11-18369 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 0312d8069f..9bc5989b29 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_inventory_base.go b/intersight_gosdk/model_inventory_base.go index f31e3c919b..c71086bfab 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_inventory_base_relationship.go b/intersight_gosdk/model_inventory_base_relationship.go index 5136e4c90b..d8544d41b3 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_inventory_device_info.go b/intersight_gosdk/model_inventory_device_info.go index d61cb2f00d..c828d863df 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-18012 +API version: 1.0.11-18369 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 037b23f67c..6119538830 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-18012 +API version: 1.0.11-18369 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 fae51d022d..01a3991ba2 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-18012 +API version: 1.0.11-18369 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 d7af25cb7c..f6076e178a 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-18012 +API version: 1.0.11-18369 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 31802285ca..a849e04f49 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-18012 +API version: 1.0.11-18369 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 6b3fd28697..7ecc6678b1 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-18012 +API version: 1.0.11-18369 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 6c75aeb269..ef217dd939 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_inventory_generic_inventory.go b/intersight_gosdk/model_inventory_generic_inventory.go index cf447ac9df..7d8f108cda 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-18012 +API version: 1.0.11-18369 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 5ebc611187..c7677690bc 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-18012 +API version: 1.0.11-18369 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 42146f1145..96c889a864 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-18012 +API version: 1.0.11-18369 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 bbce626175..37abfe109d 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-18012 +API version: 1.0.11-18369 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 be5d3cbebb..d65784538e 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-18012 +API version: 1.0.11-18369 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 3ec3e61ea1..6898e61f6d 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-18012 +API version: 1.0.11-18369 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 e684aed341..49915d5d34 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-18012 +API version: 1.0.11-18369 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 cc4d6a3112..eb12a88026 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_inventory_interface.go b/intersight_gosdk/model_inventory_interface.go index ced475f178..49a589683b 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_inventory_interface_relationship.go b/intersight_gosdk/model_inventory_interface_relationship.go index 095ac6f0be..0bc0987c08 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_inventory_inventory_mo.go b/intersight_gosdk/model_inventory_inventory_mo.go index 6b3e1fd724..a72fc8bdf2 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_inventory_request.go b/intersight_gosdk/model_inventory_request.go index 5a988cf931..6b519863fc 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_inventory_uem_info.go b/intersight_gosdk/model_inventory_uem_info.go index bbac9efa3b..3a54767eb6 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_ipmioverlan_policy.go b/intersight_gosdk/model_ipmioverlan_policy.go index 16e7889346..83b10d9903 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ @@ -30,11 +30,11 @@ type IpmioverlanPolicy struct { ObjectType string `json:"ObjectType"` // 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. + // 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 C-Series servers. FI-attached C-Series servers with firmware at minimum of 4.2.3a support this configuration. B/X-Series 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" 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. + // The highest privilege level that can be assigned to an IPMI session on a server. This configuration is supported by all Standalone C-Series servers. FI-attached C-Series servers with firmware at minimum of 4.2.3a support this configuration. B/X-Series servers with firmware at minimum of 5.1.0.x support this configuration. Privilege level user is not supported for B/X-Series 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. Privilege *string `json:"Privilege,omitempty"` Organization NullableOrganizationOrganizationRelationship `json:"Organization,omitempty"` // An array of relationships to policyAbstractConfigProfile resources. @@ -438,11 +438,11 @@ func (o *IpmioverlanPolicy) UnmarshalJSON(data []byte) (err error) { ObjectType string `json:"ObjectType"` // 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. + // 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 C-Series servers. FI-attached C-Series servers with firmware at minimum of 4.2.3a support this configuration. B/X-Series 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" 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. + // The highest privilege level that can be assigned to an IPMI session on a server. This configuration is supported by all Standalone C-Series servers. FI-attached C-Series servers with firmware at minimum of 4.2.3a support this configuration. B/X-Series servers with firmware at minimum of 5.1.0.x support this configuration. Privilege level user is not supported for B/X-Series 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. Privilege *string `json:"Privilege,omitempty"` Organization NullableOrganizationOrganizationRelationship `json:"Organization,omitempty"` // An array of relationships to policyAbstractConfigProfile resources. diff --git a/intersight_gosdk/model_ipmioverlan_policy_inventory.go b/intersight_gosdk/model_ipmioverlan_policy_inventory.go index 0c6e5d209b..0044da3b66 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ @@ -30,11 +30,11 @@ type IpmioverlanPolicyInventory struct { ObjectType string `json:"ObjectType"` // 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. + // 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 C-Series servers. FI-attached C-Series servers with firmware at minimum of 4.2.3a support this configuration. B/X-Series 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" 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. + // The highest privilege level that can be assigned to an IPMI session on a server. This configuration is supported by all Standalone C-Series servers. FI-attached C-Series servers with firmware at minimum of 4.2.3a support this configuration. B/X-Series servers with firmware at minimum of 5.1.0.x support this configuration. Privilege level user is not supported for B/X-Series 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. Privilege *string `json:"Privilege,omitempty"` TargetMo NullableMoBaseMoRelationship `json:"TargetMo,omitempty"` AdditionalProperties map[string]interface{} @@ -392,11 +392,11 @@ func (o *IpmioverlanPolicyInventory) UnmarshalJSON(data []byte) (err error) { ObjectType string `json:"ObjectType"` // 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. + // 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 C-Series servers. FI-attached C-Series servers with firmware at minimum of 4.2.3a support this configuration. B/X-Series 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" 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. + // The highest privilege level that can be assigned to an IPMI session on a server. This configuration is supported by all Standalone C-Series servers. FI-attached C-Series servers with firmware at minimum of 4.2.3a support this configuration. B/X-Series servers with firmware at minimum of 5.1.0.x support this configuration. Privilege level user is not supported for B/X-Series 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. Privilege *string `json:"Privilege,omitempty"` TargetMo NullableMoBaseMoRelationship `json:"TargetMo,omitempty"` } diff --git a/intersight_gosdk/model_ipmioverlan_policy_inventory_list.go b/intersight_gosdk/model_ipmioverlan_policy_inventory_list.go index fd826372e2..504b34e19e 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-18012 +API version: 1.0.11-18369 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 141649a6dc..e46206c419 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_ipmioverlan_policy_list.go b/intersight_gosdk/model_ipmioverlan_policy_list.go index 8747f5fca6..fb8390be83 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_ipmioverlan_policy_response.go b/intersight_gosdk/model_ipmioverlan_policy_response.go index 1c582a97ea..b86b4be677 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_ippool_block_lease.go b/intersight_gosdk/model_ippool_block_lease.go index fd571df677..658503b7d7 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-18012 +API version: 1.0.11-18369 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 5c94efc0a9..747bbcb472 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-18012 +API version: 1.0.11-18369 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 69bb063293..7cff50b637 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-18012 +API version: 1.0.11-18369 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 179618e12b..4df7a0540e 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_ippool_ip_lease.go b/intersight_gosdk/model_ippool_ip_lease.go index e294eb0ca3..0a70c95042 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_ippool_ip_lease_list.go b/intersight_gosdk/model_ippool_ip_lease_list.go index 7a1517a652..339cd79883 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-18012 +API version: 1.0.11-18369 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 df8212cbb8..6bb1bf3298 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-18012 +API version: 1.0.11-18369 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 c9b560f1b4..757f275482 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-18012 +API version: 1.0.11-18369 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 98856d78af..d60a06cc02 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_ippool_ip_v4_config.go b/intersight_gosdk/model_ippool_ip_v4_config.go index 2f6ac8ce99..c21299b49a 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_ippool_ip_v6_block.go b/intersight_gosdk/model_ippool_ip_v6_block.go index 97a20c3f28..f97e870a24 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_ippool_ip_v6_config.go b/intersight_gosdk/model_ippool_ip_v6_config.go index 34d9b23923..99a9292381 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_ippool_pool.go b/intersight_gosdk/model_ippool_pool.go index aa76b71e5d..291c742a40 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_ippool_pool_list.go b/intersight_gosdk/model_ippool_pool_list.go index 0aee4210c2..6e8c653c1a 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_ippool_pool_member.go b/intersight_gosdk/model_ippool_pool_member.go index 8d077d466f..a3a74578b8 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_ippool_pool_member_list.go b/intersight_gosdk/model_ippool_pool_member_list.go index 099b2a1c60..0b0ec4038d 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-18012 +API version: 1.0.11-18369 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 86eef737c7..a2c63e54b2 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-18012 +API version: 1.0.11-18369 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 1cc080968e..e14bcb6dde 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_ippool_pool_relationship.go b/intersight_gosdk/model_ippool_pool_relationship.go index 0a5fc615fa..70653cde71 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_ippool_pool_response.go b/intersight_gosdk/model_ippool_pool_response.go index 3b1584f45c..12a70631b8 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_ippool_reservation.go b/intersight_gosdk/model_ippool_reservation.go index 739eb5b48e..33e84b0c67 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_ippool_reservation_list.go b/intersight_gosdk/model_ippool_reservation_list.go index a2e29bb2e6..24cfbc0c06 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_ippool_reservation_reference.go b/intersight_gosdk/model_ippool_reservation_reference.go index 82e314bc8a..012714507f 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_ippool_reservation_relationship.go b/intersight_gosdk/model_ippool_reservation_relationship.go index e9685cd0ac..55f3726840 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_ippool_reservation_response.go b/intersight_gosdk/model_ippool_reservation_response.go index ebfda313a8..7261b28d2e 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_ippool_shadow_block.go b/intersight_gosdk/model_ippool_shadow_block.go index 28dd0156e0..45671b19c0 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-18012 +API version: 1.0.11-18369 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 a8913f7c9e..d1858ad395 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-18012 +API version: 1.0.11-18369 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 2875d95965..3cfdb30b86 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-18012 +API version: 1.0.11-18369 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 202b6d633d..b5a3c975cb 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_ippool_shadow_pool.go b/intersight_gosdk/model_ippool_shadow_pool.go index 2b890931fd..d40313a553 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-18012 +API version: 1.0.11-18369 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 856936fded..acb7778fc6 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-18012 +API version: 1.0.11-18369 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 f3922ac9c0..da3172782e 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-18012 +API version: 1.0.11-18369 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 2ef8530687..c6c75f5e97 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_ippool_universe.go b/intersight_gosdk/model_ippool_universe.go index dc70089706..42d80c2f4e 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_ippool_universe_list.go b/intersight_gosdk/model_ippool_universe_list.go index 0b80de0b07..ad6d197349 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_ippool_universe_relationship.go b/intersight_gosdk/model_ippool_universe_relationship.go index 96a20e41b9..8d4a253299 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_ippool_universe_response.go b/intersight_gosdk/model_ippool_universe_response.go index 0578854eb2..5bc2a1fc14 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iqnpool_block.go b/intersight_gosdk/model_iqnpool_block.go index 2ba937c57d..b5edad3ed0 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iqnpool_block_list.go b/intersight_gosdk/model_iqnpool_block_list.go index b822b234d9..b5b6075fa3 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iqnpool_block_relationship.go b/intersight_gosdk/model_iqnpool_block_relationship.go index 5fecbc17a4..07155f63c5 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iqnpool_block_response.go b/intersight_gosdk/model_iqnpool_block_response.go index 2170589c3b..5831bb8418 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-18012 +API version: 1.0.11-18369 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 c3ee42e119..6ac9aa3aa5 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iqnpool_lease.go b/intersight_gosdk/model_iqnpool_lease.go index 74dd5505ee..f43e2aa28f 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iqnpool_lease_list.go b/intersight_gosdk/model_iqnpool_lease_list.go index 430710c563..1c115f6dde 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iqnpool_lease_relationship.go b/intersight_gosdk/model_iqnpool_lease_relationship.go index 39447ab70e..72c02e9a21 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iqnpool_lease_response.go b/intersight_gosdk/model_iqnpool_lease_response.go index 203c6bace4..1b68234378 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iqnpool_pool.go b/intersight_gosdk/model_iqnpool_pool.go index fd2cfacadf..c937c946d5 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iqnpool_pool_list.go b/intersight_gosdk/model_iqnpool_pool_list.go index c46c26f53b..07327281c3 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iqnpool_pool_member.go b/intersight_gosdk/model_iqnpool_pool_member.go index 74e1d22935..c107e70f99 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-18012 +API version: 1.0.11-18369 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 ada6dd8b6a..c9edd20040 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-18012 +API version: 1.0.11-18369 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 f37885f24f..abe73e8f55 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-18012 +API version: 1.0.11-18369 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 7f58fc2f5a..cae8c27fb7 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iqnpool_pool_relationship.go b/intersight_gosdk/model_iqnpool_pool_relationship.go index d1701c3db1..9ebc05b36d 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iqnpool_pool_response.go b/intersight_gosdk/model_iqnpool_pool_response.go index 1653f88669..43144ff4ae 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iqnpool_reservation.go b/intersight_gosdk/model_iqnpool_reservation.go index cbad879a0f..a303ed01a6 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iqnpool_reservation_list.go b/intersight_gosdk/model_iqnpool_reservation_list.go index 9963118c4e..abb9f2bf46 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iqnpool_reservation_reference.go b/intersight_gosdk/model_iqnpool_reservation_reference.go index 7e2485af5e..5a60a2391e 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iqnpool_reservation_relationship.go b/intersight_gosdk/model_iqnpool_reservation_relationship.go index 28b6217a30..fcb465a27d 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iqnpool_reservation_response.go b/intersight_gosdk/model_iqnpool_reservation_response.go index 2bc09611f4..d7821568d0 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iqnpool_universe.go b/intersight_gosdk/model_iqnpool_universe.go index bfb37dcfdc..b9b1611343 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iqnpool_universe_list.go b/intersight_gosdk/model_iqnpool_universe_list.go index 9858162f7e..0baba9dfbd 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iqnpool_universe_relationship.go b/intersight_gosdk/model_iqnpool_universe_relationship.go index 584a27e0a5..b273063ceb 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iqnpool_universe_response.go b/intersight_gosdk/model_iqnpool_universe_response.go index d63250a68c..132cdd97fc 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_issue_condition.go b/intersight_gosdk/model_issue_condition.go index e068f55747..31b4652f1b 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_issue_definition.go b/intersight_gosdk/model_issue_definition.go index 8cb8dcb0c6..2840924310 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_issue_device_tag.go b/intersight_gosdk/model_issue_device_tag.go index a6a44862c1..9551515f67 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_issue_message.go b/intersight_gosdk/model_issue_message.go index f5328cde09..4564b2eea2 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_issue_odata_condition.go b/intersight_gosdk/model_issue_odata_condition.go index b31af9fed7..ef7ad01443 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iwotenant_maintenance_notification.go b/intersight_gosdk/model_iwotenant_maintenance_notification.go index e82e708e7e..ccb3744734 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-18012 +API version: 1.0.11-18369 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 cde9735d16..b790db264d 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-18012 +API version: 1.0.11-18369 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 beb5b9d2a4..379783a5c5 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iwotenant_migrate.go b/intersight_gosdk/model_iwotenant_migrate.go index 3b5e1f61d9..bcf0dfc206 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iwotenant_migrate_list.go b/intersight_gosdk/model_iwotenant_migrate_list.go index e60c3ab0be..aee0040f23 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iwotenant_migrate_response.go b/intersight_gosdk/model_iwotenant_migrate_response.go index 8e518aed54..1fa7a31a51 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iwotenant_tenant_customization.go b/intersight_gosdk/model_iwotenant_tenant_customization.go index 3ff46cd258..35fe2bf3e7 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-18012 +API version: 1.0.11-18369 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 7747a42086..85fe18addf 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-18012 +API version: 1.0.11-18369 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 a0cbc33084..8cf852beae 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_iwotenant_tenant_status.go b/intersight_gosdk/model_iwotenant_tenant_status.go index 2589bae4a5..0478925862 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-18012 +API version: 1.0.11-18369 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 6793857be9..f23529de42 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-18012 +API version: 1.0.11-18369 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 1c8b79ad4c..b81efd6c5d 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-18012 +API version: 1.0.11-18369 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 64b3563691..c28fd589e5 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_abstract_deployment.go b/intersight_gosdk/model_kubernetes_abstract_deployment.go index ab491624cc..9a0a103817 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_abstract_ingress.go b/intersight_gosdk/model_kubernetes_abstract_ingress.go index f553d367d3..540564f0b8 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_abstract_node.go b/intersight_gosdk/model_kubernetes_abstract_node.go index dde16a33b3..636619649d 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_abstract_pod.go b/intersight_gosdk/model_kubernetes_abstract_pod.go index 91c488c029..f5a0350f84 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_abstract_service.go b/intersight_gosdk/model_kubernetes_abstract_service.go index 11cf0f5bce..5c4ec01f9c 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-18012 +API version: 1.0.11-18369 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 2dbfd4e0dc..bdf2610f54 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-18012 +API version: 1.0.11-18369 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 818b964c63..e92ca2c175 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-18012 +API version: 1.0.11-18369 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 d12b24eb61..af88011266 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-18012 +API version: 1.0.11-18369 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 5b6768044a..37cc529d43 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-18012 +API version: 1.0.11-18369 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 775942ba8f..c227da40ed 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_aci_cni_profile_list.go b/intersight_gosdk/model_kubernetes_aci_cni_profile_list.go index 2b58000d2e..30334f5840 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-18012 +API version: 1.0.11-18369 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 34fe3173f8..0a60cbbe69 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-18012 +API version: 1.0.11-18369 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 567b82993b..978e044810 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-18012 +API version: 1.0.11-18369 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 654be90952..82b67e9a53 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 68c1ae01e8..08529dde21 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-18012 +API version: 1.0.11-18369 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 96aaf9aead..78c72581e0 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-18012 +API version: 1.0.11-18369 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 3b037249d8..32c2b89098 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_action_info.go b/intersight_gosdk/model_kubernetes_action_info.go index 45e0e679c1..ac60368457 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_addon.go b/intersight_gosdk/model_kubernetes_addon.go index 4108fd3c7d..792a2fc215 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_addon_configuration.go b/intersight_gosdk/model_kubernetes_addon_configuration.go index d96282f5e4..53b482edff 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_addon_definition.go b/intersight_gosdk/model_kubernetes_addon_definition.go index 8c86d6e7ab..5a4203447a 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-18012 +API version: 1.0.11-18369 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 6cb8f982cd..be35852646 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-18012 +API version: 1.0.11-18369 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 e15b04667e..184f7f7b09 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-18012 +API version: 1.0.11-18369 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 2dabbeb42e..77e56a2d04 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_addon_policy.go b/intersight_gosdk/model_kubernetes_addon_policy.go index 7f323f2656..75ae6ff696 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-18012 +API version: 1.0.11-18369 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 fd695843f4..34a0084c35 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-18012 +API version: 1.0.11-18369 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 088083c826..c66b6eb51c 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_addon_repository.go b/intersight_gosdk/model_kubernetes_addon_repository.go index 0863ec9a64..fdda1cc645 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-18012 +API version: 1.0.11-18369 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 849efe8b5b..a6e56d82c2 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-18012 +API version: 1.0.11-18369 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 411c844d18..2083bd2612 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-18012 +API version: 1.0.11-18369 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 20449fc266..7870addb3d 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-18012 +API version: 1.0.11-18369 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 f22259716c..d2e192fe04 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-18012 +API version: 1.0.11-18369 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 10266483f8..834f8a8d66 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-18012 +API version: 1.0.11-18369 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 3242799ee4..447f18493a 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-18012 +API version: 1.0.11-18369 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 5a5df57dd9..a332c0bb52 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-18012 +API version: 1.0.11-18369 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 eec01ea3e0..3b245b33fa 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-18012 +API version: 1.0.11-18369 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 ab2d83a308..1d0d6c5631 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-18012 +API version: 1.0.11-18369 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 1a94d67359..ea486d34a9 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_base_product.go b/intersight_gosdk/model_kubernetes_base_product.go index 97b1af7ea8..88fc8fb25d 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-18012 +API version: 1.0.11-18369 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 ddba56fdfe..74a5ff461e 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_calico_config.go b/intersight_gosdk/model_kubernetes_calico_config.go index 8fea9d2247..5198c2d8a4 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_catalog.go b/intersight_gosdk/model_kubernetes_catalog.go index 257c772ada..cd9f2e4c4e 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_catalog_list.go b/intersight_gosdk/model_kubernetes_catalog_list.go index 5426618ca1..6f7df0a6a9 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_catalog_relationship.go b/intersight_gosdk/model_kubernetes_catalog_relationship.go index 7e7cbe1360..e2011d5d97 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_catalog_response.go b/intersight_gosdk/model_kubernetes_catalog_response.go index ef4c07c06a..d68347478b 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_cluster.go b/intersight_gosdk/model_kubernetes_cluster.go index 3e72aaad1c..eed37fec10 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-18012 +API version: 1.0.11-18369 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 309ba1ae95..96766d7697 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-18012 +API version: 1.0.11-18369 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 6c1c28e5d4..046a870df4 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-18012 +API version: 1.0.11-18369 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 6c16c55e1f..4c5665eab2 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-18012 +API version: 1.0.11-18369 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 ad868316f6..ece628ee1d 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-18012 +API version: 1.0.11-18369 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 2f9d3f873c..0f60437cda 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_cluster_list.go b/intersight_gosdk/model_kubernetes_cluster_list.go index ea7440a1d6..8bba7f7dcd 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-18012 +API version: 1.0.11-18369 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 b939a1ddb6..a648b19fdf 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_cluster_profile.go b/intersight_gosdk/model_kubernetes_cluster_profile.go index 72cbdb3e8e..e8ba504e80 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-18012 +API version: 1.0.11-18369 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 7a47687102..f8037aa3e9 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-18012 +API version: 1.0.11-18369 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 8ac27a4946..a47cb2f867 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-18012 +API version: 1.0.11-18369 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 1ca80c5a3e..c4a16dd199 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_cluster_relationship.go b/intersight_gosdk/model_kubernetes_cluster_relationship.go index e35053ff33..e006014760 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_cluster_response.go b/intersight_gosdk/model_kubernetes_cluster_response.go index 9487eac02d..66824cb57b 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_cni_config.go b/intersight_gosdk/model_kubernetes_cni_config.go index 6d4843146d..9015d764a9 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_config_result.go b/intersight_gosdk/model_kubernetes_config_result.go index eb9cbf7cc7..eead8bc654 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-18012 +API version: 1.0.11-18369 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 0a20039a13..a6e1b1d99f 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-18012 +API version: 1.0.11-18369 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 df7f76e9fd..370be879e4 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-18012 +API version: 1.0.11-18369 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 f9f4f1b302..5e63bedb67 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-18012 +API version: 1.0.11-18369 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 a0d0add6f7..6274d014f5 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-18012 +API version: 1.0.11-18369 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 69e8399fdf..c3addb05e1 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-18012 +API version: 1.0.11-18369 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 3ff350485e..27febbe70b 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-18012 +API version: 1.0.11-18369 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 6414331bdf..c1910d3689 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_configuration.go b/intersight_gosdk/model_kubernetes_configuration.go index a382c51433..f1ebdaed5a 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-18012 +API version: 1.0.11-18369 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 64a80d24bc..f5ab2b6017 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_container_runtime_policy_list.go b/intersight_gosdk/model_kubernetes_container_runtime_policy_list.go index 79b5777e46..7bb84d2eb4 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-18012 +API version: 1.0.11-18369 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 f93e6e74a2..87b825c44c 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-18012 +API version: 1.0.11-18369 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 8afb9ee553..dab7493a00 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_daemon_set.go b/intersight_gosdk/model_kubernetes_daemon_set.go index 0ff83070f5..b0e54797f1 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-18012 +API version: 1.0.11-18369 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 9c85445c5d..38aabf2756 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-18012 +API version: 1.0.11-18369 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 0ee862a67b..521a62e9b3 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-18012 +API version: 1.0.11-18369 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 7c4ce8ecc1..23690e5105 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_deployment.go b/intersight_gosdk/model_kubernetes_deployment.go index 9314511c1c..1d1337ceab 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_deployment_list.go b/intersight_gosdk/model_kubernetes_deployment_list.go index 2487ad719b..8c3e22ff70 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_deployment_response.go b/intersight_gosdk/model_kubernetes_deployment_response.go index f9b3160e71..93f04c48cf 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_deployment_status.go b/intersight_gosdk/model_kubernetes_deployment_status.go index 430726b7d5..6ddc6d6c7f 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_essential_addon.go b/intersight_gosdk/model_kubernetes_essential_addon.go index 6f9bf3986b..320a5191a7 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-18012 +API version: 1.0.11-18369 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 f0e4d95cb9..637b79b8cf 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_ethernet.go b/intersight_gosdk/model_kubernetes_ethernet.go index 007d2b32f1..c3e758836d 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_ethernet_matcher.go b/intersight_gosdk/model_kubernetes_ethernet_matcher.go index 3ed41735af..1a78e7cd58 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-18012 +API version: 1.0.11-18369 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 af9634bfa4..963e15b01d 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-18012 +API version: 1.0.11-18369 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 351eec3957..fab3eff172 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-18012 +API version: 1.0.11-18369 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 45cc241c8b..df9455947f 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-18012 +API version: 1.0.11-18369 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 b37c0541bc..c9b5dba02d 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_ingress.go b/intersight_gosdk/model_kubernetes_ingress.go index 7f2102ce40..ff864da27f 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_ingress_list.go b/intersight_gosdk/model_kubernetes_ingress_list.go index c20dd3638b..c8ae0ebac7 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_ingress_response.go b/intersight_gosdk/model_kubernetes_ingress_response.go index 8ebd605359..1fac16cf49 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_ingress_status.go b/intersight_gosdk/model_kubernetes_ingress_status.go index f9fdc6ad3e..58e68caadf 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-18012 +API version: 1.0.11-18369 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 8b147abdef..ff91cf987e 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-18012 +API version: 1.0.11-18369 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 2f896e35a3..ba19fa9526 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_key_value.go b/intersight_gosdk/model_kubernetes_key_value.go index 41bc6c365e..a8026daf3a 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_kubernetes_resource.go b/intersight_gosdk/model_kubernetes_kubernetes_resource.go index c8462a4328..c662f296fd 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_load_balancer.go b/intersight_gosdk/model_kubernetes_load_balancer.go index 7ddc4162c0..20fcf5dc1d 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_network_interface.go b/intersight_gosdk/model_kubernetes_network_interface.go index 564d260e04..f6be633269 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-18012 +API version: 1.0.11-18369 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 0b860bdd81..32e680c6b1 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_network_policy.go b/intersight_gosdk/model_kubernetes_network_policy.go index 3fece1e6be..8504e264ae 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_network_policy_list.go b/intersight_gosdk/model_kubernetes_network_policy_list.go index 836d0fe238..69730a68f8 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-18012 +API version: 1.0.11-18369 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 ad1d56ac4b..8982e31e55 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-18012 +API version: 1.0.11-18369 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 0408978571..24507dc324 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_node.go b/intersight_gosdk/model_kubernetes_node.go index 202b8eb133..2a7899948c 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_node_address.go b/intersight_gosdk/model_kubernetes_node_address.go index f6d2437140..aea8fd7f1d 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-18012 +API version: 1.0.11-18369 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 f8b1080245..d52b047cc8 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-18012 +API version: 1.0.11-18369 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 5692d480f5..f24567049e 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-18012 +API version: 1.0.11-18369 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 02b64d7b00..ddb3a73e83 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-18012 +API version: 1.0.11-18369 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 2bccd3a573..da8049de8a 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-18012 +API version: 1.0.11-18369 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 70785ca210..ac25a52a86 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-18012 +API version: 1.0.11-18369 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 6ed17fe03e..966351578f 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_node_info.go b/intersight_gosdk/model_kubernetes_node_info.go index 3cd832a7ba..0addb120ae 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_node_list.go b/intersight_gosdk/model_kubernetes_node_list.go index 68a32df2f7..b44e5a98ce 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_node_profile.go b/intersight_gosdk/model_kubernetes_node_profile.go index 4765805bf1..077a51a2c6 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-18012 +API version: 1.0.11-18369 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 525ff1875e..32447b1ed0 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_node_response.go b/intersight_gosdk/model_kubernetes_node_response.go index 5d84889efb..9015ee79cb 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_node_spec.go b/intersight_gosdk/model_kubernetes_node_spec.go index 6c091c3357..147f1a0122 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_node_status.go b/intersight_gosdk/model_kubernetes_node_status.go index 7f885a7b6e..265aa61f8d 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-18012 +API version: 1.0.11-18369 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 c08d7219e0..09bf867a33 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-18012 +API version: 1.0.11-18369 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 00208bf60b..f285ea2782 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-18012 +API version: 1.0.11-18369 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 8110270f0d..1994895ea6 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_object_meta.go b/intersight_gosdk/model_kubernetes_object_meta.go index f0a65e083f..12a4b9ddcc 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_ovs_bond.go b/intersight_gosdk/model_kubernetes_ovs_bond.go index 9cb1ba10fc..a810c16f4f 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_pod.go b/intersight_gosdk/model_kubernetes_pod.go index 0628600a7c..94a6314f42 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_pod_list.go b/intersight_gosdk/model_kubernetes_pod_list.go index c7cc0cc2a8..65f43b6066 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_pod_response.go b/intersight_gosdk/model_kubernetes_pod_response.go index 5e9ad5f597..6d696e703e 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_pod_status.go b/intersight_gosdk/model_kubernetes_pod_status.go index 16036628e5..d7a79f1bb1 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_proxy_config.go b/intersight_gosdk/model_kubernetes_proxy_config.go index f53c9db898..83d670b6ee 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_route.go b/intersight_gosdk/model_kubernetes_route.go index a98abab95b..602fc726b4 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_service.go b/intersight_gosdk/model_kubernetes_service.go index 23aebf4125..248ac2c6f6 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_service_list.go b/intersight_gosdk/model_kubernetes_service_list.go index c29b7e09e8..b728ea39b2 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_service_response.go b/intersight_gosdk/model_kubernetes_service_response.go index d2c0c1aa06..93a2ad1b82 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_service_status.go b/intersight_gosdk/model_kubernetes_service_status.go index a2a0c011a3..5e385e9599 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_stateful_set.go b/intersight_gosdk/model_kubernetes_stateful_set.go index 040af1ce73..a25bab4f8f 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-18012 +API version: 1.0.11-18369 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 68f161d1b2..1925788cee 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-18012 +API version: 1.0.11-18369 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 2217688c6a..252aed747c 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-18012 +API version: 1.0.11-18369 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 5827036d81..f2f101ddf1 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-18012 +API version: 1.0.11-18369 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 27f1b678f8..4521b2a8df 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_sys_config_policy_list.go b/intersight_gosdk/model_kubernetes_sys_config_policy_list.go index 1b45d55b16..f7e668d036 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-18012 +API version: 1.0.11-18369 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 63588160fa..2264337935 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-18012 +API version: 1.0.11-18369 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 c0ea113e38..4ff2fbcdb7 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_taint.go b/intersight_gosdk/model_kubernetes_taint.go index eac801a2fa..f6cf303f19 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-18012 +API version: 1.0.11-18369 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 66520c3c0b..c118e9b5e4 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-18012 +API version: 1.0.11-18369 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 381102ec69..f2652cf1fe 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-18012 +API version: 1.0.11-18369 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 bfde564778..0827648a49 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-18012 +API version: 1.0.11-18369 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 fa2ad05eea..9b069d0c4d 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_version.go b/intersight_gosdk/model_kubernetes_version.go index f9500a8331..f51fe2fef0 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_version_list.go b/intersight_gosdk/model_kubernetes_version_list.go index fa3652f719..65a674d8f7 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_version_policy.go b/intersight_gosdk/model_kubernetes_version_policy.go index 9382eba636..bb7e55ba72 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-18012 +API version: 1.0.11-18369 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 358fa372b3..6b5238114f 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-18012 +API version: 1.0.11-18369 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 fc80f4ed3a..fdc9ae7b0b 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-18012 +API version: 1.0.11-18369 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 8fc9155c1b..80071f095d 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_version_relationship.go b/intersight_gosdk/model_kubernetes_version_relationship.go index 31adaf305c..f33689a1ad 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kubernetes_version_response.go b/intersight_gosdk/model_kubernetes_version_response.go index 89514e5a4a..1c6430ccc9 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-18012 +API version: 1.0.11-18369 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 717fe4c82e..9a59fa0010 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-18012 +API version: 1.0.11-18369 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 4bbc63a12a..1b71055c28 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-18012 +API version: 1.0.11-18369 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 fa104c7962..e0a6ffc050 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-18012 +API version: 1.0.11-18369 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 88773b86fa..70bc56e227 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-18012 +API version: 1.0.11-18369 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 3395d92ac4..3b4450549f 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-18012 +API version: 1.0.11-18369 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 dacf64e2e0..056c98d4e9 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-18012 +API version: 1.0.11-18369 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 98a1d9114e..cfdd892ff2 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-18012 +API version: 1.0.11-18369 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 ec0c9d3599..22dfbc0978 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-18012 +API version: 1.0.11-18369 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 a31dfa0346..5d75558f48 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-18012 +API version: 1.0.11-18369 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 f9a70abac5..6eadaf704b 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-18012 +API version: 1.0.11-18369 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 8a3ab512ba..b50527e72b 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-18012 +API version: 1.0.11-18369 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 0496d4c5e8..2218113399 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-18012 +API version: 1.0.11-18369 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 e121de711f..294fb92f0b 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-18012 +API version: 1.0.11-18369 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 b7c90e26ea..02dcd984d3 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-18012 +API version: 1.0.11-18369 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 ec60397f31..2ea0f655bf 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kvm_policy.go b/intersight_gosdk/model_kvm_policy.go index 219c9e16fb..b30919607a 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kvm_policy_inventory.go b/intersight_gosdk/model_kvm_policy_inventory.go index 0ec88225f7..56112cea89 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-18012 +API version: 1.0.11-18369 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 9ef811f852..dd6309fec0 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-18012 +API version: 1.0.11-18369 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 6f6bb41bd6..ca48cb1e17 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kvm_policy_list.go b/intersight_gosdk/model_kvm_policy_list.go index 5b2305060e..32f9296961 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kvm_policy_response.go b/intersight_gosdk/model_kvm_policy_response.go index ceb04bed71..33eece68b0 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kvm_session.go b/intersight_gosdk/model_kvm_session.go index 78dd6ca2bd..424aef16e7 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kvm_session_list.go b/intersight_gosdk/model_kvm_session_list.go index 34f36cc843..f602b54114 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kvm_session_relationship.go b/intersight_gosdk/model_kvm_session_relationship.go index 7be81b8e26..49fafe10a0 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kvm_session_response.go b/intersight_gosdk/model_kvm_session_response.go index e7e1a80f1f..4c0cb61c04 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kvm_tunnel.go b/intersight_gosdk/model_kvm_tunnel.go index c16fffb665..c283f53bd3 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kvm_tunnel_list.go b/intersight_gosdk/model_kvm_tunnel_list.go index ca305c9481..5640836438 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kvm_tunnel_relationship.go b/intersight_gosdk/model_kvm_tunnel_relationship.go index 2e841d35b6..32376b8573 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_kvm_tunnel_response.go b/intersight_gosdk/model_kvm_tunnel_response.go index ee7a605a21..20f5aef4eb 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-18012 +API version: 1.0.11-18369 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 bbb7db83a4..79beb1d405 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-18012 +API version: 1.0.11-18369 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 e4f0617c9e..32097504ef 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-18012 +API version: 1.0.11-18369 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 7266ec6b67..f6c059c8bb 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-18012 +API version: 1.0.11-18369 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 3dde0a7322..ec010dbc36 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-18012 +API version: 1.0.11-18369 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 42517c4c31..9eb29039e7 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-18012 +API version: 1.0.11-18369 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 62388df11e..b17663751c 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-18012 +API version: 1.0.11-18369 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 93a30d0fd7..8d68c5b4cf 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_license_customer_op.go b/intersight_gosdk/model_license_customer_op.go index 912e8b4ff2..18da6238a9 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-18012 +API version: 1.0.11-18369 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 1b9deefc3a..91a663fdb4 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-18012 +API version: 1.0.11-18369 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 0f24191d78..4ba52e64fa 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-18012 +API version: 1.0.11-18369 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 ba8740bc6f..c9a9ab8029 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-18012 +API version: 1.0.11-18369 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 9a08afc115..faaf3acfec 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-18012 +API version: 1.0.11-18369 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 b11c6bb343..963de80faf 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-18012 +API version: 1.0.11-18369 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 b06a5f4a39..6f4c1dd8be 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-18012 +API version: 1.0.11-18369 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 bf30f550e7..c299a888c5 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-18012 +API version: 1.0.11-18369 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 bc4f3d576e..793a655628 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-18012 +API version: 1.0.11-18369 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 ead168d20a..00e1c25a0d 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-18012 +API version: 1.0.11-18369 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 84420d0cf1..95b9f79df7 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-18012 +API version: 1.0.11-18369 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 333ce60888..96c140677e 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-18012 +API version: 1.0.11-18369 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 740972d4d0..5b021e7bc1 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-18012 +API version: 1.0.11-18369 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 35369544fc..1879603102 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-18012 +API version: 1.0.11-18369 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 0f9f08498b..94b6774d0b 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-18012 +API version: 1.0.11-18369 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 a2507be4ef..0229ea2ffa 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-18012 +API version: 1.0.11-18369 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 fd467ce0f1..546151d9d5 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-18012 +API version: 1.0.11-18369 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 d776ff6b91..371869701c 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-18012 +API version: 1.0.11-18369 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 fe7ccadf47..3bab680724 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-18012 +API version: 1.0.11-18369 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 993b4e0e85..7ff79c57fc 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-18012 +API version: 1.0.11-18369 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 0010f71a56..aa1be8fd9b 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-18012 +API version: 1.0.11-18369 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 ceeed8d093..169e64a3da 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-18012 +API version: 1.0.11-18369 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 7d70188610..629c6ce7bc 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-18012 +API version: 1.0.11-18369 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 9003ee4460..5691014d4f 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-18012 +API version: 1.0.11-18369 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 89b287063f..3774a471f8 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-18012 +API version: 1.0.11-18369 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 e573052745..b12c3c2a63 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-18012 +API version: 1.0.11-18369 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 01c5e58ebd..aa92aa9af7 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-18012 +API version: 1.0.11-18369 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 b71c39eb9f..f304390132 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_license_license_info.go b/intersight_gosdk/model_license_license_info.go index e6551cbcce..9e5ad7e429 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-18012 +API version: 1.0.11-18369 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 f178fdb000..32ddc3f08b 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-18012 +API version: 1.0.11-18369 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 30027899e5..b85df815e9 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-18012 +API version: 1.0.11-18369 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 7d6ab1e711..d12a5d5770 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-18012 +API version: 1.0.11-18369 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 5e43c4225b..33c4315c50 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-18012 +API version: 1.0.11-18369 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 f60bd3dc36..f30898324a 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-18012 +API version: 1.0.11-18369 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 44167a8ec4..71e8d7d55c 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-18012 +API version: 1.0.11-18369 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 929222c270..4540f30fc2 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-18012 +API version: 1.0.11-18369 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 72d05f6de1..83be38ded2 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-18012 +API version: 1.0.11-18369 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 e335c20836..2efbf06365 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-18012 +API version: 1.0.11-18369 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 634ac9b1df..26983cf83c 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-18012 +API version: 1.0.11-18369 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 69bd7011db..5224c640a0 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-18012 +API version: 1.0.11-18369 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 c619e90f35..8426664574 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-18012 +API version: 1.0.11-18369 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 c941e3d3c7..2199fae869 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-18012 +API version: 1.0.11-18369 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 0e8abdd3a0..862536e1d2 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_license_smartlicense_token.go b/intersight_gosdk/model_license_smartlicense_token.go index 922bce7c00..61690bc928 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-18012 +API version: 1.0.11-18369 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 dde918dda6..e7b794dfd7 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-18012 +API version: 1.0.11-18369 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 8057817f9e..80b10efab7 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-18012 +API version: 1.0.11-18369 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 c8737a4a15..100536c735 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_license_substitute_license.go b/intersight_gosdk/model_license_substitute_license.go index 9d389854a4..9f773dc52f 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_ls_service_profile.go b/intersight_gosdk/model_ls_service_profile.go index 88f653012e..060b027ec5 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-18012 +API version: 1.0.11-18369 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 52f8fb6bf0..01a4a6494a 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-18012 +API version: 1.0.11-18369 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 5077a3428d..10059f7bc7 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_macpool_block.go b/intersight_gosdk/model_macpool_block.go index cc766d35a4..d589e792b7 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_macpool_id_block.go b/intersight_gosdk/model_macpool_id_block.go index cd386a729f..ddd2be82fd 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-18012 +API version: 1.0.11-18369 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 f481753851..3842e57ca2 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-18012 +API version: 1.0.11-18369 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 63a1ec12f2..4121111237 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-18012 +API version: 1.0.11-18369 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 a64259bd82..d3158fbbdf 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_macpool_lease.go b/intersight_gosdk/model_macpool_lease.go index 427765459c..41e0a541df 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_macpool_lease_list.go b/intersight_gosdk/model_macpool_lease_list.go index 76e5c4ca21..8ab499d595 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_macpool_lease_relationship.go b/intersight_gosdk/model_macpool_lease_relationship.go index 7f76834a3d..549b03061d 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_macpool_lease_response.go b/intersight_gosdk/model_macpool_lease_response.go index 810bfc4d3a..2f59527361 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_macpool_member_of.go b/intersight_gosdk/model_macpool_member_of.go index b8b5a69ed8..8ac24409f8 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_macpool_pool.go b/intersight_gosdk/model_macpool_pool.go index 385543265d..87c02ef797 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_macpool_pool_list.go b/intersight_gosdk/model_macpool_pool_list.go index 01cc27c5e0..f53a833981 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_macpool_pool_member.go b/intersight_gosdk/model_macpool_pool_member.go index 8276ab95e8..51006c9176 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-18012 +API version: 1.0.11-18369 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 3e5924affb..d4673c1962 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-18012 +API version: 1.0.11-18369 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 e29b2d262d..c8eb8d17b3 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-18012 +API version: 1.0.11-18369 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 0f6c5d99e5..2a1ccb522c 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_macpool_pool_relationship.go b/intersight_gosdk/model_macpool_pool_relationship.go index b2b4da1d0a..68caf2104d 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_macpool_pool_response.go b/intersight_gosdk/model_macpool_pool_response.go index f046b59fe8..9db4cae5db 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_macpool_reservation.go b/intersight_gosdk/model_macpool_reservation.go index e1ccf3370f..2f7ff1ef49 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_macpool_reservation_list.go b/intersight_gosdk/model_macpool_reservation_list.go index 5a864c727e..d34e4ecb07 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_macpool_reservation_reference.go b/intersight_gosdk/model_macpool_reservation_reference.go index 9f1be3ae5d..14479acf33 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_macpool_reservation_relationship.go b/intersight_gosdk/model_macpool_reservation_relationship.go index 9a01ecc066..38ba928c23 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_macpool_reservation_response.go b/intersight_gosdk/model_macpool_reservation_response.go index 4f1c965ed6..8681d12605 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_macpool_universe.go b/intersight_gosdk/model_macpool_universe.go index 4e9b0e558d..ba446712a3 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_macpool_universe_list.go b/intersight_gosdk/model_macpool_universe_list.go index d8f84eb30d..8ba3a99dd7 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_macpool_universe_relationship.go b/intersight_gosdk/model_macpool_universe_relationship.go index 0032d320f7..9716196073 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_macpool_universe_response.go b/intersight_gosdk/model_macpool_universe_response.go index 9342620a41..1f2b4df89e 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_management_controller.go b/intersight_gosdk/model_management_controller.go index aefe114efe..f6ee504573 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_management_controller_list.go b/intersight_gosdk/model_management_controller_list.go index f0f231b2e6..28084d7ad4 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_management_controller_relationship.go b/intersight_gosdk/model_management_controller_relationship.go index 1fdda91624..d297392b48 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_management_controller_response.go b/intersight_gosdk/model_management_controller_response.go index 01d34962c7..48b35184f2 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_management_entity.go b/intersight_gosdk/model_management_entity.go index 41e1c2b750..d4140c4386 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_management_entity_list.go b/intersight_gosdk/model_management_entity_list.go index 352f9096a9..b3ff9ea35a 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_management_entity_relationship.go b/intersight_gosdk/model_management_entity_relationship.go index b0ca7cf468..2d7ab5ce4b 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_management_entity_response.go b/intersight_gosdk/model_management_entity_response.go index 64bbbd47b8..43ceb5e5e8 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_management_interface.go b/intersight_gosdk/model_management_interface.go index 233806691d..5ac6828c5d 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_management_interface_list.go b/intersight_gosdk/model_management_interface_list.go index 2319f30c4d..4adb7fd30d 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_management_interface_relationship.go b/intersight_gosdk/model_management_interface_relationship.go index 59d345546a..b868d424c9 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_management_interface_response.go b/intersight_gosdk/model_management_interface_response.go index a281808d5b..c11920d199 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_marketplace_use_case.go b/intersight_gosdk/model_marketplace_use_case.go index b8007db795..f21ccb6280 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-18012 +API version: 1.0.11-18369 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 5a384fbb67..be57c43429 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-18012 +API version: 1.0.11-18369 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 c27d3a64a3..615f4c55c5 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-18012 +API version: 1.0.11-18369 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 cb273ff8c5..788a66ab05 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-18012 +API version: 1.0.11-18369 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 6740c96796..da09221409 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_marketplace_use_case_relationship.go b/intersight_gosdk/model_marketplace_use_case_relationship.go index 548f9443d0..cc755f3354 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-18012 +API version: 1.0.11-18369 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 4271659232..fbcf2b41b0 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-18012 +API version: 1.0.11-18369 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 8e27726ac9..67558cf7ba 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-18012 +API version: 1.0.11-18369 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 1bea4e1376..bb8da9d950 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-18012 +API version: 1.0.11-18369 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 d82fd9345c..1806c54176 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_marketplace_use_case_version_resource.go b/intersight_gosdk/model_marketplace_use_case_version_resource.go index f6267de528..cd19e75adb 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-18012 +API version: 1.0.11-18369 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 9b42a6ac40..b849de4d9a 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_memory_abstract_unit.go b/intersight_gosdk/model_memory_abstract_unit.go index 29953766ad..cec17e4948 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_memory_array.go b/intersight_gosdk/model_memory_array.go index f9b2c58363..b33ef1e845 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_memory_array_list.go b/intersight_gosdk/model_memory_array_list.go index dc480d5f74..9e6e0f2f06 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_memory_array_relationship.go b/intersight_gosdk/model_memory_array_relationship.go index 445ebbc712..91e04daf5f 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_memory_array_response.go b/intersight_gosdk/model_memory_array_response.go index 0ea5a4ea54..eded863688 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-18012 +API version: 1.0.11-18369 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 382e854183..dc7f339a06 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-18012 +API version: 1.0.11-18369 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 36142e0aa2..da761bc57f 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-18012 +API version: 1.0.11-18369 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 64df96b3b2..a257cfe53b 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-18012 +API version: 1.0.11-18369 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 bdc9fa2018..67d98a77c4 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-18012 +API version: 1.0.11-18369 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 2fae83b842..4acad6cb72 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-18012 +API version: 1.0.11-18369 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 b2f2e1a9a9..73413f8b58 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-18012 +API version: 1.0.11-18369 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 763c383170..bb315cd805 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-18012 +API version: 1.0.11-18369 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 b228483bd9..c840d26bd5 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-18012 +API version: 1.0.11-18369 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 03845d7d90..6b3b8d5ae5 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-18012 +API version: 1.0.11-18369 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 25ce1ecfdc..f5cc006a04 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_memory_persistent_memory_logical_namespace.go b/intersight_gosdk/model_memory_persistent_memory_logical_namespace.go index 73473bed9d..86e06e9e8f 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_memory_persistent_memory_namespace.go b/intersight_gosdk/model_memory_persistent_memory_namespace.go index 68ebc18ebd..78f264f6eb 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-18012 +API version: 1.0.11-18369 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 9bb1c438c8..b11bff59a0 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-18012 +API version: 1.0.11-18369 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 83e072a605..e81521cb4e 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-18012 +API version: 1.0.11-18369 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 7ba394b140..7803544aa9 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-18012 +API version: 1.0.11-18369 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 c50eb84b3b..923c5e4b3b 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-18012 +API version: 1.0.11-18369 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 05dd9b23eb..c6e082db85 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-18012 +API version: 1.0.11-18369 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 5d08add468..59ff614159 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-18012 +API version: 1.0.11-18369 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 763e35d0cb..a2e07d6f1e 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-18012 +API version: 1.0.11-18369 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 99256487fd..b765e96511 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-18012 +API version: 1.0.11-18369 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 2a15501ae8..5055e31e27 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-18012 +API version: 1.0.11-18369 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 e9a6ae76cf..fb9a56fee0 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-18012 +API version: 1.0.11-18369 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 749b620011..d4c3d41c58 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-18012 +API version: 1.0.11-18369 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 397cc8cb6c..c909f5bd67 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-18012 +API version: 1.0.11-18369 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 838b36955b..03bc3ebf1e 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-18012 +API version: 1.0.11-18369 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 4c218f5213..05b7b05843 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-18012 +API version: 1.0.11-18369 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 57fb06b7b6..abf1ba0280 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-18012 +API version: 1.0.11-18369 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 37c8cd22f1..632a6e5558 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-18012 +API version: 1.0.11-18369 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 4a34abc91e..c98bcd9f7b 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-18012 +API version: 1.0.11-18369 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 bbab36877b..338d015f92 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_memory_unit.go b/intersight_gosdk/model_memory_unit.go index cd3dd9906c..b365837b4f 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_memory_unit_list.go b/intersight_gosdk/model_memory_unit_list.go index 7601147ff0..3a5f197ed5 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_memory_unit_relationship.go b/intersight_gosdk/model_memory_unit_relationship.go index f10f72be3b..8ed238a6a1 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_memory_unit_response.go b/intersight_gosdk/model_memory_unit_response.go index 55cd33ca26..e6da363401 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_meraki_device.go b/intersight_gosdk/model_meraki_device.go index ce1a0696d3..3af05a140c 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_meraki_device_list.go b/intersight_gosdk/model_meraki_device_list.go index 4eae275e8c..1ad567e817 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_meraki_device_relationship.go b/intersight_gosdk/model_meraki_device_relationship.go index 94cd311011..77359eef36 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_meraki_device_response.go b/intersight_gosdk/model_meraki_device_response.go index 76362e6378..a04c6df0f2 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_meraki_network.go b/intersight_gosdk/model_meraki_network.go index c60f118d9f..120c4dc169 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_meraki_network_list.go b/intersight_gosdk/model_meraki_network_list.go index 4bba866d5b..19a4cb0561 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_meraki_network_relationship.go b/intersight_gosdk/model_meraki_network_relationship.go index e60b4677fe..ce9f8c66af 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_meraki_network_response.go b/intersight_gosdk/model_meraki_network_response.go index 01878741a6..2fecf28782 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_meraki_organization.go b/intersight_gosdk/model_meraki_organization.go index 9d0990ac90..0fdcd5ccda 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_meraki_organization_list.go b/intersight_gosdk/model_meraki_organization_list.go index f37df95627..537a0918d5 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_meraki_organization_relationship.go b/intersight_gosdk/model_meraki_organization_relationship.go index e034fdb8e7..2798012f7a 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_meraki_organization_response.go b/intersight_gosdk/model_meraki_organization_response.go index 556e86fd58..862d75eb4a 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_meraki_port_profile.go b/intersight_gosdk/model_meraki_port_profile.go index eb52fb4899..b3bb08511c 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-18012 +API version: 1.0.11-18369 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 87a45ea0d2..14667e55a8 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-18012 +API version: 1.0.11-18369 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 7bae672859..64e056deaf 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_meraki_tag.go b/intersight_gosdk/model_meraki_tag.go index 877c35f772..33c2f6da79 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_meraki_tag_list.go b/intersight_gosdk/model_meraki_tag_list.go index 245d0998f1..7f63de3f3d 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_meraki_tag_response.go b/intersight_gosdk/model_meraki_tag_response.go index e919102650..91d8248d26 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_meta_access_privilege.go b/intersight_gosdk/model_meta_access_privilege.go index 3bab0fdc59..3cc140397f 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_meta_definition.go b/intersight_gosdk/model_meta_definition.go index c5e3121c3e..5fbdef4cf2 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_meta_definition_list.go b/intersight_gosdk/model_meta_definition_list.go index 15a69ef2b7..abee796844 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_meta_definition_response.go b/intersight_gosdk/model_meta_definition_response.go index fc5ac2872b..24f0779d92 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-18012 +API version: 1.0.11-18369 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 f041e59eee..e45f40e122 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_meta_identity_definition.go b/intersight_gosdk/model_meta_identity_definition.go index aac7a0ede7..be95f5ef3a 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_meta_prop_definition.go b/intersight_gosdk/model_meta_prop_definition.go index 9a9742e7f4..1c5c4951e9 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_meta_relationship_definition.go b/intersight_gosdk/model_meta_relationship_definition.go index cabf5490ad..04cd97362d 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_metrics_metric_criterion.go b/intersight_gosdk/model_metrics_metric_criterion.go index 0827b86062..92e7073d52 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_metrics_metrics_exploration.go b/intersight_gosdk/model_metrics_metrics_exploration.go index 2aba0b09b1..15ad655546 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-18012 +API version: 1.0.11-18369 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 7dc53c1fde..ddf699bbad 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-18012 +API version: 1.0.11-18369 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 cbbe024590..2ccf10cdfb 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_mo_aggregate_transform.go b/intersight_gosdk/model_mo_aggregate_transform.go index cd01e7d062..75e80b9959 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-18012 +API version: 1.0.11-18369 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 d2bb60e8fb..b0a5c4b1f3 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_mo_base_mo.go b/intersight_gosdk/model_mo_base_mo.go index 1afc3feeae..ec60d47c86 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-18012 +API version: 1.0.11-18369 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 786752fee2..16463f776a 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_mo_base_response.go b/intersight_gosdk/model_mo_base_response.go index 2ae00c0529..217422b8b4 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_mo_document_count.go b/intersight_gosdk/model_mo_document_count.go index 877ef93f4f..f5e193bad6 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_mo_mo_ref.go b/intersight_gosdk/model_mo_mo_ref.go index aa8f6427be..da9cd5fb48 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_mo_tag.go b/intersight_gosdk/model_mo_tag.go index 92979724bb..393112e879 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-18012 +API version: 1.0.11-18369 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 c12597c8b9..a6a7afe2db 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_mo_tag_summary.go b/intersight_gosdk/model_mo_tag_summary.go index 9cc5543305..1cda064af3 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_mo_version_context.go b/intersight_gosdk/model_mo_version_context.go index cf1d13b679..d06f1816ec 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_monitoring_category_status.go b/intersight_gosdk/model_monitoring_category_status.go index 98c4e960d6..e772284526 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_monitoring_health_status.go b/intersight_gosdk/model_monitoring_health_status.go index 3946221372..56494f0421 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-18012 +API version: 1.0.11-18369 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 59b6fa3fe3..ed9fec93bf 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-18012 +API version: 1.0.11-18369 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 34e15ad613..08995c87e7 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_motemplate_action_entry.go b/intersight_gosdk/model_motemplate_action_entry.go index 215f02960b..69c06534d9 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_motemplate_action_param.go b/intersight_gosdk/model_motemplate_action_param.go index 581b4df6d9..2a91eb1738 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_motemplate_sync_error.go b/intersight_gosdk/model_motemplate_sync_error.go index 0e93f624fe..7616e284bf 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_network_discovered_neighbor.go b/intersight_gosdk/model_network_discovered_neighbor.go index 6a76efa42c..5242cba382 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-18012 +API version: 1.0.11-18369 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 9aacb64f7c..5333ab79f0 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-18012 +API version: 1.0.11-18369 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 1a4d0894e8..624d477364 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-18012 +API version: 1.0.11-18369 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 fc07931631..7c25bab003 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_network_dns.go b/intersight_gosdk/model_network_dns.go index 0e82654f8e..cc778a3783 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_network_dns_list.go b/intersight_gosdk/model_network_dns_list.go index 18290a3619..7205637394 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_network_dns_relationship.go b/intersight_gosdk/model_network_dns_relationship.go index 34465b6df8..77e23cf970 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_network_dns_response.go b/intersight_gosdk/model_network_dns_response.go index f496f47a12..441b7d9f6c 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_network_element.go b/intersight_gosdk/model_network_element.go index b0c26c9747..2a510570e4 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_network_element_list.go b/intersight_gosdk/model_network_element_list.go index 2d865008fe..fde5e80fb6 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_network_element_relationship.go b/intersight_gosdk/model_network_element_relationship.go index 6241e9bbcc..160dc05c85 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_network_element_response.go b/intersight_gosdk/model_network_element_response.go index ad7582ed70..6fb951358d 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_network_element_summary.go b/intersight_gosdk/model_network_element_summary.go index 110f8c42f9..59caaba048 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_network_element_summary_list.go b/intersight_gosdk/model_network_element_summary_list.go index f1dc3a2327..4bd0da4b4e 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-18012 +API version: 1.0.11-18369 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 8943750db5..fe9b07f0df 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-18012 +API version: 1.0.11-18369 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 f2407498ab..1fa657c7d9 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-18012 +API version: 1.0.11-18369 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 971f280222..09d9ece5d9 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-18012 +API version: 1.0.11-18369 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 0c8cf8da5f..2fe3e990cb 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-18012 +API version: 1.0.11-18369 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 b42b3a8d97..2de0c0dd17 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-18012 +API version: 1.0.11-18369 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 2fb8b4c5e9..e8acbe0403 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_network_feature_control.go b/intersight_gosdk/model_network_feature_control.go index 56a626f1ee..89f52b298a 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-18012 +API version: 1.0.11-18369 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 8073e9a7d4..dac2599007 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-18012 +API version: 1.0.11-18369 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 3af71eb3e3..9ac28b8de3 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-18012 +API version: 1.0.11-18369 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 0d0070c23b..4505ddcf04 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-18012 +API version: 1.0.11-18369 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 f800cdc10b..8061ac6899 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-18012 +API version: 1.0.11-18369 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 3f9eb85242..4bd7e08f16 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_network_interface_list.go b/intersight_gosdk/model_network_interface_list.go index 2d3e4e31c2..04e60e8b53 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-18012 +API version: 1.0.11-18369 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 284c1a518e..c1e0b8f12d 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-18012 +API version: 1.0.11-18369 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 737fa66368..92896d511a 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-18012 +API version: 1.0.11-18369 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 2a6f22d0d7..8c5885ce02 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_network_license_file.go b/intersight_gosdk/model_network_license_file.go index 04e388f406..5a9a097a90 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-18012 +API version: 1.0.11-18369 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 0273c01b35..7ba43a7fb1 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-18012 +API version: 1.0.11-18369 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 af43cc54df..94c30637dc 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-18012 +API version: 1.0.11-18369 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 536098c0d6..4e0424ea91 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_network_supervisor_card.go b/intersight_gosdk/model_network_supervisor_card.go index d1ae36ff15..f1bc19345c 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-18012 +API version: 1.0.11-18369 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 0fa3b4acf6..96c5af7e8f 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-18012 +API version: 1.0.11-18369 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 f4ad96678b..76d61da7a7 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-18012 +API version: 1.0.11-18369 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 e4a6ff115c..a08c7ea2a7 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_network_telemetry_check.go b/intersight_gosdk/model_network_telemetry_check.go index 95064f56ca..e51ab8d654 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-18012 +API version: 1.0.11-18369 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 962a8f633e..f4b8081c55 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-18012 +API version: 1.0.11-18369 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 155e92a1e1..689bd6d0a4 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_network_vethernet.go b/intersight_gosdk/model_network_vethernet.go index 3499815cea..d895a4f816 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_network_vethernet_list.go b/intersight_gosdk/model_network_vethernet_list.go index 38c34874da..5f82715439 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_network_vethernet_relationship.go b/intersight_gosdk/model_network_vethernet_relationship.go index a3c2d5b02c..ada0e4a726 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_network_vethernet_response.go b/intersight_gosdk/model_network_vethernet_response.go index 46199a5cb1..c879189ec4 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_network_vfc.go b/intersight_gosdk/model_network_vfc.go index 33aa104c87..b6d66bfafc 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_network_vfc_list.go b/intersight_gosdk/model_network_vfc_list.go index e950e2cb55..ffe2536d79 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_network_vfc_relationship.go b/intersight_gosdk/model_network_vfc_relationship.go index 4eee662852..c991a0cad7 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_network_vfc_response.go b/intersight_gosdk/model_network_vfc_response.go index 3b7c23034a..b74e359edf 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-18012 +API version: 1.0.11-18369 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 5bbd19d3d3..811dbb04cb 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-18012 +API version: 1.0.11-18369 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 49e60220c5..fcfd580e5d 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-18012 +API version: 1.0.11-18369 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 057dbca6c0..f8073b87eb 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-18012 +API version: 1.0.11-18369 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 64a47a62fc..1d2611bc36 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_network_vpc_domain.go b/intersight_gosdk/model_network_vpc_domain.go index 4f1e755f73..aead195706 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-18012 +API version: 1.0.11-18369 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 9056b9af53..4d89d1d716 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-18012 +API version: 1.0.11-18369 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 d697d97490..4042c89e6f 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-18012 +API version: 1.0.11-18369 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 a99bf7198b..442ceb3a96 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_network_vpc_member.go b/intersight_gosdk/model_network_vpc_member.go index 5d691ff19a..ecfd12ff8f 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-18012 +API version: 1.0.11-18369 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 80170a544b..81eb75ed3a 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-18012 +API version: 1.0.11-18369 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 af67803dba..e0719fd779 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-18012 +API version: 1.0.11-18369 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 7ed97735e8..4ded8fb759 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_network_vpc_peer.go b/intersight_gosdk/model_network_vpc_peer.go index 5047fc8b19..0ee6950566 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-18012 +API version: 1.0.11-18369 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 82812595f3..89c623083a 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-18012 +API version: 1.0.11-18369 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 329630f5eb..a5a917bb43 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-18012 +API version: 1.0.11-18369 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 fa88db5c3c..037b32fa05 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_network_vrf.go b/intersight_gosdk/model_network_vrf.go index 7efa87dd2c..db6386e714 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_network_vrf_list.go b/intersight_gosdk/model_network_vrf_list.go index e9e41ac40b..b79ce78dd6 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_network_vrf_relationship.go b/intersight_gosdk/model_network_vrf_relationship.go index a962aa91ee..6554e32183 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_network_vrf_response.go b/intersight_gosdk/model_network_vrf_response.go index 642c849e65..17fd3f404f 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_networkconfig_policy.go b/intersight_gosdk/model_networkconfig_policy.go index a7640de7d5..fac28c601e 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_networkconfig_policy_inventory.go b/intersight_gosdk/model_networkconfig_policy_inventory.go index 4422946aa0..75f9484675 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_networkconfig_policy_inventory_list.go b/intersight_gosdk/model_networkconfig_policy_inventory_list.go index 25820a2860..adfe6a5220 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-18012 +API version: 1.0.11-18369 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 aecf3a8695..3acd053107 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_networkconfig_policy_list.go b/intersight_gosdk/model_networkconfig_policy_list.go index a1804d1a5e..89f5b481a8 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_networkconfig_policy_response.go b/intersight_gosdk/model_networkconfig_policy_response.go index cd603e4b92..d1925e3784 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-18012 +API version: 1.0.11-18369 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 28904333f1..c065f3ef39 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-18012 +API version: 1.0.11-18369 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 91f0eebca0..b1e879d0a0 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-18012 +API version: 1.0.11-18369 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 e5ce937c69..4426a530a4 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-18012 +API version: 1.0.11-18369 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 e16b055bde..656f060242 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-18012 +API version: 1.0.11-18369 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 a4319b169a..d99cfc2843 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-18012 +API version: 1.0.11-18369 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 8d07ed654c..55046f92c8 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niaapi_apic_hweol.go b/intersight_gosdk/model_niaapi_apic_hweol.go index bde70f0c95..e9336571c8 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-18012 +API version: 1.0.11-18369 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 7e3155e3af..9f077aa8a2 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-18012 +API version: 1.0.11-18369 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 eddffd7356..b0c18dbac9 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-18012 +API version: 1.0.11-18369 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 aeff690a17..e691b62183 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-18012 +API version: 1.0.11-18369 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 c915a612b3..2a47c4084e 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-18012 +API version: 1.0.11-18369 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 c59e1a48ca..c20241eeb1 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-18012 +API version: 1.0.11-18369 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 b3d63e5ee1..3faace1c18 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-18012 +API version: 1.0.11-18369 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 3c7481ebb2..9676186568 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-18012 +API version: 1.0.11-18369 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 9575e1f0fc..b9e5895514 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niaapi_apic_sweol.go b/intersight_gosdk/model_niaapi_apic_sweol.go index 923e5c60f3..1946063934 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-18012 +API version: 1.0.11-18369 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 5229154e8f..9912d86b40 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-18012 +API version: 1.0.11-18369 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 c7f299aaeb..6a1aa81f00 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-18012 +API version: 1.0.11-18369 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 a7928ed6fa..f2bb7ad10f 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-18012 +API version: 1.0.11-18369 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 27f316b82b..fd3f43fb1a 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-18012 +API version: 1.0.11-18369 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 5e800b47ad..b307205f25 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-18012 +API version: 1.0.11-18369 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 b35c4193ae..cbe6a9e7b0 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-18012 +API version: 1.0.11-18369 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 11053c5662..282be902be 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-18012 +API version: 1.0.11-18369 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 0d6198eb1a..11fd7f3fe3 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niaapi_dcnm_hweol.go b/intersight_gosdk/model_niaapi_dcnm_hweol.go index ddfeda1521..60c141bae7 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-18012 +API version: 1.0.11-18369 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 3367f9d8cd..7931667670 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-18012 +API version: 1.0.11-18369 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 7cdd12d1e6..e51dab429d 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-18012 +API version: 1.0.11-18369 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 edd6ac7041..a55af3c952 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-18012 +API version: 1.0.11-18369 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 69d56aecef..c567b3c386 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-18012 +API version: 1.0.11-18369 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 e3be2f29c5..776c20189d 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-18012 +API version: 1.0.11-18369 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 a66371574c..c61666eb1a 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-18012 +API version: 1.0.11-18369 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 2a36441f79..eca1a7f172 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-18012 +API version: 1.0.11-18369 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 97dd4b9b29..352e0371f7 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niaapi_dcnm_sweol.go b/intersight_gosdk/model_niaapi_dcnm_sweol.go index d0a2cfccdc..da1839e406 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-18012 +API version: 1.0.11-18369 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 7eb672f2f1..ecfb48e927 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-18012 +API version: 1.0.11-18369 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 11b8e43f3f..5c05b0293c 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niaapi_detail.go b/intersight_gosdk/model_niaapi_detail.go index 51898724f6..d9c9216c07 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niaapi_field_notice.go b/intersight_gosdk/model_niaapi_field_notice.go index 9ecff3fae5..f9d178095e 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niaapi_file_downloader.go b/intersight_gosdk/model_niaapi_file_downloader.go index 946e72547e..ff71651138 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-18012 +API version: 1.0.11-18369 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 60294dacd6..d1b54950df 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-18012 +API version: 1.0.11-18369 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 cf44512cbe..e845d17e76 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niaapi_hardware_eol.go b/intersight_gosdk/model_niaapi_hardware_eol.go index f4ff3443f7..24465a9e08 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niaapi_maintained_release.go b/intersight_gosdk/model_niaapi_maintained_release.go index 089a832cf2..3f87f43ce9 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-18012 +API version: 1.0.11-18369 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 809f7a81be..4c294197b6 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-18012 +API version: 1.0.11-18369 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 f9ebbc62f7..da41dd9445 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niaapi_nia_metadata.go b/intersight_gosdk/model_niaapi_nia_metadata.go index 32f763950e..f6963d6dc2 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-18012 +API version: 1.0.11-18369 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 c56b9bf684..c79f373330 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-18012 +API version: 1.0.11-18369 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 326b1266ef..35a8cdba05 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-18012 +API version: 1.0.11-18369 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 da0718ac61..7bce02dcff 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-18012 +API version: 1.0.11-18369 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 26e7af67ed..5d75423a64 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-18012 +API version: 1.0.11-18369 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 e2ea012086..f1933de0ba 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niaapi_nib_metadata.go b/intersight_gosdk/model_niaapi_nib_metadata.go index 496084fb77..80a966fc70 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-18012 +API version: 1.0.11-18369 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 d576ceab43..a181e35372 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-18012 +API version: 1.0.11-18369 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 5603156968..7ad948783d 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-18012 +API version: 1.0.11-18369 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 ef4b205dac..9486a8aad1 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-18012 +API version: 1.0.11-18369 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 9dd79f431d..7ab7fe4b78 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-18012 +API version: 1.0.11-18369 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 7d9e6883ed..4dbbb49598 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niaapi_release_recommend.go b/intersight_gosdk/model_niaapi_release_recommend.go index f9ea3e4abb..27011ef5ec 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niaapi_revision_info.go b/intersight_gosdk/model_niaapi_revision_info.go index 104a5cfecf..f4254eaec2 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-18012 +API version: 1.0.11-18369 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 fbd3681864..e764c7efd3 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-18012 +API version: 1.0.11-18369 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 4c595b1773..f6aa063f35 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-18012 +API version: 1.0.11-18369 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 280532ff95..88422f4890 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niaapi_software_eol.go b/intersight_gosdk/model_niaapi_software_eol.go index f06cebecc0..67d7492c48 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niaapi_software_regex.go b/intersight_gosdk/model_niaapi_software_regex.go index 593c3aae92..fbf44c75b5 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-18012 +API version: 1.0.11-18369 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 3d322a38ca..047e68875d 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-18012 +API version: 1.0.11-18369 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 ebbfcba96d..2c9f688c2e 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-18012 +API version: 1.0.11-18369 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 dc884ab17a..07c22cce9f 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niaapi_version_regex.go b/intersight_gosdk/model_niaapi_version_regex.go index c1364dfb61..e9d0821b33 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-18012 +API version: 1.0.11-18369 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 7b6eee1d98..37c71a07ad 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-18012 +API version: 1.0.11-18369 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 6278895a25..708ad0b4e0 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-18012 +API version: 1.0.11-18369 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 39125b3448..60ab40bcd3 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-18012 +API version: 1.0.11-18369 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 3c3f73f85a..02a5f0d408 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-18012 +API version: 1.0.11-18369 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 09540baff2..e93d303737 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-18012 +API version: 1.0.11-18369 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 d37435513b..28f4da189c 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-18012 +API version: 1.0.11-18369 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 5b60f66da5..d09fba07bd 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-18012 +API version: 1.0.11-18369 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 9e152e661a..b44c8c2b59 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-18012 +API version: 1.0.11-18369 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 3f41f786c9..2b182b37db 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-18012 +API version: 1.0.11-18369 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 91b419c073..5a5344a160 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-18012 +API version: 1.0.11-18369 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 fc469c939f..2700dedd8b 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-18012 +API version: 1.0.11-18369 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 3e4108ad51..0ae5df5b77 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-18012 +API version: 1.0.11-18369 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 79ff2bd69b..44031b4dfa 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-18012 +API version: 1.0.11-18369 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 b850a981af..2479640eb6 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-18012 +API version: 1.0.11-18369 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 3923f28c11..c68ee40492 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-18012 +API version: 1.0.11-18369 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 7788e4c7d5..937e97d2b5 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-18012 +API version: 1.0.11-18369 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 d412ed8d36..5f5535a193 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-18012 +API version: 1.0.11-18369 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 3099f15623..a5408ffd8f 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-18012 +API version: 1.0.11-18369 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 893e9cc76f..6596113600 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-18012 +API version: 1.0.11-18369 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 c9516407fc..d2a43b83c2 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-18012 +API version: 1.0.11-18369 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 397b4962c8..4124a1a61a 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-18012 +API version: 1.0.11-18369 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 4ffe86b609..ea2578a70b 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-18012 +API version: 1.0.11-18369 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 5c9aa691f6..57b5c6d1d3 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-18012 +API version: 1.0.11-18369 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 3d98c948aa..d3d6c34f97 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-18012 +API version: 1.0.11-18369 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 cec91103fb..17611e1a5c 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-18012 +API version: 1.0.11-18369 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 21909eb115..5b4d80004a 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-18012 +API version: 1.0.11-18369 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 18924fbd7b..1baf084442 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-18012 +API version: 1.0.11-18369 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 f097345760..ca8edfa2e2 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-18012 +API version: 1.0.11-18369 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 5e619c1362..bded96eed3 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-18012 +API version: 1.0.11-18369 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 3e63bceace..9a916cc5d7 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-18012 +API version: 1.0.11-18369 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 4d9e76c7dd..df32c4468c 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-18012 +API version: 1.0.11-18369 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 f1a9ad25d9..559a93c940 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-18012 +API version: 1.0.11-18369 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 e4e34431ae..2a5c93bdfc 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-18012 +API version: 1.0.11-18369 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 eb658e216d..c31a3dcd65 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-18012 +API version: 1.0.11-18369 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 2a85220f47..ee385364ea 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-18012 +API version: 1.0.11-18369 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 7ccd6f79d5..554cd8fdc5 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-18012 +API version: 1.0.11-18369 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 8e45933c9b..decc09e398 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-18012 +API version: 1.0.11-18369 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 fd3fe06d6d..1d8d1183ac 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-18012 +API version: 1.0.11-18369 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 2d68fcec91..0b7f6526b9 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-18012 +API version: 1.0.11-18369 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 71b5762f97..47541f75bb 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-18012 +API version: 1.0.11-18369 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 5274abffb0..75c7b16211 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-18012 +API version: 1.0.11-18369 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 cccbec8db0..2efa73e7ed 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-18012 +API version: 1.0.11-18369 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 3abc11f25c..7c9d530328 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-18012 +API version: 1.0.11-18369 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 64d999d33f..f869879c71 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-18012 +API version: 1.0.11-18369 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 cc256d2f93..5bf8c2e817 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-18012 +API version: 1.0.11-18369 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 25d076e7c4..6acdde3e42 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-18012 +API version: 1.0.11-18369 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 52fc531430..34923ee740 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-18012 +API version: 1.0.11-18369 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 582a0a3330..9b282d515d 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-18012 +API version: 1.0.11-18369 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 b469e19ecc..15838062c7 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-18012 +API version: 1.0.11-18369 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 6538f63f6c..0d0e47b106 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-18012 +API version: 1.0.11-18369 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 c80c24200c..16fe01e83f 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-18012 +API version: 1.0.11-18369 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 4684b29abe..7720f45d7a 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-18012 +API version: 1.0.11-18369 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 a18a4a73a5..bc5ee2f68c 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-18012 +API version: 1.0.11-18369 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 5ef866ea59..a99b045bbe 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-18012 +API version: 1.0.11-18369 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 7e36f5088f..efc9e542f2 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-18012 +API version: 1.0.11-18369 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 dc2291c441..f06928ee2e 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-18012 +API version: 1.0.11-18369 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 c5f91eacfc..0d06a850bd 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-18012 +API version: 1.0.11-18369 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 4c34405130..9831a397e4 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-18012 +API version: 1.0.11-18369 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 0e8ed82204..99951ec37c 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-18012 +API version: 1.0.11-18369 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 19994af0fa..8a75b9cf76 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-18012 +API version: 1.0.11-18369 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 a8f58e4721..9a8259dafb 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-18012 +API version: 1.0.11-18369 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 b4140e66ec..7c460e3d66 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-18012 +API version: 1.0.11-18369 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 f30844e81b..1a790dda3d 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-18012 +API version: 1.0.11-18369 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 8225b531d2..6acb25cb42 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-18012 +API version: 1.0.11-18369 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 98a2305dcb..f9620613ec 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-18012 +API version: 1.0.11-18369 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 91bb3cd7ee..8613e24490 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-18012 +API version: 1.0.11-18369 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 d325756ccd..5cbb1e4944 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-18012 +API version: 1.0.11-18369 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 0219cd1c06..875454f2f8 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-18012 +API version: 1.0.11-18369 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 9e495ed1d3..eb40ca9cbe 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-18012 +API version: 1.0.11-18369 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 e39abef4b1..63e65cba61 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-18012 +API version: 1.0.11-18369 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 5e23f8dd3e..03c69e0ea3 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-18012 +API version: 1.0.11-18369 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 87fa49a5f3..ad770c0a03 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-18012 +API version: 1.0.11-18369 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 23d98e4f5e..538ffbd4e1 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-18012 +API version: 1.0.11-18369 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 355168e2c9..0037c6181e 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-18012 +API version: 1.0.11-18369 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 e6edf5dba3..a180e6e4d1 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-18012 +API version: 1.0.11-18369 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 638fd13e73..a17c3ff44d 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-18012 +API version: 1.0.11-18369 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 f29939eb47..0bb5fdd4e4 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-18012 +API version: 1.0.11-18369 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 1d38bccf36..9b603a5c53 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_apic_vision.go b/intersight_gosdk/model_niatelemetry_apic_vision.go index 1cd41280c0..9c05d7cea1 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-18012 +API version: 1.0.11-18369 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 6129a8affd..46a5319daf 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-18012 +API version: 1.0.11-18369 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 6e3aec76cd..cda00230fb 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_app_details.go b/intersight_gosdk/model_niatelemetry_app_details.go index 53382245a0..827897d50d 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-18012 +API version: 1.0.11-18369 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 615480f395..f098a0bd44 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-18012 +API version: 1.0.11-18369 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 222fcb9700..a535bbe512 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_bootflash_details.go b/intersight_gosdk/model_niatelemetry_bootflash_details.go index 9c649e236b..ac5d83d8ac 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_cloud_details.go b/intersight_gosdk/model_niatelemetry_cloud_details.go index ac9122b2c6..c942d7da5f 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-18012 +API version: 1.0.11-18369 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 b94cce2b80..5d3d58e4bd 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-18012 +API version: 1.0.11-18369 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 d742100542..153fc3c1f5 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-18012 +API version: 1.0.11-18369 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 5f8fe5ca4a..bc48bf0d14 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-18012 +API version: 1.0.11-18369 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 875461c2a0..f6126f468d 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_common_policies.go b/intersight_gosdk/model_niatelemetry_common_policies.go index 2438bab28a..58ae3d6ee4 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-18012 +API version: 1.0.11-18369 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 6c585ef733..47de65db74 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-18012 +API version: 1.0.11-18369 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 1b679cb15f..b46134fa33 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-18012 +API version: 1.0.11-18369 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 8bff6e320a..37346aa157 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-18012 +API version: 1.0.11-18369 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 69d9c8944d..3153f5b42a 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-18012 +API version: 1.0.11-18369 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 0983b99b2c..c492dd9b50 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-18012 +API version: 1.0.11-18369 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 ed6562cad2..6ddb5114e4 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-18012 +API version: 1.0.11-18369 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 5c9d81ff57..a4b041d9f0 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-18012 +API version: 1.0.11-18369 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 6ac8be1b63..4d478170a2 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-18012 +API version: 1.0.11-18369 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 3829fa5b33..9da58df4d2 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-18012 +API version: 1.0.11-18369 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 3a5b0c1c92..9ef64f3a3a 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-18012 +API version: 1.0.11-18369 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 09ab3581ff..191fa97600 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-18012 +API version: 1.0.11-18369 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 bab6b26085..8f628d6f29 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-18012 +API version: 1.0.11-18369 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 1e53ca8c11..95f3d565d2 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-18012 +API version: 1.0.11-18369 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 54efa52699..87d38f4488 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-18012 +API version: 1.0.11-18369 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 e9b884deba..d514fb88d5 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-18012 +API version: 1.0.11-18369 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 850e5777d9..378505e1a1 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-18012 +API version: 1.0.11-18369 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 1267e76e03..1f40340f24 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_deployment_status.go b/intersight_gosdk/model_niatelemetry_deployment_status.go index 6724502d02..95571988dc 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-18012 +API version: 1.0.11-18369 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 da8cbc5d2d..4f72d6abad 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_diskinfo.go b/intersight_gosdk/model_niatelemetry_diskinfo.go index ca10ac9fa7..23eb9511c0 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_epg.go b/intersight_gosdk/model_niatelemetry_epg.go index 35e9698e8a..578f6aa703 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_epg_list.go b/intersight_gosdk/model_niatelemetry_epg_list.go index b9bcc5324e..9bb0cee1f1 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_epg_response.go b/intersight_gosdk/model_niatelemetry_epg_response.go index 75b4635ae2..6a01e177e5 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-18012 +API version: 1.0.11-18369 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 7f42bfcbcc..58fbcae95e 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-18012 +API version: 1.0.11-18369 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 d8475e1b9d..bc4610ac4e 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-18012 +API version: 1.0.11-18369 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 48f4ff2d61..5da80eb797 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-18012 +API version: 1.0.11-18369 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 e043c1c483..070ee1f997 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-18012 +API version: 1.0.11-18369 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 53b72b761e..47862e8f4c 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-18012 +API version: 1.0.11-18369 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 292272b4db..488addc1e9 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-18012 +API version: 1.0.11-18369 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 196f6ff35c..2f33f79ccd 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-18012 +API version: 1.0.11-18369 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 123a0c7ff4..e5e95e6bc2 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-18012 +API version: 1.0.11-18369 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 9006fee081..f495cd3d85 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-18012 +API version: 1.0.11-18369 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 34a86f8cf8..e87f36837b 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-18012 +API version: 1.0.11-18369 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 1871301ba2..afb266947e 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-18012 +API version: 1.0.11-18369 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 ece7d6929a..384eb6b041 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-18012 +API version: 1.0.11-18369 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 ddf106f2d6..84d26b022b 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-18012 +API version: 1.0.11-18369 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 f8f134657b..ffffb75664 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-18012 +API version: 1.0.11-18369 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 d397e123ac..0f4e5a2b95 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-18012 +API version: 1.0.11-18369 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 11df0d0593..1e8166ee59 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_fan_details.go b/intersight_gosdk/model_niatelemetry_fan_details.go index 5486b677be..e990fe7c29 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_fault.go b/intersight_gosdk/model_niatelemetry_fault.go index 976b5a210b..89609c1e3f 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_fault_list.go b/intersight_gosdk/model_niatelemetry_fault_list.go index 8926d1586a..7527f18b09 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_fault_response.go b/intersight_gosdk/model_niatelemetry_fault_response.go index df758e8011..37f370cdc0 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_hcloud_details.go b/intersight_gosdk/model_niatelemetry_hcloud_details.go index 071e18c8b7..0f384f8ce2 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-18012 +API version: 1.0.11-18369 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 f70aad5d81..c568fc0106 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-18012 +API version: 1.0.11-18369 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 9936014366..9c1cfbbbf3 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-18012 +API version: 1.0.11-18369 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 55792dbc28..374b2339a5 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-18012 +API version: 1.0.11-18369 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 5996c59e55..83fe37dce5 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-18012 +API version: 1.0.11-18369 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 78b618ff18..84f863a2e7 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-18012 +API version: 1.0.11-18369 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 3b16ac11d8..8235c353da 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-18012 +API version: 1.0.11-18369 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 9dadb623b0..0c099b4169 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-18012 +API version: 1.0.11-18369 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 7d1070a567..a99973049c 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-18012 +API version: 1.0.11-18369 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 9d0ed504a1..13434acea6 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-18012 +API version: 1.0.11-18369 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 0f21dd843a..650d8b9470 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-18012 +API version: 1.0.11-18369 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 481a806b03..3c350e3e26 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-18012 +API version: 1.0.11-18369 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 b84a3839eb..76452deb5e 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-18012 +API version: 1.0.11-18369 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 284564a3db..28c1bf8f0c 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-18012 +API version: 1.0.11-18369 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 8069bd6397..70fb5f507d 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-18012 +API version: 1.0.11-18369 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 d7b44e7745..a473ff90f6 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-18012 +API version: 1.0.11-18369 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 5031b0220c..bb5519bf59 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-18012 +API version: 1.0.11-18369 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 b352739067..492b6e7897 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-18012 +API version: 1.0.11-18369 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 67227e7115..edebe2bdbc 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-18012 +API version: 1.0.11-18369 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 1aad9e353a..a7ddbac8a0 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-18012 +API version: 1.0.11-18369 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 5072f38a53..a9a8d936d2 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_image_detail.go b/intersight_gosdk/model_niatelemetry_image_detail.go index 773363d485..38a8552c65 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-18012 +API version: 1.0.11-18369 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 496a303bdf..cbb01a1ac0 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-18012 +API version: 1.0.11-18369 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 e2e0cc530e..632f20aef2 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-18012 +API version: 1.0.11-18369 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 377335656b..1fe4a271c5 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_interface.go b/intersight_gosdk/model_niatelemetry_interface.go index 402c05b5af..da95d500c4 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_interface_element.go b/intersight_gosdk/model_niatelemetry_interface_element.go index 6c805aa5aa..692de04e17 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_job_detail.go b/intersight_gosdk/model_niatelemetry_job_detail.go index 12b55a9d2c..6cf90ad3c1 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_lc.go b/intersight_gosdk/model_niatelemetry_lc.go index 1db091125d..5e571f8edd 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_lc_list.go b/intersight_gosdk/model_niatelemetry_lc_list.go index 9572686986..0b0ced52d4 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_lc_response.go b/intersight_gosdk/model_niatelemetry_lc_response.go index 4666ac647c..65313623cd 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-18012 +API version: 1.0.11-18369 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 bc35651346..1e45bf90ab 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-18012 +API version: 1.0.11-18369 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 093a0629e8..f78c4e7516 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-18012 +API version: 1.0.11-18369 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 f18e8e843a..6872cfee68 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_logical_link.go b/intersight_gosdk/model_niatelemetry_logical_link.go index 663393e83d..46f764f2e6 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-18012 +API version: 1.0.11-18369 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 d0060ab670..ba1de28008 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_mds_neighbors.go b/intersight_gosdk/model_niatelemetry_mds_neighbors.go index 841d753720..96855f8da1 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-18012 +API version: 1.0.11-18369 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 93ab5ab884..d2ac608a79 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-18012 +API version: 1.0.11-18369 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 1681282290..ff90f55cb6 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-18012 +API version: 1.0.11-18369 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 0cb6850a7e..87f7efea66 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-18012 +API version: 1.0.11-18369 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 1cb968b809..ca5fcd88f0 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-18012 +API version: 1.0.11-18369 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 d01525a898..41ee9de6a9 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-18012 +API version: 1.0.11-18369 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 aa35cda3fb..e1c6e5a21c 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-18012 +API version: 1.0.11-18369 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 4568e0d3f7..37eea18024 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-18012 +API version: 1.0.11-18369 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 ff3ce044d0..2b9b0153f3 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-18012 +API version: 1.0.11-18369 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 ed28f89e23..4907806020 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-18012 +API version: 1.0.11-18369 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 66d8110f8d..73636c0904 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-18012 +API version: 1.0.11-18369 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 b83364490c..6b4fdbba1b 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-18012 +API version: 1.0.11-18369 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 15975a1f75..062567c9e4 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-18012 +API version: 1.0.11-18369 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 45ab49cad2..bd3f3acb0d 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-18012 +API version: 1.0.11-18369 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 914acd1ed6..d3a443ec8b 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-18012 +API version: 1.0.11-18369 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 d224d8add0..412b42d72c 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-18012 +API version: 1.0.11-18369 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 b14aac2a03..82f59ae053 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-18012 +API version: 1.0.11-18369 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 10882c2ea7..8f014e735c 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_network_info.go b/intersight_gosdk/model_niatelemetry_network_info.go index 6871806964..bdbbcb0322 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-18012 +API version: 1.0.11-18369 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 2d5f55db15..d933075970 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-18012 +API version: 1.0.11-18369 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 83774a5a7b..a867cbb2ea 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-18012 +API version: 1.0.11-18369 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 3adad6b428..29eb53ade7 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-18012 +API version: 1.0.11-18369 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 afdbca2556..7a805e8985 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-18012 +API version: 1.0.11-18369 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 d01dacab6d..0d643546bf 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-18012 +API version: 1.0.11-18369 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 e9ae3065df..1b4cefa690 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-18012 +API version: 1.0.11-18369 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 8e9369b6ce..9d195c7461 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-18012 +API version: 1.0.11-18369 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 4e330a8b0e..e2f73722f6 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-18012 +API version: 1.0.11-18369 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 074a9f55d4..6d8864a0bd 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-18012 +API version: 1.0.11-18369 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 dbe50112a8..d2f1e01632 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-18012 +API version: 1.0.11-18369 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 017063ae2f..0c620d7b9b 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-18012 +API version: 1.0.11-18369 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 0ea2f6f223..20af95c911 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-18012 +API version: 1.0.11-18369 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 d5abb39288..96d2acde3b 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-18012 +API version: 1.0.11-18369 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 33e805e9c8..fafe446a2e 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-18012 +API version: 1.0.11-18369 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 ccc95755cb..bdfe036246 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-18012 +API version: 1.0.11-18369 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 23e93856b8..db56c2ed82 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_nexus_dashboards.go b/intersight_gosdk/model_niatelemetry_nexus_dashboards.go index ea83b81fc6..92730304e4 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-18012 +API version: 1.0.11-18369 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 00a4068222..8218291449 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-18012 +API version: 1.0.11-18369 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 fc5662008c..6d859532ef 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-18012 +API version: 1.0.11-18369 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 2003e4a616..936d8bbad3 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-18012 +API version: 1.0.11-18369 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 6f98122d08..a632e1c2e3 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-18012 +API version: 1.0.11-18369 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 a9052a38a6..a50ad79bd4 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-18012 +API version: 1.0.11-18369 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 73bd678ccb..993d1b034b 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_nia_inventory.go b/intersight_gosdk/model_niatelemetry_nia_inventory.go index f638c512ef..e10e95a9f6 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-18012 +API version: 1.0.11-18369 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 0ffe50eb51..33f5f879cd 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-18012 +API version: 1.0.11-18369 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 becb83b625..8d51f02cc2 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-18012 +API version: 1.0.11-18369 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 d24f9a4988..84c84efcf3 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-18012 +API version: 1.0.11-18369 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 131be73a1b..8e8b879a2a 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-18012 +API version: 1.0.11-18369 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 3a4a32c842..789626102d 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-18012 +API version: 1.0.11-18369 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 d11e39eac1..a6e162701d 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-18012 +API version: 1.0.11-18369 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 0bba7ce9f3..d9c2c5fe9a 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-18012 +API version: 1.0.11-18369 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 9ca451ae7e..c103c4c47f 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-18012 +API version: 1.0.11-18369 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 8e1eada197..6e7df47b5b 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-18012 +API version: 1.0.11-18369 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 24c99f1141..db6a2d67dd 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-18012 +API version: 1.0.11-18369 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 7b7492408a..540c0c26c8 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-18012 +API version: 1.0.11-18369 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 0895238be6..d3f1152e96 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-18012 +API version: 1.0.11-18369 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 b10c1fd909..6b5803ca62 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_nicc.go b/intersight_gosdk/model_niatelemetry_nicc.go index 532c3bca7b..5ba95795a8 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_nicc_list.go b/intersight_gosdk/model_niatelemetry_nicc_list.go index 87a6188d8e..a6d7a1d3f3 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_nicc_response.go b/intersight_gosdk/model_niatelemetry_nicc_response.go index bbf97a2132..661c9b2a00 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_node.go b/intersight_gosdk/model_niatelemetry_node.go index d25ed19844..7ad236a6e2 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-18012 +API version: 1.0.11-18369 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 4970929457..a7a598850b 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_nve_vni.go b/intersight_gosdk/model_niatelemetry_nve_vni.go index d055c97bec..ed7c0dc930 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-18012 +API version: 1.0.11-18369 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 f749d245ae..f40da44d1e 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-18012 +API version: 1.0.11-18369 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 ef93deca56..66dde64ed3 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_nxos_vtp.go b/intersight_gosdk/model_niatelemetry_nxos_vtp.go index dba1913654..a95714ec04 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-18012 +API version: 1.0.11-18369 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 ca242eef5c..6e8954544b 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-18012 +API version: 1.0.11-18369 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 c6542aa64e..8fe5576d62 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-18012 +API version: 1.0.11-18369 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 361fd23a67..78cef176f3 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-18012 +API version: 1.0.11-18369 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 bdb62461fb..67335aed37 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-18012 +API version: 1.0.11-18369 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 68911cc7df..9982eda856 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-18012 +API version: 1.0.11-18369 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 8577bfdcad..4ab7939f74 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-18012 +API version: 1.0.11-18369 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 be8d536299..1d1761522d 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-18012 +API version: 1.0.11-18369 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 35a89a0c7c..35c41f2940 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-18012 +API version: 1.0.11-18369 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 f825059b8b..31df557cf7 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-18012 +API version: 1.0.11-18369 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 fefeb08ec4..32540213f7 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-18012 +API version: 1.0.11-18369 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 ef613a47d6..abfaf9ff78 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-18012 +API version: 1.0.11-18369 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 dec4149390..642eb07557 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-18012 +API version: 1.0.11-18369 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 2b301969fb..d9707eeca7 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-18012 +API version: 1.0.11-18369 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 9807b0fb97..41766e96f1 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-18012 +API version: 1.0.11-18369 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 1441f0c8b3..381cdc8f58 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-18012 +API version: 1.0.11-18369 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 5ee6cf55e2..b5cbcc9eea 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_site_inventory.go b/intersight_gosdk/model_niatelemetry_site_inventory.go index e761080e2c..09bc606b3c 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-18012 +API version: 1.0.11-18369 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 8a4ad6561c..033c8141b0 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-18012 +API version: 1.0.11-18369 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 aed9c083d5..c36a0e2711 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_sites.go b/intersight_gosdk/model_niatelemetry_sites.go index 7592708e82..e05fdcbade 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_smart_license.go b/intersight_gosdk/model_niatelemetry_smart_license.go index 4a15af829e..a093daddf9 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_snmp_src.go b/intersight_gosdk/model_niatelemetry_snmp_src.go index f818e7f850..4054aaa60c 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-18012 +API version: 1.0.11-18369 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 364185a8ed..3fac384850 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-18012 +API version: 1.0.11-18369 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 3ba183a43c..a68ba06ed3 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-18012 +API version: 1.0.11-18369 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 8a51f80d1f..f9401caaa0 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-18012 +API version: 1.0.11-18369 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 5aebdfffad..1d2cf2f201 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-18012 +API version: 1.0.11-18369 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 9a83788291..3d3ed5eba7 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-18012 +API version: 1.0.11-18369 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 2b381af2dc..7ef15f4486 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-18012 +API version: 1.0.11-18369 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 daceffab00..72dbf87cd7 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-18012 +API version: 1.0.11-18369 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 c4f6c5e7d4..c307be9689 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-18012 +API version: 1.0.11-18369 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 0bfe90c601..01f8d7f6aa 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-18012 +API version: 1.0.11-18369 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 0d6fde69d8..8da1842e3d 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-18012 +API version: 1.0.11-18369 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 8df1f90318..cf876e80d6 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-18012 +API version: 1.0.11-18369 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 2970e5a04c..123f0fdea7 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-18012 +API version: 1.0.11-18369 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 6a82007e3f..83791005ee 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-18012 +API version: 1.0.11-18369 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 8214488ede..d0de9528f4 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-18012 +API version: 1.0.11-18369 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 f1a541f5f4..eb9f5b442f 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-18012 +API version: 1.0.11-18369 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 450cd0f579..8ff501310e 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-18012 +API version: 1.0.11-18369 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 c8a155df19..c4953863d7 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-18012 +API version: 1.0.11-18369 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 54df689c8c..1bb19812d0 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-18012 +API version: 1.0.11-18369 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 804cd71dc1..230d93e902 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-18012 +API version: 1.0.11-18369 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 6ccd97c773..0b6df062a5 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-18012 +API version: 1.0.11-18369 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 878c646812..0e67649008 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-18012 +API version: 1.0.11-18369 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 41a9f5e999..151eb93b4c 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-18012 +API version: 1.0.11-18369 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 071ab289da..98038ad7f1 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-18012 +API version: 1.0.11-18369 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 6d9a814822..f4581e93eb 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_tenant.go b/intersight_gosdk/model_niatelemetry_tenant.go index c1246dd6ec..4465f47475 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_tenant_list.go b/intersight_gosdk/model_niatelemetry_tenant_list.go index 91139653b5..3a563536c1 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_tenant_response.go b/intersight_gosdk/model_niatelemetry_tenant_response.go index 3501e0aa64..554fae5b34 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_vni_status.go b/intersight_gosdk/model_niatelemetry_vni_status.go index 44d9833aca..6bf0de65a9 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_niatelemetry_vpc_details.go b/intersight_gosdk/model_niatelemetry_vpc_details.go index 01643a3683..1be73932ce 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_notification_abstract_condition.go b/intersight_gosdk/model_notification_abstract_condition.go index 55039a3a09..51923e5ddd 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-18012 +API version: 1.0.11-18369 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 d3720255e4..0717c002c5 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_notification_account_subscription.go b/intersight_gosdk/model_notification_account_subscription.go index 2956b5e5e2..405a8a10f7 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_notification_account_subscription_list.go b/intersight_gosdk/model_notification_account_subscription_list.go index 56fe1bd990..78ae656bce 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-18012 +API version: 1.0.11-18369 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 5b860405b8..8ae57460ee 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_notification_action.go b/intersight_gosdk/model_notification_action.go index af56c9350d..731277817e 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_notification_aggregation_settings.go b/intersight_gosdk/model_notification_aggregation_settings.go index f20fe82bfb..dacc3c21ff 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-18012 +API version: 1.0.11-18369 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 92a65540a2..2f47256340 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-18012 +API version: 1.0.11-18369 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 6c040d1679..8516132779 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_notification_mo_condition.go b/intersight_gosdk/model_notification_mo_condition.go index 36ed7a788b..bc247a81e7 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_notification_send_email.go b/intersight_gosdk/model_notification_send_email.go index 85e7ee0f62..86412277e3 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-18012 +API version: 1.0.11-18369 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 814735a767..4c0d17bcdf 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_notification_subscription.go b/intersight_gosdk/model_notification_subscription.go index 51c8b5cc1b..93fa307207 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_notification_trigger_webhook.go b/intersight_gosdk/model_notification_trigger_webhook.go index 21c2fbd43e..a271d492a0 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_ntp_auth_ntp_server.go b/intersight_gosdk/model_ntp_auth_ntp_server.go index 1cb0e65c10..c563b21434 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_ntp_ntp_server.go b/intersight_gosdk/model_ntp_ntp_server.go index c3e9f7c2d0..ac107ac1d1 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-18012 +API version: 1.0.11-18369 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 f8c3070615..5240796598 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-18012 +API version: 1.0.11-18369 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 5f4739f5b8..80dc4c7849 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-18012 +API version: 1.0.11-18369 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 69a5576cc6..f9787f9376 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_ntp_policy.go b/intersight_gosdk/model_ntp_policy.go index 8f16dd99a0..2bd1bc997f 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_ntp_policy_list.go b/intersight_gosdk/model_ntp_policy_list.go index e740088d9c..c32f45be22 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_ntp_policy_response.go b/intersight_gosdk/model_ntp_policy_response.go index 05da67180e..e8ee681bcf 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_oauth_access_token.go b/intersight_gosdk/model_oauth_access_token.go index 0688b6a974..40f884187f 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-18012 +API version: 1.0.11-18369 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 16b27a781c..93c2d3cbce 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-18012 +API version: 1.0.11-18369 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 bae9331120..d33d60dc0f 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-18012 +API version: 1.0.11-18369 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 5463c88280..0bc17050a5 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_oauth_authorization.go b/intersight_gosdk/model_oauth_authorization.go index 6425295be7..70832b5eb8 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_oauth_authorization_list.go b/intersight_gosdk/model_oauth_authorization_list.go index f6c25bcc82..dca63739dd 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_oauth_authorization_response.go b/intersight_gosdk/model_oauth_authorization_response.go index 2d9bd62ca1..6ba31f2b7b 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_onprem_cluster_info.go b/intersight_gosdk/model_onprem_cluster_info.go index b5ce88a204..191413302a 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_onprem_cluster_node.go b/intersight_gosdk/model_onprem_cluster_node.go index 17ed7857f2..a47cff8a34 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_onprem_image_package.go b/intersight_gosdk/model_onprem_image_package.go index df8161d6f9..fa29817a85 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_onprem_resource_info.go b/intersight_gosdk/model_onprem_resource_info.go index cfaff8d0e0..453a7347fd 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_onprem_schedule.go b/intersight_gosdk/model_onprem_schedule.go index b216ccd8a1..ab1373f1b5 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_onprem_upgrade_note.go b/intersight_gosdk/model_onprem_upgrade_note.go index 5dbc8c0557..2b4f22b58d 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_onprem_upgrade_phase.go b/intersight_gosdk/model_onprem_upgrade_phase.go index 88959df984..92957c3c89 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_openapi_api_info.go b/intersight_gosdk/model_openapi_api_info.go index 80c43ae70f..b8d7b65356 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-18012 +API version: 1.0.11-18369 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 ea26657e3b..1c353364d8 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-18012 +API version: 1.0.11-18369 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 c268c53bec..5198be1be8 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-18012 +API version: 1.0.11-18369 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 c7395060df..d21b0d9707 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_openapi_failed_task.go b/intersight_gosdk/model_openapi_failed_task.go index b9d8adefd8..a398d68c55 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-18012 +API version: 1.0.11-18369 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 f36f9a3cde..d7ef05f41c 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-18012 +API version: 1.0.11-18369 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 27d427a4c1..3508952085 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-18012 +API version: 1.0.11-18369 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 9f879bf30e..ca5f8e8cc5 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-18012 +API version: 1.0.11-18369 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 9602d88290..5e2e85444b 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-18012 +API version: 1.0.11-18369 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 c44ca1de65..cdf496c26f 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_openapi_process_file.go b/intersight_gosdk/model_openapi_process_file.go index 205847da29..45022a269e 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-18012 +API version: 1.0.11-18369 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 d4b1acd2a1..0d2a8d291e 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-18012 +API version: 1.0.11-18369 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 5fde5c3854..f376ca2863 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-18012 +API version: 1.0.11-18369 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 1930afbc29..3a358267e6 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-18012 +API version: 1.0.11-18369 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 686c9fc9b6..c9a298ae0b 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-18012 +API version: 1.0.11-18369 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 b9950ef9b2..513ed61222 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-18012 +API version: 1.0.11-18369 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 bbc389392f..a41a9869b0 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-18012 +API version: 1.0.11-18369 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 fbb82153c1..6ee3084ce9 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-18012 +API version: 1.0.11-18369 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 d3e52fb656..5d1596a60f 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-18012 +API version: 1.0.11-18369 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 f02e91d7e5..593e5a270f 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-18012 +API version: 1.0.11-18369 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 53a39a578d..f7a0c40f07 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_oprs_deployment.go b/intersight_gosdk/model_oprs_deployment.go index 881f9c75c4..8c0bb3396f 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_oprs_deployment_list.go b/intersight_gosdk/model_oprs_deployment_list.go index ed5fb1ce19..9dccb97e60 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_oprs_deployment_response.go b/intersight_gosdk/model_oprs_deployment_response.go index 6525ae3777..d5fc0b2353 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_oprs_kvpair.go b/intersight_gosdk/model_oprs_kvpair.go index 4d917a1a62..edc7d186db 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-18012 +API version: 1.0.11-18369 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 4fe636845f..3ac923073a 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-18012 +API version: 1.0.11-18369 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 2399d132d7..d63336c1c8 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-18012 +API version: 1.0.11-18369 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 6619f7ea99..714a695a15 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_organization_organization.go b/intersight_gosdk/model_organization_organization.go index 519821028f..ab7f5c4a27 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_organization_organization_list.go b/intersight_gosdk/model_organization_organization_list.go index ae8601d2fa..2707cabcad 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_organization_organization_relationship.go b/intersight_gosdk/model_organization_organization_relationship.go index c0188dad84..cae03929ce 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_organization_organization_response.go b/intersight_gosdk/model_organization_organization_response.go index f2ed6114d6..dcc6ca11ac 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_os_answers.go b/intersight_gosdk/model_os_answers.go index 96004a95d2..15794b3507 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-18012 +API version: 1.0.11-18369 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 4a55e7944c..358a41db41 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-18012 +API version: 1.0.11-18369 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 145c2788f0..4027aa0012 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-18012 +API version: 1.0.11-18369 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 b2135fdcbd..55fd5880df 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-18012 +API version: 1.0.11-18369 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 e3d2b0ff6a..bb99c76898 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_os_catalog.go b/intersight_gosdk/model_os_catalog.go index 7fb36e19a0..778bf4cf0b 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_os_catalog_list.go b/intersight_gosdk/model_os_catalog_list.go index 3abdb246fe..c087d44a3c 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_os_catalog_relationship.go b/intersight_gosdk/model_os_catalog_relationship.go index 9306d2cdd3..7c2d76e55d 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_os_catalog_response.go b/intersight_gosdk/model_os_catalog_response.go index bc8875d558..bd68a47943 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_os_configuration_file.go b/intersight_gosdk/model_os_configuration_file.go index 6298673573..fbae071aa2 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_os_configuration_file_list.go b/intersight_gosdk/model_os_configuration_file_list.go index f64131d0e9..0210946586 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-18012 +API version: 1.0.11-18369 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 55c08b37bf..4df9118ac6 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-18012 +API version: 1.0.11-18369 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 d47c55c365..5ad9e7cbcd 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_os_distribution.go b/intersight_gosdk/model_os_distribution.go index 80365fd13d..0b2c67fcb7 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_os_distribution_list.go b/intersight_gosdk/model_os_distribution_list.go index d366219b88..9665ef6092 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_os_distribution_relationship.go b/intersight_gosdk/model_os_distribution_relationship.go index 7c0b8d9c88..1844d73cac 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_os_distribution_response.go b/intersight_gosdk/model_os_distribution_response.go index 6c179ea7e6..c20b0d5b8d 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-18012 +API version: 1.0.11-18369 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 999fec5a10..c8ac1a55b9 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_os_global_config.go b/intersight_gosdk/model_os_global_config.go index 91a1e7c20b..d5699ea1e5 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_os_install.go b/intersight_gosdk/model_os_install.go index 958915b494..accfd15fd2 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_os_install_list.go b/intersight_gosdk/model_os_install_list.go index 90e7a8a7ee..449c17abac 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_os_install_response.go b/intersight_gosdk/model_os_install_response.go index 0e63ae399d..849aacd8ab 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_os_install_target.go b/intersight_gosdk/model_os_install_target.go index a26369c9cb..6751da8ec0 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-18012 +API version: 1.0.11-18369 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 7d47d214c4..d0c18c84dd 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_os_ip_configuration.go b/intersight_gosdk/model_os_ip_configuration.go index c78ad0027e..3d87c2f72b 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_os_ipv4_configuration.go b/intersight_gosdk/model_os_ipv4_configuration.go index 946aed4675..cce9a3acdd 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_os_ipv6_configuration.go b/intersight_gosdk/model_os_ipv6_configuration.go index f1abea5747..5cdbf38e82 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_os_iscsi_target.go b/intersight_gosdk/model_os_iscsi_target.go index 1585a30484..cd6bbfedb9 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_os_operating_system_parameters.go b/intersight_gosdk/model_os_operating_system_parameters.go index fd31bbdb16..044fee98cb 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_os_os_support.go b/intersight_gosdk/model_os_os_support.go index 43d4494d07..c7a3a3a813 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_os_physical_disk.go b/intersight_gosdk/model_os_physical_disk.go index c00330b989..b6e59aa02c 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-18012 +API version: 1.0.11-18369 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 b9b7e74317..44fa3f30f2 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_os_place_holder.go b/intersight_gosdk/model_os_place_holder.go index aaa12a0d6c..b0501635f4 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_os_san_target.go b/intersight_gosdk/model_os_san_target.go index d68faa6229..6ddd0b1d36 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_os_server_config.go b/intersight_gosdk/model_os_server_config.go index afb1b062a5..fdc5192c34 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_os_supported_version.go b/intersight_gosdk/model_os_supported_version.go index 4af76fb1e6..9570fadf41 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-18012 +API version: 1.0.11-18369 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 a5046121f6..9f32467d4a 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-18012 +API version: 1.0.11-18369 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 9fdf091671..b2c7d0d7fc 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_os_template_file.go b/intersight_gosdk/model_os_template_file.go index 76c3fb9b84..6ebf1aba9f 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-18012 +API version: 1.0.11-18369 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 eb94b31659..28eae373e0 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_os_validation_information.go b/intersight_gosdk/model_os_validation_information.go index 370b07270f..1a71f679b5 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_os_virtual_drive.go b/intersight_gosdk/model_os_virtual_drive.go index 912f6a818a..9cc25d1666 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-18012 +API version: 1.0.11-18369 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 f697754d75..4e4a5a7979 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_os_vmware_parameters.go b/intersight_gosdk/model_os_vmware_parameters.go index 4a0a9ee7ab..d28ef58a10 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_os_windows_parameters.go b/intersight_gosdk/model_os_windows_parameters.go index 2de483c8c4..38cc5705cb 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_partnerintegration_dc_logs.go b/intersight_gosdk/model_partnerintegration_dc_logs.go index b551ef8d3e..f362ed361d 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-18012 +API version: 1.0.11-18369 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 dc143c1cc4..4e9f401f85 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-18012 +API version: 1.0.11-18369 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 24ce377433..da2ebedc28 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-18012 +API version: 1.0.11-18369 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 784c8bd638..03458368b0 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_partnerintegration_device_connector.go b/intersight_gosdk/model_partnerintegration_device_connector.go index 1cb25ee0ef..ea96ec91fb 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_partnerintegration_device_connector_list.go b/intersight_gosdk/model_partnerintegration_device_connector_list.go index 15ec8a43a8..ce3c443701 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-18012 +API version: 1.0.11-18369 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 fb81db7faf..47bc1d5a9a 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-18012 +API version: 1.0.11-18369 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 68bb5066c4..3f2e954a23 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_partnerintegration_doc_issues.go b/intersight_gosdk/model_partnerintegration_doc_issues.go index b814ce007e..780dcdcae3 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-18012 +API version: 1.0.11-18369 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 812799b021..b10c3cf74e 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-18012 +API version: 1.0.11-18369 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 65477ec385..c72787a101 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-18012 +API version: 1.0.11-18369 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 53587764a5..e49ba05c38 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_partnerintegration_etl.go b/intersight_gosdk/model_partnerintegration_etl.go index acefe8274c..458c8a7513 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_partnerintegration_etl_list.go b/intersight_gosdk/model_partnerintegration_etl_list.go index c7ac089676..3cbed5a541 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_partnerintegration_etl_relationship.go b/intersight_gosdk/model_partnerintegration_etl_relationship.go index 9f0348b4c9..df7bda702b 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_partnerintegration_etl_response.go b/intersight_gosdk/model_partnerintegration_etl_response.go index f6babfd9d7..9bd2c6367c 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_partnerintegration_file.go b/intersight_gosdk/model_partnerintegration_file.go index 83b978bef4..30fbae7ddb 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_partnerintegration_file_list.go b/intersight_gosdk/model_partnerintegration_file_list.go index 139241543b..53ec4566cc 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_partnerintegration_file_response.go b/intersight_gosdk/model_partnerintegration_file_response.go index 2e78e4fd67..cdeeb9414a 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_partnerintegration_inventory.go b/intersight_gosdk/model_partnerintegration_inventory.go index 9da254fe58..fda9e2224c 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_partnerintegration_inventory_list.go b/intersight_gosdk/model_partnerintegration_inventory_list.go index 8889fe798e..e3ddbdc76a 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_partnerintegration_inventory_relationship.go b/intersight_gosdk/model_partnerintegration_inventory_relationship.go index dee3883edd..07b07da120 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_partnerintegration_inventory_response.go b/intersight_gosdk/model_partnerintegration_inventory_response.go index 4d47f05da3..d9fed646a6 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_partnerintegration_logs.go b/intersight_gosdk/model_partnerintegration_logs.go index d3711519be..53053bdc99 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_partnerintegration_logs_list.go b/intersight_gosdk/model_partnerintegration_logs_list.go index 0f14c17a70..25b15e6679 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_partnerintegration_logs_relationship.go b/intersight_gosdk/model_partnerintegration_logs_relationship.go index 97f1e181f7..c2f88729d4 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_partnerintegration_logs_response.go b/intersight_gosdk/model_partnerintegration_logs_response.go index 2730ddf764..79efa916fc 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_partnerintegration_metrics.go b/intersight_gosdk/model_partnerintegration_metrics.go index 1d5d724378..447799de92 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_partnerintegration_metrics_list.go b/intersight_gosdk/model_partnerintegration_metrics_list.go index 32e203dacf..fade091879 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_partnerintegration_metrics_model.go b/intersight_gosdk/model_partnerintegration_metrics_model.go index abf19153c3..b6b755cf91 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_partnerintegration_metrics_relationship.go b/intersight_gosdk/model_partnerintegration_metrics_relationship.go index cb6831de49..22988e9961 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_partnerintegration_metrics_response.go b/intersight_gosdk/model_partnerintegration_metrics_response.go index 3e4ebe62a4..c01dad17cb 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_partnerintegration_model.go b/intersight_gosdk/model_partnerintegration_model.go index c13b3c9487..39b7ba8a05 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_partnerintegration_model_list.go b/intersight_gosdk/model_partnerintegration_model_list.go index c201b0ceab..0b67128b5b 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_partnerintegration_model_relationship.go b/intersight_gosdk/model_partnerintegration_model_relationship.go index 443ce252ba..820f0a0a37 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_partnerintegration_model_response.go b/intersight_gosdk/model_partnerintegration_model_response.go index d400f79b5d..8fac5a7fa5 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_patch_document.go b/intersight_gosdk/model_patch_document.go index c1624bfc52..b59cdaabd9 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_pci_coprocessor_card.go b/intersight_gosdk/model_pci_coprocessor_card.go index 320e34583b..ad4d7945a0 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-18012 +API version: 1.0.11-18369 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 c8d98e2895..895187d38d 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-18012 +API version: 1.0.11-18369 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 e8189dabc1..e30779e84a 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-18012 +API version: 1.0.11-18369 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 273e51a4df..6f52ab580a 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_pci_device.go b/intersight_gosdk/model_pci_device.go index 1240f93470..695ff5d8a4 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_pci_device_list.go b/intersight_gosdk/model_pci_device_list.go index 9d798bbf98..b22843bf98 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_pci_device_relationship.go b/intersight_gosdk/model_pci_device_relationship.go index 24450916c3..7836f6d0d2 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_pci_device_response.go b/intersight_gosdk/model_pci_device_response.go index af958314ce..b01ed78de4 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_pci_link.go b/intersight_gosdk/model_pci_link.go index 04072893b0..07f69b39d3 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_pci_link_list.go b/intersight_gosdk/model_pci_link_list.go index 0452a22520..41f0bc0561 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_pci_link_relationship.go b/intersight_gosdk/model_pci_link_relationship.go index 4ae4d14ea2..91ded35a7a 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_pci_link_response.go b/intersight_gosdk/model_pci_link_response.go index 6d1c641636..5024a3f433 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_pci_node.go b/intersight_gosdk/model_pci_node.go index cbaa8dbc9b..94f42e4401 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_pci_node_list.go b/intersight_gosdk/model_pci_node_list.go index 8459908692..04773d927f 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_pci_node_relationship.go b/intersight_gosdk/model_pci_node_relationship.go index 1df9d9044a..f16e47cd92 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_pci_node_response.go b/intersight_gosdk/model_pci_node_response.go index 1ea6dcaf7f..a4923510d0 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_pci_switch.go b/intersight_gosdk/model_pci_switch.go index 8174588aac..857e2cec98 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_pci_switch_list.go b/intersight_gosdk/model_pci_switch_list.go index 5854a15323..c061f713bc 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_pci_switch_relationship.go b/intersight_gosdk/model_pci_switch_relationship.go index d7a2b46717..230e350984 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_pci_switch_response.go b/intersight_gosdk/model_pci_switch_response.go index 0547c19c06..f83b68b624 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_pkix_distinguished_name.go b/intersight_gosdk/model_pkix_distinguished_name.go index 4561c99bb9..4c8a66af2f 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-18012 +API version: 1.0.11-18369 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 f1b0c17a3b..4ae3fd9921 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-18012 +API version: 1.0.11-18369 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 2de4782294..94a06cca70 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-18012 +API version: 1.0.11-18369 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 6c31747838..e706d6c6c2 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_pkix_rsa_algorithm.go b/intersight_gosdk/model_pkix_rsa_algorithm.go index 9caa7e76f1..926e2232aa 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-18012 +API version: 1.0.11-18369 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 d5988a5d7c..b7f9e49c91 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-18012 +API version: 1.0.11-18369 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 e772ffcba5..72589f6bb5 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-18012 +API version: 1.0.11-18369 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 75b45e25a3..3bb8838b72 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-18012 +API version: 1.0.11-18369 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 6d938ebc2a..bf6b93bbce 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-18012 +API version: 1.0.11-18369 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 594e3bf57c..719cb697aa 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-18012 +API version: 1.0.11-18369 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 af9740f073..872af4f13a 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-18012 +API version: 1.0.11-18369 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 0568ccd161..d9464f2b24 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_policy_abstract_disruption.go b/intersight_gosdk/model_policy_abstract_disruption.go index 07e20a9199..2e96c831d4 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_policy_abstract_inventory.go b/intersight_gosdk/model_policy_abstract_inventory.go index 5f00528319..2b22751bc7 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_policy_abstract_policy.go b/intersight_gosdk/model_policy_abstract_policy.go index 056b8fa6ef..e72d54f80b 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_policy_abstract_policy_inventory.go b/intersight_gosdk/model_policy_abstract_policy_inventory.go index e9b4cf40af..1c4272bc1e 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_policy_abstract_policy_item.go b/intersight_gosdk/model_policy_abstract_policy_item.go index 16aada62d2..f95937be48 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-18012 +API version: 1.0.11-18369 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 654ffa1d8a..9c57b1b18e 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_policy_abstract_profile.go b/intersight_gosdk/model_policy_abstract_profile.go index ae56e65517..55a372e738 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_policy_abstract_profile_relationship.go b/intersight_gosdk/model_policy_abstract_profile_relationship.go index 02bb09d879..681f785ae8 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_policy_action_param.go b/intersight_gosdk/model_policy_action_param.go index 4b0722a50d..5a3178fa6c 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_policy_action_qualifier.go b/intersight_gosdk/model_policy_action_qualifier.go index ff9d0faf98..ec4f772e92 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_policy_config_change.go b/intersight_gosdk/model_policy_config_change.go index 06d0f0a192..6ce0baf55e 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-18012 +API version: 1.0.11-18369 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 483312b9ac..2543468edc 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-18012 +API version: 1.0.11-18369 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 16c081bb8b..87981a5656 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_policy_config_context.go b/intersight_gosdk/model_policy_config_context.go index b9e66ac0de..f9be8fee1d 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-18012 +API version: 1.0.11-18369 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 df755e362e..98141510df 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_policy_policy_error.go b/intersight_gosdk/model_policy_policy_error.go index ec6863b85a..7eafd19c2f 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_policy_policy_status.go b/intersight_gosdk/model_policy_policy_status.go index 6e29ad20ca..07fe18ef1a 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_policy_qualifier.go b/intersight_gosdk/model_policy_qualifier.go index db2b610299..cbf015ccfc 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_policy_scheduled_action.go b/intersight_gosdk/model_policy_scheduled_action.go index 12198e912f..c52161b442 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-18012 +API version: 1.0.11-18369 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 2c063ddfd7..350f5440ca 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_policyinventory_job_info.go b/intersight_gosdk/model_policyinventory_job_info.go index 8e8482831d..47b398e8e7 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_pool_abstract_block.go b/intersight_gosdk/model_pool_abstract_block.go index 71788dd8ea..5e332770d3 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-18012 +API version: 1.0.11-18369 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 c76f266ecf..6b7a6badb5 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-18012 +API version: 1.0.11-18369 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 4f8f8a402f..e53cc6c53e 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-18012 +API version: 1.0.11-18369 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 ff8ba8ae12..60bc153f73 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_pool_abstract_lease.go b/intersight_gosdk/model_pool_abstract_lease.go index adbc04f238..24e84d84cd 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_pool_abstract_pool.go b/intersight_gosdk/model_pool_abstract_pool.go index 6c31f3f2ab..f7fa480f09 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-18012 +API version: 1.0.11-18369 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 ef3dfd4b3d..aa631783ed 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_pool_reservation.go b/intersight_gosdk/model_pool_reservation.go index 9946e3ce9f..abe91d0724 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_pool_reservation_reference.go b/intersight_gosdk/model_pool_reservation_reference.go index 284b7133b8..90688fc40c 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_port_group.go b/intersight_gosdk/model_port_group.go index 17097bae9e..3e781a8723 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_port_group_list.go b/intersight_gosdk/model_port_group_list.go index 164e925940..b992b09192 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_port_group_relationship.go b/intersight_gosdk/model_port_group_relationship.go index 1851d69416..7ec93276fb 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_port_group_response.go b/intersight_gosdk/model_port_group_response.go index f6fa0c8d2d..5f4646cd07 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_port_interface_base.go b/intersight_gosdk/model_port_interface_base.go index ee3db4e0f1..6e905f1a20 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-18012 +API version: 1.0.11-18369 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 08a67406cf..9910736934 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_port_mac_binding.go b/intersight_gosdk/model_port_mac_binding.go index 5628fd9663..84a18d4898 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-18012 +API version: 1.0.11-18369 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 6dcd1a09c5..9c9e2ffa22 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-18012 +API version: 1.0.11-18369 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 e3081577b4..b85567cfd7 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-18012 +API version: 1.0.11-18369 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 fb43ae4e6b..19522ee619 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_port_physical.go b/intersight_gosdk/model_port_physical.go index 998246946d..fe3435b136 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_port_sub_group.go b/intersight_gosdk/model_port_sub_group.go index 671aa6cf86..8456f8e98f 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-18012 +API version: 1.0.11-18369 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 2d2874bf95..f138dec2c1 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-18012 +API version: 1.0.11-18369 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 1e65adb59a..35a835f5e1 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-18012 +API version: 1.0.11-18369 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 cd2dbeb32c..6e3a467c9f 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_power_control_state.go b/intersight_gosdk/model_power_control_state.go index e93a207bb1..51f25b26cf 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-18012 +API version: 1.0.11-18369 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 a7451491e3..d241a72cef 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-18012 +API version: 1.0.11-18369 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 d05d59df95..d9b19ba99f 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-18012 +API version: 1.0.11-18369 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 ad15f8e455..9c62cb75e4 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_power_policy.go b/intersight_gosdk/model_power_policy.go index 43c1b493e3..13f8ca8ca9 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_power_policy_inventory.go b/intersight_gosdk/model_power_policy_inventory.go index f55787e235..0a83645ebc 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-18012 +API version: 1.0.11-18369 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 976d78d43a..1f72c70d1a 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-18012 +API version: 1.0.11-18369 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 83f1eb6ee3..53b99914b5 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_power_policy_list.go b/intersight_gosdk/model_power_policy_list.go index 4b7d39022f..d11b848ebd 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_power_policy_response.go b/intersight_gosdk/model_power_policy_response.go index 6f7c958333..5ad0718f68 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_processor_unit.go b/intersight_gosdk/model_processor_unit.go index d30788203e..0fb1c53fe4 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_processor_unit_list.go b/intersight_gosdk/model_processor_unit_list.go index 4663c4b94d..ed71dcf9b2 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_processor_unit_relationship.go b/intersight_gosdk/model_processor_unit_relationship.go index 97e72cf649..2be0f8b435 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_processor_unit_response.go b/intersight_gosdk/model_processor_unit_response.go index d773f736d9..47e705ddbc 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_rack_unit_personality.go b/intersight_gosdk/model_rack_unit_personality.go index a1a9b14224..f853903aa1 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-18012 +API version: 1.0.11-18369 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 659414779d..d5b0b4c3f4 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-18012 +API version: 1.0.11-18369 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 aabe796bf1..4ec1bd10c7 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-18012 +API version: 1.0.11-18369 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 ebbbb6b192..c98d4cd468 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_recommendation_abstract_item.go b/intersight_gosdk/model_recommendation_abstract_item.go index 9d821f519d..61d6f1b40c 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_recommendation_base.go b/intersight_gosdk/model_recommendation_base.go index 356841372b..fc9ee9a404 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_recommendation_capacity_runway.go b/intersight_gosdk/model_recommendation_capacity_runway.go index 28b497c17c..a9f38e7d4f 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-18012 +API version: 1.0.11-18369 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 6e83f5bf06..f9c4af9677 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-18012 +API version: 1.0.11-18369 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 822e39ce7c..519a9ab60c 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-18012 +API version: 1.0.11-18369 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 b942c329ab..62cdb071ff 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_recommendation_cluster_expansion.go b/intersight_gosdk/model_recommendation_cluster_expansion.go index c18943ad00..a1ec62d61f 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-18012 +API version: 1.0.11-18369 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 0f414dbffd..9899c11e00 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-18012 +API version: 1.0.11-18369 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 e197e02b73..14baf6e88f 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-18012 +API version: 1.0.11-18369 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 8b08a02734..64fab06475 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_recommendation_expansion_request.go b/intersight_gosdk/model_recommendation_expansion_request.go index 7c06a59b02..6a794cfd27 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-18012 +API version: 1.0.11-18369 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 2e3ca0e77b..5c6ea59e07 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-18012 +API version: 1.0.11-18369 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 dbe49453e7..79855aa80d 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-18012 +API version: 1.0.11-18369 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 0445982992..15de472881 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-18012 +API version: 1.0.11-18369 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 d0ffdbe8df..ffe7c01e62 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-18012 +API version: 1.0.11-18369 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 5efa7e99e6..b907447589 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-18012 +API version: 1.0.11-18369 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 70431aef3b..b41616bc9d 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-18012 +API version: 1.0.11-18369 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 efebed0fef..7bdc7c4fc9 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-18012 +API version: 1.0.11-18369 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 c8ff9fcd01..413f5431d9 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_recommendation_physical_item.go b/intersight_gosdk/model_recommendation_physical_item.go index 0c53392b76..97ad88cadd 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-18012 +API version: 1.0.11-18369 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 52c09e0187..33f226efc2 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-18012 +API version: 1.0.11-18369 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 79ee2b81ff..6417966971 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-18012 +API version: 1.0.11-18369 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 a586339ebe..d32491ecca 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-18012 +API version: 1.0.11-18369 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 ca7887c4fe..177a9e2fef 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-18012 +API version: 1.0.11-18369 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 d9a9a44572..d75675b45f 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-18012 +API version: 1.0.11-18369 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 f201beb692..8cc03d626e 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-18012 +API version: 1.0.11-18369 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 9c02b947e0..7076faf5a0 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-18012 +API version: 1.0.11-18369 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 13d0399dd6..b142be371d 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-18012 +API version: 1.0.11-18369 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 ddf2a53ce1..2f3cfbbf10 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_recommendation_software_item.go b/intersight_gosdk/model_recommendation_software_item.go index f2c88ddee7..95e5a3c391 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-18012 +API version: 1.0.11-18369 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 4fbf680584..477d8350b4 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-18012 +API version: 1.0.11-18369 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 7da9750810..0acc0b5a34 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-18012 +API version: 1.0.11-18369 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 49dc7703b8..f4e3874b69 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-18012 +API version: 1.0.11-18369 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 ce04941eff..fa7f355bf2 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-18012 +API version: 1.0.11-18369 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 be0ed4eddf..5bb0f69486 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-18012 +API version: 1.0.11-18369 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 8a010cb284..ea02b1e1a9 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-18012 +API version: 1.0.11-18369 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 7e398b6755..37394ed48d 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-18012 +API version: 1.0.11-18369 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 49a6da9de9..4b57f9140c 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-18012 +API version: 1.0.11-18369 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 f8912f5ea0..c719d3375c 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-18012 +API version: 1.0.11-18369 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 29ba6a9124..df270d865e 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_recovery_backup_profile.go b/intersight_gosdk/model_recovery_backup_profile.go index 8ca5214b42..fc9005d12b 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-18012 +API version: 1.0.11-18369 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 def31144cc..f3a8b143db 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-18012 +API version: 1.0.11-18369 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 e58864dcac..f3cee4fbd6 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-18012 +API version: 1.0.11-18369 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 62b4c07f0c..921707df54 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_recovery_backup_schedule.go b/intersight_gosdk/model_recovery_backup_schedule.go index bb6092c88d..be8ef1175a 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_recovery_config_params.go b/intersight_gosdk/model_recovery_config_params.go index a9115f4c21..b154c9df72 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_recovery_config_result.go b/intersight_gosdk/model_recovery_config_result.go index 80ff1f8a03..3d0b0bfdd9 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-18012 +API version: 1.0.11-18369 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 846f8e358f..9fde87ff69 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-18012 +API version: 1.0.11-18369 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 b0ff5dd471..331d82b904 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-18012 +API version: 1.0.11-18369 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 8ae6b398e8..442be35ed6 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-18012 +API version: 1.0.11-18369 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 967033e9b2..869bc52a73 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-18012 +API version: 1.0.11-18369 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 5d851fc323..190998024e 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-18012 +API version: 1.0.11-18369 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 59cb6db2f1..beae37a803 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-18012 +API version: 1.0.11-18369 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 321cb9a38e..0e05eb4dae 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-18012 +API version: 1.0.11-18369 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 e60fd30780..8849766b93 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-18012 +API version: 1.0.11-18369 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 46d11e82c7..68fe6735e3 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-18012 +API version: 1.0.11-18369 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 a87643b461..a9c7c3d197 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_recovery_restore.go b/intersight_gosdk/model_recovery_restore.go index 814efc7696..ac92cccdcc 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_recovery_restore_list.go b/intersight_gosdk/model_recovery_restore_list.go index fa08f71add..cc14d05f5c 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_recovery_restore_response.go b/intersight_gosdk/model_recovery_restore_response.go index 4cacae81dd..81893c5b5f 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-18012 +API version: 1.0.11-18369 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 aa1f82dc38..560ad1fb6f 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-18012 +API version: 1.0.11-18369 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 b55b2c744e..7fdb740852 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-18012 +API version: 1.0.11-18369 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 031068812f..27eb0acd19 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-18012 +API version: 1.0.11-18369 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 9966ad82a7..62a90846a0 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_resource_abstract_reservation.go b/intersight_gosdk/model_resource_abstract_reservation.go index 5aa6c0b1a5..b0e52644a9 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_resource_group.go b/intersight_gosdk/model_resource_group.go index 325d800b75..40e6defc19 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_resource_group_list.go b/intersight_gosdk/model_resource_group_list.go index 71b22eed1e..7ca63fb060 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_resource_group_member.go b/intersight_gosdk/model_resource_group_member.go index 6d4a8c8764..1cfd6c0f4b 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-18012 +API version: 1.0.11-18369 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 0790afb5b1..f1f69118e1 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-18012 +API version: 1.0.11-18369 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 2d73bccf90..a70f401eb0 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_resource_group_relationship.go b/intersight_gosdk/model_resource_group_relationship.go index e128323f77..0fef3fd628 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_resource_group_response.go b/intersight_gosdk/model_resource_group_response.go index f393f168a2..127fba2e35 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-18012 +API version: 1.0.11-18369 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 3437a28929..68b061d70a 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-18012 +API version: 1.0.11-18369 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 85aa036986..a289090281 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-18012 +API version: 1.0.11-18369 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 856b677a9f..45074733a0 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_resource_membership.go b/intersight_gosdk/model_resource_membership.go index e8ab7704bf..00054455ee 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_resource_membership_holder.go b/intersight_gosdk/model_resource_membership_holder.go index 3a94d3480d..f35d097416 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-18012 +API version: 1.0.11-18369 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 2073ab9ce3..2ff60fa0d4 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-18012 +API version: 1.0.11-18369 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 6a42122e40..a00d1a030e 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-18012 +API version: 1.0.11-18369 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 9ea5f24838..f5489f5645 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_resource_membership_list.go b/intersight_gosdk/model_resource_membership_list.go index 5d36c2344f..d8f025af7d 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_resource_membership_response.go b/intersight_gosdk/model_resource_membership_response.go index b025b56316..e407f729c4 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-18012 +API version: 1.0.11-18369 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 13b9c2fd54..be18e3b456 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_resource_reservation.go b/intersight_gosdk/model_resource_reservation.go index 02c5f37b3e..d5a85fe47f 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_resource_reservation_list.go b/intersight_gosdk/model_resource_reservation_list.go index 9e8283d277..333db747f2 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_resource_reservation_relationship.go b/intersight_gosdk/model_resource_reservation_relationship.go index 65e7b1023e..adbd3cca6d 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_resource_reservation_response.go b/intersight_gosdk/model_resource_reservation_response.go index 3702983a9c..b4021cae22 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_resource_selection_criteria.go b/intersight_gosdk/model_resource_selection_criteria.go index 7d87044194..d96dcef675 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_resource_selection_criteria_list.go b/intersight_gosdk/model_resource_selection_criteria_list.go index 8a3d8c9dce..33be07a034 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-18012 +API version: 1.0.11-18369 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 e58eb192ab..ae38f99ec8 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_resource_selector.go b/intersight_gosdk/model_resource_selector.go index 1a516999b0..5b8a6ff7c5 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_resource_shared_resources_info_holder.go b/intersight_gosdk/model_resource_shared_resources_info_holder.go index 6eb58aac66..2d414f4b2f 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-18012 +API version: 1.0.11-18369 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 391baf173f..72be655358 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-18012 +API version: 1.0.11-18369 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 373ef283ef..ee8369c198 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-18012 +API version: 1.0.11-18369 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 e465e93c96..64b627e200 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-18012 +API version: 1.0.11-18369 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 5dba8fcac4..c879fec64a 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_resourcepool_lease.go b/intersight_gosdk/model_resourcepool_lease.go index 0b7cbab345..22c08b2329 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_resourcepool_lease_list.go b/intersight_gosdk/model_resourcepool_lease_list.go index eea445dc0b..6416ff5237 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_resourcepool_lease_parameters.go b/intersight_gosdk/model_resourcepool_lease_parameters.go index 02af3a8417..e0fdcb226e 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_resourcepool_lease_relationship.go b/intersight_gosdk/model_resourcepool_lease_relationship.go index 4398745617..d2b741404e 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_resourcepool_lease_resource.go b/intersight_gosdk/model_resourcepool_lease_resource.go index ca2e4adae6..08980f0e90 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-18012 +API version: 1.0.11-18369 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 bf5f4ab38a..397fb700aa 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-18012 +API version: 1.0.11-18369 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 d4b53aece2..a1cb6cbca7 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-18012 +API version: 1.0.11-18369 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 64bcb91b9b..8266915bca 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_resourcepool_lease_response.go b/intersight_gosdk/model_resourcepool_lease_response.go index c68ca0599b..473e661b00 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_resourcepool_membership_reservation.go b/intersight_gosdk/model_resourcepool_membership_reservation.go index 1795a5ffd4..7288dc40b6 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-18012 +API version: 1.0.11-18369 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 4e479cce11..8ca0279ff1 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-18012 +API version: 1.0.11-18369 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 fa8bfecb85..1c4d88f3ad 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_resourcepool_pool.go b/intersight_gosdk/model_resourcepool_pool.go index 20cd579fba..be4fbc1305 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_resourcepool_pool_list.go b/intersight_gosdk/model_resourcepool_pool_list.go index a9debb2f26..2159716c58 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_resourcepool_pool_member.go b/intersight_gosdk/model_resourcepool_pool_member.go index e8abbe99c5..fb5454df3a 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-18012 +API version: 1.0.11-18369 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 9a7cd4032a..64abb227d6 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-18012 +API version: 1.0.11-18369 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 069044f186..1eea4680a4 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-18012 +API version: 1.0.11-18369 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 aa468e0e8c..953b480579 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_resourcepool_pool_relationship.go b/intersight_gosdk/model_resourcepool_pool_relationship.go index 865e32017f..b12f035f35 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_resourcepool_pool_response.go b/intersight_gosdk/model_resourcepool_pool_response.go index 6677e73994..07875a847e 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-18012 +API version: 1.0.11-18369 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 457f6f51bb..d58aea73d1 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-18012 +API version: 1.0.11-18369 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 94ff09afa9..c0409e0ff2 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-18012 +API version: 1.0.11-18369 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 89a9ffb1ae..8b4c0d4fa8 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_resourcepool_universe.go b/intersight_gosdk/model_resourcepool_universe.go index 80a6405382..41717eb628 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_resourcepool_universe_list.go b/intersight_gosdk/model_resourcepool_universe_list.go index a1321c7776..8b8885cbd0 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_resourcepool_universe_relationship.go b/intersight_gosdk/model_resourcepool_universe_relationship.go index 359390db87..7bafd3f7c2 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_resourcepool_universe_response.go b/intersight_gosdk/model_resourcepool_universe_response.go index cc8e60ec41..e298a70d59 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_rproxy_reverse_proxy.go b/intersight_gosdk/model_rproxy_reverse_proxy.go index 4944210a89..d0c2d2e2cd 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-18012 +API version: 1.0.11-18369 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 8b42984e94..9e789515b6 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-18012 +API version: 1.0.11-18369 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 bf8557b619..9d5c288a6f 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-18012 +API version: 1.0.11-18369 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 ec6f3733e9..e03dcb4abb 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-18012 +API version: 1.0.11-18369 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 26ef905188..47fae69ad8 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ @@ -21,7 +21,7 @@ import ( // checks if the SchedulerBaseMonthlyCadenceParams type satisfies the MappedNullable interface at compile time var _ MappedNullable = &SchedulerBaseMonthlyCadenceParams{} -// SchedulerBaseMonthlyCadenceParams The monthly cadence applied to yearly and monthly schedules. +// SchedulerBaseMonthlyCadenceParams The monthly cadence applied to monthly schedules. type SchedulerBaseMonthlyCadenceParams struct { SchedulerBaseCadenceParams // The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data. The enum values provides the list of concrete types that can be instantiated from this abstract type. @@ -29,9 +29,8 @@ type SchedulerBaseMonthlyCadenceParams 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"` // Significant business days, such as days when reports are generated for analysis. * `None` - Placeholder. One of the following two fields must be selected. * `FirstWeekDay` - First week day of the month. * `MonthLastDay` - The last day of the month. - CustomDayOfMonth *string `json:"CustomDayOfMonth,omitempty"` - DayOfMonth []int64 `json:"DayOfMonth,omitempty"` - WeekDayFormat NullableSchedulerMonthlyWeekDayFormat `json:"WeekDayFormat,omitempty"` + CustomDayOfMonth *string `json:"CustomDayOfMonth,omitempty"` + DayOfMonth []int64 `json:"DayOfMonth,omitempty"` AdditionalProperties map[string]interface{} } @@ -55,6 +54,10 @@ func NewSchedulerBaseMonthlyCadenceParams(classId string, objectType string) *Sc // but it doesn't guarantee that properties required by API are set func NewSchedulerBaseMonthlyCadenceParamsWithDefaults() *SchedulerBaseMonthlyCadenceParams { this := SchedulerBaseMonthlyCadenceParams{} + var classId string = "scheduler.MonthlyCadenceParams" + this.ClassId = classId + var objectType string = "scheduler.MonthlyCadenceParams" + this.ObjectType = objectType var customDayOfMonth string = "None" this.CustomDayOfMonth = &customDayOfMonth return &this @@ -84,6 +87,11 @@ func (o *SchedulerBaseMonthlyCadenceParams) SetClassId(v string) { o.ClassId = v } +// GetDefaultClassId returns the default value "scheduler.MonthlyCadenceParams" of the ClassId field. +func (o *SchedulerBaseMonthlyCadenceParams) GetDefaultClassId() interface{} { + return "scheduler.MonthlyCadenceParams" +} + // GetObjectType returns the ObjectType field value func (o *SchedulerBaseMonthlyCadenceParams) GetObjectType() string { if o == nil { @@ -108,6 +116,11 @@ func (o *SchedulerBaseMonthlyCadenceParams) SetObjectType(v string) { o.ObjectType = v } +// GetDefaultObjectType returns the default value "scheduler.MonthlyCadenceParams" of the ObjectType field. +func (o *SchedulerBaseMonthlyCadenceParams) GetDefaultObjectType() interface{} { + return "scheduler.MonthlyCadenceParams" +} + // GetCustomDayOfMonth returns the CustomDayOfMonth field value if set, zero value otherwise. func (o *SchedulerBaseMonthlyCadenceParams) GetCustomDayOfMonth() string { if o == nil || IsNil(o.CustomDayOfMonth) { @@ -173,49 +186,6 @@ func (o *SchedulerBaseMonthlyCadenceParams) SetDayOfMonth(v []int64) { o.DayOfMonth = v } -// GetWeekDayFormat returns the WeekDayFormat field value if set, zero value otherwise (both if not set or set to explicit null). -func (o *SchedulerBaseMonthlyCadenceParams) GetWeekDayFormat() SchedulerMonthlyWeekDayFormat { - if o == nil || IsNil(o.WeekDayFormat.Get()) { - var ret SchedulerMonthlyWeekDayFormat - return ret - } - return *o.WeekDayFormat.Get() -} - -// GetWeekDayFormatOk returns a tuple with the WeekDayFormat 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 *SchedulerBaseMonthlyCadenceParams) GetWeekDayFormatOk() (*SchedulerMonthlyWeekDayFormat, bool) { - if o == nil { - return nil, false - } - return o.WeekDayFormat.Get(), o.WeekDayFormat.IsSet() -} - -// HasWeekDayFormat returns a boolean if a field has been set. -func (o *SchedulerBaseMonthlyCadenceParams) HasWeekDayFormat() bool { - if o != nil && o.WeekDayFormat.IsSet() { - return true - } - - return false -} - -// SetWeekDayFormat gets a reference to the given NullableSchedulerMonthlyWeekDayFormat and assigns it to the WeekDayFormat field. -func (o *SchedulerBaseMonthlyCadenceParams) SetWeekDayFormat(v SchedulerMonthlyWeekDayFormat) { - o.WeekDayFormat.Set(&v) -} - -// SetWeekDayFormatNil sets the value for WeekDayFormat to be an explicit nil -func (o *SchedulerBaseMonthlyCadenceParams) SetWeekDayFormatNil() { - o.WeekDayFormat.Set(nil) -} - -// UnsetWeekDayFormat ensures that no value is present for WeekDayFormat, not even an explicit nil -func (o *SchedulerBaseMonthlyCadenceParams) UnsetWeekDayFormat() { - o.WeekDayFormat.Unset() -} - func (o SchedulerBaseMonthlyCadenceParams) MarshalJSON() ([]byte, error) { toSerialize, err := o.ToMap() if err != nil { @@ -234,7 +204,13 @@ func (o SchedulerBaseMonthlyCadenceParams) ToMap() (map[string]interface{}, erro if errSchedulerBaseCadenceParams != nil { return map[string]interface{}{}, errSchedulerBaseCadenceParams } + if _, exists := toSerialize["ClassId"]; !exists { + toSerialize["ClassId"] = o.GetDefaultClassId() + } toSerialize["ClassId"] = o.ClassId + if _, exists := toSerialize["ObjectType"]; !exists { + toSerialize["ObjectType"] = o.GetDefaultObjectType() + } toSerialize["ObjectType"] = o.ObjectType if !IsNil(o.CustomDayOfMonth) { toSerialize["CustomDayOfMonth"] = o.CustomDayOfMonth @@ -242,9 +218,6 @@ func (o SchedulerBaseMonthlyCadenceParams) ToMap() (map[string]interface{}, erro if o.DayOfMonth != nil { toSerialize["DayOfMonth"] = o.DayOfMonth } - if o.WeekDayFormat.IsSet() { - toSerialize["WeekDayFormat"] = o.WeekDayFormat.Get() - } for key, value := range o.AdditionalProperties { toSerialize[key] = value @@ -264,7 +237,10 @@ func (o *SchedulerBaseMonthlyCadenceParams) UnmarshalJSON(data []byte) (err erro // defaultValueFuncMap captures the default values for required properties. // These values are used when required properties are missing from the payload. - defaultValueFuncMap := map[string]func() interface{}{} + defaultValueFuncMap := map[string]func() interface{}{ + "ClassId": o.GetDefaultClassId, + "ObjectType": o.GetDefaultObjectType, + } var defaultValueApplied bool allProperties := make(map[string]interface{}) @@ -298,9 +274,8 @@ func (o *SchedulerBaseMonthlyCadenceParams) UnmarshalJSON(data []byte) (err erro // 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"` // Significant business days, such as days when reports are generated for analysis. * `None` - Placeholder. One of the following two fields must be selected. * `FirstWeekDay` - First week day of the month. * `MonthLastDay` - The last day of the month. - CustomDayOfMonth *string `json:"CustomDayOfMonth,omitempty"` - DayOfMonth []int64 `json:"DayOfMonth,omitempty"` - WeekDayFormat NullableSchedulerMonthlyWeekDayFormat `json:"WeekDayFormat,omitempty"` + CustomDayOfMonth *string `json:"CustomDayOfMonth,omitempty"` + DayOfMonth []int64 `json:"DayOfMonth,omitempty"` } varSchedulerBaseMonthlyCadenceParamsWithoutEmbeddedStruct := SchedulerBaseMonthlyCadenceParamsWithoutEmbeddedStruct{} @@ -312,7 +287,6 @@ func (o *SchedulerBaseMonthlyCadenceParams) UnmarshalJSON(data []byte) (err erro varSchedulerBaseMonthlyCadenceParams.ObjectType = varSchedulerBaseMonthlyCadenceParamsWithoutEmbeddedStruct.ObjectType varSchedulerBaseMonthlyCadenceParams.CustomDayOfMonth = varSchedulerBaseMonthlyCadenceParamsWithoutEmbeddedStruct.CustomDayOfMonth varSchedulerBaseMonthlyCadenceParams.DayOfMonth = varSchedulerBaseMonthlyCadenceParamsWithoutEmbeddedStruct.DayOfMonth - varSchedulerBaseMonthlyCadenceParams.WeekDayFormat = varSchedulerBaseMonthlyCadenceParamsWithoutEmbeddedStruct.WeekDayFormat *o = SchedulerBaseMonthlyCadenceParams(varSchedulerBaseMonthlyCadenceParams) } else { return err @@ -334,7 +308,6 @@ func (o *SchedulerBaseMonthlyCadenceParams) UnmarshalJSON(data []byte) (err erro delete(additionalProperties, "ObjectType") delete(additionalProperties, "CustomDayOfMonth") delete(additionalProperties, "DayOfMonth") - delete(additionalProperties, "WeekDayFormat") // remove fields from embedded structs reflectSchedulerBaseCadenceParams := reflect.ValueOf(o.SchedulerBaseCadenceParams) diff --git a/intersight_gosdk/model_scheduler_base_schedule_params.go b/intersight_gosdk/model_scheduler_base_schedule_params.go index fb96e24db1..09e8658351 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ @@ -29,7 +29,7 @@ type SchedulerBaseScheduleParams struct { ClassId string `json:"ClassId"` // 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 schedule start time. A future time is required. When the start time is updated, it is mandatory to specify the corresponding timeZone property as well. + // The schedule start time. A future time is required. StartTime *time.Time `json:"StartTime,omitempty"` // The timezone for the startTime specified. It is a mandatory input property when start time is provided. * `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` - TimeZone *string `json:"TimeZone,omitempty"` @@ -251,7 +251,7 @@ func (o *SchedulerBaseScheduleParams) 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. The enum values provides the list of concrete types that can be instantiated from this abstract type. ObjectType string `json:"ObjectType"` - // The schedule start time. A future time is required. When the start time is updated, it is mandatory to specify the corresponding timeZone property as well. + // The schedule start time. A future time is required. StartTime *time.Time `json:"StartTime,omitempty"` // The timezone for the startTime specified. It is a mandatory input property when start time is provided. * `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` - TimeZone *string `json:"TimeZone,omitempty"` diff --git a/intersight_gosdk/model_scheduler_daily_cadence_params.go b/intersight_gosdk/model_scheduler_daily_cadence_params.go index ef8d1a2abe..7fefb22a44 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ @@ -43,6 +43,8 @@ func NewSchedulerDailyCadenceParams(classId string, objectType string) *Schedule this := SchedulerDailyCadenceParams{} this.ClassId = classId this.ObjectType = objectType + var runEvery int64 = 1 + this.RunEvery = &runEvery return &this } @@ -55,6 +57,8 @@ func NewSchedulerDailyCadenceParamsWithDefaults() *SchedulerDailyCadenceParams { this.ClassId = classId var objectType string = "scheduler.DailyCadenceParams" this.ObjectType = objectType + var runEvery int64 = 1 + this.RunEvery = &runEvery return &this } diff --git a/intersight_gosdk/model_scheduler_every_cadence_params.go b/intersight_gosdk/model_scheduler_every_cadence_params.go index 7802f9624f..7b6d1d9fd8 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ @@ -28,7 +28,7 @@ type SchedulerEveryCadenceParams 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"` - // An interval specified as string where valid time units are \"ns\", \"us\", \"ms\", \"s\", \"m\", \"h\". The calender calculations use a gregorian calendar with no leap seconds. The default is 24h. + // An interval specified as string where valid time units are \"s\", \"m\", \"h\". The minimum interval is 15 minutes and the maximum is 24 hours. Interval *string `json:"Interval,omitempty"` AdditionalProperties map[string]interface{} } @@ -232,7 +232,7 @@ func (o *SchedulerEveryCadenceParams) 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"` - // An interval specified as string where valid time units are \"ns\", \"us\", \"ms\", \"s\", \"m\", \"h\". The calender calculations use a gregorian calendar with no leap seconds. The default is 24h. + // An interval specified as string where valid time units are \"s\", \"m\", \"h\". The minimum interval is 15 minutes and the maximum is 24 hours. Interval *string `json:"Interval,omitempty"` } diff --git a/intersight_gosdk/model_scheduler_monthly_cadence_params.go b/intersight_gosdk/model_scheduler_monthly_cadence_params.go index 8c36ae9cfd..5f966ced34 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ @@ -87,7 +87,10 @@ func (o *SchedulerMonthlyCadenceParams) UnmarshalJSON(data []byte) (err error) { // defaultValueFuncMap captures the default values for required properties. // These values are used when required properties are missing from the payload. - defaultValueFuncMap := map[string]func() interface{}{} + defaultValueFuncMap := map[string]func() interface{}{ + "ClassId": o.GetDefaultClassId, + "ObjectType": o.GetDefaultObjectType, + } var defaultValueApplied bool allProperties := make(map[string]interface{}) diff --git a/intersight_gosdk/model_scheduler_monthly_week_day_format.go b/intersight_gosdk/model_scheduler_monthly_week_day_format.go deleted file mode 100644 index dc8c1eacb1..0000000000 --- a/intersight_gosdk/model_scheduler_monthly_week_day_format.go +++ /dev/null @@ -1,281 +0,0 @@ -/* -Cisco Intersight - -Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. - -API version: 1.0.11-18012 -Contact: intersight@cisco.com -*/ - -// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. - -package intersight - -import ( - "encoding/json" - "fmt" - "reflect" - "strings" -) - -// checks if the SchedulerMonthlyWeekDayFormat type satisfies the MappedNullable interface at compile time -var _ MappedNullable = &SchedulerMonthlyWeekDayFormat{} - -// SchedulerMonthlyWeekDayFormat An alternative for monthly scheduled task. For e.g. third Tuesday of every month. -type SchedulerMonthlyWeekDayFormat struct { - MoBaseComplexType - DayOfWeek []string `json:"DayOfWeek,omitempty"` - // The week of the month, 1 through 5. - WeekOfMonth *int64 `json:"WeekOfMonth,omitempty"` - AdditionalProperties map[string]interface{} -} - -type _SchedulerMonthlyWeekDayFormat SchedulerMonthlyWeekDayFormat - -// NewSchedulerMonthlyWeekDayFormat instantiates a new SchedulerMonthlyWeekDayFormat object -// This constructor will assign default values to properties that have it defined, -// and makes sure properties required by API are set, but the set of arguments -// will change when the set of required properties is changed -func NewSchedulerMonthlyWeekDayFormat(classId string, objectType string) *SchedulerMonthlyWeekDayFormat { - this := SchedulerMonthlyWeekDayFormat{} - this.ClassId = classId - this.ObjectType = objectType - return &this -} - -// NewSchedulerMonthlyWeekDayFormatWithDefaults instantiates a new SchedulerMonthlyWeekDayFormat object -// This constructor will only assign default values to properties that have it defined, -// but it doesn't guarantee that properties required by API are set -func NewSchedulerMonthlyWeekDayFormatWithDefaults() *SchedulerMonthlyWeekDayFormat { - this := SchedulerMonthlyWeekDayFormat{} - return &this -} - -// GetDayOfWeek returns the DayOfWeek field value if set, zero value otherwise (both if not set or set to explicit null). -func (o *SchedulerMonthlyWeekDayFormat) GetDayOfWeek() []string { - if o == nil { - var ret []string - return ret - } - return o.DayOfWeek -} - -// GetDayOfWeekOk returns a tuple with the DayOfWeek 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 *SchedulerMonthlyWeekDayFormat) GetDayOfWeekOk() ([]string, bool) { - if o == nil || IsNil(o.DayOfWeek) { - return nil, false - } - return o.DayOfWeek, true -} - -// HasDayOfWeek returns a boolean if a field has been set. -func (o *SchedulerMonthlyWeekDayFormat) HasDayOfWeek() bool { - if o != nil && !IsNil(o.DayOfWeek) { - return true - } - - return false -} - -// SetDayOfWeek gets a reference to the given []string and assigns it to the DayOfWeek field. -func (o *SchedulerMonthlyWeekDayFormat) SetDayOfWeek(v []string) { - o.DayOfWeek = v -} - -// GetWeekOfMonth returns the WeekOfMonth field value if set, zero value otherwise. -func (o *SchedulerMonthlyWeekDayFormat) GetWeekOfMonth() int64 { - if o == nil || IsNil(o.WeekOfMonth) { - var ret int64 - return ret - } - return *o.WeekOfMonth -} - -// GetWeekOfMonthOk returns a tuple with the WeekOfMonth field value if set, nil otherwise -// and a boolean to check if the value has been set. -func (o *SchedulerMonthlyWeekDayFormat) GetWeekOfMonthOk() (*int64, bool) { - if o == nil || IsNil(o.WeekOfMonth) { - return nil, false - } - return o.WeekOfMonth, true -} - -// HasWeekOfMonth returns a boolean if a field has been set. -func (o *SchedulerMonthlyWeekDayFormat) HasWeekOfMonth() bool { - if o != nil && !IsNil(o.WeekOfMonth) { - return true - } - - return false -} - -// SetWeekOfMonth gets a reference to the given int64 and assigns it to the WeekOfMonth field. -func (o *SchedulerMonthlyWeekDayFormat) SetWeekOfMonth(v int64) { - o.WeekOfMonth = &v -} - -func (o SchedulerMonthlyWeekDayFormat) MarshalJSON() ([]byte, error) { - toSerialize, err := o.ToMap() - if err != nil { - return []byte{}, err - } - return json.Marshal(toSerialize) -} - -func (o SchedulerMonthlyWeekDayFormat) ToMap() (map[string]interface{}, error) { - toSerialize := map[string]interface{}{} - serializedMoBaseComplexType, errMoBaseComplexType := json.Marshal(o.MoBaseComplexType) - if errMoBaseComplexType != nil { - return map[string]interface{}{}, errMoBaseComplexType - } - errMoBaseComplexType = json.Unmarshal([]byte(serializedMoBaseComplexType), &toSerialize) - if errMoBaseComplexType != nil { - return map[string]interface{}{}, errMoBaseComplexType - } - if o.DayOfWeek != nil { - toSerialize["DayOfWeek"] = o.DayOfWeek - } - if !IsNil(o.WeekOfMonth) { - toSerialize["WeekOfMonth"] = o.WeekOfMonth - } - - for key, value := range o.AdditionalProperties { - toSerialize[key] = value - } - - return toSerialize, nil -} - -func (o *SchedulerMonthlyWeekDayFormat) UnmarshalJSON(data []byte) (err error) { - // This validates that all required properties are included in the JSON object - // by unmarshalling the object into a generic map with string keys and checking - // that every required field exists as a key in the generic map. - requiredProperties := []string{ - "ClassId", - "ObjectType", - } - - // defaultValueFuncMap captures the default values for required properties. - // These values are used when required properties are missing from the payload. - defaultValueFuncMap := map[string]func() interface{}{} - var defaultValueApplied bool - allProperties := make(map[string]interface{}) - - err = json.Unmarshal(data, &allProperties) - - if err != nil { - return err - } - - for _, requiredProperty := range requiredProperties { - if value, exists := allProperties[requiredProperty]; !exists || value == "" { - if _, ok := defaultValueFuncMap[requiredProperty]; ok { - allProperties[requiredProperty] = defaultValueFuncMap[requiredProperty]() - defaultValueApplied = true - } - } - if value, exists := allProperties[requiredProperty]; !exists || value == "" { - return fmt.Errorf("no value given for required property %v", requiredProperty) - } - } - - if defaultValueApplied { - data, err = json.Marshal(allProperties) - if err != nil { - return err - } - } - type SchedulerMonthlyWeekDayFormatWithoutEmbeddedStruct struct { - DayOfWeek []string `json:"DayOfWeek,omitempty"` - // The week of the month, 1 through 5. - WeekOfMonth *int64 `json:"WeekOfMonth,omitempty"` - } - - varSchedulerMonthlyWeekDayFormatWithoutEmbeddedStruct := SchedulerMonthlyWeekDayFormatWithoutEmbeddedStruct{} - - err = json.Unmarshal(data, &varSchedulerMonthlyWeekDayFormatWithoutEmbeddedStruct) - if err == nil { - varSchedulerMonthlyWeekDayFormat := _SchedulerMonthlyWeekDayFormat{} - varSchedulerMonthlyWeekDayFormat.DayOfWeek = varSchedulerMonthlyWeekDayFormatWithoutEmbeddedStruct.DayOfWeek - varSchedulerMonthlyWeekDayFormat.WeekOfMonth = varSchedulerMonthlyWeekDayFormatWithoutEmbeddedStruct.WeekOfMonth - *o = SchedulerMonthlyWeekDayFormat(varSchedulerMonthlyWeekDayFormat) - } else { - return err - } - - varSchedulerMonthlyWeekDayFormat := _SchedulerMonthlyWeekDayFormat{} - - err = json.Unmarshal(data, &varSchedulerMonthlyWeekDayFormat) - if err == nil { - o.MoBaseComplexType = varSchedulerMonthlyWeekDayFormat.MoBaseComplexType - } else { - return err - } - - additionalProperties := make(map[string]interface{}) - - if err = json.Unmarshal(data, &additionalProperties); err == nil { - delete(additionalProperties, "DayOfWeek") - delete(additionalProperties, "WeekOfMonth") - - // remove fields from embedded structs - reflectMoBaseComplexType := reflect.ValueOf(o.MoBaseComplexType) - for i := 0; i < reflectMoBaseComplexType.Type().NumField(); i++ { - t := reflectMoBaseComplexType.Type().Field(i) - - if jsonTag := t.Tag.Get("json"); jsonTag != "" { - fieldName := "" - if commaIdx := strings.Index(jsonTag, ","); commaIdx > 0 { - fieldName = jsonTag[:commaIdx] - } else { - fieldName = jsonTag - } - if fieldName != "AdditionalProperties" { - delete(additionalProperties, fieldName) - } - } - } - - o.AdditionalProperties = additionalProperties - } - - return err -} - -type NullableSchedulerMonthlyWeekDayFormat struct { - value *SchedulerMonthlyWeekDayFormat - isSet bool -} - -func (v NullableSchedulerMonthlyWeekDayFormat) Get() *SchedulerMonthlyWeekDayFormat { - return v.value -} - -func (v *NullableSchedulerMonthlyWeekDayFormat) Set(val *SchedulerMonthlyWeekDayFormat) { - v.value = val - v.isSet = true -} - -func (v NullableSchedulerMonthlyWeekDayFormat) IsSet() bool { - return v.isSet -} - -func (v *NullableSchedulerMonthlyWeekDayFormat) Unset() { - v.value = nil - v.isSet = false -} - -func NewNullableSchedulerMonthlyWeekDayFormat(val *SchedulerMonthlyWeekDayFormat) *NullableSchedulerMonthlyWeekDayFormat { - return &NullableSchedulerMonthlyWeekDayFormat{value: val, isSet: true} -} - -func (v NullableSchedulerMonthlyWeekDayFormat) MarshalJSON() ([]byte, error) { - return json.Marshal(v.value) -} - -func (v *NullableSchedulerMonthlyWeekDayFormat) UnmarshalJSON(src []byte) error { - v.isSet = true - return json.Unmarshal(src, &v.value) -} diff --git a/intersight_gosdk/model_scheduler_one_time_schedule_params.go b/intersight_gosdk/model_scheduler_one_time_schedule_params.go index 0134864801..c7823c08f4 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-18012 +API version: 1.0.11-18369 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 bc66ec9a8e..cda56d4757 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ @@ -16,6 +16,7 @@ import ( "fmt" "reflect" "strings" + "time" ) // checks if the SchedulerRecurringScheduleParams type satisfies the MappedNullable interface at compile time @@ -24,6 +25,19 @@ var _ MappedNullable = &SchedulerRecurringScheduleParams{} // SchedulerRecurringScheduleParams The parameters for configuring a recurring schedule. type SchedulerRecurringScheduleParams struct { SchedulerBaseScheduleParams + // 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. + 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"` + // Allowed values for a recurring schedule cadence. * `None` - No value set for the cadence type (Enum value None). * `Every` - Use the 'Every' cadence for tasks that need to be run frequently and are relatively small or quick to execute. This could include tasks such as checking the status of a service every 15 minutes, or updating a counter. * `Daily` - A Daily cadence allows for a scheduled task to be run every day or every n-interval days. * `Weekly` - A Weekly cadence allows for a scheduled task to be run every week or every n-interval weeks on specific days. * `Monthly` - A Montly cadence allows for a scheduled task to be run every month on specific days. + Cadence *string `json:"Cadence,omitempty"` + // Specify the number of occurrences (instead of an end-time) for a recurring schedule. + EndAfterOccurrences *int64 `json:"EndAfterOccurrences,omitempty"` + // End time for the recurring schedule. The schedule will not run beyond this time. If using the endAfterOccurrences parameter instead, this field should be set to zero time, i.e, 0001-01-01T00:00:00Z. + EndTime *time.Time `json:"EndTime,omitempty"` + // The maximum number of consecutive failures until the recurring scheduled task is suspended by the system. The default is 1. + FailureThreshold *int64 `json:"FailureThreshold,omitempty"` + Params NullableSchedulerBaseCadenceParams `json:"Params,omitempty"` AdditionalProperties map[string]interface{} } @@ -39,6 +53,10 @@ func NewSchedulerRecurringScheduleParams(classId string, objectType string) *Sch this.ObjectType = objectType var timeZone string = "Pacific/Niue" this.TimeZone = &timeZone + var cadence string = "None" + this.Cadence = &cadence + var failureThreshold int64 = 1 + this.FailureThreshold = &failureThreshold return &this } @@ -47,9 +65,246 @@ func NewSchedulerRecurringScheduleParams(classId string, objectType string) *Sch // but it doesn't guarantee that properties required by API are set func NewSchedulerRecurringScheduleParamsWithDefaults() *SchedulerRecurringScheduleParams { this := SchedulerRecurringScheduleParams{} + var classId string = "scheduler.RecurringScheduleParams" + this.ClassId = classId + var objectType string = "scheduler.RecurringScheduleParams" + this.ObjectType = objectType + var cadence string = "None" + this.Cadence = &cadence + var failureThreshold int64 = 1 + this.FailureThreshold = &failureThreshold return &this } +// GetClassId returns the ClassId field value +func (o *SchedulerRecurringScheduleParams) GetClassId() string { + if o == nil { + var ret string + return ret + } + + return o.ClassId +} + +// GetClassIdOk returns a tuple with the ClassId field value +// and a boolean to check if the value has been set. +func (o *SchedulerRecurringScheduleParams) GetClassIdOk() (*string, bool) { + if o == nil { + return nil, false + } + return &o.ClassId, true +} + +// SetClassId sets field value +func (o *SchedulerRecurringScheduleParams) SetClassId(v string) { + o.ClassId = v +} + +// GetDefaultClassId returns the default value "scheduler.RecurringScheduleParams" of the ClassId field. +func (o *SchedulerRecurringScheduleParams) GetDefaultClassId() interface{} { + return "scheduler.RecurringScheduleParams" +} + +// GetObjectType returns the ObjectType field value +func (o *SchedulerRecurringScheduleParams) GetObjectType() string { + if o == nil { + var ret string + return ret + } + + return o.ObjectType +} + +// GetObjectTypeOk returns a tuple with the ObjectType field value +// and a boolean to check if the value has been set. +func (o *SchedulerRecurringScheduleParams) GetObjectTypeOk() (*string, bool) { + if o == nil { + return nil, false + } + return &o.ObjectType, true +} + +// SetObjectType sets field value +func (o *SchedulerRecurringScheduleParams) SetObjectType(v string) { + o.ObjectType = v +} + +// GetDefaultObjectType returns the default value "scheduler.RecurringScheduleParams" of the ObjectType field. +func (o *SchedulerRecurringScheduleParams) GetDefaultObjectType() interface{} { + return "scheduler.RecurringScheduleParams" +} + +// GetCadence returns the Cadence field value if set, zero value otherwise. +func (o *SchedulerRecurringScheduleParams) GetCadence() string { + if o == nil || IsNil(o.Cadence) { + var ret string + return ret + } + return *o.Cadence +} + +// GetCadenceOk returns a tuple with the Cadence field value if set, nil otherwise +// and a boolean to check if the value has been set. +func (o *SchedulerRecurringScheduleParams) GetCadenceOk() (*string, bool) { + if o == nil || IsNil(o.Cadence) { + return nil, false + } + return o.Cadence, true +} + +// HasCadence returns a boolean if a field has been set. +func (o *SchedulerRecurringScheduleParams) HasCadence() bool { + if o != nil && !IsNil(o.Cadence) { + return true + } + + return false +} + +// SetCadence gets a reference to the given string and assigns it to the Cadence field. +func (o *SchedulerRecurringScheduleParams) SetCadence(v string) { + o.Cadence = &v +} + +// GetEndAfterOccurrences returns the EndAfterOccurrences field value if set, zero value otherwise. +func (o *SchedulerRecurringScheduleParams) GetEndAfterOccurrences() int64 { + if o == nil || IsNil(o.EndAfterOccurrences) { + var ret int64 + return ret + } + return *o.EndAfterOccurrences +} + +// GetEndAfterOccurrencesOk returns a tuple with the EndAfterOccurrences field value if set, nil otherwise +// and a boolean to check if the value has been set. +func (o *SchedulerRecurringScheduleParams) GetEndAfterOccurrencesOk() (*int64, bool) { + if o == nil || IsNil(o.EndAfterOccurrences) { + return nil, false + } + return o.EndAfterOccurrences, true +} + +// HasEndAfterOccurrences returns a boolean if a field has been set. +func (o *SchedulerRecurringScheduleParams) HasEndAfterOccurrences() bool { + if o != nil && !IsNil(o.EndAfterOccurrences) { + return true + } + + return false +} + +// SetEndAfterOccurrences gets a reference to the given int64 and assigns it to the EndAfterOccurrences field. +func (o *SchedulerRecurringScheduleParams) SetEndAfterOccurrences(v int64) { + o.EndAfterOccurrences = &v +} + +// GetEndTime returns the EndTime field value if set, zero value otherwise. +func (o *SchedulerRecurringScheduleParams) GetEndTime() time.Time { + if o == nil || IsNil(o.EndTime) { + var ret time.Time + return ret + } + return *o.EndTime +} + +// GetEndTimeOk returns a tuple with the EndTime field value if set, nil otherwise +// and a boolean to check if the value has been set. +func (o *SchedulerRecurringScheduleParams) GetEndTimeOk() (*time.Time, bool) { + if o == nil || IsNil(o.EndTime) { + return nil, false + } + return o.EndTime, true +} + +// HasEndTime returns a boolean if a field has been set. +func (o *SchedulerRecurringScheduleParams) HasEndTime() bool { + if o != nil && !IsNil(o.EndTime) { + return true + } + + return false +} + +// SetEndTime gets a reference to the given time.Time and assigns it to the EndTime field. +func (o *SchedulerRecurringScheduleParams) SetEndTime(v time.Time) { + o.EndTime = &v +} + +// GetFailureThreshold returns the FailureThreshold field value if set, zero value otherwise. +func (o *SchedulerRecurringScheduleParams) GetFailureThreshold() int64 { + if o == nil || IsNil(o.FailureThreshold) { + var ret int64 + return ret + } + return *o.FailureThreshold +} + +// GetFailureThresholdOk returns a tuple with the FailureThreshold field value if set, nil otherwise +// and a boolean to check if the value has been set. +func (o *SchedulerRecurringScheduleParams) GetFailureThresholdOk() (*int64, bool) { + if o == nil || IsNil(o.FailureThreshold) { + return nil, false + } + return o.FailureThreshold, true +} + +// HasFailureThreshold returns a boolean if a field has been set. +func (o *SchedulerRecurringScheduleParams) HasFailureThreshold() bool { + if o != nil && !IsNil(o.FailureThreshold) { + return true + } + + return false +} + +// SetFailureThreshold gets a reference to the given int64 and assigns it to the FailureThreshold field. +func (o *SchedulerRecurringScheduleParams) SetFailureThreshold(v int64) { + o.FailureThreshold = &v +} + +// GetParams returns the Params field value if set, zero value otherwise (both if not set or set to explicit null). +func (o *SchedulerRecurringScheduleParams) GetParams() SchedulerBaseCadenceParams { + if o == nil || IsNil(o.Params.Get()) { + var ret SchedulerBaseCadenceParams + return ret + } + return *o.Params.Get() +} + +// GetParamsOk returns a tuple with the Params 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 *SchedulerRecurringScheduleParams) GetParamsOk() (*SchedulerBaseCadenceParams, bool) { + if o == nil { + return nil, false + } + return o.Params.Get(), o.Params.IsSet() +} + +// HasParams returns a boolean if a field has been set. +func (o *SchedulerRecurringScheduleParams) HasParams() bool { + if o != nil && o.Params.IsSet() { + return true + } + + return false +} + +// SetParams gets a reference to the given NullableSchedulerBaseCadenceParams and assigns it to the Params field. +func (o *SchedulerRecurringScheduleParams) SetParams(v SchedulerBaseCadenceParams) { + o.Params.Set(&v) +} + +// SetParamsNil sets the value for Params to be an explicit nil +func (o *SchedulerRecurringScheduleParams) SetParamsNil() { + o.Params.Set(nil) +} + +// UnsetParams ensures that no value is present for Params, not even an explicit nil +func (o *SchedulerRecurringScheduleParams) UnsetParams() { + o.Params.Unset() +} + func (o SchedulerRecurringScheduleParams) MarshalJSON() ([]byte, error) { toSerialize, err := o.ToMap() if err != nil { @@ -68,6 +323,29 @@ func (o SchedulerRecurringScheduleParams) ToMap() (map[string]interface{}, error if errSchedulerBaseScheduleParams != nil { return map[string]interface{}{}, errSchedulerBaseScheduleParams } + if _, exists := toSerialize["ClassId"]; !exists { + toSerialize["ClassId"] = o.GetDefaultClassId() + } + toSerialize["ClassId"] = o.ClassId + if _, exists := toSerialize["ObjectType"]; !exists { + toSerialize["ObjectType"] = o.GetDefaultObjectType() + } + toSerialize["ObjectType"] = o.ObjectType + if !IsNil(o.Cadence) { + toSerialize["Cadence"] = o.Cadence + } + if !IsNil(o.EndAfterOccurrences) { + toSerialize["EndAfterOccurrences"] = o.EndAfterOccurrences + } + if !IsNil(o.EndTime) { + toSerialize["EndTime"] = o.EndTime + } + if !IsNil(o.FailureThreshold) { + toSerialize["FailureThreshold"] = o.FailureThreshold + } + if o.Params.IsSet() { + toSerialize["Params"] = o.Params.Get() + } for key, value := range o.AdditionalProperties { toSerialize[key] = value @@ -87,7 +365,10 @@ func (o *SchedulerRecurringScheduleParams) UnmarshalJSON(data []byte) (err error // defaultValueFuncMap captures the default values for required properties. // These values are used when required properties are missing from the payload. - defaultValueFuncMap := map[string]func() interface{}{} + defaultValueFuncMap := map[string]func() interface{}{ + "ClassId": o.GetDefaultClassId, + "ObjectType": o.GetDefaultObjectType, + } var defaultValueApplied bool allProperties := make(map[string]interface{}) @@ -116,6 +397,19 @@ func (o *SchedulerRecurringScheduleParams) UnmarshalJSON(data []byte) (err error } } type SchedulerRecurringScheduleParamsWithoutEmbeddedStruct struct { + // 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. + 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"` + // Allowed values for a recurring schedule cadence. * `None` - No value set for the cadence type (Enum value None). * `Every` - Use the 'Every' cadence for tasks that need to be run frequently and are relatively small or quick to execute. This could include tasks such as checking the status of a service every 15 minutes, or updating a counter. * `Daily` - A Daily cadence allows for a scheduled task to be run every day or every n-interval days. * `Weekly` - A Weekly cadence allows for a scheduled task to be run every week or every n-interval weeks on specific days. * `Monthly` - A Montly cadence allows for a scheduled task to be run every month on specific days. + Cadence *string `json:"Cadence,omitempty"` + // Specify the number of occurrences (instead of an end-time) for a recurring schedule. + EndAfterOccurrences *int64 `json:"EndAfterOccurrences,omitempty"` + // End time for the recurring schedule. The schedule will not run beyond this time. If using the endAfterOccurrences parameter instead, this field should be set to zero time, i.e, 0001-01-01T00:00:00Z. + EndTime *time.Time `json:"EndTime,omitempty"` + // The maximum number of consecutive failures until the recurring scheduled task is suspended by the system. The default is 1. + FailureThreshold *int64 `json:"FailureThreshold,omitempty"` + Params NullableSchedulerBaseCadenceParams `json:"Params,omitempty"` } varSchedulerRecurringScheduleParamsWithoutEmbeddedStruct := SchedulerRecurringScheduleParamsWithoutEmbeddedStruct{} @@ -123,6 +417,13 @@ func (o *SchedulerRecurringScheduleParams) UnmarshalJSON(data []byte) (err error err = json.Unmarshal(data, &varSchedulerRecurringScheduleParamsWithoutEmbeddedStruct) if err == nil { varSchedulerRecurringScheduleParams := _SchedulerRecurringScheduleParams{} + varSchedulerRecurringScheduleParams.ClassId = varSchedulerRecurringScheduleParamsWithoutEmbeddedStruct.ClassId + varSchedulerRecurringScheduleParams.ObjectType = varSchedulerRecurringScheduleParamsWithoutEmbeddedStruct.ObjectType + varSchedulerRecurringScheduleParams.Cadence = varSchedulerRecurringScheduleParamsWithoutEmbeddedStruct.Cadence + varSchedulerRecurringScheduleParams.EndAfterOccurrences = varSchedulerRecurringScheduleParamsWithoutEmbeddedStruct.EndAfterOccurrences + varSchedulerRecurringScheduleParams.EndTime = varSchedulerRecurringScheduleParamsWithoutEmbeddedStruct.EndTime + varSchedulerRecurringScheduleParams.FailureThreshold = varSchedulerRecurringScheduleParamsWithoutEmbeddedStruct.FailureThreshold + varSchedulerRecurringScheduleParams.Params = varSchedulerRecurringScheduleParamsWithoutEmbeddedStruct.Params *o = SchedulerRecurringScheduleParams(varSchedulerRecurringScheduleParams) } else { return err @@ -140,6 +441,13 @@ func (o *SchedulerRecurringScheduleParams) UnmarshalJSON(data []byte) (err error additionalProperties := make(map[string]interface{}) if err = json.Unmarshal(data, &additionalProperties); err == nil { + delete(additionalProperties, "ClassId") + delete(additionalProperties, "ObjectType") + delete(additionalProperties, "Cadence") + delete(additionalProperties, "EndAfterOccurrences") + delete(additionalProperties, "EndTime") + delete(additionalProperties, "FailureThreshold") + delete(additionalProperties, "Params") // remove fields from embedded structs reflectSchedulerBaseScheduleParams := reflect.ValueOf(o.SchedulerBaseScheduleParams) diff --git a/intersight_gosdk/model_scheduler_rest_stim_task_request.go b/intersight_gosdk/model_scheduler_rest_stim_task_request.go index 4a2562f45f..265a313795 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ @@ -37,8 +37,9 @@ type SchedulerRestStimTaskRequest struct { // The accepted web protocol values are http and https. Protocol *string `json:"Protocol,omitempty"` // The response obtained for the scheduled API service. + // Deprecated Response interface{} `json:"Response,omitempty"` - // Upper limit on the execution time of a scheduled task. Helps purge run-away scheduled tasks. + // Upper limit on the execution time of a scheduled task. Helps purge run-away scheduled tasks. Not supported in this release. Timeout *int64 `json:"Timeout,omitempty"` // The URL of the resource in the target to which the API request is made. Url *string `json:"Url,omitempty"` @@ -259,6 +260,7 @@ func (o *SchedulerRestStimTaskRequest) SetProtocol(v string) { } // GetResponse returns the Response field value if set, zero value otherwise (both if not set or set to explicit null). +// Deprecated func (o *SchedulerRestStimTaskRequest) GetResponse() interface{} { if o == nil { var ret interface{} @@ -270,6 +272,7 @@ func (o *SchedulerRestStimTaskRequest) GetResponse() interface{} { // GetResponseOk returns a tuple with the Response 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 +// Deprecated func (o *SchedulerRestStimTaskRequest) GetResponseOk() (*interface{}, bool) { if o == nil || IsNil(o.Response) { return nil, false @@ -287,6 +290,7 @@ func (o *SchedulerRestStimTaskRequest) HasResponse() bool { } // SetResponse gets a reference to the given interface{} and assigns it to the Response field. +// Deprecated func (o *SchedulerRestStimTaskRequest) SetResponse(v interface{}) { o.Response = v } @@ -466,8 +470,9 @@ func (o *SchedulerRestStimTaskRequest) UnmarshalJSON(data []byte) (err error) { // The accepted web protocol values are http and https. Protocol *string `json:"Protocol,omitempty"` // The response obtained for the scheduled API service. + // Deprecated Response interface{} `json:"Response,omitempty"` - // Upper limit on the execution time of a scheduled task. Helps purge run-away scheduled tasks. + // Upper limit on the execution time of a scheduled task. Helps purge run-away scheduled tasks. Not supported in this release. Timeout *int64 `json:"Timeout,omitempty"` // The URL of the resource in the target to which the API request is made. Url *string `json:"Url,omitempty"` diff --git a/intersight_gosdk/model_scheduler_task_result.go b/intersight_gosdk/model_scheduler_task_result.go index aad025f436..9f8e84a17f 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-18012 +API version: 1.0.11-18369 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 b3ac414c2f..62a4dd663c 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-18012 +API version: 1.0.11-18369 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 fd26738efd..cfe7d5a28d 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-18012 +API version: 1.0.11-18369 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 26386d67c1..28dba086e8 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_scheduler_task_schedule.go b/intersight_gosdk/model_scheduler_task_schedule.go index 0776d65b23..8520422a54 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ @@ -29,11 +29,11 @@ type SchedulerTaskSchedule 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"` - // The action of the scheduled task such as suspend or resume. * `None` - No action is set (default). * `Suspend` - Suspend a scheduled task indefinitely. * `Resume` - Resume a suspended scheduled task. * `SuspendTill` - Suspend the scheduled task until a specified end-date. + // The action of the scheduled task such as suspend or resume. * `None` - No action is set (default). * `Suspend` - Suspend a scheduled task indefinitely. * `Resume` - Resume a suspended scheduled task. * `SuspendTill` - Suspend the scheduled task until a specified end-date. Not supported in this release. Action *string `json:"Action,omitempty"` // A description to describe the schedule for easier identification. Description *string `json:"Description,omitempty"` - // The last action for the scheduled task is saved in this field. Set to none if there was no action. * `None` - No action is set (default). * `Suspend` - Suspend a scheduled task indefinitely. * `Resume` - Resume a suspended scheduled task. * `SuspendTill` - Suspend the scheduled task until a specified end-date. + // The last action for the scheduled task is saved in this field. Set to none if there was no action. * `None` - No action is set (default). * `Suspend` - Suspend a scheduled task indefinitely. * `Resume` - Resume a suspended scheduled task. * `SuspendTill` - Suspend the scheduled task until a specified end-date. Not supported in this release. LastAction *string `json:"LastAction,omitempty"` // A schedule name for easier identification (not required to be unique). Name *string `json:"Name,omitempty"` @@ -42,7 +42,7 @@ type SchedulerTaskSchedule struct { // Suspend a task until an end date. this applies only to the action suspendTill. SuspendEndTime *time.Time `json:"SuspendEndTime,omitempty"` TaskRequest *SchedulerRestStimTaskRequest `json:"TaskRequest,omitempty"` - // An Enum describing the type of scheduler to use. * `None` - No value was set for the schedule type (Enum value None). * `OneTime` - Define a one-time task execution time that will not automatically repeat. * `Recurring` - Specify a recurring task cadence based on a predefined pattern, such as daily, weekly, monthly, yearly, or every pattern. This option is not currently supported. + // An Enum describing the type of scheduler to use. * `None` - No value was set for the schedule type (Enum value None). * `OneTime` - Define a one-time task execution time that will not automatically repeat. * `Recurring` - Specify a recurring task cadence based on a predefined pattern, such as daily, weekly, monthly, or every pattern. Type *string `json:"Type,omitempty"` AssociatedObject NullableMoBaseMoRelationship `json:"AssociatedObject,omitempty"` WorkflowDefinition NullableWorkflowWorkflowDefinitionRelationship `json:"WorkflowDefinition,omitempty"` @@ -639,11 +639,11 @@ func (o *SchedulerTaskSchedule) 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"` - // The action of the scheduled task such as suspend or resume. * `None` - No action is set (default). * `Suspend` - Suspend a scheduled task indefinitely. * `Resume` - Resume a suspended scheduled task. * `SuspendTill` - Suspend the scheduled task until a specified end-date. + // The action of the scheduled task such as suspend or resume. * `None` - No action is set (default). * `Suspend` - Suspend a scheduled task indefinitely. * `Resume` - Resume a suspended scheduled task. * `SuspendTill` - Suspend the scheduled task until a specified end-date. Not supported in this release. Action *string `json:"Action,omitempty"` // A description to describe the schedule for easier identification. Description *string `json:"Description,omitempty"` - // The last action for the scheduled task is saved in this field. Set to none if there was no action. * `None` - No action is set (default). * `Suspend` - Suspend a scheduled task indefinitely. * `Resume` - Resume a suspended scheduled task. * `SuspendTill` - Suspend the scheduled task until a specified end-date. + // The last action for the scheduled task is saved in this field. Set to none if there was no action. * `None` - No action is set (default). * `Suspend` - Suspend a scheduled task indefinitely. * `Resume` - Resume a suspended scheduled task. * `SuspendTill` - Suspend the scheduled task until a specified end-date. Not supported in this release. LastAction *string `json:"LastAction,omitempty"` // A schedule name for easier identification (not required to be unique). Name *string `json:"Name,omitempty"` @@ -652,7 +652,7 @@ func (o *SchedulerTaskSchedule) UnmarshalJSON(data []byte) (err error) { // Suspend a task until an end date. this applies only to the action suspendTill. SuspendEndTime *time.Time `json:"SuspendEndTime,omitempty"` TaskRequest *SchedulerRestStimTaskRequest `json:"TaskRequest,omitempty"` - // An Enum describing the type of scheduler to use. * `None` - No value was set for the schedule type (Enum value None). * `OneTime` - Define a one-time task execution time that will not automatically repeat. * `Recurring` - Specify a recurring task cadence based on a predefined pattern, such as daily, weekly, monthly, yearly, or every pattern. This option is not currently supported. + // An Enum describing the type of scheduler to use. * `None` - No value was set for the schedule type (Enum value None). * `OneTime` - Define a one-time task execution time that will not automatically repeat. * `Recurring` - Specify a recurring task cadence based on a predefined pattern, such as daily, weekly, monthly, or every pattern. Type *string `json:"Type,omitempty"` AssociatedObject NullableMoBaseMoRelationship `json:"AssociatedObject,omitempty"` WorkflowDefinition NullableWorkflowWorkflowDefinitionRelationship `json:"WorkflowDefinition,omitempty"` diff --git a/intersight_gosdk/model_scheduler_task_schedule_list.go b/intersight_gosdk/model_scheduler_task_schedule_list.go index 9f95e28b9a..9d8f7fb5b8 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-18012 +API version: 1.0.11-18369 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 088a36fd25..aa7e0f56bb 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-18012 +API version: 1.0.11-18369 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 2806e1bb32..d140f4ac0a 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-18012 +API version: 1.0.11-18369 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 4a18b37441..7083a100d7 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ @@ -29,12 +29,16 @@ type SchedulerTaskScheduleStatus 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"` + // The number of consecutive times the task has failed. + ConsecutiveFailures *int64 `json:"ConsecutiveFailures,omitempty"` // The task completion count, which includes both successful executions and any failures. Count *int64 `json:"Count,omitempty"` // The status of the current task. * `None` - No status is set (default). * `Scheduled` - The status is set when a task is scheduled. * `Running` - The status is set when a task is running. * `Completed` - The status is set when a task is complete. * `Failed` - The status is set when a task fails. * `Suspended` - The status is set when a task is suspended. * `Skipped` - The status is set when a task is skipped because the previous task is still running. CurrentStatus *string `json:"CurrentStatus,omitempty"` // Indicates if this task was suspended by the system. IsSystemSuspended *bool `json:"IsSystemSuspended,omitempty"` + // The last task completion status, which includes both successful executions and any failures. * `None` - No status is set (default). * `Scheduled` - The status is set when a task is scheduled. * `Running` - The status is set when a task is running. * `Completed` - The status is set when a task is complete. * `Failed` - The status is set when a task fails. * `Suspended` - The status is set when a task is suspended. * `Skipped` - The status is set when a task is skipped because the previous task is still running. + LastRunStatus *string `json:"LastRunStatus,omitempty"` // The next run time for a recurrently scheduled the task. NextRunStartTime *time.Time `json:"NextRunStartTime,omitempty"` // The time when the last occurrence of scheduled task completed. @@ -129,6 +133,38 @@ func (o *SchedulerTaskScheduleStatus) GetDefaultObjectType() interface{} { return "scheduler.TaskScheduleStatus" } +// GetConsecutiveFailures returns the ConsecutiveFailures field value if set, zero value otherwise. +func (o *SchedulerTaskScheduleStatus) GetConsecutiveFailures() int64 { + if o == nil || IsNil(o.ConsecutiveFailures) { + var ret int64 + return ret + } + return *o.ConsecutiveFailures +} + +// GetConsecutiveFailuresOk returns a tuple with the ConsecutiveFailures field value if set, nil otherwise +// and a boolean to check if the value has been set. +func (o *SchedulerTaskScheduleStatus) GetConsecutiveFailuresOk() (*int64, bool) { + if o == nil || IsNil(o.ConsecutiveFailures) { + return nil, false + } + return o.ConsecutiveFailures, true +} + +// HasConsecutiveFailures returns a boolean if a field has been set. +func (o *SchedulerTaskScheduleStatus) HasConsecutiveFailures() bool { + if o != nil && !IsNil(o.ConsecutiveFailures) { + return true + } + + return false +} + +// SetConsecutiveFailures gets a reference to the given int64 and assigns it to the ConsecutiveFailures field. +func (o *SchedulerTaskScheduleStatus) SetConsecutiveFailures(v int64) { + o.ConsecutiveFailures = &v +} + // GetCount returns the Count field value if set, zero value otherwise. func (o *SchedulerTaskScheduleStatus) GetCount() int64 { if o == nil || IsNil(o.Count) { @@ -225,6 +261,38 @@ func (o *SchedulerTaskScheduleStatus) SetIsSystemSuspended(v bool) { o.IsSystemSuspended = &v } +// GetLastRunStatus returns the LastRunStatus field value if set, zero value otherwise. +func (o *SchedulerTaskScheduleStatus) GetLastRunStatus() string { + if o == nil || IsNil(o.LastRunStatus) { + var ret string + return ret + } + return *o.LastRunStatus +} + +// GetLastRunStatusOk returns a tuple with the LastRunStatus field value if set, nil otherwise +// and a boolean to check if the value has been set. +func (o *SchedulerTaskScheduleStatus) GetLastRunStatusOk() (*string, bool) { + if o == nil || IsNil(o.LastRunStatus) { + return nil, false + } + return o.LastRunStatus, true +} + +// HasLastRunStatus returns a boolean if a field has been set. +func (o *SchedulerTaskScheduleStatus) HasLastRunStatus() bool { + if o != nil && !IsNil(o.LastRunStatus) { + return true + } + + return false +} + +// SetLastRunStatus gets a reference to the given string and assigns it to the LastRunStatus field. +func (o *SchedulerTaskScheduleStatus) SetLastRunStatus(v string) { + o.LastRunStatus = &v +} + // GetNextRunStartTime returns the NextRunStartTime field value if set, zero value otherwise. func (o *SchedulerTaskScheduleStatus) GetNextRunStartTime() time.Time { if o == nil || IsNil(o.NextRunStartTime) { @@ -379,6 +447,9 @@ func (o SchedulerTaskScheduleStatus) ToMap() (map[string]interface{}, error) { toSerialize["ObjectType"] = o.GetDefaultObjectType() } toSerialize["ObjectType"] = o.ObjectType + if !IsNil(o.ConsecutiveFailures) { + toSerialize["ConsecutiveFailures"] = o.ConsecutiveFailures + } if !IsNil(o.Count) { toSerialize["Count"] = o.Count } @@ -388,6 +459,9 @@ func (o SchedulerTaskScheduleStatus) ToMap() (map[string]interface{}, error) { if !IsNil(o.IsSystemSuspended) { toSerialize["IsSystemSuspended"] = o.IsSystemSuspended } + if !IsNil(o.LastRunStatus) { + toSerialize["LastRunStatus"] = o.LastRunStatus + } if !IsNil(o.NextRunStartTime) { toSerialize["NextRunStartTime"] = o.NextRunStartTime } @@ -455,12 +529,16 @@ func (o *SchedulerTaskScheduleStatus) 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"` + // The number of consecutive times the task has failed. + ConsecutiveFailures *int64 `json:"ConsecutiveFailures,omitempty"` // The task completion count, which includes both successful executions and any failures. Count *int64 `json:"Count,omitempty"` // The status of the current task. * `None` - No status is set (default). * `Scheduled` - The status is set when a task is scheduled. * `Running` - The status is set when a task is running. * `Completed` - The status is set when a task is complete. * `Failed` - The status is set when a task fails. * `Suspended` - The status is set when a task is suspended. * `Skipped` - The status is set when a task is skipped because the previous task is still running. CurrentStatus *string `json:"CurrentStatus,omitempty"` // Indicates if this task was suspended by the system. IsSystemSuspended *bool `json:"IsSystemSuspended,omitempty"` + // The last task completion status, which includes both successful executions and any failures. * `None` - No status is set (default). * `Scheduled` - The status is set when a task is scheduled. * `Running` - The status is set when a task is running. * `Completed` - The status is set when a task is complete. * `Failed` - The status is set when a task fails. * `Suspended` - The status is set when a task is suspended. * `Skipped` - The status is set when a task is skipped because the previous task is still running. + LastRunStatus *string `json:"LastRunStatus,omitempty"` // The next run time for a recurrently scheduled the task. NextRunStartTime *time.Time `json:"NextRunStartTime,omitempty"` // The time when the last occurrence of scheduled task completed. @@ -478,9 +556,11 @@ func (o *SchedulerTaskScheduleStatus) UnmarshalJSON(data []byte) (err error) { varSchedulerTaskScheduleStatus := _SchedulerTaskScheduleStatus{} varSchedulerTaskScheduleStatus.ClassId = varSchedulerTaskScheduleStatusWithoutEmbeddedStruct.ClassId varSchedulerTaskScheduleStatus.ObjectType = varSchedulerTaskScheduleStatusWithoutEmbeddedStruct.ObjectType + varSchedulerTaskScheduleStatus.ConsecutiveFailures = varSchedulerTaskScheduleStatusWithoutEmbeddedStruct.ConsecutiveFailures varSchedulerTaskScheduleStatus.Count = varSchedulerTaskScheduleStatusWithoutEmbeddedStruct.Count varSchedulerTaskScheduleStatus.CurrentStatus = varSchedulerTaskScheduleStatusWithoutEmbeddedStruct.CurrentStatus varSchedulerTaskScheduleStatus.IsSystemSuspended = varSchedulerTaskScheduleStatusWithoutEmbeddedStruct.IsSystemSuspended + varSchedulerTaskScheduleStatus.LastRunStatus = varSchedulerTaskScheduleStatusWithoutEmbeddedStruct.LastRunStatus varSchedulerTaskScheduleStatus.NextRunStartTime = varSchedulerTaskScheduleStatusWithoutEmbeddedStruct.NextRunStartTime varSchedulerTaskScheduleStatus.PrevRunEndTime = varSchedulerTaskScheduleStatusWithoutEmbeddedStruct.PrevRunEndTime varSchedulerTaskScheduleStatus.PrevRunStartTime = varSchedulerTaskScheduleStatusWithoutEmbeddedStruct.PrevRunStartTime @@ -504,9 +584,11 @@ func (o *SchedulerTaskScheduleStatus) UnmarshalJSON(data []byte) (err error) { if err = json.Unmarshal(data, &additionalProperties); err == nil { delete(additionalProperties, "ClassId") delete(additionalProperties, "ObjectType") + delete(additionalProperties, "ConsecutiveFailures") delete(additionalProperties, "Count") delete(additionalProperties, "CurrentStatus") delete(additionalProperties, "IsSystemSuspended") + delete(additionalProperties, "LastRunStatus") delete(additionalProperties, "NextRunStartTime") delete(additionalProperties, "PrevRunEndTime") delete(additionalProperties, "PrevRunStartTime") diff --git a/intersight_gosdk/model_scheduler_weekly_cadence_params.go b/intersight_gosdk/model_scheduler_weekly_cadence_params.go index e90304125c..58fec19954 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ @@ -27,8 +27,10 @@ type SchedulerWeeklyCadenceParams struct { // 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. 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"` - DayOfWeek []string `json:"DayOfWeek,omitempty"` + ObjectType string `json:"ObjectType"` + DayOfWeek []string `json:"DayOfWeek,omitempty"` + // A weekly interval for a task execution. If an interval is not explicitly specified, the task will be executed once every week by default. + RunEvery *int64 `json:"RunEvery,omitempty"` AdditionalProperties map[string]interface{} } @@ -42,6 +44,8 @@ func NewSchedulerWeeklyCadenceParams(classId string, objectType string) *Schedul this := SchedulerWeeklyCadenceParams{} this.ClassId = classId this.ObjectType = objectType + var runEvery int64 = 1 + this.RunEvery = &runEvery return &this } @@ -54,6 +58,8 @@ func NewSchedulerWeeklyCadenceParamsWithDefaults() *SchedulerWeeklyCadenceParams this.ClassId = classId var objectType string = "scheduler.WeeklyCadenceParams" this.ObjectType = objectType + var runEvery int64 = 1 + this.RunEvery = &runEvery return &this } @@ -148,6 +154,38 @@ func (o *SchedulerWeeklyCadenceParams) SetDayOfWeek(v []string) { o.DayOfWeek = v } +// GetRunEvery returns the RunEvery field value if set, zero value otherwise. +func (o *SchedulerWeeklyCadenceParams) GetRunEvery() int64 { + if o == nil || IsNil(o.RunEvery) { + var ret int64 + return ret + } + return *o.RunEvery +} + +// GetRunEveryOk returns a tuple with the RunEvery field value if set, nil otherwise +// and a boolean to check if the value has been set. +func (o *SchedulerWeeklyCadenceParams) GetRunEveryOk() (*int64, bool) { + if o == nil || IsNil(o.RunEvery) { + return nil, false + } + return o.RunEvery, true +} + +// HasRunEvery returns a boolean if a field has been set. +func (o *SchedulerWeeklyCadenceParams) HasRunEvery() bool { + if o != nil && !IsNil(o.RunEvery) { + return true + } + + return false +} + +// SetRunEvery gets a reference to the given int64 and assigns it to the RunEvery field. +func (o *SchedulerWeeklyCadenceParams) SetRunEvery(v int64) { + o.RunEvery = &v +} + func (o SchedulerWeeklyCadenceParams) MarshalJSON() ([]byte, error) { toSerialize, err := o.ToMap() if err != nil { @@ -177,6 +215,9 @@ func (o SchedulerWeeklyCadenceParams) ToMap() (map[string]interface{}, error) { if o.DayOfWeek != nil { toSerialize["DayOfWeek"] = o.DayOfWeek } + if !IsNil(o.RunEvery) { + toSerialize["RunEvery"] = o.RunEvery + } for key, value := range o.AdditionalProperties { toSerialize[key] = value @@ -233,6 +274,8 @@ func (o *SchedulerWeeklyCadenceParams) 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"` DayOfWeek []string `json:"DayOfWeek,omitempty"` + // A weekly interval for a task execution. If an interval is not explicitly specified, the task will be executed once every week by default. + RunEvery *int64 `json:"RunEvery,omitempty"` } varSchedulerWeeklyCadenceParamsWithoutEmbeddedStruct := SchedulerWeeklyCadenceParamsWithoutEmbeddedStruct{} @@ -243,6 +286,7 @@ func (o *SchedulerWeeklyCadenceParams) UnmarshalJSON(data []byte) (err error) { varSchedulerWeeklyCadenceParams.ClassId = varSchedulerWeeklyCadenceParamsWithoutEmbeddedStruct.ClassId varSchedulerWeeklyCadenceParams.ObjectType = varSchedulerWeeklyCadenceParamsWithoutEmbeddedStruct.ObjectType varSchedulerWeeklyCadenceParams.DayOfWeek = varSchedulerWeeklyCadenceParamsWithoutEmbeddedStruct.DayOfWeek + varSchedulerWeeklyCadenceParams.RunEvery = varSchedulerWeeklyCadenceParamsWithoutEmbeddedStruct.RunEvery *o = SchedulerWeeklyCadenceParams(varSchedulerWeeklyCadenceParams) } else { return err @@ -263,6 +307,7 @@ func (o *SchedulerWeeklyCadenceParams) UnmarshalJSON(data []byte) (err error) { delete(additionalProperties, "ClassId") delete(additionalProperties, "ObjectType") delete(additionalProperties, "DayOfWeek") + delete(additionalProperties, "RunEvery") // remove fields from embedded structs reflectSchedulerBaseCadenceParams := reflect.ValueOf(o.SchedulerBaseCadenceParams) diff --git a/intersight_gosdk/model_scheduler_yearly_cadence_params.go b/intersight_gosdk/model_scheduler_yearly_cadence_params.go deleted file mode 100644 index 81c08f608b..0000000000 --- a/intersight_gosdk/model_scheduler_yearly_cadence_params.go +++ /dev/null @@ -1,327 +0,0 @@ -/* -Cisco Intersight - -Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. - -API version: 1.0.11-18012 -Contact: intersight@cisco.com -*/ - -// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. - -package intersight - -import ( - "encoding/json" - "fmt" - "reflect" - "strings" -) - -// checks if the SchedulerYearlyCadenceParams type satisfies the MappedNullable interface at compile time -var _ MappedNullable = &SchedulerYearlyCadenceParams{} - -// SchedulerYearlyCadenceParams Parameters for a yearly cadence. -type SchedulerYearlyCadenceParams struct { - SchedulerBaseMonthlyCadenceParams - // 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. - 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"` - MonthOfYear []string `json:"MonthOfYear,omitempty"` - AdditionalProperties map[string]interface{} -} - -type _SchedulerYearlyCadenceParams SchedulerYearlyCadenceParams - -// NewSchedulerYearlyCadenceParams instantiates a new SchedulerYearlyCadenceParams object -// This constructor will assign default values to properties that have it defined, -// and makes sure properties required by API are set, but the set of arguments -// will change when the set of required properties is changed -func NewSchedulerYearlyCadenceParams(classId string, objectType string) *SchedulerYearlyCadenceParams { - this := SchedulerYearlyCadenceParams{} - this.ClassId = classId - this.ObjectType = objectType - var customDayOfMonth string = "None" - this.CustomDayOfMonth = &customDayOfMonth - return &this -} - -// NewSchedulerYearlyCadenceParamsWithDefaults instantiates a new SchedulerYearlyCadenceParams object -// This constructor will only assign default values to properties that have it defined, -// but it doesn't guarantee that properties required by API are set -func NewSchedulerYearlyCadenceParamsWithDefaults() *SchedulerYearlyCadenceParams { - this := SchedulerYearlyCadenceParams{} - var classId string = "scheduler.YearlyCadenceParams" - this.ClassId = classId - var objectType string = "scheduler.YearlyCadenceParams" - this.ObjectType = objectType - return &this -} - -// GetClassId returns the ClassId field value -func (o *SchedulerYearlyCadenceParams) GetClassId() string { - if o == nil { - var ret string - return ret - } - - return o.ClassId -} - -// GetClassIdOk returns a tuple with the ClassId field value -// and a boolean to check if the value has been set. -func (o *SchedulerYearlyCadenceParams) GetClassIdOk() (*string, bool) { - if o == nil { - return nil, false - } - return &o.ClassId, true -} - -// SetClassId sets field value -func (o *SchedulerYearlyCadenceParams) SetClassId(v string) { - o.ClassId = v -} - -// GetDefaultClassId returns the default value "scheduler.YearlyCadenceParams" of the ClassId field. -func (o *SchedulerYearlyCadenceParams) GetDefaultClassId() interface{} { - return "scheduler.YearlyCadenceParams" -} - -// GetObjectType returns the ObjectType field value -func (o *SchedulerYearlyCadenceParams) GetObjectType() string { - if o == nil { - var ret string - return ret - } - - return o.ObjectType -} - -// GetObjectTypeOk returns a tuple with the ObjectType field value -// and a boolean to check if the value has been set. -func (o *SchedulerYearlyCadenceParams) GetObjectTypeOk() (*string, bool) { - if o == nil { - return nil, false - } - return &o.ObjectType, true -} - -// SetObjectType sets field value -func (o *SchedulerYearlyCadenceParams) SetObjectType(v string) { - o.ObjectType = v -} - -// GetDefaultObjectType returns the default value "scheduler.YearlyCadenceParams" of the ObjectType field. -func (o *SchedulerYearlyCadenceParams) GetDefaultObjectType() interface{} { - return "scheduler.YearlyCadenceParams" -} - -// GetMonthOfYear returns the MonthOfYear field value if set, zero value otherwise (both if not set or set to explicit null). -func (o *SchedulerYearlyCadenceParams) GetMonthOfYear() []string { - if o == nil { - var ret []string - return ret - } - return o.MonthOfYear -} - -// GetMonthOfYearOk returns a tuple with the MonthOfYear 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 *SchedulerYearlyCadenceParams) GetMonthOfYearOk() ([]string, bool) { - if o == nil || IsNil(o.MonthOfYear) { - return nil, false - } - return o.MonthOfYear, true -} - -// HasMonthOfYear returns a boolean if a field has been set. -func (o *SchedulerYearlyCadenceParams) HasMonthOfYear() bool { - if o != nil && !IsNil(o.MonthOfYear) { - return true - } - - return false -} - -// SetMonthOfYear gets a reference to the given []string and assigns it to the MonthOfYear field. -func (o *SchedulerYearlyCadenceParams) SetMonthOfYear(v []string) { - o.MonthOfYear = v -} - -func (o SchedulerYearlyCadenceParams) MarshalJSON() ([]byte, error) { - toSerialize, err := o.ToMap() - if err != nil { - return []byte{}, err - } - return json.Marshal(toSerialize) -} - -func (o SchedulerYearlyCadenceParams) ToMap() (map[string]interface{}, error) { - toSerialize := map[string]interface{}{} - serializedSchedulerBaseMonthlyCadenceParams, errSchedulerBaseMonthlyCadenceParams := json.Marshal(o.SchedulerBaseMonthlyCadenceParams) - if errSchedulerBaseMonthlyCadenceParams != nil { - return map[string]interface{}{}, errSchedulerBaseMonthlyCadenceParams - } - errSchedulerBaseMonthlyCadenceParams = json.Unmarshal([]byte(serializedSchedulerBaseMonthlyCadenceParams), &toSerialize) - if errSchedulerBaseMonthlyCadenceParams != nil { - return map[string]interface{}{}, errSchedulerBaseMonthlyCadenceParams - } - if _, exists := toSerialize["ClassId"]; !exists { - toSerialize["ClassId"] = o.GetDefaultClassId() - } - toSerialize["ClassId"] = o.ClassId - if _, exists := toSerialize["ObjectType"]; !exists { - toSerialize["ObjectType"] = o.GetDefaultObjectType() - } - toSerialize["ObjectType"] = o.ObjectType - if o.MonthOfYear != nil { - toSerialize["MonthOfYear"] = o.MonthOfYear - } - - for key, value := range o.AdditionalProperties { - toSerialize[key] = value - } - - return toSerialize, nil -} - -func (o *SchedulerYearlyCadenceParams) UnmarshalJSON(data []byte) (err error) { - // This validates that all required properties are included in the JSON object - // by unmarshalling the object into a generic map with string keys and checking - // that every required field exists as a key in the generic map. - requiredProperties := []string{ - "ClassId", - "ObjectType", - } - - // defaultValueFuncMap captures the default values for required properties. - // These values are used when required properties are missing from the payload. - defaultValueFuncMap := map[string]func() interface{}{ - "ClassId": o.GetDefaultClassId, - "ObjectType": o.GetDefaultObjectType, - } - var defaultValueApplied bool - allProperties := make(map[string]interface{}) - - err = json.Unmarshal(data, &allProperties) - - if err != nil { - return err - } - - for _, requiredProperty := range requiredProperties { - if value, exists := allProperties[requiredProperty]; !exists || value == "" { - if _, ok := defaultValueFuncMap[requiredProperty]; ok { - allProperties[requiredProperty] = defaultValueFuncMap[requiredProperty]() - defaultValueApplied = true - } - } - if value, exists := allProperties[requiredProperty]; !exists || value == "" { - return fmt.Errorf("no value given for required property %v", requiredProperty) - } - } - - if defaultValueApplied { - data, err = json.Marshal(allProperties) - if err != nil { - return err - } - } - type SchedulerYearlyCadenceParamsWithoutEmbeddedStruct struct { - // 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. - 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"` - MonthOfYear []string `json:"MonthOfYear,omitempty"` - } - - varSchedulerYearlyCadenceParamsWithoutEmbeddedStruct := SchedulerYearlyCadenceParamsWithoutEmbeddedStruct{} - - err = json.Unmarshal(data, &varSchedulerYearlyCadenceParamsWithoutEmbeddedStruct) - if err == nil { - varSchedulerYearlyCadenceParams := _SchedulerYearlyCadenceParams{} - varSchedulerYearlyCadenceParams.ClassId = varSchedulerYearlyCadenceParamsWithoutEmbeddedStruct.ClassId - varSchedulerYearlyCadenceParams.ObjectType = varSchedulerYearlyCadenceParamsWithoutEmbeddedStruct.ObjectType - varSchedulerYearlyCadenceParams.MonthOfYear = varSchedulerYearlyCadenceParamsWithoutEmbeddedStruct.MonthOfYear - *o = SchedulerYearlyCadenceParams(varSchedulerYearlyCadenceParams) - } else { - return err - } - - varSchedulerYearlyCadenceParams := _SchedulerYearlyCadenceParams{} - - err = json.Unmarshal(data, &varSchedulerYearlyCadenceParams) - if err == nil { - o.SchedulerBaseMonthlyCadenceParams = varSchedulerYearlyCadenceParams.SchedulerBaseMonthlyCadenceParams - } else { - return err - } - - additionalProperties := make(map[string]interface{}) - - if err = json.Unmarshal(data, &additionalProperties); err == nil { - delete(additionalProperties, "ClassId") - delete(additionalProperties, "ObjectType") - delete(additionalProperties, "MonthOfYear") - - // remove fields from embedded structs - reflectSchedulerBaseMonthlyCadenceParams := reflect.ValueOf(o.SchedulerBaseMonthlyCadenceParams) - for i := 0; i < reflectSchedulerBaseMonthlyCadenceParams.Type().NumField(); i++ { - t := reflectSchedulerBaseMonthlyCadenceParams.Type().Field(i) - - if jsonTag := t.Tag.Get("json"); jsonTag != "" { - fieldName := "" - if commaIdx := strings.Index(jsonTag, ","); commaIdx > 0 { - fieldName = jsonTag[:commaIdx] - } else { - fieldName = jsonTag - } - if fieldName != "AdditionalProperties" { - delete(additionalProperties, fieldName) - } - } - } - - o.AdditionalProperties = additionalProperties - } - - return err -} - -type NullableSchedulerYearlyCadenceParams struct { - value *SchedulerYearlyCadenceParams - isSet bool -} - -func (v NullableSchedulerYearlyCadenceParams) Get() *SchedulerYearlyCadenceParams { - return v.value -} - -func (v *NullableSchedulerYearlyCadenceParams) Set(val *SchedulerYearlyCadenceParams) { - v.value = val - v.isSet = true -} - -func (v NullableSchedulerYearlyCadenceParams) IsSet() bool { - return v.isSet -} - -func (v *NullableSchedulerYearlyCadenceParams) Unset() { - v.value = nil - v.isSet = false -} - -func NewNullableSchedulerYearlyCadenceParams(val *SchedulerYearlyCadenceParams) *NullableSchedulerYearlyCadenceParams { - return &NullableSchedulerYearlyCadenceParams{value: val, isSet: true} -} - -func (v NullableSchedulerYearlyCadenceParams) MarshalJSON() ([]byte, error) { - return json.Marshal(v.value) -} - -func (v *NullableSchedulerYearlyCadenceParams) UnmarshalJSON(src []byte) error { - v.isSet = true - return json.Unmarshal(src, &v.value) -} diff --git a/intersight_gosdk/model_sdaaci_connection.go b/intersight_gosdk/model_sdaaci_connection.go index 7b0ce3fc97..b0440aa604 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_sdaaci_connection_detail.go b/intersight_gosdk/model_sdaaci_connection_detail.go index a35a4dcf11..7fb2c03a18 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_sdaaci_connection_detail_list.go b/intersight_gosdk/model_sdaaci_connection_detail_list.go index c285f08fb3..ef9562d579 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-18012 +API version: 1.0.11-18369 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 bda99fcedc..26e663702b 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_sdaaci_connection_list.go b/intersight_gosdk/model_sdaaci_connection_list.go index 910c0be91c..32332d13f6 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_sdaaci_connection_relationship.go b/intersight_gosdk/model_sdaaci_connection_relationship.go index 787d8c3b50..6ec56b8cba 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_sdaaci_connection_response.go b/intersight_gosdk/model_sdaaci_connection_response.go index bbea4c99a2..ebecf0304e 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_sdcard_diagnostics.go b/intersight_gosdk/model_sdcard_diagnostics.go index 99d66f96c0..bb051595f5 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_sdcard_drivers.go b/intersight_gosdk/model_sdcard_drivers.go index 341a36042c..cde98e4b84 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-18012 +API version: 1.0.11-18369 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 48aed978da..9747fb0ac1 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_sdcard_operating_system.go b/intersight_gosdk/model_sdcard_operating_system.go index 88082541aa..fcf6dc5b26 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_sdcard_partition.go b/intersight_gosdk/model_sdcard_partition.go index 2ab5b1aed2..2c6cf080cb 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_sdcard_policy.go b/intersight_gosdk/model_sdcard_policy.go index 4cd076146d..8b96c24242 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_sdcard_policy_inventory.go b/intersight_gosdk/model_sdcard_policy_inventory.go index 2039502cc9..af39c285b4 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-18012 +API version: 1.0.11-18369 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 3ef0e449d4..94aba13a6c 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-18012 +API version: 1.0.11-18369 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 7c7efa1346..3e276532ef 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_sdcard_policy_list.go b/intersight_gosdk/model_sdcard_policy_list.go index f2243a79b5..5a60215dab 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_sdcard_policy_response.go b/intersight_gosdk/model_sdcard_policy_response.go index 294466ca3e..4f4a42647b 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-18012 +API version: 1.0.11-18369 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 0e1f2da1b3..ae801d147d 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_sdcard_user_partition.go b/intersight_gosdk/model_sdcard_user_partition.go index 6063800b51..024c125f0f 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_sdcard_virtual_drive.go b/intersight_gosdk/model_sdcard_virtual_drive.go index b24d11647c..6bd58934e4 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_search_search_item.go b/intersight_gosdk/model_search_search_item.go index 32f52f94c8..0f4b514742 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-18012 +API version: 1.0.11-18369 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 80d9e2d3d9..55f8a73daf 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-18012 +API version: 1.0.11-18369 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 70aa8c16ac..0f09137bf2 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_search_suggest_item.go b/intersight_gosdk/model_search_suggest_item.go index 2482998a7c..bb687dcb86 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-18012 +API version: 1.0.11-18369 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 d91929c7bd..320d847d01 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-18012 +API version: 1.0.11-18369 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 af8f5e322e..780a659b6d 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_search_tag_item.go b/intersight_gosdk/model_search_tag_item.go index 8d977c6920..128a4bc93e 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-18012 +API version: 1.0.11-18369 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 a87c1cf8a3..68e1178773 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-18012 +API version: 1.0.11-18369 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 d296785b97..ab8978ba06 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_security_unit.go b/intersight_gosdk/model_security_unit.go index 2129beac3f..d5aa4e0d88 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_security_unit_list.go b/intersight_gosdk/model_security_unit_list.go index 454edadabc..658e4a2467 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_security_unit_relationship.go b/intersight_gosdk/model_security_unit_relationship.go index 3bbf38942a..b5ac91a044 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_security_unit_response.go b/intersight_gosdk/model_security_unit_response.go index d6a7b3e319..87f55905da 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_server_base_profile.go b/intersight_gosdk/model_server_base_profile.go index cf4641ecdb..ad0e40e613 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ @@ -28,6 +28,8 @@ type ServerBaseProfile struct { ClassId string `json:"ClassId"` // 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 management mode of the server. * `IntersightStandalone` - Intersight Standalone mode of operation. * `Intersight` - Intersight managed mode of operation. + ManagementMode *string `json:"ManagementMode,omitempty"` // 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"` // UUID address allocation type selected to assign an UUID address for the server. * `NONE` - The user did not assign any UUID address. * `STATIC` - The user assigns a static UUID address. * `POOL` - The user selects a pool from which the address will be leased. @@ -118,6 +120,38 @@ func (o *ServerBaseProfile) SetObjectType(v string) { o.ObjectType = v } +// GetManagementMode returns the ManagementMode field value if set, zero value otherwise. +func (o *ServerBaseProfile) GetManagementMode() string { + if o == nil || IsNil(o.ManagementMode) { + var ret string + return ret + } + return *o.ManagementMode +} + +// GetManagementModeOk returns a tuple with the ManagementMode field value if set, nil otherwise +// and a boolean to check if the value has been set. +func (o *ServerBaseProfile) GetManagementModeOk() (*string, bool) { + if o == nil || IsNil(o.ManagementMode) { + return nil, false + } + return o.ManagementMode, true +} + +// HasManagementMode returns a boolean if a field has been set. +func (o *ServerBaseProfile) HasManagementMode() bool { + if o != nil && !IsNil(o.ManagementMode) { + return true + } + + return false +} + +// SetManagementMode gets a reference to the given string and assigns it to the ManagementMode field. +func (o *ServerBaseProfile) SetManagementMode(v string) { + o.ManagementMode = &v +} + // GetTargetPlatform returns the TargetPlatform field value if set, zero value otherwise. func (o *ServerBaseProfile) GetTargetPlatform() string { if o == nil || IsNil(o.TargetPlatform) { @@ -288,6 +322,9 @@ func (o ServerBaseProfile) ToMap() (map[string]interface{}, error) { } toSerialize["ClassId"] = o.ClassId toSerialize["ObjectType"] = o.ObjectType + if !IsNil(o.ManagementMode) { + toSerialize["ManagementMode"] = o.ManagementMode + } if !IsNil(o.TargetPlatform) { toSerialize["TargetPlatform"] = o.TargetPlatform } @@ -352,6 +389,8 @@ func (o *ServerBaseProfile) 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. The enum values provides the list of concrete types that can be instantiated from this abstract type. ObjectType string `json:"ObjectType"` + // The management mode of the server. * `IntersightStandalone` - Intersight Standalone mode of operation. * `Intersight` - Intersight managed mode of operation. + ManagementMode *string `json:"ManagementMode,omitempty"` // 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"` // UUID address allocation type selected to assign an UUID address for the server. * `NONE` - The user did not assign any UUID address. * `STATIC` - The user assigns a static UUID address. * `POOL` - The user selects a pool from which the address will be leased. @@ -367,6 +406,7 @@ func (o *ServerBaseProfile) UnmarshalJSON(data []byte) (err error) { varServerBaseProfile := _ServerBaseProfile{} varServerBaseProfile.ClassId = varServerBaseProfileWithoutEmbeddedStruct.ClassId varServerBaseProfile.ObjectType = varServerBaseProfileWithoutEmbeddedStruct.ObjectType + varServerBaseProfile.ManagementMode = varServerBaseProfileWithoutEmbeddedStruct.ManagementMode varServerBaseProfile.TargetPlatform = varServerBaseProfileWithoutEmbeddedStruct.TargetPlatform varServerBaseProfile.UuidAddressType = varServerBaseProfileWithoutEmbeddedStruct.UuidAddressType varServerBaseProfile.ConfigResult = varServerBaseProfileWithoutEmbeddedStruct.ConfigResult @@ -390,6 +430,7 @@ func (o *ServerBaseProfile) UnmarshalJSON(data []byte) (err error) { if err = json.Unmarshal(data, &additionalProperties); err == nil { delete(additionalProperties, "ClassId") delete(additionalProperties, "ObjectType") + delete(additionalProperties, "ManagementMode") delete(additionalProperties, "TargetPlatform") delete(additionalProperties, "UuidAddressType") delete(additionalProperties, "ConfigResult") diff --git a/intersight_gosdk/model_server_base_profile_relationship.go b/intersight_gosdk/model_server_base_profile_relationship.go index cef75e8121..b966bd03c9 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-18012 +API version: 1.0.11-18369 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 fcd5e3e86a..5a54f1771a 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-18012 +API version: 1.0.11-18369 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 52c5e07e1a..f6634b5c57 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-18012 +API version: 1.0.11-18369 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 7db9a4ea51..5c410524da 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-18012 +API version: 1.0.11-18369 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 6c41c30c7b..931edbee44 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_server_config_import.go b/intersight_gosdk/model_server_config_import.go index 35b17920e6..709ddec111 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_server_config_import_list.go b/intersight_gosdk/model_server_config_import_list.go index 70ce768a09..406f41b7b4 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-18012 +API version: 1.0.11-18369 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 4d9b1ab036..22610dce99 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_server_config_result.go b/intersight_gosdk/model_server_config_result.go index eec66e8455..8845c00579 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-18012 +API version: 1.0.11-18369 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 3794f84f00..27710bd13b 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-18012 +API version: 1.0.11-18369 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 6bed895291..02ee745345 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-18012 +API version: 1.0.11-18369 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 f303954e3a..6fd2652bf3 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-18012 +API version: 1.0.11-18369 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 c56bddd577..022f2bd3f1 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-18012 +API version: 1.0.11-18369 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 f40ed223bc..bc4b33bb01 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-18012 +API version: 1.0.11-18369 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 2ea229df70..428bf15569 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-18012 +API version: 1.0.11-18369 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 029ce2415c..1cbc1909cb 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_server_disruption.go b/intersight_gosdk/model_server_disruption.go index cecc75048d..0fef5f2b87 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_server_disruption_list.go b/intersight_gosdk/model_server_disruption_list.go index 673fc4f92e..670a2c8a4e 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_server_disruption_response.go b/intersight_gosdk/model_server_disruption_response.go index 657ab69e0f..83997a9c0b 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-18012 +API version: 1.0.11-18369 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 69c9e3c39f..08d74e31fc 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_server_profile.go b/intersight_gosdk/model_server_profile.go index 483375e3ac..7c3895cba6 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_server_profile_list.go b/intersight_gosdk/model_server_profile_list.go index 02fc751ba3..12d508b7d0 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_server_profile_relationship.go b/intersight_gosdk/model_server_profile_relationship.go index d19e5df4c1..4ed526c604 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_server_profile_response.go b/intersight_gosdk/model_server_profile_response.go index 43222ec843..4a28b33237 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_server_profile_template.go b/intersight_gosdk/model_server_profile_template.go index 753bd15c67..eb3a7ac4b9 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-18012 +API version: 1.0.11-18369 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 7ff168ac96..9ccccf4e36 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-18012 +API version: 1.0.11-18369 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 eaebf8a86b..a1e36b2861 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-18012 +API version: 1.0.11-18369 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 5d6fac6ce1..153e487139 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_serviceitem_base_message.go b/intersight_gosdk/model_serviceitem_base_message.go index f68e1daf64..8a910fd3d0 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-18012 +API version: 1.0.11-18369 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 5640e02ce4..5cd9765551 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_serviceitem_message.go b/intersight_gosdk/model_serviceitem_message.go index f3fec8dbe3..8851692856 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-18012 +API version: 1.0.11-18369 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 4066fd68d3..d104e00a43 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_servicenow_change_request.go b/intersight_gosdk/model_servicenow_change_request.go index 57872ced7c..6bf2ee5965 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-18012 +API version: 1.0.11-18369 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 3e2ac41400..6887a316d2 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-18012 +API version: 1.0.11-18369 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 726b95fdc3..d65c8b772d 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_servicenow_incident.go b/intersight_gosdk/model_servicenow_incident.go index 58e74a0c0f..4ea9cd3f2e 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_servicenow_incident_list.go b/intersight_gosdk/model_servicenow_incident_list.go index 9119a6cf1f..f2fc29b99e 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_servicenow_incident_response.go b/intersight_gosdk/model_servicenow_incident_response.go index 77accbbea0..e06e349ce4 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_servicenow_inventory_entity.go b/intersight_gosdk/model_servicenow_inventory_entity.go index 954cb02e0b..7ba8fb7d44 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_servicerequest_message.go b/intersight_gosdk/model_servicerequest_message.go index 30622c1f45..aaae4d06fd 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_session_abstract_session.go b/intersight_gosdk/model_session_abstract_session.go index df2070aca7..a4ed4e3f2a 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-18012 +API version: 1.0.11-18369 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 8f412e22af..a2d748a397 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-18012 +API version: 1.0.11-18369 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 f8c9454a55..d96f7b2ad5 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_smtp_policy.go b/intersight_gosdk/model_smtp_policy.go index 364f886aa9..30dc75a505 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_smtp_policy_list.go b/intersight_gosdk/model_smtp_policy_list.go index c885aadecd..ebe2983227 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_smtp_policy_response.go b/intersight_gosdk/model_smtp_policy_response.go index bb8b822b24..38b4214b10 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_snmp_policy.go b/intersight_gosdk/model_snmp_policy.go index e61dca6cb9..335b438eeb 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ @@ -28,7 +28,7 @@ type SnmpPolicy 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"` - // The default SNMPv1, SNMPv2c community name or SNMPv3 username to include on any trap messages sent to the SNMP host. The name can be 18 characters long. + // The default SNMPv1, SNMPv2c community name or SNMPv3 username to include on any trap messages sent to the SNMP host. The name can be 32 characters long. AccessCommunityString *string `json:"AccessCommunityString,omitempty"` // Controls access to the information in the inventory tables. Applicable only for SNMPv1 and SNMPv2c users. * `Disabled` - Blocks access to the information in the inventory tables. * `Limited` - Partial access to read the information in the inventory tables. * `Full` - Full access to read the information in the inventory tables. CommunityAccess *string `json:"CommunityAccess,omitempty"` @@ -744,7 +744,7 @@ func (o *SnmpPolicy) 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"` - // The default SNMPv1, SNMPv2c community name or SNMPv3 username to include on any trap messages sent to the SNMP host. The name can be 18 characters long. + // The default SNMPv1, SNMPv2c community name or SNMPv3 username to include on any trap messages sent to the SNMP host. The name can be 32 characters long. AccessCommunityString *string `json:"AccessCommunityString,omitempty"` // Controls access to the information in the inventory tables. Applicable only for SNMPv1 and SNMPv2c users. * `Disabled` - Blocks access to the information in the inventory tables. * `Limited` - Partial access to read the information in the inventory tables. * `Full` - Full access to read the information in the inventory tables. CommunityAccess *string `json:"CommunityAccess,omitempty"` diff --git a/intersight_gosdk/model_snmp_policy_inventory.go b/intersight_gosdk/model_snmp_policy_inventory.go index f6c76f9658..827127f425 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ @@ -28,7 +28,7 @@ type SnmpPolicyInventory 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"` - // The default SNMPv1, SNMPv2c community name or SNMPv3 username to include on any trap messages sent to the SNMP host. The name can be 18 characters long. + // The default SNMPv1, SNMPv2c community name or SNMPv3 username to include on any trap messages sent to the SNMP host. The name can be 32 characters long. AccessCommunityString *string `json:"AccessCommunityString,omitempty"` // Controls access to the information in the inventory tables. Applicable only for SNMPv1 and SNMPv2c users. * `Disabled` - Blocks access to the information in the inventory tables. * `Limited` - Partial access to read the information in the inventory tables. * `Full` - Full access to read the information in the inventory tables. CommunityAccess *string `json:"CommunityAccess,omitempty"` @@ -686,7 +686,7 @@ func (o *SnmpPolicyInventory) 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"` - // The default SNMPv1, SNMPv2c community name or SNMPv3 username to include on any trap messages sent to the SNMP host. The name can be 18 characters long. + // The default SNMPv1, SNMPv2c community name or SNMPv3 username to include on any trap messages sent to the SNMP host. The name can be 32 characters long. AccessCommunityString *string `json:"AccessCommunityString,omitempty"` // Controls access to the information in the inventory tables. Applicable only for SNMPv1 and SNMPv2c users. * `Disabled` - Blocks access to the information in the inventory tables. * `Limited` - Partial access to read the information in the inventory tables. * `Full` - Full access to read the information in the inventory tables. CommunityAccess *string `json:"CommunityAccess,omitempty"` diff --git a/intersight_gosdk/model_snmp_policy_inventory_list.go b/intersight_gosdk/model_snmp_policy_inventory_list.go index 7b66bfacad..1047efab36 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-18012 +API version: 1.0.11-18369 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 f298bc6e0f..a2d4fa102d 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_snmp_policy_list.go b/intersight_gosdk/model_snmp_policy_list.go index b98933ef3d..32c209ebb3 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_snmp_policy_response.go b/intersight_gosdk/model_snmp_policy_response.go index ffa637eae6..4e863f0800 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_snmp_trap.go b/intersight_gosdk/model_snmp_trap.go index e7e135af20..afe2404889 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_snmp_user.go b/intersight_gosdk/model_snmp_user.go index 266e37d5be..159b2edcdb 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_software_appliance_distributable.go b/intersight_gosdk/model_software_appliance_distributable.go index 767bcda7c5..e9d4a038d2 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-18012 +API version: 1.0.11-18369 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 f26d8ab35c..17a09d6372 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-18012 +API version: 1.0.11-18369 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 ee43eb0d7f..7e6beee6e5 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_software_download_history.go b/intersight_gosdk/model_software_download_history.go index c58d90cf0c..6ccb8c117d 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-18012 +API version: 1.0.11-18369 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 ce9adabe01..46f87b4796 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-18012 +API version: 1.0.11-18369 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 6043755f9d..0e6006ea89 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-18012 +API version: 1.0.11-18369 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 12af7097d6..35d8007624 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-18012 +API version: 1.0.11-18369 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 d1ad2ef227..69ddedde98 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-18012 +API version: 1.0.11-18369 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 f7a79fe5e9..5c3f614545 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_software_hci_distributable.go b/intersight_gosdk/model_software_hci_distributable.go index 588a8da118..56dcf8db4d 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-18012 +API version: 1.0.11-18369 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 19da8d680d..da66b15141 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-18012 +API version: 1.0.11-18369 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 e83077563f..aa7e32db9e 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-18012 +API version: 1.0.11-18369 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 caa8501e78..425502e0c3 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_software_hcl_meta.go b/intersight_gosdk/model_software_hcl_meta.go index aa14f1be48..b45435eca3 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-18012 +API version: 1.0.11-18369 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 28bbe12e24..aa70e4e691 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-18012 +API version: 1.0.11-18369 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 d6a75c6eda..7a44a3b12e 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-18012 +API version: 1.0.11-18369 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 0f2443b54b..0d4aadeca7 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-18012 +API version: 1.0.11-18369 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 dcc8f583d2..935a7a1dca 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-18012 +API version: 1.0.11-18369 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 8d968dc7f2..0ad311903b 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_software_hyperflex_distributable.go b/intersight_gosdk/model_software_hyperflex_distributable.go index 6bd5a09093..22202ffa1e 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-18012 +API version: 1.0.11-18369 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 084243aec3..3d9221ca20 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-18012 +API version: 1.0.11-18369 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 736e90dd66..9e63e5b60c 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-18012 +API version: 1.0.11-18369 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 a909584bef..d89948e07b 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-18012 +API version: 1.0.11-18369 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 9e46007b1e..c6f2980519 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-18012 +API version: 1.0.11-18369 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 73cd7968b1..79b48d9330 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-18012 +API version: 1.0.11-18369 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 9f6b44d5f5..672254b522 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_software_release_meta.go b/intersight_gosdk/model_software_release_meta.go index 58ba6e3b6e..6dbbf62a1c 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-18012 +API version: 1.0.11-18369 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 ff181e530b..5ac105d231 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-18012 +API version: 1.0.11-18369 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 1570180320..cd4594c614 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_software_solution_distributable.go b/intersight_gosdk/model_software_solution_distributable.go index aa95de0032..5a0ab3d7f3 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-18012 +API version: 1.0.11-18369 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 10be281666..d5f976022a 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-18012 +API version: 1.0.11-18369 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 ed46a70f0a..3a18bc7b8c 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-18012 +API version: 1.0.11-18369 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 9afc1dab45..90d7513b37 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-18012 +API version: 1.0.11-18369 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 15ff52fccf..01676c1b52 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-18012 +API version: 1.0.11-18369 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 b73bfc3c58..988283e07c 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-18012 +API version: 1.0.11-18369 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 46fe5ea4a7..304adec63f 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_software_ucsd_distributable.go b/intersight_gosdk/model_software_ucsd_distributable.go index 9a6e0ee1a2..6b3c3f5579 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-18012 +API version: 1.0.11-18369 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 52493985ad..398ff27300 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-18012 +API version: 1.0.11-18369 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 a226a66e89..2d74e241c8 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-18012 +API version: 1.0.11-18369 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 c4e02ac2ff..e45efd2317 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_softwarerepository_appliance_upload.go b/intersight_gosdk/model_softwarerepository_appliance_upload.go index 4cf06c5c03..76c0752a8e 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_softwarerepository_authorization.go b/intersight_gosdk/model_softwarerepository_authorization.go index df5153afb6..ddc2f0659f 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_softwarerepository_authorization_list.go b/intersight_gosdk/model_softwarerepository_authorization_list.go index c9f4b71682..32a1c8e0b2 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_softwarerepository_authorization_response.go b/intersight_gosdk/model_softwarerepository_authorization_response.go index 5aa7c95300..bde8cc6692 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_softwarerepository_cached_image.go b/intersight_gosdk/model_softwarerepository_cached_image.go index 0dfc352d46..180fe38051 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-18012 +API version: 1.0.11-18369 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 9ab69fce64..dee9166eac 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-18012 +API version: 1.0.11-18369 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 d04c43bfe3..cf177d7038 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_softwarerepository_catalog.go b/intersight_gosdk/model_softwarerepository_catalog.go index 7ecf985b42..fa70eba4c2 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_softwarerepository_catalog_list.go b/intersight_gosdk/model_softwarerepository_catalog_list.go index 8ab65415bd..8f3097964f 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_softwarerepository_catalog_relationship.go b/intersight_gosdk/model_softwarerepository_catalog_relationship.go index 89fb212ff3..69edd4d323 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_softwarerepository_catalog_response.go b/intersight_gosdk/model_softwarerepository_catalog_response.go index e911d1a995..8665980426 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_softwarerepository_category_mapper.go b/intersight_gosdk/model_softwarerepository_category_mapper.go index 4af5435683..0330ae87ef 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-18012 +API version: 1.0.11-18369 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 c7e1157a10..baac4ac193 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-18012 +API version: 1.0.11-18369 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 22281cc7b3..e18a9304f0 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-18012 +API version: 1.0.11-18369 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 029e947d99..eb6bac9ce6 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-18012 +API version: 1.0.11-18369 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 64473670e4..22bf959b77 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-18012 +API version: 1.0.11-18369 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 881443b5b1..0a7e343b51 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-18012 +API version: 1.0.11-18369 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 57b2506799..e58b5249f6 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-18012 +API version: 1.0.11-18369 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 37a4b23614..014cdfceba 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-18012 +API version: 1.0.11-18369 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 6c80962a23..2113976dfa 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-18012 +API version: 1.0.11-18369 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 925d634be7..dad1178120 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-18012 +API version: 1.0.11-18369 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 eadd04dada..ce6a799603 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-18012 +API version: 1.0.11-18369 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 3665c68b99..046b9d1d3e 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_softwarerepository_cifs_server.go b/intersight_gosdk/model_softwarerepository_cifs_server.go index c1be8777a6..420cba7863 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_softwarerepository_constraint_models.go b/intersight_gosdk/model_softwarerepository_constraint_models.go index bbb3e512b3..cebe22711a 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_softwarerepository_download_spec.go b/intersight_gosdk/model_softwarerepository_download_spec.go index a1d3caeb4e..9db1de1aa3 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-18012 +API version: 1.0.11-18369 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 55ea6de399..b8f72b35d1 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-18012 +API version: 1.0.11-18369 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 c2f5be82c2..7457cfcca7 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_softwarerepository_file.go b/intersight_gosdk/model_softwarerepository_file.go index c160e0fedc..0c803b154d 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_softwarerepository_file_relationship.go b/intersight_gosdk/model_softwarerepository_file_relationship.go index 7581bd46c4..5c5a38c546 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_softwarerepository_file_server.go b/intersight_gosdk/model_softwarerepository_file_server.go index 137385a060..7fce469721 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_softwarerepository_http_server.go b/intersight_gosdk/model_softwarerepository_http_server.go index 28b8b5dce5..52bb0e14d2 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_softwarerepository_import_result.go b/intersight_gosdk/model_softwarerepository_import_result.go index 950e53ee27..904e7061c2 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_softwarerepository_local_machine.go b/intersight_gosdk/model_softwarerepository_local_machine.go index fb61fbc6fd..ed1cfaf5c0 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_softwarerepository_nfs_server.go b/intersight_gosdk/model_softwarerepository_nfs_server.go index 4a26d7a54b..0dc72c9ec9 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-18012 +API version: 1.0.11-18369 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 c60a156432..5a1a93aef0 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-18012 +API version: 1.0.11-18369 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 56b66d90e9..66b9653315 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-18012 +API version: 1.0.11-18369 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 5e5cd4e1cf..4ccc937ae6 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-18012 +API version: 1.0.11-18369 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 05fff7bc05..38425737d5 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_softwarerepository_release.go b/intersight_gosdk/model_softwarerepository_release.go index 938b06ce43..10e9e16362 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_softwarerepository_release_list.go b/intersight_gosdk/model_softwarerepository_release_list.go index 6527d58501..ca0bf6f3e9 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_softwarerepository_release_relationship.go b/intersight_gosdk/model_softwarerepository_release_relationship.go index b3e3e41491..289a0a1d6b 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_softwarerepository_release_response.go b/intersight_gosdk/model_softwarerepository_release_response.go index 45ce7cb139..ddaf983937 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-18012 +API version: 1.0.11-18369 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 d0480551bc..3c62a7d00c 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_sol_policy.go b/intersight_gosdk/model_sol_policy.go index 1910b4ea67..efc992b722 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_sol_policy_inventory.go b/intersight_gosdk/model_sol_policy_inventory.go index 1f5b9dc0a7..0b7d189f87 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-18012 +API version: 1.0.11-18369 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 45ad4a9dd2..4fa438faee 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-18012 +API version: 1.0.11-18369 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 4af710b6ea..d47db042fd 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_sol_policy_list.go b/intersight_gosdk/model_sol_policy_list.go index 36785f59a0..f3cb3b4188 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_sol_policy_response.go b/intersight_gosdk/model_sol_policy_response.go index 868f71ba95..14ae30e155 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_ssh_policy.go b/intersight_gosdk/model_ssh_policy.go index 95d58f2130..6e52960f97 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_ssh_policy_inventory.go b/intersight_gosdk/model_ssh_policy_inventory.go index d50bcc9f79..eb7c81c7dd 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-18012 +API version: 1.0.11-18369 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 c322da1726..b10137b341 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-18012 +API version: 1.0.11-18369 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 b04bec89be..07d8cef46c 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_ssh_policy_list.go b/intersight_gosdk/model_ssh_policy_list.go index 8831f213a6..c2bcfa6f76 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_ssh_policy_response.go b/intersight_gosdk/model_ssh_policy_response.go index a6ce6ccc8f..e1ae8d75df 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-18012 +API version: 1.0.11-18369 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 50e2412edc..bade8dc20f 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_base_array.go b/intersight_gosdk/model_storage_base_array.go index 62bf4b6b9a..5d87099ca7 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-18012 +API version: 1.0.11-18369 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 dee1e18475..38e49dc7d4 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-18012 +API version: 1.0.11-18369 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 ce623481cf..2fb472c702 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-18012 +API version: 1.0.11-18369 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 cc7a2a9155..a438a047a1 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_base_capacity.go b/intersight_gosdk/model_storage_base_capacity.go index ac36750266..06cd2e58cb 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_base_cluster.go b/intersight_gosdk/model_storage_base_cluster.go index 445e7b8b4d..39e47b8549 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-18012 +API version: 1.0.11-18369 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 46708ebee7..e16d2ef716 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-18012 +API version: 1.0.11-18369 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 637e0a841c..a1f7532f6b 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_base_host.go b/intersight_gosdk/model_storage_base_host.go index 22f1f0480d..d0d8583f66 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-18012 +API version: 1.0.11-18369 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 f401105f74..a2935b5151 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-18012 +API version: 1.0.11-18369 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 da15c9aa90..0280e47b01 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_base_initiator.go b/intersight_gosdk/model_storage_base_initiator.go index 054dca45eb..cafe34d95f 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-18012 +API version: 1.0.11-18369 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 fce7058202..2414ea5b09 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_base_performance_metrics_average.go b/intersight_gosdk/model_storage_base_performance_metrics_average.go index 028af9beb1..9a6489cf9d 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-18012 +API version: 1.0.11-18369 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 298d763b9d..b2c9114cb2 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-18012 +API version: 1.0.11-18369 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 c8801aade5..f992100b09 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-18012 +API version: 1.0.11-18369 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 4154399da7..cfade440d1 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-18012 +API version: 1.0.11-18369 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 e0296604f6..c1129f8168 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-18012 +API version: 1.0.11-18369 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 74191bf11b..c866182e3f 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-18012 +API version: 1.0.11-18369 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 93d642765a..639c1a2107 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_base_snapshot.go b/intersight_gosdk/model_storage_base_snapshot.go index 407ad55178..0be23f0ab0 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-18012 +API version: 1.0.11-18369 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 f51c33bf5d..dbf2867bcb 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-18012 +API version: 1.0.11-18369 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 5fd909e87e..90c32b8ed6 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_base_target.go b/intersight_gosdk/model_storage_base_target.go index 31199f18ce..dee0ca974a 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_base_tenant.go b/intersight_gosdk/model_storage_base_tenant.go index 5f3e8a1087..a3d9651a54 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_base_volume.go b/intersight_gosdk/model_storage_base_volume.go index 21b9d5cc38..623aef12ff 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-18012 +API version: 1.0.11-18369 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 089cf9d42c..201397f006 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-18012 +API version: 1.0.11-18369 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 a21ffacbc9..32f28404e3 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-18012 +API version: 1.0.11-18369 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 868aa354c2..5f52954afc 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-18012 +API version: 1.0.11-18369 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 1a1eb4fc9b..f39c0815ac 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_controller.go b/intersight_gosdk/model_storage_controller.go index 4f1c1d800a..d2ef5f4414 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_controller_drive.go b/intersight_gosdk/model_storage_controller_drive.go index e7bdebd16b..016cf99834 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-18012 +API version: 1.0.11-18369 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 b089f46bc5..820f744944 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-18012 +API version: 1.0.11-18369 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 adc5e49235..c363e442f8 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-18012 +API version: 1.0.11-18369 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 d32284282f..104629acc6 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_controller_list.go b/intersight_gosdk/model_storage_controller_list.go index b4c0017748..1afb42d6f0 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_controller_relationship.go b/intersight_gosdk/model_storage_controller_relationship.go index eeaeb611b5..ae50768f7b 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_controller_response.go b/intersight_gosdk/model_storage_controller_response.go index 09b96094ac..f0963537ea 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_disk_group.go b/intersight_gosdk/model_storage_disk_group.go index ee8b5c9d3e..7cac681731 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-18012 +API version: 1.0.11-18369 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 7dd753cfb5..836b66504e 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-18012 +API version: 1.0.11-18369 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 f4594eefc4..88e3af7afe 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-18012 +API version: 1.0.11-18369 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 f28c4e57ba..d7b6a8a1c7 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_disk_slot.go b/intersight_gosdk/model_storage_disk_slot.go index df1981cac6..6b8a712b6d 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-18012 +API version: 1.0.11-18369 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 97c6fd89c0..c1022b7472 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-18012 +API version: 1.0.11-18369 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 dbb73a0cde..f510d15b77 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-18012 +API version: 1.0.11-18369 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 35f731fd76..1ea91dd01e 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_drive_group.go b/intersight_gosdk/model_storage_drive_group.go index 8a7075ea48..7237435b73 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ @@ -34,7 +34,7 @@ type StorageDriveGroup struct { 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. + // Enables/disables the drive security on all the drives used in this policy. This flag just enables the drive security and only after Remote/Manual key setting configured, the actual security will be applied. SecureDriveGroup *bool `json:"SecureDriveGroup,omitempty"` // Type of drive selection to be used for this drive group. * `0` - Drives are selected manually by the user. * `1` - Drives are selected automatically based on the RAID and virtual drive configuration. Type *int32 `json:"Type,omitempty"` @@ -531,7 +531,7 @@ func (o *StorageDriveGroup) UnmarshalJSON(data []byte) (err error) { 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. + // Enables/disables the drive security on all the drives used in this policy. This flag just enables the drive security and only after Remote/Manual key setting configured, the actual security will be applied. SecureDriveGroup *bool `json:"SecureDriveGroup,omitempty"` // Type of drive selection to be used for this drive group. * `0` - Drives are selected manually by the user. * `1` - Drives are selected automatically based on the RAID and virtual drive configuration. Type *int32 `json:"Type,omitempty"` diff --git a/intersight_gosdk/model_storage_drive_group_list.go b/intersight_gosdk/model_storage_drive_group_list.go index ed0e8b1b31..4860a3e9ec 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-18012 +API version: 1.0.11-18369 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 94e8a452e0..c75f2ffcf2 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-18012 +API version: 1.0.11-18369 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 214c3cd63f..04e30a9411 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-18012 +API version: 1.0.11-18369 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 8ef9b82e3a..9806975f78 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ @@ -21,7 +21,7 @@ import ( // checks if the StorageDriveSecurityPolicy type satisfies the MappedNullable interface at compile time var _ MappedNullable = &StorageDriveSecurityPolicy{} -// StorageDriveSecurityPolicy The drive security policy models the KMIP server related configuration that can be applied on multiple servers. Storage controller encryption can be enabled through this policy using remote keys from a KMIP server. +// StorageDriveSecurityPolicy The drive security policy defines the configuration for a manual key or a KMIP server, which can be applied to multiple servers. You can enable drive security on the servers using either configuration.. type StorageDriveSecurityPolicy struct { PolicyAbstractPolicy // 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. diff --git a/intersight_gosdk/model_storage_drive_security_policy_list.go b/intersight_gosdk/model_storage_drive_security_policy_list.go index 798feccfe9..6053a50b7c 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-18012 +API version: 1.0.11-18369 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 f47b34eecc..671002b0cf 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_enclosure.go b/intersight_gosdk/model_storage_enclosure.go index ae9c9bf4dd..0927dd40d2 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_enclosure_disk.go b/intersight_gosdk/model_storage_enclosure_disk.go index 7ca1265c89..d51591df0e 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-18012 +API version: 1.0.11-18369 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 c63100913b..7af964f8b2 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-18012 +API version: 1.0.11-18369 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 ea1376b3ba..7c0864bb6d 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-18012 +API version: 1.0.11-18369 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 d4f8fcc8e2..fcf266e360 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-18012 +API version: 1.0.11-18369 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 f20ec953a6..c781ebdb7d 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-18012 +API version: 1.0.11-18369 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 74fd613e16..d9b36e5806 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-18012 +API version: 1.0.11-18369 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 8f54dbea07..444373df2e 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-18012 +API version: 1.0.11-18369 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 ced3b9635c..ad497b4bd0 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_enclosure_list.go b/intersight_gosdk/model_storage_enclosure_list.go index 9ceb074021..ce9af9543c 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_enclosure_relationship.go b/intersight_gosdk/model_storage_enclosure_relationship.go index e83a537038..16f132ecbf 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_enclosure_response.go b/intersight_gosdk/model_storage_enclosure_response.go index 71e1daca15..cf060ab4fa 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_external_lun.go b/intersight_gosdk/model_storage_external_lun.go index b14a2c48f6..765b6bec38 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-18012 +API version: 1.0.11-18369 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 1af812e3a6..ac7349bab7 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_external_path.go b/intersight_gosdk/model_storage_external_path.go index d5fa2d1101..41edb449fd 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_file_item.go b/intersight_gosdk/model_storage_file_item.go index 36cae9bfe7..efd236388c 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-18012 +API version: 1.0.11-18369 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 c7748e64fe..f637ebe548 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-18012 +API version: 1.0.11-18369 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 dce350ba2c..0de9b59d9c 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-18012 +API version: 1.0.11-18369 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 8508faf1bf..519075f100 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-18012 +API version: 1.0.11-18369 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 9f287fbe24..744f57d886 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-18012 +API version: 1.0.11-18369 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 8b8e76edbb..11f8f3f396 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-18012 +API version: 1.0.11-18369 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 4aebb10451..3ff7e1b87a 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-18012 +API version: 1.0.11-18369 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 669ce330b3..b95e95c8c4 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-18012 +API version: 1.0.11-18369 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 11a159006d..1ac0cdbc21 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-18012 +API version: 1.0.11-18369 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 c496053c42..f159908e27 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-18012 +API version: 1.0.11-18369 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 7a118e2a42..3270e994f4 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-18012 +API version: 1.0.11-18369 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 f3093315b3..29bdfff09a 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-18012 +API version: 1.0.11-18369 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 557711d26a..7c8ca4478f 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-18012 +API version: 1.0.11-18369 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 1f7025023c..9ed087392a 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-18012 +API version: 1.0.11-18369 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 d0df7d4467..f1177afd7d 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-18012 +API version: 1.0.11-18369 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 6bdc16c6b0..f9d419b44f 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-18012 +API version: 1.0.11-18369 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 85140e6e9b..dba6c15016 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-18012 +API version: 1.0.11-18369 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 8a6d8a1b4b..5e90ef09ec 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-18012 +API version: 1.0.11-18369 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 e292aa5520..25fc0d2ac5 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-18012 +API version: 1.0.11-18369 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 184917aa49..f28339d1f0 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-18012 +API version: 1.0.11-18369 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 603d0d49b1..913dd77ab6 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-18012 +API version: 1.0.11-18369 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 536a31a025..9aba0ffcc3 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-18012 +API version: 1.0.11-18369 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 871495111d..fc77e9471a 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-18012 +API version: 1.0.11-18369 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 8ce5e0e544..eab3680e77 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-18012 +API version: 1.0.11-18369 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 f8612f2271..fb2206d0f1 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-18012 +API version: 1.0.11-18369 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 a31763b296..d2b8271c8d 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-18012 +API version: 1.0.11-18369 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 002139957b..8a82546603 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-18012 +API version: 1.0.11-18369 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 1a7f248e34..922fef6c49 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-18012 +API version: 1.0.11-18369 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 71b6a9234c..0a331ef139 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-18012 +API version: 1.0.11-18369 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 cfe2ec3fc5..7d0d83b249 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-18012 +API version: 1.0.11-18369 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 0f203ed357..6ae35f4690 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-18012 +API version: 1.0.11-18369 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 8caa779b0a..8e63621b1e 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_hitachi_array.go b/intersight_gosdk/model_storage_hitachi_array.go index 250d531c6b..e288730b1b 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-18012 +API version: 1.0.11-18369 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 b600f46d6a..6962bc1bec 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-18012 +API version: 1.0.11-18369 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 23bf782860..bfa7f11410 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-18012 +API version: 1.0.11-18369 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 d64fd9aca7..443ea76bf0 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-18012 +API version: 1.0.11-18369 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 d2b34925e3..61daaa8da5 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_hitachi_capacity.go b/intersight_gosdk/model_storage_hitachi_capacity.go index 68b9190268..dc9b0b21a0 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_hitachi_controller.go b/intersight_gosdk/model_storage_hitachi_controller.go index 2849d40dcd..251b741a8b 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-18012 +API version: 1.0.11-18369 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 d8d10a6e08..265f735707 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-18012 +API version: 1.0.11-18369 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 c39276803f..102bef5729 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_hitachi_disk.go b/intersight_gosdk/model_storage_hitachi_disk.go index 44a6f17b52..becb2abcf7 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-18012 +API version: 1.0.11-18369 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 1f17f70515..bdc3558de0 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-18012 +API version: 1.0.11-18369 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 052de8cae4..4542aa04bc 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-18012 +API version: 1.0.11-18369 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 49a40bfea8..b9bea80357 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-18012 +API version: 1.0.11-18369 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 08f21cd906..9ef287488e 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-18012 +API version: 1.0.11-18369 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 bc3010798e..9d10c66b08 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-18012 +API version: 1.0.11-18369 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 143cc7b84d..25a42d8cb4 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-18012 +API version: 1.0.11-18369 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 df127cc47c..25324b33ca 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-18012 +API version: 1.0.11-18369 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 75e616ffc5..e336d4d17c 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-18012 +API version: 1.0.11-18369 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 2aecd86887..acb271185f 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-18012 +API version: 1.0.11-18369 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 29f4f5a48e..42236b042b 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-18012 +API version: 1.0.11-18369 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 b903acdb52..349e9d2a3f 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-18012 +API version: 1.0.11-18369 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 9db760950a..d0afca2161 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-18012 +API version: 1.0.11-18369 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 8633e48435..965502a75d 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-18012 +API version: 1.0.11-18369 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 76beb8dcd4..76343d97d0 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-18012 +API version: 1.0.11-18369 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 da44506a68..70b0c021e8 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_hitachi_host.go b/intersight_gosdk/model_storage_hitachi_host.go index 9b3fa2850d..eb8c47e898 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-18012 +API version: 1.0.11-18369 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 29234173b9..c62ba5c7e3 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-18012 +API version: 1.0.11-18369 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 717937d1ed..2e955d576e 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-18012 +API version: 1.0.11-18369 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 dbc2b6155d..a0016427d3 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-18012 +API version: 1.0.11-18369 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 b31c919942..7c580fca74 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-18012 +API version: 1.0.11-18369 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 c297170cfa..9e2a93ebd0 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-18012 +API version: 1.0.11-18369 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 4183944a49..e5c2b6ebe5 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_hitachi_initiator.go b/intersight_gosdk/model_storage_hitachi_initiator.go index d624248a1d..c45ede6dc9 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-18012 +API version: 1.0.11-18369 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 e9e1624fbd..1cc3415c18 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-18012 +API version: 1.0.11-18369 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 a50b1f62be..d5495dcf60 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-18012 +API version: 1.0.11-18369 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 c41c87e8e6..652fb2fb0b 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-18012 +API version: 1.0.11-18369 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 1bc9259946..3d40c84047 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_hitachi_pool.go b/intersight_gosdk/model_storage_hitachi_pool.go index 5b451d32ed..02f001d482 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-18012 +API version: 1.0.11-18369 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 42dba6df7d..b8c77ffa30 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-18012 +API version: 1.0.11-18369 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 7c59dea338..bd64c73ced 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-18012 +API version: 1.0.11-18369 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 f2159e7c3f..1a28e2068e 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_hitachi_port.go b/intersight_gosdk/model_storage_hitachi_port.go index e4d7db2842..6abe1b5c45 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_hitachi_port_list.go b/intersight_gosdk/model_storage_hitachi_port_list.go index c3855e3991..8038fd9f40 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-18012 +API version: 1.0.11-18369 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 023fb01531..04233658c2 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-18012 +API version: 1.0.11-18369 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 8b77e91ee7..c966c18c7e 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-18012 +API version: 1.0.11-18369 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 50bd449833..e447862370 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-18012 +API version: 1.0.11-18369 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 e393da9c31..33d7d37cd8 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-18012 +API version: 1.0.11-18369 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 1926c31da0..134908cb5c 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-18012 +API version: 1.0.11-18369 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 29665d82e5..7a8dde8816 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-18012 +API version: 1.0.11-18369 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 28e910febf..12a6045181 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-18012 +API version: 1.0.11-18369 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 478b58378b..5ff693d056 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-18012 +API version: 1.0.11-18369 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 a99733d5f9..6eea53a560 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-18012 +API version: 1.0.11-18369 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 c9fc8a5485..4ec14f569a 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-18012 +API version: 1.0.11-18369 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 c68cd87be4..837ff3f006 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-18012 +API version: 1.0.11-18369 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 0a9c835c56..6b3d9da898 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-18012 +API version: 1.0.11-18369 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 6a434c11cc..87ee194bb2 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_hitachi_snapshot.go b/intersight_gosdk/model_storage_hitachi_snapshot.go index 7ae519b2e4..8bb5fca22c 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-18012 +API version: 1.0.11-18369 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 be20aeea9d..d3b92ed254 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-18012 +API version: 1.0.11-18369 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 b010540076..26c7f38e37 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_hitachi_volume.go b/intersight_gosdk/model_storage_hitachi_volume.go index 687b2ad4db..3bb16f0e34 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-18012 +API version: 1.0.11-18369 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 d4bdb2c253..bee95a5635 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-18012 +API version: 1.0.11-18369 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 ca519932fc..5d06c5c9ba 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-18012 +API version: 1.0.11-18369 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 36be80d253..12f1c97fd5 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-18012 +API version: 1.0.11-18369 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 03517b250b..be3ba09448 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-18012 +API version: 1.0.11-18369 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 aba6f52b7b..3c78b6b4cb 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-18012 +API version: 1.0.11-18369 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 6e3e04f5a6..68676cf6a2 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-18012 +API version: 1.0.11-18369 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 c822992858..88b6df3b90 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-18012 +API version: 1.0.11-18369 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 333ea31d44..463a8b5662 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-18012 +API version: 1.0.11-18369 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 fdd0322bbb..71c53bf2ff 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-18012 +API version: 1.0.11-18369 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 5d9fd78541..006e824276 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-18012 +API version: 1.0.11-18369 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 deecdad636..1cc7d598f2 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-18012 +API version: 1.0.11-18369 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 63769d50cb..c1f12ee83c 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-18012 +API version: 1.0.11-18369 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 6bf7e1f898..7a58daa9ab 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-18012 +API version: 1.0.11-18369 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 f710cb227f..c44b74248f 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-18012 +API version: 1.0.11-18369 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 bc0d0d25c9..acac312775 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_initiator.go b/intersight_gosdk/model_storage_initiator.go index 2c70bee688..8f9186e2db 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_item.go b/intersight_gosdk/model_storage_item.go index ce7c9f29cf..16483bab82 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_item_list.go b/intersight_gosdk/model_storage_item_list.go index a15d37be7e..feb0f475da 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_item_relationship.go b/intersight_gosdk/model_storage_item_relationship.go index e62e5db209..f0f344c435 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_item_response.go b/intersight_gosdk/model_storage_item_response.go index b6793395ad..ba690f8bd6 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_key_setting.go b/intersight_gosdk/model_storage_key_setting.go index 9aa4e24190..8293de322d 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ @@ -21,14 +21,14 @@ import ( // checks if the StorageKeySetting type satisfies the MappedNullable interface at compile time var _ MappedNullable = &StorageKeySetting{} -// StorageKeySetting Models the security key configuration required for the disk encryption. +// StorageKeySetting Models the security key configuration required for the drive security. type StorageKeySetting struct { MoBaseComplexType // 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. 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"` - // Method to be used for fetching the encryption key. * `Kmip` - Remote encryption using KMIP. * `Manual` - Drive encryption using manual key. + // Method to be used for fetching the security key. * `Kmip` - Remote security using KMIP. * `Manual` - Drive security using manual key. KeyType *string `json:"KeyType,omitempty"` ManualKey NullableStorageLocalKeySetting `json:"ManualKey,omitempty"` RemoteKey NullableStorageRemoteKeySetting `json:"RemoteKey,omitempty"` @@ -330,7 +330,7 @@ func (o *StorageKeySetting) 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"` - // Method to be used for fetching the encryption key. * `Kmip` - Remote encryption using KMIP. * `Manual` - Drive encryption using manual key. + // Method to be used for fetching the security key. * `Kmip` - Remote security using KMIP. * `Manual` - Drive security using manual key. KeyType *string `json:"KeyType,omitempty"` ManualKey NullableStorageLocalKeySetting `json:"ManualKey,omitempty"` RemoteKey NullableStorageRemoteKeySetting `json:"RemoteKey,omitempty"` diff --git a/intersight_gosdk/model_storage_kmip_auth_credentials.go b/intersight_gosdk/model_storage_kmip_auth_credentials.go index 188325b04e..f82e1c9ea9 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_kmip_server.go b/intersight_gosdk/model_storage_kmip_server.go index 287deafb27..6e55ad70c0 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ @@ -21,14 +21,14 @@ import ( // checks if the StorageKmipServer type satisfies the MappedNullable interface at compile time var _ MappedNullable = &StorageKmipServer{} -// StorageKmipServer Models the KMIP Server configuration used to fetch the encryption key. +// StorageKmipServer Models the KMIP Server configuration used to fetch the drive security key. type StorageKmipServer struct { MoBaseComplexType // 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. 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"` - // Enable the selected KMIP Server configuration for encryption. This flag just enables the drive security and only after remote key setting configured, the actual encryption will be done. + // Enable the selected KMIP Server configuration for security. This flag just enables the drive security and only after remote key setting configured, the actual security will be applied. EnableDriveSecurity *bool `json:"EnableDriveSecurity,omitempty"` // The IP address of the KMIP server. It could be an IPv4 address, an IPv6 address, or a hostname. Hostnames are valid only when Inband is configured for the CIMC address. IpAddress *string `json:"IpAddress,omitempty"` @@ -351,7 +351,7 @@ func (o *StorageKmipServer) 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"` - // Enable the selected KMIP Server configuration for encryption. This flag just enables the drive security and only after remote key setting configured, the actual encryption will be done. + // Enable the selected KMIP Server configuration for security. This flag just enables the drive security and only after remote key setting configured, the actual security will be applied. EnableDriveSecurity *bool `json:"EnableDriveSecurity,omitempty"` // The IP address of the KMIP server. It could be an IPv4 address, an IPv6 address, or a hostname. Hostnames are valid only when Inband is configured for the CIMC address. IpAddress *string `json:"IpAddress,omitempty"` diff --git a/intersight_gosdk/model_storage_local_key_setting.go b/intersight_gosdk/model_storage_local_key_setting.go index 6c5227481a..43a3be7131 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ @@ -21,20 +21,20 @@ import ( // checks if the StorageLocalKeySetting type satisfies the MappedNullable interface at compile time var _ MappedNullable = &StorageLocalKeySetting{} -// StorageLocalKeySetting Models the local key configuration required for disk encryption. +// StorageLocalKeySetting Models the local key configuration required for the drive security. type StorageLocalKeySetting struct { MoBaseComplexType // 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. 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"` - // Current Security Key Passphrase which is already configured on the server. - ExistingKey *string `json:"ExistingKey,omitempty" validate:"regexp=^$|^[a-zA-Z0-9=!&#$%+^@_*-]+$"` + // Current Security Key Passphrase which is already configured on the server. From the security context, the passphrase should be at least 8 characters long and should include at least one uppercase letter, one lowercase letter, one number, and one special character. + ExistingKey *string `json:"ExistingKey,omitempty"` // 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. + // New Security Key Passphrase to be configured on the server. From the security context, the passphrase should be at least 8 characters long and should include at least one uppercase letter, one lowercase letter, one number, and one special character. NewKey *string `json:"NewKey,omitempty" validate:"regexp=^$|^[a-zA-Z0-9=!&#$%+^@_*-]+$"` AdditionalProperties map[string]interface{} } @@ -343,13 +343,13 @@ func (o *StorageLocalKeySetting) 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"` - // Current Security Key Passphrase which is already configured on the server. - ExistingKey *string `json:"ExistingKey,omitempty" validate:"regexp=^$|^[a-zA-Z0-9=!&#$%+^@_*-]+$"` + // Current Security Key Passphrase which is already configured on the server. From the security context, the passphrase should be at least 8 characters long and should include at least one uppercase letter, one lowercase letter, one number, and one special character. + ExistingKey *string `json:"ExistingKey,omitempty"` // 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. + // New Security Key Passphrase to be configured on the server. From the security context, the passphrase should be at least 8 characters long and should include at least one uppercase letter, one lowercase letter, one number, and one special character. NewKey *string `json:"NewKey,omitempty" validate:"regexp=^$|^[a-zA-Z0-9=!&#$%+^@_*-]+$"` } diff --git a/intersight_gosdk/model_storage_m2_virtual_drive_config.go b/intersight_gosdk/model_storage_m2_virtual_drive_config.go index 59f2ff56ce..25bc6648de 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_manual_drive_group.go b/intersight_gosdk/model_storage_manual_drive_group.go index 32c5a7f057..ff58354338 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_aggregate.go b/intersight_gosdk/model_storage_net_app_aggregate.go index a5afa4b3c6..1297c4b49a 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_aggregate_event.go b/intersight_gosdk/model_storage_net_app_aggregate_event.go index 5c3f84a1a1..a3823ebf2f 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-18012 +API version: 1.0.11-18369 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 5b83a1d412..5424638c85 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-18012 +API version: 1.0.11-18369 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 e0f2e08346..0680a96948 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-18012 +API version: 1.0.11-18369 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 d7ad3dc987..473ae57dd4 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-18012 +API version: 1.0.11-18369 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 4738a38f64..081b091b2f 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-18012 +API version: 1.0.11-18369 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 4ff9b08464..c5c43820ec 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-18012 +API version: 1.0.11-18369 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 e03c081cf4..41cbe7b20b 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-18012 +API version: 1.0.11-18369 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 6c4ad4876f..57b47eacee 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-18012 +API version: 1.0.11-18369 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 b40e1b6a04..00b27089ac 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 1e23c0a0fa..0d941d9943 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-18012 +API version: 1.0.11-18369 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 ea26935455..5352a6df66 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-18012 +API version: 1.0.11-18369 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 bd61a2e659..775ec7b9d7 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-18012 +API version: 1.0.11-18369 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 177825a379..d689510425 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 8088ddbcff..ac344e6371 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 a74fd64242..5fb4678e60 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 d04fddf275..36dd2b32e8 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-18012 +API version: 1.0.11-18369 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 91dc2a2501..b2d6a41761 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_cifs_acl.go b/intersight_gosdk/model_storage_net_app_cifs_acl.go index 12925f84f1..3e984407d6 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-18012 +API version: 1.0.11-18369 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 16a9dddcce..f8b5a683b4 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 00e7abcecf..e735b46b1f 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-18012 +API version: 1.0.11-18369 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 780d348473..36ea8b3fa7 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-18012 +API version: 1.0.11-18369 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 57c06920b7..5c9e07ab5e 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 1b731a73b2..c99354e337 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-18012 +API version: 1.0.11-18369 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 1431cae2ca..28fa4452e6 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-18012 +API version: 1.0.11-18369 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 d21c20763e..d40c33b7b8 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 3d18b3f0a0..fc1f193bd5 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-18012 +API version: 1.0.11-18369 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 069a73c6df..54e4e54637 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-18012 +API version: 1.0.11-18369 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 743309063b..9f22b52de3 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-18012 +API version: 1.0.11-18369 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 129555f8ed..e81efba217 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-18012 +API version: 1.0.11-18369 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 787a2a373c..0cb87342fc 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-18012 +API version: 1.0.11-18369 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 af3c130209..f459c89f4c 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-18012 +API version: 1.0.11-18369 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 d670b92b92..2f6a9c821e 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-18012 +API version: 1.0.11-18369 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 5322c3b58c..d43b361c64 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-18012 +API version: 1.0.11-18369 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 71ceb36ca2..530aa4a862 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-18012 +API version: 1.0.11-18369 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 fbc032529a..40dfa65f71 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-18012 +API version: 1.0.11-18369 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 0d1dd555b4..01cc58b7af 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-18012 +API version: 1.0.11-18369 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 5fe20ac836..9d85f1465a 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-18012 +API version: 1.0.11-18369 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 b8be77b009..c5fcf10c50 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-18012 +API version: 1.0.11-18369 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 abe6b37578..efffe542a3 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-18012 +API version: 1.0.11-18369 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 0941560af4..27c531a8a5 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-18012 +API version: 1.0.11-18369 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 d3a255185c..4e1f723098 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-18012 +API version: 1.0.11-18369 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 292e618931..508a99611f 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-18012 +API version: 1.0.11-18369 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 46c6dcf3c5..627cfd09dc 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-18012 +API version: 1.0.11-18369 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 83396cbaef..3fffbb443c 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-18012 +API version: 1.0.11-18369 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 bbfdb8ea98..8eccb0dc79 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-18012 +API version: 1.0.11-18369 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 903cd220fb..290f385e46 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-18012 +API version: 1.0.11-18369 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 8356be6cea..195dda28d9 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-18012 +API version: 1.0.11-18369 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 bcae4d1f8f..0d1e2a7245 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-18012 +API version: 1.0.11-18369 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 cc495e301b..0f06db3096 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-18012 +API version: 1.0.11-18369 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 7977722639..bda34f5f58 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-18012 +API version: 1.0.11-18369 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 86fa57196c..01616948e0 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-18012 +API version: 1.0.11-18369 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 f8700d3e5b..11bc6b31ab 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-18012 +API version: 1.0.11-18369 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 ac73d71b52..1b6e1b5a99 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-18012 +API version: 1.0.11-18369 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 b68056fa51..ea53f41e62 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 09ef5a3b48..755f10f35e 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-18012 +API version: 1.0.11-18369 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 07a0fc39c3..f2f151e9e9 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-18012 +API version: 1.0.11-18369 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 4c4daac4e2..2aa669c58d 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-18012 +API version: 1.0.11-18369 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 49ac59c116..42b084747e 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-18012 +API version: 1.0.11-18369 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 3f8de4f7af..50a0cecf07 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-18012 +API version: 1.0.11-18369 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 72cfa83de5..12e933596d 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-18012 +API version: 1.0.11-18369 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 1ff1fa2e5f..4db0f837bf 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-18012 +API version: 1.0.11-18369 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 7a8968329e..e2f6b55f35 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-18012 +API version: 1.0.11-18369 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 c5037657f6..373a6efc2f 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-18012 +API version: 1.0.11-18369 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 eb406f3c9c..2716012f7c 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 142510e4a2..12c86c6476 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-18012 +API version: 1.0.11-18369 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 f8682db466..3a8c7cddec 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-18012 +API version: 1.0.11-18369 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 6e14286458..c5ef17eac8 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-18012 +API version: 1.0.11-18369 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 05b362c189..b2b13a6a1d 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 9294b95575..637e90f4c0 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-18012 +API version: 1.0.11-18369 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 8122862dd1..9f31663747 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-18012 +API version: 1.0.11-18369 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 d1539c6591..392fda7d69 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-18012 +API version: 1.0.11-18369 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 2b6198893e..0ed6da74ae 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-18012 +API version: 1.0.11-18369 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 885024adca..7247ebba6f 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-18012 +API version: 1.0.11-18369 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 a056da9309..6cca10a063 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-18012 +API version: 1.0.11-18369 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 45e640c540..ebfd744aca 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-18012 +API version: 1.0.11-18369 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 3023ba0eb0..65c2a369c1 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 cf36d36f3c..14f40e2ae8 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-18012 +API version: 1.0.11-18369 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 19771689f9..7a32703e52 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-18012 +API version: 1.0.11-18369 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 1c94d09928..8fed327ce0 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-18012 +API version: 1.0.11-18369 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 c76b9e9e38..973ad7bf8d 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-18012 +API version: 1.0.11-18369 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 318863b94d..e185df67ba 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-18012 +API version: 1.0.11-18369 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 71e9d84a70..6694af7033 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-18012 +API version: 1.0.11-18369 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 ba2b022c2c..0a37d15bc1 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-18012 +API version: 1.0.11-18369 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 a2dadf2bd1..68a6aab761 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-18012 +API version: 1.0.11-18369 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 2acbea35a2..77709937a7 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 b7f8e25e69..59423104ad 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-18012 +API version: 1.0.11-18369 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 0a9bcb9ea0..40fcfbf862 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-18012 +API version: 1.0.11-18369 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 d04a086393..86c046a6bf 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-18012 +API version: 1.0.11-18369 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 3a3e6149ac..dcbd605dcd 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 c01710daf0..72a0979a42 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-18012 +API version: 1.0.11-18369 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 698972737d..6046177fd9 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-18012 +API version: 1.0.11-18369 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 eae95dd7e7..d0f6d50a06 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-18012 +API version: 1.0.11-18369 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 44ea438e7f..7163cb0b78 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-18012 +API version: 1.0.11-18369 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 3f7a4fd7e0..0cec34f3c2 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-18012 +API version: 1.0.11-18369 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 dec1525d54..9d83b0355e 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-18012 +API version: 1.0.11-18369 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 60e11df35b..c6fff8fa21 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-18012 +API version: 1.0.11-18369 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 b1626719d8..cefed1f248 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 40dff5340c..751a5585be 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-18012 +API version: 1.0.11-18369 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 e753d0d901..e6846c3ed5 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-18012 +API version: 1.0.11-18369 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 d748fdf90f..c959be3333 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_license_list.go b/intersight_gosdk/model_storage_net_app_license_list.go index dd08192239..21f43a6125 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-18012 +API version: 1.0.11-18369 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 c27c2d2bb3..f3eb992ab6 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-18012 +API version: 1.0.11-18369 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 024f26b69b..d34f754cb7 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_lun_event.go b/intersight_gosdk/model_storage_net_app_lun_event.go index 1e3e5bc8f8..cdfb64eaff 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-18012 +API version: 1.0.11-18369 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 dff13b5bf3..60b75ae415 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-18012 +API version: 1.0.11-18369 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 094fc04caf..ab9d705e8f 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-18012 +API version: 1.0.11-18369 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 2bac8f9d44..2f7c2e708f 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-18012 +API version: 1.0.11-18369 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 00525cb7cc..a41b4429d9 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-18012 +API version: 1.0.11-18369 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 abbf1c394c..612847471d 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 a948ccccc4..a6b189492a 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-18012 +API version: 1.0.11-18369 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 c849f0948b..e22ab65ebb 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-18012 +API version: 1.0.11-18369 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 8e1dad5a85..3761fa7424 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-18012 +API version: 1.0.11-18369 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 661bcdb7e0..809b045bfc 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-18012 +API version: 1.0.11-18369 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 a54332151b..df5717eab5 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_namespace_list.go b/intersight_gosdk/model_storage_net_app_namespace_list.go index 5df9b01644..634356a9ac 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-18012 +API version: 1.0.11-18369 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 3f530802fa..26dcd02d90 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-18012 +API version: 1.0.11-18369 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 c24a651128..58db9a4e46 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 5abdbd5a7e..6e030f8a5b 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-18012 +API version: 1.0.11-18369 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 ae53fd0d43..3df361de51 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-18012 +API version: 1.0.11-18369 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 22377b60df..f8afb503a3 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 614a1d9f45..189604a332 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-18012 +API version: 1.0.11-18369 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 bc4dd63f65..6f9ccf5f14 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-18012 +API version: 1.0.11-18369 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 909bb2c81a..c0311d2537 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 a2e8f50218..a387d981b2 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-18012 +API version: 1.0.11-18369 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 bebf1567d8..6c201e9ede 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-18012 +API version: 1.0.11-18369 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 bfab9dfb8f..97a5b6d77e 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-18012 +API version: 1.0.11-18369 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 ce9c3a22cc..dd44850057 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-18012 +API version: 1.0.11-18369 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 133bc92453..8bb7ecb60e 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-18012 +API version: 1.0.11-18369 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 286e8bfc3a..78587074ba 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-18012 +API version: 1.0.11-18369 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 e926048892..2b301f5cc1 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-18012 +API version: 1.0.11-18369 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 ff631d0edc..40b5ade33f 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-18012 +API version: 1.0.11-18369 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 cbec3a21eb..b869432d7a 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-18012 +API version: 1.0.11-18369 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 085ea48762..e104b0058a 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-18012 +API version: 1.0.11-18369 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 b450444060..ac7eb6d1d3 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-18012 +API version: 1.0.11-18369 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 1c152f49d7..5c7589815f 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-18012 +API version: 1.0.11-18369 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 0ce9897bcc..3df5630646 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-18012 +API version: 1.0.11-18369 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 2134f8baee..4bf8ec3d17 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-18012 +API version: 1.0.11-18369 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 a91afb632b..55dfd79348 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-18012 +API version: 1.0.11-18369 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 56cad830ad..18c8fe9b64 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-18012 +API version: 1.0.11-18369 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 151904e1d6..0729a81a82 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-18012 +API version: 1.0.11-18369 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 37630b9deb..8a4c673d99 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-18012 +API version: 1.0.11-18369 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 eaab687f89..fa323b7a64 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 9294378971..6fdeb08b6e 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-18012 +API version: 1.0.11-18369 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 62fd53ca4c..fa92d903cb 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-18012 +API version: 1.0.11-18369 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 b72cb116a0..aea07f853f 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-18012 +API version: 1.0.11-18369 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 339f81dc61..193279012f 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-18012 +API version: 1.0.11-18369 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 5f27af78de..ad1305b732 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_qtree_list.go b/intersight_gosdk/model_storage_net_app_qtree_list.go index 5782156217..fe462fd952 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-18012 +API version: 1.0.11-18369 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 e01607c9be..3504239bee 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-18012 +API version: 1.0.11-18369 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 be488b5f98..4cb29b089c 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_schedule_list.go b/intersight_gosdk/model_storage_net_app_schedule_list.go index 58ca20558a..9619915e6d 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-18012 +API version: 1.0.11-18369 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 b20e73f75e..15870b4efd 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-18012 +API version: 1.0.11-18369 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 f3a8507555..e20eaea0ec 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-18012 +API version: 1.0.11-18369 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 71983f6509..27f3f64fca 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-18012 +API version: 1.0.11-18369 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 9c939f5e01..2e2c15f4f1 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-18012 +API version: 1.0.11-18369 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 35ac218d4b..b6ff51b5a2 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 3234cc0e9a..601aa9de02 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-18012 +API version: 1.0.11-18369 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 a1d7f3b814..6febfa3284 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-18012 +API version: 1.0.11-18369 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 be40f0babd..445f0fe404 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-18012 +API version: 1.0.11-18369 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 170942b0cd..36b53efdec 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-18012 +API version: 1.0.11-18369 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 f63d4059d4..1ba760d19b 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-18012 +API version: 1.0.11-18369 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 e9bcb556ca..75c1e15530 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-18012 +API version: 1.0.11-18369 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 b36d343d84..b10b76969b 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-18012 +API version: 1.0.11-18369 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 0aefbae996..f998333a6f 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-18012 +API version: 1.0.11-18369 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 f2f16c4d72..1469f39f40 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-18012 +API version: 1.0.11-18369 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 185ef02b94..2cde6cb561 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-18012 +API version: 1.0.11-18369 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 07ae0c968f..920926409c 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-18012 +API version: 1.0.11-18369 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 6e582f7145..7f07c8da7c 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-18012 +API version: 1.0.11-18369 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 1affc4a242..293d31f646 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-18012 +API version: 1.0.11-18369 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 2d3d2b3990..d93402cdc9 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-18012 +API version: 1.0.11-18369 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 4083385222..587a45448a 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-18012 +API version: 1.0.11-18369 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 b13b83cb06..f3624ca2f1 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-18012 +API version: 1.0.11-18369 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 292904bc55..58c5db196f 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-18012 +API version: 1.0.11-18369 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 484a81defa..ef7e89e72d 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-18012 +API version: 1.0.11-18369 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 ac9895fe93..9576a5c1e5 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-18012 +API version: 1.0.11-18369 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 31c14d64c6..6ccf3c7c29 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_net_app_volume_event.go b/intersight_gosdk/model_storage_net_app_volume_event.go index b56205b5ce..3cd48b8f37 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-18012 +API version: 1.0.11-18369 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 2442015523..742d6f1ec7 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-18012 +API version: 1.0.11-18369 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 9e9450fbab..0630e19e72 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-18012 +API version: 1.0.11-18369 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 2ecf622079..e3a86e5568 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-18012 +API version: 1.0.11-18369 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 5e12bdf5ef..24a5c92b60 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-18012 +API version: 1.0.11-18369 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 4174054434..a6d4941fd3 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-18012 +API version: 1.0.11-18369 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 3a41f0ebd4..d09b03cbb7 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-18012 +API version: 1.0.11-18369 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 2b20cf8d09..9b51010ddc 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 0481c226ef..db2ef17210 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-18012 +API version: 1.0.11-18369 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 4d215efa09..6434b7fd78 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-18012 +API version: 1.0.11-18369 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 19e8cfd1af..1181955659 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-18012 +API version: 1.0.11-18369 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 de0155de4e..88d47d87c8 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-18012 +API version: 1.0.11-18369 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 54c22acad3..4d4148a7c3 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-18012 +API version: 1.0.11-18369 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 92514a81e4..80b4650eee 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-18012 +API version: 1.0.11-18369 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 46d3d1a375..626a0db1e5 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-18012 +API version: 1.0.11-18369 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 eb55f831f5..757b898ef6 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-18012 +API version: 1.0.11-18369 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 ad04ea42cf..b26b056720 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_physical_disk.go b/intersight_gosdk/model_storage_physical_disk.go index ae77f7f2f2..e7e14459f9 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-18012 +API version: 1.0.11-18369 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 5b871891a1..5f52ac0a73 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-18012 +API version: 1.0.11-18369 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 386c55f3d8..36f3710c3b 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-18012 +API version: 1.0.11-18369 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 acf67a67b3..d8d2639d19 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-18012 +API version: 1.0.11-18369 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 16cf1a1495..f36e759ef8 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-18012 +API version: 1.0.11-18369 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 e233c9bcbc..e2580cf5e0 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-18012 +API version: 1.0.11-18369 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 2a94788bae..d4ec2622e3 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-18012 +API version: 1.0.11-18369 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 d6e4f586aa..fcb7f727d5 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-18012 +API version: 1.0.11-18369 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 cc894b9768..f0134f28aa 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-18012 +API version: 1.0.11-18369 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 73a998f629..95b1c400ff 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-18012 +API version: 1.0.11-18369 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 13da295890..c621cecac4 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-18012 +API version: 1.0.11-18369 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 3c99624408..6d207b2b5d 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_pure_array.go b/intersight_gosdk/model_storage_pure_array.go index eaf9dca397..369259a4b9 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-18012 +API version: 1.0.11-18369 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 ca39b849a8..b8f71e16b4 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-18012 +API version: 1.0.11-18369 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 6d6971e642..852a958e1a 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-18012 +API version: 1.0.11-18369 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 55d2b38c6a..527e62e474 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-18012 +API version: 1.0.11-18369 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 e9fb7286c2..cc20d094a0 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-18012 +API version: 1.0.11-18369 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 581f6be74d..9ca8b07908 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-18012 +API version: 1.0.11-18369 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 e11e903c5e..eadd9c0e25 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-18012 +API version: 1.0.11-18369 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 010eb89709..2ec03d9a37 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_pure_controller.go b/intersight_gosdk/model_storage_pure_controller.go index 444535b688..9d8a39bbaf 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-18012 +API version: 1.0.11-18369 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 7fc60e2e22..79f35779dc 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-18012 +API version: 1.0.11-18369 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 499160c422..66a6627188 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-18012 +API version: 1.0.11-18369 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 46dedf69bd..c4a91cc87b 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_pure_disk.go b/intersight_gosdk/model_storage_pure_disk.go index c7488d2bcc..8a5b9e5c32 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-18012 +API version: 1.0.11-18369 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 7c1d28062d..9d8f4e3d57 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-18012 +API version: 1.0.11-18369 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 d05b191035..f2c754ee24 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-18012 +API version: 1.0.11-18369 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 8854e045dd..e4158bc0fc 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_pure_host.go b/intersight_gosdk/model_storage_pure_host.go index 0770918904..1b85a9fed6 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-18012 +API version: 1.0.11-18369 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 0562e54e63..1542f94f0c 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-18012 +API version: 1.0.11-18369 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 b1055da022..70997b67f6 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-18012 +API version: 1.0.11-18369 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 b2bdbc40c1..4a62acefc3 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-18012 +API version: 1.0.11-18369 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 72e442d6d7..7239885619 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-18012 +API version: 1.0.11-18369 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 83fc913205..571d002777 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-18012 +API version: 1.0.11-18369 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 418baf698c..e3cefa01a6 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-18012 +API version: 1.0.11-18369 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 2e500ff51a..2882c5e839 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-18012 +API version: 1.0.11-18369 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 dbf8b5ada9..99012d5ef0 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-18012 +API version: 1.0.11-18369 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 5b88b8670c..bfc8f72cc4 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-18012 +API version: 1.0.11-18369 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 0e79b0da81..d5dc9d665d 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-18012 +API version: 1.0.11-18369 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 b7659ddcbd..284a031270 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_pure_port.go b/intersight_gosdk/model_storage_pure_port.go index 68032ea504..e634489e90 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-18012 +API version: 1.0.11-18369 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 6737188b6a..c1c231ee09 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-18012 +API version: 1.0.11-18369 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 afa56b34b3..743ca58ca8 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-18012 +API version: 1.0.11-18369 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 2b7da4edcd..2a3c65603f 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-18012 +API version: 1.0.11-18369 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 7d97ae92f3..0ab485c879 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-18012 +API version: 1.0.11-18369 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 d218be5cc0..b540439bd8 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-18012 +API version: 1.0.11-18369 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 13e86118dd..d62cc899e6 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-18012 +API version: 1.0.11-18369 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 7a1dc54bad..b2a739f704 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-18012 +API version: 1.0.11-18369 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 bfe278827b..ebf26738d0 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-18012 +API version: 1.0.11-18369 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 c8580b4476..887657adc4 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-18012 +API version: 1.0.11-18369 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 500a3dfb90..b81ecb9cbf 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-18012 +API version: 1.0.11-18369 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 8a09148e80..4474df5939 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-18012 +API version: 1.0.11-18369 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 6c6144167c..8ff96ca3b9 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-18012 +API version: 1.0.11-18369 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 2097e0fc21..0ef243782f 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-18012 +API version: 1.0.11-18369 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 751b9c2a8a..a37a67582d 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-18012 +API version: 1.0.11-18369 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 2aac8c2b01..d02162fbb5 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-18012 +API version: 1.0.11-18369 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 3452c0c994..7ed0a42a6a 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-18012 +API version: 1.0.11-18369 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 1fce45a43a..33377b2202 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-18012 +API version: 1.0.11-18369 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 843bbce41a..1e3e8bd286 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-18012 +API version: 1.0.11-18369 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 acb9922999..260364dc5e 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-18012 +API version: 1.0.11-18369 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 976391105e..0e1770f442 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_pure_volume.go b/intersight_gosdk/model_storage_pure_volume.go index 5c51833700..93e95926c6 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-18012 +API version: 1.0.11-18369 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 c9a65d2ec1..0a25d9acc9 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-18012 +API version: 1.0.11-18369 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 02775ca69b..b4db1427f8 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-18012 +API version: 1.0.11-18369 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 64b0f78ac8..5f42328c3f 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-18012 +API version: 1.0.11-18369 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 bff694f631..fd1496552c 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-18012 +API version: 1.0.11-18369 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 6bc59ecfed..ddb7c50bf1 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-18012 +API version: 1.0.11-18369 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 3f5d3d39f6..63775f2129 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-18012 +API version: 1.0.11-18369 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 38061f6e0c..6f41aaf1df 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_r0_drive.go b/intersight_gosdk/model_storage_r0_drive.go index 471aaad315..0511a094ba 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_remote_key_setting.go b/intersight_gosdk/model_storage_remote_key_setting.go index c96f576af9..5ba9fa0d56 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ @@ -21,7 +21,7 @@ import ( // checks if the StorageRemoteKeySetting type satisfies the MappedNullable interface at compile time var _ MappedNullable = &StorageRemoteKeySetting{} -// StorageRemoteKeySetting Models the remote key configuration required for disk encryption. +// StorageRemoteKeySetting Models the remote key configuration required for the drive security. type StorageRemoteKeySetting struct { MoBaseComplexType // 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. @@ -29,8 +29,8 @@ type StorageRemoteKeySetting struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. 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" validate:"regexp=^$|^[a-zA-Z0-9=!&#$%+^@_*-]+$"` + // Current Security Key Passphrase which is already configured on the server. From the security context, the passphrase should be at least 8 characters long and should include at least one uppercase letter, one lowercase letter, one number, and one special character. + ExistingKey *string `json:"ExistingKey,omitempty"` // Indicates whether the value of the 'existingKey' property has been set. IsExistingKeySet *bool `json:"IsExistingKeySet,omitempty"` PrimaryServer NullableStorageKmipServer `json:"PrimaryServer,omitempty"` @@ -448,8 +448,8 @@ func (o *StorageRemoteKeySetting) 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"` AuthCredentials NullableStorageKmipAuthCredentials `json:"AuthCredentials,omitempty"` - // Current Security Key Passphrase which is already configured on the server. - ExistingKey *string `json:"ExistingKey,omitempty" validate:"regexp=^$|^[a-zA-Z0-9=!&#$%+^@_*-]+$"` + // Current Security Key Passphrase which is already configured on the server. From the security context, the passphrase should be at least 8 characters long and should include at least one uppercase letter, one lowercase letter, one number, and one special character. + ExistingKey *string `json:"ExistingKey,omitempty"` // 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 0bcbbe7c2a..5a2ababf25 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-18012 +API version: 1.0.11-18369 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 9387d1393f..524d1ebc2b 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-18012 +API version: 1.0.11-18369 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 8926e1308d..2f49dac84b 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-18012 +API version: 1.0.11-18369 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 9f0b217354..0500a68cca 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_sas_port.go b/intersight_gosdk/model_storage_sas_port.go index aed6f95782..1599acebc5 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-18012 +API version: 1.0.11-18369 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 e4060d82c3..4a54ec2fa3 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-18012 +API version: 1.0.11-18369 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 00c6c1dc8a..85d57af01e 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-18012 +API version: 1.0.11-18369 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 a9857c61f9..d1fd267195 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_space.go b/intersight_gosdk/model_storage_space.go index 354c41eb1b..2d13950041 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_span.go b/intersight_gosdk/model_storage_span.go index 172854d996..49ff48daf1 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_span_drives.go b/intersight_gosdk/model_storage_span_drives.go index 8a89543db3..cb063d49b1 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_span_list.go b/intersight_gosdk/model_storage_span_list.go index 4c27284f4a..f121cf967f 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_span_relationship.go b/intersight_gosdk/model_storage_span_relationship.go index c523f27c27..8182e6a8b2 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_span_response.go b/intersight_gosdk/model_storage_span_response.go index 2046399f7a..32fa0c5fdf 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-18012 +API version: 1.0.11-18369 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 378fc8482b..aaa5fddcc5 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-18012 +API version: 1.0.11-18369 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 7f90d11302..ca3be9ac72 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_storage_policy.go b/intersight_gosdk/model_storage_storage_policy.go index 7c956f1306..e6f364c394 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ @@ -21,7 +21,7 @@ import ( // checks if the StorageStoragePolicy type satisfies the MappedNullable interface at compile time var _ MappedNullable = &StorageStoragePolicy{} -// StorageStoragePolicy The storage policy models the reusable storage related configuration that can be applied on many servers. This policy allows creation of RAID groups using existing disk group policies and virtual drives on the drive groups. The user has options to move all unused disks to JBOD or Unconfigured good state. The encryption of drives can be enabled through this policy using remote keys from a KMIP server. +// StorageStoragePolicy The storage policy models the reusable storage related configuration that can be applied on many servers. This policy allows creation of RAID groups using existing disk group policies and virtual drives on the drive groups. The user has options to move all unused disks to JBOD or Unconfigured good state. The security of drives can be enabled through this policy using remote keys from a KMIP server or Manually configured keys. type StorageStoragePolicy struct { PolicyAbstractPolicy // 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. diff --git a/intersight_gosdk/model_storage_storage_policy_list.go b/intersight_gosdk/model_storage_storage_policy_list.go index db98c6ece3..df7ef5b3a4 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-18012 +API version: 1.0.11-18369 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 d3c6a82769..1fe1e120eb 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-18012 +API version: 1.0.11-18369 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 f8d57f8a39..232995cb5d 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_storage_utilization.go b/intersight_gosdk/model_storage_storage_utilization.go index 72cf9bb262..93eb7ea348 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-18012 +API version: 1.0.11-18369 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 6cece3c4c3..7b03b6000a 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-18012 +API version: 1.0.11-18369 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 2fec6ed43e..f2907c39e4 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-18012 +API version: 1.0.11-18369 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 30e051ea8c..334f9986b8 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-18012 +API version: 1.0.11-18369 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 4bae87d444..84e4a85f41 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_virtual_drive.go b/intersight_gosdk/model_storage_virtual_drive.go index 8cc6050e77..716f9d9ae4 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-18012 +API version: 1.0.11-18369 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 94ef341f03..1ac8b44760 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_virtual_drive_container.go b/intersight_gosdk/model_storage_virtual_drive_container.go index fa5a7780aa..b5bda9c947 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-18012 +API version: 1.0.11-18369 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 e6328c65a6..b14c09e636 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-18012 +API version: 1.0.11-18369 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 8d1cc4ee87..d60879a6e7 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-18012 +API version: 1.0.11-18369 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 f37da70138..26941369ab 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-18012 +API version: 1.0.11-18369 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 811981f8d2..9e1e11392d 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-18012 +API version: 1.0.11-18369 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 7a72c85b6f..ef9fb5dc04 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-18012 +API version: 1.0.11-18369 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 6f99e41b3c..b53b57b738 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-18012 +API version: 1.0.11-18369 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 b2c84b2220..a80eca6c4a 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-18012 +API version: 1.0.11-18369 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 1d8edfaeb3..335a12eb85 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-18012 +API version: 1.0.11-18369 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 9e8f9d3b0e..069c088657 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-18012 +API version: 1.0.11-18369 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 5e48572f40..ab9985ab9d 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-18012 +API version: 1.0.11-18369 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 fe803f2489..258682dea9 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-18012 +API version: 1.0.11-18369 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 3f50592bd4..98b52c1fd7 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-18012 +API version: 1.0.11-18369 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 2024ef2d46..c6e26d2552 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-18012 +API version: 1.0.11-18369 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 77de79ec15..53bfa5bcee 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_storage_volume_utilization.go b/intersight_gosdk/model_storage_volume_utilization.go index 1a3ed8685f..adf7307cb8 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-18012 +API version: 1.0.11-18369 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 e174e27874..93db1bbc16 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-18012 +API version: 1.0.11-18369 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 41db011f39..de440601c6 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-18012 +API version: 1.0.11-18369 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 d21058db18..fed53a84d8 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_syslog_policy.go b/intersight_gosdk/model_syslog_policy.go index 8414aba16a..3b3cdaaf2c 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_syslog_policy_inventory.go b/intersight_gosdk/model_syslog_policy_inventory.go index 37b30815ca..ad732ab655 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-18012 +API version: 1.0.11-18369 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 0050515b34..85fd6d93ce 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-18012 +API version: 1.0.11-18369 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 9cf57cc1a5..9434ce4cca 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_syslog_policy_list.go b/intersight_gosdk/model_syslog_policy_list.go index 05813a3b17..ad57ea06e7 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_syslog_policy_response.go b/intersight_gosdk/model_syslog_policy_response.go index ccf2cc2022..6b90311e63 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-18012 +API version: 1.0.11-18369 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 cafccd4f02..18ff8a04c1 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-18012 +API version: 1.0.11-18369 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 b2087afb3f..9a96da13c8 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_tam_action.go b/intersight_gosdk/model_tam_action.go index cc5584be61..c1acef7968 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_tam_advisory_count.go b/intersight_gosdk/model_tam_advisory_count.go index d06271ba4a..283da15f56 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-18012 +API version: 1.0.11-18369 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 e53f0486c8..4460fa4123 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-18012 +API version: 1.0.11-18369 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 dd95cbc6e3..8785007377 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_tam_advisory_definition.go b/intersight_gosdk/model_tam_advisory_definition.go index 04074a5ecd..a5706b9111 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_tam_advisory_definition_list.go b/intersight_gosdk/model_tam_advisory_definition_list.go index 455c54bcbf..218d0154af 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-18012 +API version: 1.0.11-18369 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 6d632f9117..eae9bbd21f 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_tam_advisory_info.go b/intersight_gosdk/model_tam_advisory_info.go index 5ce2a054ac..c992c3dd87 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-18012 +API version: 1.0.11-18369 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 13d389c2c8..b23863e332 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-18012 +API version: 1.0.11-18369 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 b3e32f6eb6..859ae38e4f 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_tam_advisory_instance.go b/intersight_gosdk/model_tam_advisory_instance.go index 5cc1553491..0f9c30c678 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-18012 +API version: 1.0.11-18369 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 a04aa76a85..a3f749f58f 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-18012 +API version: 1.0.11-18369 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 b7fc4f815e..cd7a4a21f9 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-18012 +API version: 1.0.11-18369 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 73f053a872..562829cc00 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_tam_base_advisory.go b/intersight_gosdk/model_tam_base_advisory.go index f8f9457718..55814a6c38 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-18012 +API version: 1.0.11-18369 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 555669b667..feed09301a 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-18012 +API version: 1.0.11-18369 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 c2eb8135ea..b92e5e0a32 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-18012 +API version: 1.0.11-18369 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 31267594e3..99eb93aaa6 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-18012 +API version: 1.0.11-18369 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 8189d5b246..ba492c0524 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_tam_eol_severity.go b/intersight_gosdk/model_tam_eol_severity.go index c4bca435c5..235fcfc2d6 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_tam_identifiers.go b/intersight_gosdk/model_tam_identifiers.go index 8f36165da8..be2cf485fd 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_tam_milestone.go b/intersight_gosdk/model_tam_milestone.go index b8dfeafa1c..f13e45270e 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_tam_psirt_severity.go b/intersight_gosdk/model_tam_psirt_severity.go index 254a37de0b..7d220ae20c 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_tam_query_entry.go b/intersight_gosdk/model_tam_query_entry.go index 506c6ebebe..ffee76051a 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-18012 +API version: 1.0.11-18369 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 d7c9cd3e7e..14f4e4163d 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_tam_security_advisory.go b/intersight_gosdk/model_tam_security_advisory.go index 3071cafec8..54b921d79d 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_tam_security_advisory_details.go b/intersight_gosdk/model_tam_security_advisory_details.go index 5df393ed95..7707f40223 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-18012 +API version: 1.0.11-18369 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 d760d7bfef..61a90b9470 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-18012 +API version: 1.0.11-18369 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 47801ab5ee..f625b6adff 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_tam_severity.go b/intersight_gosdk/model_tam_severity.go index ce10a23a23..760d023b68 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-18012 +API version: 1.0.11-18369 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 667a812339..13a85ca94b 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-18012 +API version: 1.0.11-18369 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 4661beaa1e..f2a4324be5 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-18012 +API version: 1.0.11-18369 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 0223dab4a3..43fbf70a77 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-18012 +API version: 1.0.11-18369 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 ca1cbf5e07..ade4db9a03 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-18012 +API version: 1.0.11-18369 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 5e488f8cd6..2d9c6679d5 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-18012 +API version: 1.0.11-18369 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 520a775cc0..123902cda8 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-18012 +API version: 1.0.11-18369 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 4e74a8384d..fcd2518c2d 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-18012 +API version: 1.0.11-18369 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 0d7bfed092..eabff0d595 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-18012 +API version: 1.0.11-18369 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 1f46124206..67fc009e2f 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-18012 +API version: 1.0.11-18369 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 92f971d956..906fd607cb 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-18012 +API version: 1.0.11-18369 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 d3ee4f9b54..bad5fac6f5 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-18012 +API version: 1.0.11-18369 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 10f7304a34..96e729fd9a 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-18012 +API version: 1.0.11-18369 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 d36937f97b..e8e573f3fe 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-18012 +API version: 1.0.11-18369 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 15fae16940..becd09d3c1 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-18012 +API version: 1.0.11-18369 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 7232e0f5fe..4167959333 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_techsupportmanagement_appliance_param.go b/intersight_gosdk/model_techsupportmanagement_appliance_param.go index df41ff6ebe..cdadc63e2c 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-18012 +API version: 1.0.11-18369 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 45a2d1fc1d..268310de71 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-18012 +API version: 1.0.11-18369 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 d7ba583774..2fe5400810 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-18012 +API version: 1.0.11-18369 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 56683ffcf7..a957ce5ccb 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_techsupportmanagement_download.go b/intersight_gosdk/model_techsupportmanagement_download.go index 324e243a9d..d158c9d456 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_techsupportmanagement_download_list.go b/intersight_gosdk/model_techsupportmanagement_download_list.go index 23e635334a..f00ac92c95 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_techsupportmanagement_download_response.go b/intersight_gosdk/model_techsupportmanagement_download_response.go index 2888048aca..6e543f8cba 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_techsupportmanagement_end_point.go b/intersight_gosdk/model_techsupportmanagement_end_point.go index 9756f782cf..bc2becad40 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-18012 +API version: 1.0.11-18369 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 e1870c3482..f11e5c00ac 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-18012 +API version: 1.0.11-18369 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 f0e2361283..596abec1e4 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_techsupportmanagement_nia_param.go b/intersight_gosdk/model_techsupportmanagement_nia_param.go index 06875cd711..e2a11a8f90 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_techsupportmanagement_platform_param.go b/intersight_gosdk/model_techsupportmanagement_platform_param.go index e564875d96..592b1c890c 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-18012 +API version: 1.0.11-18369 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 d3a2b798eb..6557f83f88 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-18012 +API version: 1.0.11-18369 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 520d2a43f7..df1de4e7e8 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-18012 +API version: 1.0.11-18369 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 df390307f8..b5c74329ae 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-18012 +API version: 1.0.11-18369 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 451cd14df6..6e30bb3f3b 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-18012 +API version: 1.0.11-18369 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 0c90d5b9ae..f536e3d989 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-18012 +API version: 1.0.11-18369 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 2598ef610e..e21a631c10 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-18012 +API version: 1.0.11-18369 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 cf1e29a701..4d95290071 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-18012 +API version: 1.0.11-18369 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 e2bdb161f0..ba359a5d16 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-18012 +API version: 1.0.11-18369 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 574903267a..5e5f3f9d7e 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-18012 +API version: 1.0.11-18369 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 affba4555a..2865fff5f1 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_telemetry_druid_aggregator.go b/intersight_gosdk/model_telemetry_druid_aggregator.go index dcfd0c85d4..74fa848071 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-18012 +API version: 1.0.11-18369 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 f91fe7dde7..05785f0858 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-18012 +API version: 1.0.11-18369 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 8bfc6a920e..b6d5735373 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-18012 +API version: 1.0.11-18369 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 95a2d39b76..b963a1e153 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-18012 +API version: 1.0.11-18369 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 977da5df2b..cd99d3fa73 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-18012 +API version: 1.0.11-18369 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 53cd1dd87b..f0270047bf 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-18012 +API version: 1.0.11-18369 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 5d8f1d22a2..b59263f529 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-18012 +API version: 1.0.11-18369 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 2b72f24f60..f829cac3f3 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-18012 +API version: 1.0.11-18369 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 0c1fb4349c..9a532749b6 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-18012 +API version: 1.0.11-18369 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 b97a979034..4d96903419 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-18012 +API version: 1.0.11-18369 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 ae29c1cea3..e0321e673c 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-18012 +API version: 1.0.11-18369 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 14caf1c933..c0ed3cfce1 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-18012 +API version: 1.0.11-18369 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 286d75d2f0..f9a1eb7279 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-18012 +API version: 1.0.11-18369 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 218ae5bf45..95d699fa20 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-18012 +API version: 1.0.11-18369 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 683a0cb4f5..912405fc03 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-18012 +API version: 1.0.11-18369 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 be9fd058ae..60cc3af757 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-18012 +API version: 1.0.11-18369 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 7834da9207..6e60fdf971 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-18012 +API version: 1.0.11-18369 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 a441a35c01..77b2960424 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-18012 +API version: 1.0.11-18369 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 00c4d87883..8194261c85 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-18012 +API version: 1.0.11-18369 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 dd579024eb..5bda912255 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-18012 +API version: 1.0.11-18369 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 bf147f87ec..2afc867e4a 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-18012 +API version: 1.0.11-18369 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 c5344589e9..b39a7d81f4 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-18012 +API version: 1.0.11-18369 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 fe2855c855..e596d7d730 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-18012 +API version: 1.0.11-18369 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 5d3ab742e0..f65ab023ee 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-18012 +API version: 1.0.11-18369 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 c895e31d4e..1e7d643358 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-18012 +API version: 1.0.11-18369 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 6a4c25cf52..5659d9b4e1 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-18012 +API version: 1.0.11-18369 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 53495a199a..7676c81a69 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-18012 +API version: 1.0.11-18369 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 cde6d1f1a2..407172c49c 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-18012 +API version: 1.0.11-18369 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 5b874828e7..68c98376f4 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-18012 +API version: 1.0.11-18369 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 7f405e33b0..0f5afcf759 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-18012 +API version: 1.0.11-18369 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 e74835412a..e24966dc5d 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_telemetry_druid_error.go b/intersight_gosdk/model_telemetry_druid_error.go index 178b248ba4..4b80801697 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-18012 +API version: 1.0.11-18369 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 7a7afe873b..e47afebe65 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-18012 +API version: 1.0.11-18369 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 883bb7b589..ea9cfa9017 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-18012 +API version: 1.0.11-18369 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 1edcddd6f6..acc2a7607f 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-18012 +API version: 1.0.11-18369 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 8422b62740..126f350c87 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-18012 +API version: 1.0.11-18369 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 cfffa0a8d8..4b1b5b83bc 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-18012 +API version: 1.0.11-18369 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 d4f7211782..ccb3e8d011 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-18012 +API version: 1.0.11-18369 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 fbf46afb18..dc12a14901 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-18012 +API version: 1.0.11-18369 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 0071e35a7d..cf9a2d43bf 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-18012 +API version: 1.0.11-18369 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 93fa2e2a35..39b82adfa3 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-18012 +API version: 1.0.11-18369 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 bea304ae94..8c9985f4ce 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-18012 +API version: 1.0.11-18369 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 98e79a999e..ab4dd4fb43 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-18012 +API version: 1.0.11-18369 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 b754d0a0eb..2cfc071d1a 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-18012 +API version: 1.0.11-18369 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 3f9b6c4dc7..e4126428f3 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-18012 +API version: 1.0.11-18369 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 02366a8bb0..db5f940493 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-18012 +API version: 1.0.11-18369 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 f5f05c6a25..ee3a2c0191 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-18012 +API version: 1.0.11-18369 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 5a710d2292..3e2cdae71a 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-18012 +API version: 1.0.11-18369 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 459b2867b7..a655124b20 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-18012 +API version: 1.0.11-18369 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 36f09f7ddc..c3e8611087 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-18012 +API version: 1.0.11-18369 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 b2dea6fa30..a9eddad3f0 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-18012 +API version: 1.0.11-18369 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 e641a9cda8..a25e68599b 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_telemetry_druid_filter.go b/intersight_gosdk/model_telemetry_druid_filter.go index 32922fcfba..806cbf1114 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-18012 +API version: 1.0.11-18369 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 240b3cee98..dd8d8e7a48 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-18012 +API version: 1.0.11-18369 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 f84942bada..f1cd4e6ed6 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-18012 +API version: 1.0.11-18369 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 f93a4f2dc7..66c0f184b3 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_telemetry_druid_granularity.go b/intersight_gosdk/model_telemetry_druid_granularity.go index 65995b4e60..726652b086 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-18012 +API version: 1.0.11-18369 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 c60b98114d..6400ded674 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-18012 +API version: 1.0.11-18369 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 f3ccec3c14..3f4945b12b 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-18012 +API version: 1.0.11-18369 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 64efc5a8b8..22dbc4a1fa 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-18012 +API version: 1.0.11-18369 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 7ce813552d..1a486550fc 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-18012 +API version: 1.0.11-18369 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 a32f8adb29..c18c6437fd 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-18012 +API version: 1.0.11-18369 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 8834c21c12..d10e888d14 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-18012 +API version: 1.0.11-18369 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 a60409b977..97265d5eb0 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-18012 +API version: 1.0.11-18369 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 c210e59f84..f617dab168 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-18012 +API version: 1.0.11-18369 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 4a3c618045..bce90d4d2e 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-18012 +API version: 1.0.11-18369 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 f500dd6f30..5ee633abe8 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-18012 +API version: 1.0.11-18369 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 e565fc5660..3cea4ec34a 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-18012 +API version: 1.0.11-18369 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 d122cedf37..cf1a1208f5 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-18012 +API version: 1.0.11-18369 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 5191462f9a..77edf7e268 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-18012 +API version: 1.0.11-18369 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 c3681abec5..7a39c98822 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-18012 +API version: 1.0.11-18369 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 e76061df7e..93032d50ae 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-18012 +API version: 1.0.11-18369 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 a899fb929e..a66cfad606 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-18012 +API version: 1.0.11-18369 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 82aeb6f14d..419bcbf75f 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-18012 +API version: 1.0.11-18369 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 82904bbcdd..560c6d0a2f 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-18012 +API version: 1.0.11-18369 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 f793f1268f..bb827b0df7 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-18012 +API version: 1.0.11-18369 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 d2283cf964..861e29e24a 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-18012 +API version: 1.0.11-18369 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 ca141e49af..a8193a367d 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-18012 +API version: 1.0.11-18369 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 f34a933152..2e91063e1d 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-18012 +API version: 1.0.11-18369 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 ab9aa9dc53..223376b5a9 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-18012 +API version: 1.0.11-18369 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 78de9357ee..9474e2d2e2 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-18012 +API version: 1.0.11-18369 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 d99b576d9b..e34c2d6f5b 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-18012 +API version: 1.0.11-18369 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 e680f5c715..bd9efbad4e 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-18012 +API version: 1.0.11-18369 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 7f202e1afb..b6d39b2439 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-18012 +API version: 1.0.11-18369 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 53b41cabb1..ef3ebc5754 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-18012 +API version: 1.0.11-18369 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 8d97ac586c..1c0fcfee46 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-18012 +API version: 1.0.11-18369 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 723046191a..91421495b0 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-18012 +API version: 1.0.11-18369 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 fc28eac884..e8e9679ac5 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-18012 +API version: 1.0.11-18369 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 365246c7c3..f732e197fd 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-18012 +API version: 1.0.11-18369 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 10e07afbe3..6ebd63bb71 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-18012 +API version: 1.0.11-18369 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 f3ae0ff2d7..12a6c98b85 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-18012 +API version: 1.0.11-18369 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 b842bb4ef9..c0a3126f00 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-18012 +API version: 1.0.11-18369 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 86327bc82f..40b51a667f 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-18012 +API version: 1.0.11-18369 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 874a5e4e14..27071802e2 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-18012 +API version: 1.0.11-18369 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 88b0f38f6c..8fbc5882cc 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-18012 +API version: 1.0.11-18369 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 aac1c80f56..1d1336231d 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-18012 +API version: 1.0.11-18369 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 969e35d048..94e1a070cf 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-18012 +API version: 1.0.11-18369 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 49683ebc56..1fd7ee4289 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-18012 +API version: 1.0.11-18369 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 f634d6deef..652eb249b4 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-18012 +API version: 1.0.11-18369 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 4494321a37..e7f27b1000 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-18012 +API version: 1.0.11-18369 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 452eb2e1d3..fce6a77a77 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-18012 +API version: 1.0.11-18369 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 a7a0f27d08..3739a3b094 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-18012 +API version: 1.0.11-18369 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 f81877cfb7..1186a17e0a 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-18012 +API version: 1.0.11-18369 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 a8e00d7d5a..71191aabce 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-18012 +API version: 1.0.11-18369 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 ee269dce1f..9da21f0ff1 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-18012 +API version: 1.0.11-18369 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 1498c08ad2..d79346f019 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-18012 +API version: 1.0.11-18369 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 47b6595106..d6d8d8ed2d 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-18012 +API version: 1.0.11-18369 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 2e471ea3bb..cac194b0a4 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-18012 +API version: 1.0.11-18369 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 78dea56df8..b26a0368cc 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-18012 +API version: 1.0.11-18369 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 2c0198f213..c0ed6cd54e 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-18012 +API version: 1.0.11-18369 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 3427248ce4..1d6bbb808e 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-18012 +API version: 1.0.11-18369 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 a4a328898c..4ea955fcb3 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-18012 +API version: 1.0.11-18369 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 331dc60d85..dfe667c6ed 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-18012 +API version: 1.0.11-18369 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 4392eb490c..7f852fc066 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_template_transformation_stage.go b/intersight_gosdk/model_template_transformation_stage.go index ee89d2405a..d1526be3de 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_terminal_audit_log.go b/intersight_gosdk/model_terminal_audit_log.go index cffa3409cf..9de458d76b 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-18012 +API version: 1.0.11-18369 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 ddcaa76138..cce6862e7e 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-18012 +API version: 1.0.11-18369 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 0f7edea881..4c05b675fa 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_terraform_cloud_resource.go b/intersight_gosdk/model_terraform_cloud_resource.go index 92868d117d..f17638e308 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_terraform_executor.go b/intersight_gosdk/model_terraform_executor.go index 0d50cd1155..d040ee3f4b 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_terraform_executor_list.go b/intersight_gosdk/model_terraform_executor_list.go index a8266dbdd5..25351dc708 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_terraform_executor_response.go b/intersight_gosdk/model_terraform_executor_response.go index 1802984a91..f064056aee 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_terraform_runstate.go b/intersight_gosdk/model_terraform_runstate.go index 9fa09e7c5b..e51d0abd59 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_thermal_policy.go b/intersight_gosdk/model_thermal_policy.go index 26fa54398e..b736f293d4 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_thermal_policy_inventory.go b/intersight_gosdk/model_thermal_policy_inventory.go index 6a7ca769d0..b4f4774460 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-18012 +API version: 1.0.11-18369 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 212de92bc6..03b0a80474 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-18012 +API version: 1.0.11-18369 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 53c0d79db4..c0b6c47445 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_thermal_policy_list.go b/intersight_gosdk/model_thermal_policy_list.go index 88ad159f58..99bdea21b1 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_thermal_policy_response.go b/intersight_gosdk/model_thermal_policy_response.go index e82ed04bf2..2be3e20931 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_top_system.go b/intersight_gosdk/model_top_system.go index 1ed8bc0011..2191044e02 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_top_system_list.go b/intersight_gosdk/model_top_system_list.go index d2337ed082..d5d52cbf29 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_top_system_relationship.go b/intersight_gosdk/model_top_system_relationship.go index 0d1988cc23..97f6405024 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_top_system_response.go b/intersight_gosdk/model_top_system_response.go index e446076b0d..1ec957b617 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_tunneling_tunnel.go b/intersight_gosdk/model_tunneling_tunnel.go index f370c53fb2..91422e1ddf 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_ucsd_backup_info.go b/intersight_gosdk/model_ucsd_backup_info.go index 729a174e11..d854615b0e 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-18012 +API version: 1.0.11-18369 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 7a70ea41ed..8c7ff6e314 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-18012 +API version: 1.0.11-18369 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 e1ea54a377..ab5c26d6dd 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_ucsd_connector_pack.go b/intersight_gosdk/model_ucsd_connector_pack.go index 18a69c09e1..68a2a79d60 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-18012 +API version: 1.0.11-18369 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 3cab5a7c5e..d46b7ea8b9 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-18012 +API version: 1.0.11-18369 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 1d7ac1a161..1408664687 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_uuidpool_block.go b/intersight_gosdk/model_uuidpool_block.go index 054b537509..f7f160c14c 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_uuidpool_block_list.go b/intersight_gosdk/model_uuidpool_block_list.go index d8cf28cf1c..7e5a58cdeb 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_uuidpool_block_relationship.go b/intersight_gosdk/model_uuidpool_block_relationship.go index 4fe781ffaf..78bee1bbd4 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_uuidpool_block_response.go b/intersight_gosdk/model_uuidpool_block_response.go index 372512ab9f..9b8cb21ab3 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_uuidpool_pool.go b/intersight_gosdk/model_uuidpool_pool.go index 530d10782a..d603d3aff8 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_uuidpool_pool_list.go b/intersight_gosdk/model_uuidpool_pool_list.go index a1ea4955a7..f009984197 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_uuidpool_pool_member.go b/intersight_gosdk/model_uuidpool_pool_member.go index 5821ab8a5f..f671a6b316 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-18012 +API version: 1.0.11-18369 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 ec64fbffee..e014aea494 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-18012 +API version: 1.0.11-18369 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 68215647c1..78a688b6ed 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-18012 +API version: 1.0.11-18369 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 10e8a25f2f..94f0858e4c 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_uuidpool_pool_relationship.go b/intersight_gosdk/model_uuidpool_pool_relationship.go index 8022cec363..7a568fae98 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_uuidpool_pool_response.go b/intersight_gosdk/model_uuidpool_pool_response.go index c26a9c9af5..36fc52e1e7 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_uuidpool_reservation.go b/intersight_gosdk/model_uuidpool_reservation.go index 2587beac05..9d7c6f7149 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_uuidpool_reservation_list.go b/intersight_gosdk/model_uuidpool_reservation_list.go index badd7f235a..e0d7229507 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_uuidpool_reservation_reference.go b/intersight_gosdk/model_uuidpool_reservation_reference.go index 332bdcb232..c2db4897e1 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_uuidpool_reservation_relationship.go b/intersight_gosdk/model_uuidpool_reservation_relationship.go index 49c4fe2440..1058124882 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_uuidpool_reservation_response.go b/intersight_gosdk/model_uuidpool_reservation_response.go index 328cdcd121..cd56a99ef3 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_uuidpool_universe.go b/intersight_gosdk/model_uuidpool_universe.go index bb1cc87a13..ea6176cbdd 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_uuidpool_universe_list.go b/intersight_gosdk/model_uuidpool_universe_list.go index 2a15c227e5..5f81ffbfd2 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_uuidpool_universe_relationship.go b/intersight_gosdk/model_uuidpool_universe_relationship.go index 359c020f00..3177e94703 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_uuidpool_universe_response.go b/intersight_gosdk/model_uuidpool_universe_response.go index 41872097c7..218495771d 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_uuidpool_uuid_block.go b/intersight_gosdk/model_uuidpool_uuid_block.go index 4634dd6bd3..7d3a3bc4c2 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_uuidpool_uuid_lease.go b/intersight_gosdk/model_uuidpool_uuid_lease.go index 461b46dafd..7378d2b113 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_uuidpool_uuid_lease_list.go b/intersight_gosdk/model_uuidpool_uuid_lease_list.go index 731c460688..7c504637f8 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-18012 +API version: 1.0.11-18369 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 a2b07e2041..1ce58f750d 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-18012 +API version: 1.0.11-18369 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 c8a41a3cf6..1afe82fe6f 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_view_health_status.go b/intersight_gosdk/model_view_health_status.go index 85ddfd7788..8f2e2bc73e 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-18012 +API version: 1.0.11-18369 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 431e16172c..0e473e84a8 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-18012 +API version: 1.0.11-18369 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 137f42df7c..39c3d2aa9b 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_view_server.go b/intersight_gosdk/model_view_server.go index 9d51b3517b..4310e31f19 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_view_server_list.go b/intersight_gosdk/model_view_server_list.go index 30c3103f36..61b9869622 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_view_server_response.go b/intersight_gosdk/model_view_server_response.go index 8d724f0cfa..b8fd9ea493 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_action_info.go b/intersight_gosdk/model_virtualization_action_info.go index e6fc82211d..8b7fc1a813 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-18012 +API version: 1.0.11-18369 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 3e08d64de5..1651d3390f 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-18012 +API version: 1.0.11-18369 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 dd5e87c2ce..60c3d4dc39 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-18012 +API version: 1.0.11-18369 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 f3a656c42d..f3e2652489 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-18012 +API version: 1.0.11-18369 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 d531f3622a..fd81370748 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_base_cluster.go b/intersight_gosdk/model_virtualization_base_cluster.go index f9c3c4f085..df247198a7 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-18012 +API version: 1.0.11-18369 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 93a36c6394..5b7f8bb3a7 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-18012 +API version: 1.0.11-18369 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 33ab610a52..e2513547a1 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_base_datacenter.go b/intersight_gosdk/model_virtualization_base_datacenter.go index 847bd20b06..24e7f97341 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_base_datastore.go b/intersight_gosdk/model_virtualization_base_datastore.go index ca61323540..bb02c3c0c5 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-18012 +API version: 1.0.11-18369 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 02825ef48d..59cb3816b9 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-18012 +API version: 1.0.11-18369 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 4300fbacc6..eae8b178da 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-18012 +API version: 1.0.11-18369 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 9f77d4499d..3aff931685 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_base_folder.go b/intersight_gosdk/model_virtualization_base_folder.go index 3ecda098ea..4ab42798b2 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_base_host.go b/intersight_gosdk/model_virtualization_base_host.go index 62ca758e11..d087ab021f 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_base_host_configuration.go b/intersight_gosdk/model_virtualization_base_host_configuration.go index 7b589820e9..8f0e98f3ef 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-18012 +API version: 1.0.11-18369 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 a72835911a..aeaf2c55f7 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-18012 +API version: 1.0.11-18369 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 c39915e228..493192b430 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-18012 +API version: 1.0.11-18369 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 718deb870a..28112715c9 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-18012 +API version: 1.0.11-18369 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 b5855e1884..6ff6557910 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-18012 +API version: 1.0.11-18369 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 62f585b499..8633e866a9 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_base_kernel_network.go b/intersight_gosdk/model_virtualization_base_kernel_network.go index cf255f1ff4..68cc480002 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_base_network.go b/intersight_gosdk/model_virtualization_base_network.go index 6280ad1174..e675dec10a 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-18012 +API version: 1.0.11-18369 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 e8433fb0b8..0aff36a851 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-18012 +API version: 1.0.11-18369 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 36c7b7930f..74cd8706f6 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_base_placement.go b/intersight_gosdk/model_virtualization_base_placement.go index 2436635b5a..94c8d41469 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_base_source_device.go b/intersight_gosdk/model_virtualization_base_source_device.go index 0cace599cd..b05ea50022 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_base_switch.go b/intersight_gosdk/model_virtualization_base_switch.go index be3dd982cb..8d98f5ee35 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-18012 +API version: 1.0.11-18369 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 c9df3736e8..f523ad2a68 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-18012 +API version: 1.0.11-18369 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 d0048b259c..95aad4f1fe 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_base_virtual_machine_gpu.go b/intersight_gosdk/model_virtualization_base_virtual_machine_gpu.go index 235018da5b..dae4829d2b 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-18012 +API version: 1.0.11-18369 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 d75b3cb295..211d0dc4ff 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-18012 +API version: 1.0.11-18369 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 ef0e836a75..d545aeddcb 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-18012 +API version: 1.0.11-18369 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 66f3cbf79d..d7790a33e7 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-18012 +API version: 1.0.11-18369 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 b222afcbab..56399cc338 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-18012 +API version: 1.0.11-18369 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 a5c89066a9..5bfce1e5a7 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-18012 +API version: 1.0.11-18369 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 1f3158dceb..1c10a71204 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_base_virtual_switch.go b/intersight_gosdk/model_virtualization_base_virtual_switch.go index 4e0f98b698..fc01cb888c 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-18012 +API version: 1.0.11-18369 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 b28365c449..1d35a17cf8 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-18012 +API version: 1.0.11-18369 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 195c0f653e..6bb5358ab6 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-18012 +API version: 1.0.11-18369 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 ab33d89633..c2adb149e8 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-18012 +API version: 1.0.11-18369 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 c5b84bf776..61267912e0 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-18012 +API version: 1.0.11-18369 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 264f7a20da..5d6b207de8 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-18012 +API version: 1.0.11-18369 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 4e14f764dc..62027bc3c6 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_compute_capacity.go b/intersight_gosdk/model_virtualization_compute_capacity.go index 2ce1f88507..d2d8918f05 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_cpu_info.go b/intersight_gosdk/model_virtualization_cpu_info.go index 0011b2b52b..2bef38caeb 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-18012 +API version: 1.0.11-18369 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 225611bca0..7863012579 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_esxi_console.go b/intersight_gosdk/model_virtualization_esxi_console.go index c2b3a111cb..fe9f78f080 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-18012 +API version: 1.0.11-18369 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 3e06f81a55..b250f843c8 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-18012 +API version: 1.0.11-18369 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 f7abb48efc..c1748060df 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-18012 +API version: 1.0.11-18369 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 c88f83e8c1..be7df263a7 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-18012 +API version: 1.0.11-18369 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 7be128a488..260c2cef0b 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-18012 +API version: 1.0.11-18369 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 85d948083f..5c3d87d625 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-18012 +API version: 1.0.11-18369 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 106360f212..f759b1ce5d 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-18012 +API version: 1.0.11-18369 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 5d79d18ad0..fd65c274a6 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-18012 +API version: 1.0.11-18369 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 4b8da8cf18..f62832fed2 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_guest_info.go b/intersight_gosdk/model_virtualization_guest_info.go index af51abe0c9..b146ad788d 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_host.go b/intersight_gosdk/model_virtualization_host.go index a7dd189a83..ce96767ba1 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_host_list.go b/intersight_gosdk/model_virtualization_host_list.go index bd9bb2dfdd..00acb8b126 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_host_response.go b/intersight_gosdk/model_virtualization_host_response.go index 09bf217a04..6220fbb233 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-18012 +API version: 1.0.11-18369 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 4b33385d31..bd438bd44c 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_memory_capacity.go b/intersight_gosdk/model_virtualization_memory_capacity.go index ee9e4bf293..18ed46b87c 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_network_interface.go b/intersight_gosdk/model_virtualization_network_interface.go index 783e055fae..930da1de54 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_product_info.go b/intersight_gosdk/model_virtualization_product_info.go index 18ed87a743..0a831edd06 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_storage_capacity.go b/intersight_gosdk/model_virtualization_storage_capacity.go index 7818a3e63e..112be97528 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_virtual_machine.go b/intersight_gosdk/model_virtualization_virtual_machine.go index ab449c9c1e..926e62dfd6 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-18012 +API version: 1.0.11-18369 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 becd90db5d..8a194e3d85 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-18012 +API version: 1.0.11-18369 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 8fde8551c1..254579ba7e 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-18012 +API version: 1.0.11-18369 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 cc16615e9b..30333d672a 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-18012 +API version: 1.0.11-18369 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 7e20f7d1a6..a3fdf2173c 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-18012 +API version: 1.0.11-18369 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 af33cbff8d..fcc758ad22 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_vmware_cluster.go b/intersight_gosdk/model_virtualization_vmware_cluster.go index 4c1749eeab..8762cd22e4 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-18012 +API version: 1.0.11-18369 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 6cf5866e56..35d1187325 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-18012 +API version: 1.0.11-18369 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 3b9e9f1b35..f894be83eb 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-18012 +API version: 1.0.11-18369 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 325b39e622..b2e9caf199 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_vmware_datacenter.go b/intersight_gosdk/model_virtualization_vmware_datacenter.go index 97d2337880..37291e1579 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-18012 +API version: 1.0.11-18369 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 ca35542618..3ac2f0d86e 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-18012 +API version: 1.0.11-18369 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 16cccbeda1..009130e522 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-18012 +API version: 1.0.11-18369 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 f16d75743d..223e2c3216 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_vmware_datastore.go b/intersight_gosdk/model_virtualization_vmware_datastore.go index 1aac3cf96b..c2626c66f4 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-18012 +API version: 1.0.11-18369 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 0f869d4c76..d521f54af6 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-18012 +API version: 1.0.11-18369 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 8b082e6295..4fa9092770 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-18012 +API version: 1.0.11-18369 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 c4d96371ff..d33b4329bc 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-18012 +API version: 1.0.11-18369 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 3d15a64163..2b91fe156d 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-18012 +API version: 1.0.11-18369 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 0a9e2fcd1a..210256c71a 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-18012 +API version: 1.0.11-18369 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 f8ff424efd..98d5c0008e 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-18012 +API version: 1.0.11-18369 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 174e080e00..0dfd600278 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-18012 +API version: 1.0.11-18369 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 1d38bfec0e..563fc1ae97 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-18012 +API version: 1.0.11-18369 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 598f6244ec..f73612ee92 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-18012 +API version: 1.0.11-18369 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 1716e6b6ee..917ee4c434 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-18012 +API version: 1.0.11-18369 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 f2558c0171..3da34041c9 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-18012 +API version: 1.0.11-18369 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 8b5cd16e25..a6f999152e 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-18012 +API version: 1.0.11-18369 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 a19747d90f..1364bc0adb 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_vmware_distributed_switch_list.go b/intersight_gosdk/model_virtualization_vmware_distributed_switch_list.go index 579e150975..51d7af7a1f 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-18012 +API version: 1.0.11-18369 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 a4f682c84c..194c109282 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-18012 +API version: 1.0.11-18369 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 ec029dd47e..9833686f27 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_vmware_folder.go b/intersight_gosdk/model_virtualization_vmware_folder.go index deda6b5ff0..cc2389ea24 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-18012 +API version: 1.0.11-18369 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 6e022f9bc5..68a340cb40 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-18012 +API version: 1.0.11-18369 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 e13d9f3223..9f6a4205df 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-18012 +API version: 1.0.11-18369 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 63d9b4c1f7..36b1217f0f 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_vmware_host.go b/intersight_gosdk/model_virtualization_vmware_host.go index 632157ae87..c3d9c1f946 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-18012 +API version: 1.0.11-18369 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 d2f88d2434..4be1374ce2 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-18012 +API version: 1.0.11-18369 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 98f097ecc1..bbb4d41e3c 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-18012 +API version: 1.0.11-18369 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 a70adcdd04..c96782c871 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-18012 +API version: 1.0.11-18369 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 bd3c45f354..f176ab88ca 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-18012 +API version: 1.0.11-18369 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 f8a9466e12..0ef69ef1e3 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-18012 +API version: 1.0.11-18369 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 4d87d13001..f4d5143a4b 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-18012 +API version: 1.0.11-18369 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 bb095b2341..8f79668623 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_vmware_kernel_network_list.go b/intersight_gosdk/model_virtualization_vmware_kernel_network_list.go index fa19a87393..d8f6fb1b5b 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-18012 +API version: 1.0.11-18369 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 7d4cf6fa43..9bd11586e5 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_vmware_network.go b/intersight_gosdk/model_virtualization_vmware_network.go index 84025bda37..4bd5e5cc36 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-18012 +API version: 1.0.11-18369 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 ae14efe9eb..11afea5655 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-18012 +API version: 1.0.11-18369 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 d35ac959f1..a46e082170 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-18012 +API version: 1.0.11-18369 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 0725f1feac..9490c0f2f0 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-18012 +API version: 1.0.11-18369 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 1a0c799240..6755b6a1c8 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 043c0478cf..595ee06713 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-18012 +API version: 1.0.11-18369 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 d0b2bce9f6..65e6a4093a 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-18012 +API version: 1.0.11-18369 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 391c152d9a..77c707f761 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-18012 +API version: 1.0.11-18369 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 570a718b35..e85acd8bd1 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-18012 +API version: 1.0.11-18369 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 400071939e..c8a1563af4 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-18012 +API version: 1.0.11-18369 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 0c2c41b461..5f0f82831a 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-18012 +API version: 1.0.11-18369 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 791ff4794a..04a0569c0d 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-18012 +API version: 1.0.11-18369 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 33c0b7edc9..1b00766151 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-18012 +API version: 1.0.11-18369 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 52b744aac1..04503b5e58 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-18012 +API version: 1.0.11-18369 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 d152bed0c3..d9e325bbf0 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-18012 +API version: 1.0.11-18369 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 df8bf2839b..56aa9d157f 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-18012 +API version: 1.0.11-18369 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 7fa0fa78b8..81ccb3755c 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-18012 +API version: 1.0.11-18369 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 997c633348..cdc07fa538 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-18012 +API version: 1.0.11-18369 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 56b4aad86e..b7e3097b68 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_vmware_vcenter.go b/intersight_gosdk/model_virtualization_vmware_vcenter.go index 0246be9bda..f7de205f0e 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-18012 +API version: 1.0.11-18369 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 b33e98d6c8..3acbd1d375 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-18012 +API version: 1.0.11-18369 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 796a1379a7..d127154bd0 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-18012 +API version: 1.0.11-18369 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 13164cd92d..2dc0e0285b 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-18012 +API version: 1.0.11-18369 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 3a460829b9..63f9ce70c7 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_vmware_virtual_disk_list.go b/intersight_gosdk/model_virtualization_vmware_virtual_disk_list.go index 5d914a10b4..984c3b9907 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-18012 +API version: 1.0.11-18369 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 2e06e1a323..a148df27db 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-18012 +API version: 1.0.11-18369 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 a0cf42df4a..94080dac44 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_vmware_virtual_machine_gpu.go b/intersight_gosdk/model_virtualization_vmware_virtual_machine_gpu.go index ad590253eb..2974f74b97 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-18012 +API version: 1.0.11-18369 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 51985e6b0a..2c95dcd381 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-18012 +API version: 1.0.11-18369 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 1d7aac9d45..aa7b38cfb4 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-18012 +API version: 1.0.11-18369 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 0417159abb..cc99cbd891 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-18012 +API version: 1.0.11-18369 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 d29b5cfc94..a01cb7d4d5 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-18012 +API version: 1.0.11-18369 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 2b9e401499..ca4676c767 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-18012 +API version: 1.0.11-18369 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 ebda8579df..18cfd06171 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-18012 +API version: 1.0.11-18369 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 039880fbd4..f13b46d995 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-18012 +API version: 1.0.11-18369 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 283d3d0248..8c99758555 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-18012 +API version: 1.0.11-18369 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 0c1276b6eb..8b1ae0f1c1 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 837e45f960..9ca5c8a6b2 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-18012 +API version: 1.0.11-18369 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 ac39e1eec7..6c2965a797 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-18012 +API version: 1.0.11-18369 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 7aa791df68..28d254847c 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-18012 +API version: 1.0.11-18369 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 63b94f3013..b3f368baa3 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-18012 +API version: 1.0.11-18369 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 df4c3e2d7d..d489e48e05 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-18012 +API version: 1.0.11-18369 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 3c5266b790..982eeb857a 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-18012 +API version: 1.0.11-18369 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 14bf500d4b..6ae9be8ca4 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-18012 +API version: 1.0.11-18369 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 8323723eff..9f587a4576 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-18012 +API version: 1.0.11-18369 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 9e7487232d..fcd7bec652 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-18012 +API version: 1.0.11-18369 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 d016e9b8ac..ed41b4222f 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-18012 +API version: 1.0.11-18369 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 31af8dd8cc..fca9081f6a 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_virtualization_volume_info.go b/intersight_gosdk/model_virtualization_volume_info.go index d6184f86a9..58a545c135 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vmedia_mapping.go b/intersight_gosdk/model_vmedia_mapping.go index d337132dfd..20bfef74c7 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vmedia_policy.go b/intersight_gosdk/model_vmedia_policy.go index 2de62a5c55..65ddcdf8b7 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vmedia_policy_inventory.go b/intersight_gosdk/model_vmedia_policy_inventory.go index 89e5173ff6..0e09211372 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-18012 +API version: 1.0.11-18369 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 0717b0c126..6f1b5803f5 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-18012 +API version: 1.0.11-18369 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 12f41e6f70..33369e3138 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vmedia_policy_list.go b/intersight_gosdk/model_vmedia_policy_list.go index 4d75bbd7fb..96d76d02f9 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vmedia_policy_response.go b/intersight_gosdk/model_vmedia_policy_response.go index f1412e27c9..b6eb617df6 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vmrc_console.go b/intersight_gosdk/model_vmrc_console.go index 82c91d35c7..ec8db6c6fd 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vmrc_console_list.go b/intersight_gosdk/model_vmrc_console_list.go index 1d9e3cd40a..70a84e76f5 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vmrc_console_response.go b/intersight_gosdk/model_vmrc_console_response.go index 28f98a8274..9cdbce9c2c 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_arfs_settings.go b/intersight_gosdk/model_vnic_arfs_settings.go index a165259440..99c4fc672b 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-18012 +API version: 1.0.11-18369 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 b2b0725651..b2dd5157e5 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_base_fc_if.go b/intersight_gosdk/model_vnic_base_fc_if.go index cee04be34b..1318c02dec 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_cdn.go b/intersight_gosdk/model_vnic_cdn.go index fd23b7be64..96292e66d8 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_completion_queue_settings.go b/intersight_gosdk/model_vnic_completion_queue_settings.go index dd7fd408d2..1b8f016379 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-18012 +API version: 1.0.11-18369 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 afb3445c7d..a19f7b987e 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-18012 +API version: 1.0.11-18369 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 30cac1efb7..05ffe75c48 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-18012 +API version: 1.0.11-18369 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 e3034312f0..1794bd25a1 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-18012 +API version: 1.0.11-18369 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 98e871ed47..93a0d45698 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-18012 +API version: 1.0.11-18369 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 4423fb2ae0..86d871d564 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-18012 +API version: 1.0.11-18369 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 44e7dea366..68716e624b 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-18012 +API version: 1.0.11-18369 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 de60062881..4e0bca1073 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-18012 +API version: 1.0.11-18369 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 9b1dbdce5f..5487cb21b0 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_eth_if.go b/intersight_gosdk/model_vnic_eth_if.go index 6ee485fa88..b9c3e97db1 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_eth_if_inventory.go b/intersight_gosdk/model_vnic_eth_if_inventory.go index c1f867666c..3bb65ca444 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_eth_if_inventory_list.go b/intersight_gosdk/model_vnic_eth_if_inventory_list.go index b38612cf7e..a9e9e674e3 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-18012 +API version: 1.0.11-18369 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 4550814608..c7fc2a9298 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-18012 +API version: 1.0.11-18369 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 f3f8b1e186..dfd9f3dbb0 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-18012 +API version: 1.0.11-18369 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 794ef79091..7ed1d72d31 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-18012 +API version: 1.0.11-18369 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 dfdd5baaba..ab34b75250 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-18012 +API version: 1.0.11-18369 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 14607b9085..cdb8b9643b 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-18012 +API version: 1.0.11-18369 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 cb9771c960..0c594c1937 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-18012 +API version: 1.0.11-18369 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 efb2216061..1e30a4d8f0 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-18012 +API version: 1.0.11-18369 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 868cef1771..60957d90b2 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-18012 +API version: 1.0.11-18369 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 810c877096..c9468a8bb8 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-18012 +API version: 1.0.11-18369 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 0e6e430cda..3afb3c20bd 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-18012 +API version: 1.0.11-18369 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 5df0cec894..ea7c426729 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-18012 +API version: 1.0.11-18369 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 1881fbad47..82ddef95ff 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-18012 +API version: 1.0.11-18369 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 ec98f3e7cb..05c051aad0 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-18012 +API version: 1.0.11-18369 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 14614f908f..9f7c64281a 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-18012 +API version: 1.0.11-18369 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 ad60e497d8..21c305495f 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-18012 +API version: 1.0.11-18369 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 2e888efd8a..d2b9ee516a 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-18012 +API version: 1.0.11-18369 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 a6a5b5ee7d..954eb696f4 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-18012 +API version: 1.0.11-18369 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 94d8a9a32a..60c23a11b5 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-18012 +API version: 1.0.11-18369 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 4fefc7a361..a705e53283 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-18012 +API version: 1.0.11-18369 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 d61bb2e1a9..e2cfc0a97f 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-18012 +API version: 1.0.11-18369 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 76b4ef4df1..23a2a70c3c 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-18012 +API version: 1.0.11-18369 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 e6892f3b7f..a9433e6579 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-18012 +API version: 1.0.11-18369 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 4ecc1bef6b..9b8e91bb27 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-18012 +API version: 1.0.11-18369 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 5c846a417b..4f00dcb359 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-18012 +API version: 1.0.11-18369 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 649b86a8a6..a28c8c5bef 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-18012 +API version: 1.0.11-18369 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 432b3d8627..a12feaa3cd 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-18012 +API version: 1.0.11-18369 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 d89b3abb11..841c5c2c6c 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-18012 +API version: 1.0.11-18369 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 42d11f2213..7f927d1d69 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-18012 +API version: 1.0.11-18369 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 b81f66a3fa..b0ad8911c9 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-18012 +API version: 1.0.11-18369 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 0c93e5030f..0b39d774eb 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-18012 +API version: 1.0.11-18369 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 75f2e9d3e0..0ace46a0d3 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-18012 +API version: 1.0.11-18369 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 247b685fc4..00bf5565a2 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-18012 +API version: 1.0.11-18369 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 bd04ae7a0d..c8b0115deb 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-18012 +API version: 1.0.11-18369 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 866b478b16..4c07093586 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-18012 +API version: 1.0.11-18369 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 4177a111ab..ab66c09a97 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-18012 +API version: 1.0.11-18369 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 73d15dfd98..d10b64cf3f 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-18012 +API version: 1.0.11-18369 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 20a8e9e131..75a27bdc14 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-18012 +API version: 1.0.11-18369 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 874f39dfd1..35cc5b6d2e 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-18012 +API version: 1.0.11-18369 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 06ee7e4874..e95fad1e33 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_fc_if.go b/intersight_gosdk/model_vnic_fc_if.go index ccf4924387..ba10a294e6 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_fc_if_inventory.go b/intersight_gosdk/model_vnic_fc_if_inventory.go index 97ab5a9669..a35d7fb426 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_fc_if_inventory_list.go b/intersight_gosdk/model_vnic_fc_if_inventory_list.go index 8bcd167077..8dc28a03d2 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-18012 +API version: 1.0.11-18369 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 8872e8f255..b86aea684d 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-18012 +API version: 1.0.11-18369 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 2b1fa90bf4..5b4059af51 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-18012 +API version: 1.0.11-18369 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 f78c640670..e269acab43 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-18012 +API version: 1.0.11-18369 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 4d65fdded0..1f52770d50 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-18012 +API version: 1.0.11-18369 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 5dec8f0dad..27ca81a14b 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-18012 +API version: 1.0.11-18369 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 6f25e3d12b..36f8045a1b 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-18012 +API version: 1.0.11-18369 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 02cbff859d..fd058ca6bc 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-18012 +API version: 1.0.11-18369 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 43cb4b280c..4e6027c24c 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-18012 +API version: 1.0.11-18369 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 a1bcde3772..4b475c949e 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-18012 +API version: 1.0.11-18369 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 98fd1ab1cb..5a6ba1a23b 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-18012 +API version: 1.0.11-18369 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 bca49e452f..bd9582c8ae 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-18012 +API version: 1.0.11-18369 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 b908bbfcdf..466fea6abd 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-18012 +API version: 1.0.11-18369 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 a6f6db2adc..77667a3c20 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-18012 +API version: 1.0.11-18369 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 016f41285d..bafa5c724b 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-18012 +API version: 1.0.11-18369 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 ebeb57d65f..7b340c4367 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-18012 +API version: 1.0.11-18369 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 67b7bab4b2..383da9daae 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-18012 +API version: 1.0.11-18369 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 5f1e97d0d9..b53babeaa5 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-18012 +API version: 1.0.11-18369 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 c5010eaf8e..aa403ccbfc 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-18012 +API version: 1.0.11-18369 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 a376ba9102..2a7191c264 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-18012 +API version: 1.0.11-18369 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 ee3a21775b..72ebdce8d0 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-18012 +API version: 1.0.11-18369 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 f40da58a35..a4154f35b2 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-18012 +API version: 1.0.11-18369 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 cd6500660d..06eeb504f1 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-18012 +API version: 1.0.11-18369 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 9d29205267..4a12e1f2ed 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-18012 +API version: 1.0.11-18369 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 534be35d8c..b38ddee5a5 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-18012 +API version: 1.0.11-18369 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 a10aa5a82f..70eae2268c 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-18012 +API version: 1.0.11-18369 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 3a099cf296..da8a770adb 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-18012 +API version: 1.0.11-18369 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 8f83ee4aef..ab0aaa63f2 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-18012 +API version: 1.0.11-18369 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 1cb9941400..281d56e213 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-18012 +API version: 1.0.11-18369 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 5fa1a8b9be..90c838144d 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_flogi_settings.go b/intersight_gosdk/model_vnic_flogi_settings.go index b0b987b00d..b4de2d9b36 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-18012 +API version: 1.0.11-18369 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 5096957d29..8248a62d19 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-18012 +API version: 1.0.11-18369 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 684d16b4e8..e18a734879 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-18012 +API version: 1.0.11-18369 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 528ec68621..3bac6f2b31 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-18012 +API version: 1.0.11-18369 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 b4cfe79c41..d5b46e32b3 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-18012 +API version: 1.0.11-18369 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 d8d97186e8..7cb6b8f51c 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-18012 +API version: 1.0.11-18369 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 ad703a154f..fb62a1ad6f 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-18012 +API version: 1.0.11-18369 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 c0f83df336..f88d31aeb2 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-18012 +API version: 1.0.11-18369 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 ba9c6fd84e..47138bf9a6 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-18012 +API version: 1.0.11-18369 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 328bf48df9..6a228be2c1 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_iscsi_boot_policy.go b/intersight_gosdk/model_vnic_iscsi_boot_policy.go index 451d1c9db1..5207da7444 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_iscsi_boot_policy_inventory.go b/intersight_gosdk/model_vnic_iscsi_boot_policy_inventory.go index 025670cf86..6cc9fea4c9 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 a3e8278a1d..859bf1ab28 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-18012 +API version: 1.0.11-18369 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 7e3c387fa9..86c98c8dfa 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-18012 +API version: 1.0.11-18369 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 428de5d6be..deb3a944f7 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-18012 +API version: 1.0.11-18369 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 bb66478edb..d9f67036be 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-18012 +API version: 1.0.11-18369 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 e83759cf01..629118d728 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-18012 +API version: 1.0.11-18369 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 85d2a6cd9a..66f870b476 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-18012 +API version: 1.0.11-18369 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 aa711a701a..d3aa9e6986 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 b81d765c6e..3d3c791493 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 ef0989c9d5..a1a33917fa 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-18012 +API version: 1.0.11-18369 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 1908c41915..6e37af1ac7 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-18012 +API version: 1.0.11-18369 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 c444b5e799..a52d4a0ce5 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-18012 +API version: 1.0.11-18369 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 354f0f0584..e46c222bd9 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-18012 +API version: 1.0.11-18369 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 a80af912d5..d939d0ec12 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-18012 +API version: 1.0.11-18369 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 b929824e72..4c894b12c2 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-18012 +API version: 1.0.11-18369 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 714fd4a9cf..5cfe2af696 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_lan_connectivity_policy_inventory.go b/intersight_gosdk/model_vnic_lan_connectivity_policy_inventory.go index d89bcac874..bc0f9eab6a 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 5c27e27388..be18f5cff9 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-18012 +API version: 1.0.11-18369 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 b0163e42cc..3dfd9d6098 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-18012 +API version: 1.0.11-18369 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 20929dfba6..51c1985391 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-18012 +API version: 1.0.11-18369 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 09e5015792..08efa4750c 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-18012 +API version: 1.0.11-18369 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 49037a37e9..d9ef9d36fd 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-18012 +API version: 1.0.11-18369 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 7b237549db..52a552ac94 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_lcp_status.go b/intersight_gosdk/model_vnic_lcp_status.go index 23bf54984c..f303e6fb9d 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-18012 +API version: 1.0.11-18369 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 5381b118b5..c1bf26db37 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-18012 +API version: 1.0.11-18369 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 b253435279..0b997a90f8 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_lun.go b/intersight_gosdk/model_vnic_lun.go index 219b67ddc4..a33d37cc11 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_nvgre_settings.go b/intersight_gosdk/model_vnic_nvgre_settings.go index ed9a4b1633..50496e15f8 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_placement_settings.go b/intersight_gosdk/model_vnic_placement_settings.go index 083aa1ee84..9acc834a00 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_plogi_settings.go b/intersight_gosdk/model_vnic_plogi_settings.go index 4ce72c9e8c..9bcf9dbdc4 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_ptp_settings.go b/intersight_gosdk/model_vnic_ptp_settings.go index 0ed8dd1a23..ce855aa797 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_roce_settings.go b/intersight_gosdk/model_vnic_roce_settings.go index 075b8f6b70..76884611ec 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-18012 +API version: 1.0.11-18369 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 2e34eee577..1df91508cf 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-18012 +API version: 1.0.11-18369 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 7ec886daac..2303261fc0 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_san_connectivity_policy_inventory.go b/intersight_gosdk/model_vnic_san_connectivity_policy_inventory.go index 1cae337664..ca1ab67d26 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 d6ebfe8a3e..d0f16a9ccc 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-18012 +API version: 1.0.11-18369 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 2d283dcb5d..61c04f8303 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-18012 +API version: 1.0.11-18369 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 9f96bf0f97..27a90ee252 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-18012 +API version: 1.0.11-18369 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 d4cd5fe174..88bfb19d47 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-18012 +API version: 1.0.11-18369 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 327e26a499..c37f2a4391 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-18012 +API version: 1.0.11-18369 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 34c89a86cb..d21344bba5 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_scp_status.go b/intersight_gosdk/model_vnic_scp_status.go index 865cc87e9e..9a00b6d3a2 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-18012 +API version: 1.0.11-18369 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 ebce6dc694..dd1332446f 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-18012 +API version: 1.0.11-18369 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 24a6968371..ec7b56e633 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-18012 +API version: 1.0.11-18369 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 836c1bd6f1..c8db2ddfa7 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_sriov_settings.go b/intersight_gosdk/model_vnic_sriov_settings.go index 8aaba10afa..f005778188 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-18012 +API version: 1.0.11-18369 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 1deef4a4fb..bc559af00d 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_usnic_settings.go b/intersight_gosdk/model_vnic_usnic_settings.go index 463ca8d2de..b16d9fd1d5 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_vhba_template.go b/intersight_gosdk/model_vnic_vhba_template.go index 7c7ca817da..f708091fc3 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_vhba_template_list.go b/intersight_gosdk/model_vnic_vhba_template_list.go index 476b899a6a..c835759120 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-18012 +API version: 1.0.11-18369 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 dd87450b30..74389e7248 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-18012 +API version: 1.0.11-18369 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 d5de774b19..16ea78ce39 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_vif_status.go b/intersight_gosdk/model_vnic_vif_status.go index 1d4bae458b..0f90211d84 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_vlan_settings.go b/intersight_gosdk/model_vnic_vlan_settings.go index c64e7c019c..7ef05b4c1d 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_vmq_settings.go b/intersight_gosdk/model_vnic_vmq_settings.go index 762f72949f..c2ba54ddb4 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_vnic_template.go b/intersight_gosdk/model_vnic_vnic_template.go index 3c2980cf54..f5d422406c 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_vnic_template_list.go b/intersight_gosdk/model_vnic_vnic_template_list.go index 9c17c662ef..cfe53f006d 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-18012 +API version: 1.0.11-18369 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 bc9f03c12d..47907686b0 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-18012 +API version: 1.0.11-18369 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 f54a7d30fe..747d5fe60d 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_vsan_settings.go b/intersight_gosdk/model_vnic_vsan_settings.go index 53d04b0c91..d2f33238d2 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vnic_vxlan_settings.go b/intersight_gosdk/model_vnic_vxlan_settings.go index 51e594d324..aef74bf051 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vrf_vrf.go b/intersight_gosdk/model_vrf_vrf.go index 2a428048dc..77f0e4b69a 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vrf_vrf_list.go b/intersight_gosdk/model_vrf_vrf_list.go index 14042a5593..c11d6642bd 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vrf_vrf_relationship.go b/intersight_gosdk/model_vrf_vrf_relationship.go index ca7bb7a0ce..ea0db66402 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_vrf_vrf_response.go b/intersight_gosdk/model_vrf_vrf_response.go index b31da88ed4..3bc7585400 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-18012 +API version: 1.0.11-18369 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 7e40fb40a3..6e07c7d1f2 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-18012 +API version: 1.0.11-18369 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 fb47578c4a..2f17df9a4c 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-18012 +API version: 1.0.11-18369 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 19ba78aefe..9cf6f9f952 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-18012 +API version: 1.0.11-18369 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 c2b756c5a4..4532e257d0 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-18012 +API version: 1.0.11-18369 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 43203fc539..7a4d1e39a8 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-18012 +API version: 1.0.11-18369 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 f668a8aa50..5188ad6c9e 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-18012 +API version: 1.0.11-18369 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 a4275f3335..4b4f389fe6 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_api.go b/intersight_gosdk/model_workflow_api.go index e8cc072760..d0b34a1629 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-18012 +API version: 1.0.11-18369 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 7f20ed8a03..a907ef1341 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_array_item.go b/intersight_gosdk/model_workflow_array_item.go index 7033502954..014ffaac91 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_associated_roles.go b/intersight_gosdk/model_workflow_associated_roles.go index bf4d14bedc..3ef55e0c45 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-18012 +API version: 1.0.11-18369 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 449fca86c7..5b1998d38c 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_base_operation.go b/intersight_gosdk/model_workflow_base_operation.go index ab462a44a2..6f4f70f323 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-18012 +API version: 1.0.11-18369 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 6380b4dab2..9cd9c75b81 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-18012 +API version: 1.0.11-18369 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 c4f8a6fc4e..16e24f113b 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-18012 +API version: 1.0.11-18369 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 7e752b4d77..8ad5c12dca 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_batch_executor.go b/intersight_gosdk/model_workflow_batch_executor.go index 0ca403afc4..fa8b069887 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_cancelable_type.go b/intersight_gosdk/model_workflow_cancelable_type.go index c1931b8946..c6e23eeb34 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_catalog.go b/intersight_gosdk/model_workflow_catalog.go index 8b4d1ecd98..0973787ed6 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-18012 +API version: 1.0.11-18369 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 46f25507b1..a75c0dfaec 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_catalog_item_definition_list.go b/intersight_gosdk/model_workflow_catalog_item_definition_list.go index 42c48ff558..880482666b 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-18012 +API version: 1.0.11-18369 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 9d6d78afc3..26d0498e75 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-18012 +API version: 1.0.11-18369 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 ba4700a331..313c3e1b2c 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_catalog_list.go b/intersight_gosdk/model_workflow_catalog_list.go index 18cf0ee5dc..1c7880a207 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_catalog_relationship.go b/intersight_gosdk/model_workflow_catalog_relationship.go index 69fd194350..2d47310d00 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_catalog_response.go b/intersight_gosdk/model_workflow_catalog_response.go index 7556ba5f78..f12694db40 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-18012 +API version: 1.0.11-18369 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 4b1ae800d9..cb038fae72 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_catalog_service_request_list.go b/intersight_gosdk/model_workflow_catalog_service_request_list.go index fabf7a02a4..9de2e34cc1 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-18012 +API version: 1.0.11-18369 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 d0f9553b6b..d053588ee1 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-18012 +API version: 1.0.11-18369 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 e5d512e545..8c83708c1a 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_cli_command.go b/intersight_gosdk/model_workflow_cli_command.go index 2774d95096..064a31a1ac 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_comments.go b/intersight_gosdk/model_workflow_comments.go index a0bd353cd9..fefdeda684 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_constraints.go b/intersight_gosdk/model_workflow_constraints.go index e1dd3c1554..2c10dee5d2 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_control_task.go b/intersight_gosdk/model_workflow_control_task.go index 94e848c774..d0b0ab5d57 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-18012 +API version: 1.0.11-18369 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 ffd42578a8..18db916f07 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-18012 +API version: 1.0.11-18369 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 d18b79e814..b61411643f 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-18012 +API version: 1.0.11-18369 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 29bede7e9b..205e3ed6e8 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-18012 +API version: 1.0.11-18369 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 082e2198c8..ab7cd11faa 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 870be38124..a3263921b0 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-18012 +API version: 1.0.11-18369 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 5e1f1a3cb9..978155e688 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-18012 +API version: 1.0.11-18369 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 3474e7bb93..5f4ad8adb0 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-18012 +API version: 1.0.11-18369 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 bbddb853ae..0441f79c53 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_decision_case.go b/intersight_gosdk/model_workflow_decision_case.go index a1005d1a93..8a85a53895 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_decision_task.go b/intersight_gosdk/model_workflow_decision_task.go index 9380a29f5d..04d2e70f40 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_default_value.go b/intersight_gosdk/model_workflow_default_value.go index 74cf7fa96a..c98ee80111 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_display_meta.go b/intersight_gosdk/model_workflow_display_meta.go index 00be5f2ff5..104797890b 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-18012 +API version: 1.0.11-18369 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 f755f04f72..e194c9982c 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_end_task.go b/intersight_gosdk/model_workflow_end_task.go index 431c173694..73e6f8b5f4 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_enum_entry.go b/intersight_gosdk/model_workflow_enum_entry.go index ac7bae961e..1ec9179087 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_error_response_handler.go b/intersight_gosdk/model_workflow_error_response_handler.go index 65cd1199a2..ea5c427dc4 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_error_response_handler_list.go b/intersight_gosdk/model_workflow_error_response_handler_list.go index 77aee80b78..1634d4e0c1 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-18012 +API version: 1.0.11-18369 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 8769e7fdc7..27eaa1443d 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-18012 +API version: 1.0.11-18369 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 b1de3a1462..0a792c9517 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_expect_prompt.go b/intersight_gosdk/model_workflow_expect_prompt.go index 767d312cac..72bd99695f 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-18012 +API version: 1.0.11-18369 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 4f7f85762a..77485e214b 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-18012 +API version: 1.0.11-18369 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 78cd36fab6..c617408baa 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_file_operations.go b/intersight_gosdk/model_workflow_file_operations.go index cadac16430..c45868bb34 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-18012 +API version: 1.0.11-18369 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 cde439810e..2a92e06980 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_file_transfer.go b/intersight_gosdk/model_workflow_file_transfer.go index 76b7df0f46..367401ca78 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_fork_task.go b/intersight_gosdk/model_workflow_fork_task.go index bd0df8278b..7ab0a054fd 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_initiator_context.go b/intersight_gosdk/model_workflow_initiator_context.go index 7e6e8505f1..353e4816b8 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_internal_properties.go b/intersight_gosdk/model_workflow_internal_properties.go index 915d707904..bf068cbd6c 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_join_task.go b/intersight_gosdk/model_workflow_join_task.go index f9e1615ae0..7f877ef40f 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_loop_task.go b/intersight_gosdk/model_workflow_loop_task.go index 195b0aa590..d2aadc0306 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_message.go b/intersight_gosdk/model_workflow_message.go index 93ed515e2d..89df51a844 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-18012 +API version: 1.0.11-18369 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 05912efe5e..57f222ea7f 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-18012 +API version: 1.0.11-18369 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 395a7b68df..dd6bf0b60f 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-18012 +API version: 1.0.11-18369 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 b307c7624a..e285f6f9ac 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-18012 +API version: 1.0.11-18369 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 b1d33a746d..896d1cb5ab 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-18012 +API version: 1.0.11-18369 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 5e4a85fe81..b7afcbf936 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-18012 +API version: 1.0.11-18369 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 6249b9d5b4..5cf369f3f3 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-18012 +API version: 1.0.11-18369 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 428382d9dd..3b6a02f1cb 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-18012 +API version: 1.0.11-18369 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 0240fe475b..59eac2cc70 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_operation_type_decommission.go b/intersight_gosdk/model_workflow_operation_type_decommission.go index 6b7345c340..6a657afc5d 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-18012 +API version: 1.0.11-18369 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 1c3d0b7d35..a7a7891128 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-18012 +API version: 1.0.11-18369 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 f6d8f31ec9..978508b7ad 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_parameter_set.go b/intersight_gosdk/model_workflow_parameter_set.go index 92e79ead49..bb03023539 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_power_shell_api.go b/intersight_gosdk/model_workflow_power_shell_api.go index 9a7acb548b..3546cb0296 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-18012 +API version: 1.0.11-18369 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 c12de58a93..8c7b4b4365 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-18012 +API version: 1.0.11-18369 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 a7503bf922..440dface3b 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-18012 +API version: 1.0.11-18369 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 8185ad3b6b..cf08931ab4 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-18012 +API version: 1.0.11-18369 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 5d13e7f78d..79bf4f503f 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-18012 +API version: 1.0.11-18369 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 2a8d50ab9e..df009e25fc 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-18012 +API version: 1.0.11-18369 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 6499010700..c516708251 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_properties.go b/intersight_gosdk/model_workflow_properties.go index d17b457094..4ab0d91b38 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-18012 +API version: 1.0.11-18369 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 82722410ba..abb87e411c 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_resource_selector_criteria.go b/intersight_gosdk/model_workflow_resource_selector_criteria.go index abaad36825..fcd6f71551 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_result_handler.go b/intersight_gosdk/model_workflow_result_handler.go index fa16a5c2dc..2ea910f63c 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_rollback_task.go b/intersight_gosdk/model_workflow_rollback_task.go index c97e5dad31..25dfc6338e 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_rollback_workflow.go b/intersight_gosdk/model_workflow_rollback_workflow.go index 7391d562bc..ba42bfd787 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-18012 +API version: 1.0.11-18369 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 ccf2c59285..5c8f9db20f 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-18012 +API version: 1.0.11-18369 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 8c0016264c..746ebf6933 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-18012 +API version: 1.0.11-18369 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 87358ccb23..98af08e626 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_selector_property.go b/intersight_gosdk/model_workflow_selector_property.go index eb47080808..cc2970051e 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_sequence_params.go b/intersight_gosdk/model_workflow_sequence_params.go index 5e92dec2f8..4fecfc8505 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-18012 +API version: 1.0.11-18369 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 2634ae57fe..3f0a06dedc 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-18012 +API version: 1.0.11-18369 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 8544bf0db1..fd74003e25 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 12dfad975d..e339197d8a 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-18012 +API version: 1.0.11-18369 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 4d5603b550..d69d030150 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-18012 +API version: 1.0.11-18369 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 4ad38ff534..d69c77041a 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-18012 +API version: 1.0.11-18369 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 c3ea15d832..35baddf153 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-18012 +API version: 1.0.11-18369 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 cd031bb254..c27e113891 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-18012 +API version: 1.0.11-18369 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 7d6b8c4927..610bfdef7c 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-18012 +API version: 1.0.11-18369 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 4de47e6649..f1d8a1bd76 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-18012 +API version: 1.0.11-18369 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 3cfee7d449..0ee0c03b39 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-18012 +API version: 1.0.11-18369 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 3c7e0c1e19..9d1dc6616b 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_service_item_attribute.go b/intersight_gosdk/model_workflow_service_item_attribute.go index d008d2e7bd..b40569f0f0 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-18012 +API version: 1.0.11-18369 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 7bbb74b01f..3a1c0557f6 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-18012 +API version: 1.0.11-18369 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 5504352c70..6afd1da434 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-18012 +API version: 1.0.11-18369 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 aabc83bc4b..ceba5fe013 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_service_item_definition_list.go b/intersight_gosdk/model_workflow_service_item_definition_list.go index 0b83020ad6..956745237b 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-18012 +API version: 1.0.11-18369 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 320eeba888..3d2993729f 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-18012 +API version: 1.0.11-18369 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 2ef34bdf04..2b050bf499 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-18012 +API version: 1.0.11-18369 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 14ded580c0..8b724f3ed2 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-18012 +API version: 1.0.11-18369 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 c4970075e5..e197a6d7de 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-18012 +API version: 1.0.11-18369 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 63ef465d07..946456eddc 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-18012 +API version: 1.0.11-18369 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 256fc9ebf5..9e5e288aa3 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-18012 +API version: 1.0.11-18369 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 55ac6fc6a6..3aadc68a3e 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-18012 +API version: 1.0.11-18369 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 e20b72fce9..4d4a3e3f4f 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-18012 +API version: 1.0.11-18369 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 6015412c3f..f2d84b0812 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-18012 +API version: 1.0.11-18369 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 bf958e8380..42559e7df0 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-18012 +API version: 1.0.11-18369 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 8686c42796..b48290c0df 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_service_item_instance_list.go b/intersight_gosdk/model_workflow_service_item_instance_list.go index e3465d05ab..3ddc4beaef 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-18012 +API version: 1.0.11-18369 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 af45119fd2..5bceb9c25b 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-18012 +API version: 1.0.11-18369 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 5cd337844f..6bb92c3897 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-18012 +API version: 1.0.11-18369 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 5684555f96..9ae342bf7e 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-18012 +API version: 1.0.11-18369 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 9884367a48..24c446741a 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-18012 +API version: 1.0.11-18369 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 16baf22f2e..9ed9a3da2b 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-18012 +API version: 1.0.11-18369 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 99334f87fe..29fef30b11 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_ssh_batch_executor.go b/intersight_gosdk/model_workflow_ssh_batch_executor.go index 6701a1ca39..477ad2e204 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-18012 +API version: 1.0.11-18369 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 9448193a76..b8a15737d1 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-18012 +API version: 1.0.11-18369 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 8819c7740b..2d29c38e9e 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_ssh_cmd.go b/intersight_gosdk/model_workflow_ssh_cmd.go index 1df4738f0f..97bbdc355b 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_ssh_config.go b/intersight_gosdk/model_workflow_ssh_config.go index 0b2890dde6..9534487b3d 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_ssh_session.go b/intersight_gosdk/model_workflow_ssh_session.go index 100f6a502f..4b5ecb4ced 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_start_task.go b/intersight_gosdk/model_workflow_start_task.go index ee49a7ea0c..44bf027e72 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-18012 +API version: 1.0.11-18369 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 906f4c92c1..93422685d9 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-18012 +API version: 1.0.11-18369 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 79b2707f6b..14d7731628 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_target_context.go b/intersight_gosdk/model_workflow_target_context.go index 256781d2b0..19dc043421 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-18012 +API version: 1.0.11-18369 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 563ce113c5..3b9542d292 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_target_property.go b/intersight_gosdk/model_workflow_target_property.go index eb41197c7b..abeb4f6495 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_task_constraints.go b/intersight_gosdk/model_workflow_task_constraints.go index 9645055ac9..dc1dea0825 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-18012 +API version: 1.0.11-18369 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 e8203cca38..c4c7f5c6e8 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-18012 +API version: 1.0.11-18369 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 88e656457b..0ab6c7b096 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-18012 +API version: 1.0.11-18369 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 7dc6bd542a..f9af1f946c 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_task_definition.go b/intersight_gosdk/model_workflow_task_definition.go index 39ee834a48..500d2061fb 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_task_definition_list.go b/intersight_gosdk/model_workflow_task_definition_list.go index 2cc0e10064..88db625a17 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-18012 +API version: 1.0.11-18369 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 7f24fb9e72..c72f9b7640 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-18012 +API version: 1.0.11-18369 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 6343608976..2a5df49068 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_task_info.go b/intersight_gosdk/model_workflow_task_info.go index 29dcbadb8b..3aa5571d82 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-18012 +API version: 1.0.11-18369 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 08016ab933..741fe543c7 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-18012 +API version: 1.0.11-18369 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 17f7300899..d33b5bb1c7 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-18012 +API version: 1.0.11-18369 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 9f53fa32c7..11d13c154e 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-18012 +API version: 1.0.11-18369 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 cf68c78ae5..93c8836b4d 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-18012 +API version: 1.0.11-18369 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 5dfca47e53..af50a5e498 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_task_metadata.go b/intersight_gosdk/model_workflow_task_metadata.go index 14cd8105ef..492b84046e 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_task_metadata_list.go b/intersight_gosdk/model_workflow_task_metadata_list.go index 5969030968..d31067a0f3 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-18012 +API version: 1.0.11-18369 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 e76cd7465e..fc6879487a 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-18012 +API version: 1.0.11-18369 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 8da9a025ce..3513549689 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-18012 +API version: 1.0.11-18369 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 0d595d7ea2..3c9c3dcc4c 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_template_evaluation.go b/intersight_gosdk/model_workflow_template_evaluation.go index 2efd463906..062abf93db 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-18012 +API version: 1.0.11-18369 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 2241316af3..441c63412f 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-18012 +API version: 1.0.11-18369 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 2908e0d022..f1d271eabb 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-18012 +API version: 1.0.11-18369 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 31087d247a..30edc1eba2 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_template_parser.go b/intersight_gosdk/model_workflow_template_parser.go index 3d492b4e38..80cc4e2bd7 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-18012 +API version: 1.0.11-18369 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 e8a25fcde6..50887f3326 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-18012 +API version: 1.0.11-18369 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 a572a4406c..d2198fa818 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-18012 +API version: 1.0.11-18369 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 75b6f95b67..446a650073 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-18012 +API version: 1.0.11-18369 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 b9b9086c04..e0a75d52c3 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-18012 +API version: 1.0.11-18369 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 c2fe6c4e84..12fdb12f67 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_ui_view_config.go b/intersight_gosdk/model_workflow_ui_view_config.go index 693291d942..045c319a00 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_validation_error.go b/intersight_gosdk/model_workflow_validation_error.go index 6b68b9390e..c61433d6fc 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_validation_information.go b/intersight_gosdk/model_workflow_validation_information.go index 30407e723f..1f31c522e2 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_wait_task.go b/intersight_gosdk/model_workflow_wait_task.go index 7cf6257d01..e51ed4e3b5 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-18012 +API version: 1.0.11-18369 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 d1be2daf5d..6ed8b03729 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_web_api.go b/intersight_gosdk/model_workflow_web_api.go index 05f6a4d109..7900d378be 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_worker_task.go b/intersight_gosdk/model_workflow_worker_task.go index d805d88233..3ad577c83e 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_workflow_ctx.go b/intersight_gosdk/model_workflow_workflow_ctx.go index bbcb6d3950..6fdd1de04a 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_workflow_definition.go b/intersight_gosdk/model_workflow_workflow_definition.go index 8a390302f7..2813eca379 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_workflow_definition_list.go b/intersight_gosdk/model_workflow_workflow_definition_list.go index 64ad6ea49b..661a0f2228 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-18012 +API version: 1.0.11-18369 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 9d6b5dcc6d..2292d7baf2 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-18012 +API version: 1.0.11-18369 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 7d09279f69..5549166a7e 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-18012 +API version: 1.0.11-18369 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 f1af3e60a9..74d6da98a3 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_workflow_info.go b/intersight_gosdk/model_workflow_workflow_info.go index 7b001cfa0b..1a5d484616 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 d396e80bfc..e6086ffe19 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-18012 +API version: 1.0.11-18369 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 cb3eacc6fc..bd022cca93 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-18012 +API version: 1.0.11-18369 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 29e51ee961..ce9bebfdfa 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-18012 +API version: 1.0.11-18369 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 f064f272c5..e9167e37f1 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-18012 +API version: 1.0.11-18369 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 fea514fd94..db3704dadd 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_workflow_metadata.go b/intersight_gosdk/model_workflow_workflow_metadata.go index 6b90bd528d..585810b212 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_workflow_metadata_list.go b/intersight_gosdk/model_workflow_workflow_metadata_list.go index a08f286bac..4b82550d90 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-18012 +API version: 1.0.11-18369 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 5699a18dbb..814bd9c11e 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-18012 +API version: 1.0.11-18369 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 8798e9bdc1..8feaf8071d 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_workflow_properties.go b/intersight_gosdk/model_workflow_workflow_properties.go index 30619849dd..ff55169a5c 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_workflow_task.go b/intersight_gosdk/model_workflow_workflow_task.go index 31d077e5be..158f0b5e1c 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workflow_xml_api.go b/intersight_gosdk/model_workflow_xml_api.go index 0c23b21dba..4c8c7524d9 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workspace_folder.go b/intersight_gosdk/model_workspace_folder.go index db5b0c229f..56301d5119 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workspace_folder_list.go b/intersight_gosdk/model_workspace_folder_list.go index 094962da0b..362bdf1449 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workspace_folder_relationship.go b/intersight_gosdk/model_workspace_folder_relationship.go index 18e0f58d51..1c34b00892 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_workspace_folder_response.go b/intersight_gosdk/model_workspace_folder_response.go index 270242e0b1..02a416478d 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/model_x509_certificate.go b/intersight_gosdk/model_x509_certificate.go index 1171e078cf..6947a2d529 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/response.go b/intersight_gosdk/response.go index d97aaef7af..66c57b7863 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/signing.go b/intersight_gosdk/signing.go index 1f10fcfc46..b96baa8c5a 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/intersight_gosdk/test/api_energy_test.go b/intersight_gosdk/test/api_energy_test.go new file mode 100644 index 0000000000..3bc84d74a1 --- /dev/null +++ b/intersight_gosdk/test/api_energy_test.go @@ -0,0 +1,38 @@ +/* +Cisco Intersight + +Testing EnergyApiService + +*/ + +// Code generated by OpenAPI Generator (https://openapi-generator.tech); + +package intersight + +import ( + "context" + "testing" + + openapiclient "github.com/CiscoDevNet/intersight-go" + "github.com/stretchr/testify/assert" + "github.com/stretchr/testify/require" +) + +func Test_intersight_EnergyApiService(t *testing.T) { + + configuration := openapiclient.NewConfiguration() + apiClient := openapiclient.NewAPIClient(configuration) + + t.Run("Test EnergyApiService CreateEnergyMetrics", func(t *testing.T) { + + t.Skip("skip test") // remove to run test + + resp, httpRes, err := apiClient.EnergyApi.CreateEnergyMetrics(context.Background()).Execute() + + require.Nil(t, err) + require.NotNil(t, resp) + assert.Equal(t, 200, httpRes.StatusCode) + + }) + +} diff --git a/intersight_gosdk/utils.go b/intersight_gosdk/utils.go index 76610094a6..9ee879df60 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/spec/intersight-openapi-v3.json b/spec/intersight-openapi-v3.json index 381c30d65d..85cbd7a511 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-18012", + "version": "1.0.11-18369", "title": "Cisco Intersight", "license": { "name": "Apache License, Version 2.0", @@ -108,6 +108,9 @@ { "name": "dnac" }, + { + "name": "energy" + }, { "name": "equipment" }, @@ -76169,6 +76172,101 @@ } } }, + "/api/v1/energy/Metrics": { + "post": { + "tags": [ + "energy" + ], + "summary": "Create a 'energy.Metrics' resource.", + "operationId": "CreateEnergyMetrics", + "security": [ + { + "cookieAuth": [] + }, + { + "http_signature": [] + }, + { + "oAuth2": [ + "CREATE.energy.Metrics", + "PRIVSET.Account Administrator", + "PRIVSET.Sustainability Metrics Viewer", + "ROLE.Account Administrator", + "ROLE.Sustainability Metrics Viewer" + ] + } + ], + "parameters": [ + { + "$ref": "#/components/parameters/IfMatch" + }, + { + "$ref": "#/components/parameters/IfNoneMatch" + } + ], + "requestBody": { + "description": "The 'energy.Metrics' resource to create.", + "required": true, + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/energy.Metrics" + } + } + } + }, + "responses": { + "200": { + "description": "The HTTP 200 status response code indicates that the request has succeeded and the 'energy.Metrics' resource was created as requested. The 'energy.Metrics' resource is created before this response is sent back and the resource is returned in the body of the message.", + "headers": { + "Set-Cookie": { + "$ref": "#/components/headers/Set-Cookie" + }, + "x-starship-traceid": { + "$ref": "#/components/headers/x-starship-traceid" + } + }, + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/energy.Metrics" + } + } + }, + "links": { + "GetEnergyMetricsByMoid": { + "operationId": "GetEnergyMetricsByMoid", + "parameters": { + "Moid": "$response.body#/Moid" + }, + "description": "The 'Moid' value returned in the response can be used as the 'Moid' parameter in 'GET /api/v1/energy/Metrics/{Moid}'." + }, + "GetIamAccountByMoid": { + "$ref": "#/components/links/GetIamAccountByMoid" + }, + "GetIamDomainGroupByMoid": { + "$ref": "#/components/links/GetIamDomainGroupByMoid" + } + } + }, + "400": { + "$ref": "#/components/responses/http_status_400" + }, + "401": { + "$ref": "#/components/responses/http_status_401" + }, + "403": { + "$ref": "#/components/responses/http_status_403" + }, + "404": { + "$ref": "#/components/responses/http_status_404" + }, + "default": { + "$ref": "#/components/responses/default" + } + } + } + }, "/api/v1/equipment/Chasses": { "get": { "tags": [ @@ -411291,38 +411389,6 @@ "allOf": [ { "$ref": "#/components/schemas/capability.UpdateConstraintMeta" - }, - { - "type": "object", - "description": "Definition of the list of properties defined in 'capability.AdapterUpdateConstraintMeta', excluding properties defined in parent classes.", - "required": [ - "ClassId", - "ObjectType" - ], - "properties": { - "ClassId": { - "description": "The fully-qualified name of the instantiated, concrete type.\nThis property is used as a discriminator to identify the type of the payload\nwhen marshaling and unmarshaling data.", - "enum": [ - "capability.AdapterUpdateConstraintMeta" - ], - "default": "capability.AdapterUpdateConstraintMeta", - "x-enum-as-string": true - }, - "ObjectType": { - "description": "The fully-qualified name of the instantiated, concrete type.\nThe value should be the same as the 'ClassId' property.", - "enum": [ - "capability.AdapterUpdateConstraintMeta" - ], - "default": "capability.AdapterUpdateConstraintMeta", - "x-enum-as-string": true - }, - "SupportedPlatform": { - "description": "Platform for which the constraint is to be enforced.", - "type": "string", - "readOnly": true, - "x-omitempty": true - } - } } ] }, @@ -416961,16 +417027,6 @@ "x-omitempty": true }, "nullable": true - }, - "SupportedPlatforms": { - "type": "array", - "items": { - "description": "Platforms for which the constraint is to be enforced.", - "type": "string", - "readOnly": true, - "x-omitempty": true - }, - "nullable": true } } } @@ -417586,6 +417642,11 @@ "type": "string", "x-omitempty": true }, + "DeviceId": { + "description": "The Catalyst SDWAN device id.", + "type": "string", + "x-omitempty": true + }, "DeviceState": { "description": "The Catalyst SDWAN device state.", "type": "string", @@ -427719,6 +427780,16 @@ "writeOnly": true, "x-omitempty": true }, + "ResetMemoryErrors": { + "description": "Reset Correctable and Uncorrectable ECC errors on all the DIMMs present in the server.\n* `Ready` - Reset memory errors operation is allowed on the server in this state.\n* `Reset` - Trigger reset memory errors operation on a server.", + "type": "string", + "enum": [ + "Ready", + "Reset" + ], + "default": "Ready", + "x-omitempty": true + }, "ServerConfig": { "description": "The common server configurable properties between a server and a server profile.", "$ref": "#/components/schemas/compute.ServerConfig", @@ -434534,6 +434605,16 @@ } ] }, + "energy.Metrics": { + "title": "Energy:Metrics", + "description": "Returns carbon intensity, power breakdown, and electricity rate power metrics for a set of locations and a time span.", + "x-allOf-name": "energy.Metrics", + "allOf": [ + { + "$ref": "#/components/schemas/mo.BaseMo" + } + ] + }, "equipment.AbstractDevice": { "title": "Equipment:Abstract Device", "description": "Common attributes for inventory device in Intersight.", @@ -449360,11 +449441,11 @@ "x-omitempty": true }, "NativeVlan": { - "description": "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.", + "description": "Native VLAN ID of the virtual interface or the corresponding Vethernet on the peer Fabric Interconnect to which the virtual interface is connected. Native VLAN ID maps all incoming untagged traffic i.e. packets without a VLAN tag to the native VLAN for switching purposes. If the native VLAN is not a part of the allowed VLANs, it will automatically be added to the list of allowed VLANs. A native VLAN ID of 0 will indicate to the system to use the system default native VLAN ID and will also prevent native VLAN from being added to the allowed VLAN list.", "type": "integer", "format": "int64", - "default": 1, - "minimum": 1, + "default": 0, + "minimum": 0, "maximum": 4093, "x-omitempty": true }, @@ -485859,7 +485940,7 @@ "x-omitempty": true }, "EncryptionKey": { - "description": "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.", + "description": "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 C-Series servers. FI-attached C-Series servers with firmware at minimum of 4.2.3a support this configuration. B/X-Series 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.", "type": "string", "pattern": "^[a-fA-F0-9]*$", "minLength": 0, @@ -485875,7 +485956,7 @@ "x-omitempty": true }, "Privilege": { - "description": "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.\n* `admin` - Privilege to perform all actions available through IPMI.\n* `user` - Privilege to perform some functions through IPMI but restriction on performing administrative tasks.\n* `read-only` - Privilege to view information throught IPMI but restriction on making any changes.", + "description": "The highest privilege level that can be assigned to an IPMI session on a server. This configuration is supported by all Standalone C-Series servers. FI-attached C-Series servers with firmware at minimum of 4.2.3a support this configuration. B/X-Series servers with firmware at minimum of 5.1.0.x support this configuration. Privilege level user is not supported for B/X-Series servers.\n* `admin` - Privilege to perform all actions available through IPMI.\n* `user` - Privilege to perform some functions through IPMI but restriction on performing administrative tasks.\n* `read-only` - Privilege to view information throught IPMI but restriction on making any changes.", "type": "string", "enum": [ "admin", @@ -485990,7 +486071,7 @@ "x-omitempty": true }, "EncryptionKey": { - "description": "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.", + "description": "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 C-Series servers. FI-attached C-Series servers with firmware at minimum of 4.2.3a support this configuration. B/X-Series 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.", "type": "string", "pattern": "^[a-fA-F0-9]*$", "minLength": 0, @@ -486006,7 +486087,7 @@ "x-omitempty": true }, "Privilege": { - "description": "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.\n* `admin` - Privilege to perform all actions available through IPMI.\n* `user` - Privilege to perform some functions through IPMI but restriction on performing administrative tasks.\n* `read-only` - Privilege to view information throught IPMI but restriction on making any changes.", + "description": "The highest privilege level that can be assigned to an IPMI session on a server. This configuration is supported by all Standalone C-Series servers. FI-attached C-Series servers with firmware at minimum of 4.2.3a support this configuration. B/X-Series servers with firmware at minimum of 5.1.0.x support this configuration. Privilege level user is not supported for B/X-Series servers.\n* `admin` - Privilege to perform all actions available through IPMI.\n* `user` - Privilege to perform some functions through IPMI but restriction on performing administrative tasks.\n* `read-only` - Privilege to view information throught IPMI but restriction on making any changes.", "type": "string", "enum": [ "admin", @@ -505534,7 +505615,6 @@ "scheduler.TaskResultStatus", "scheduler.TaskScheduleStatus", "scheduler.WeeklyCadenceParams", - "scheduler.YearlyCadenceParams", "sdcard.Diagnostics", "sdcard.Drivers", "sdcard.HostUpgradeUtility", @@ -506265,7 +506345,6 @@ "scheduler.TaskResultStatus", "scheduler.TaskScheduleStatus", "scheduler.WeeklyCadenceParams", - "scheduler.YearlyCadenceParams", "sdcard.Diagnostics", "sdcard.Drivers", "sdcard.HostUpgradeUtility", @@ -506778,6 +506857,7 @@ "dnac.Template", "dnac.Transit", "dnac.VirtualNetworkFabricSite", + "energy.Metrics", "equipment.Chassis", "equipment.ChassisIdPool", "equipment.ChassisIdentity", @@ -507883,6 +507963,7 @@ "dnac.Template", "dnac.Transit", "dnac.VirtualNetworkFabricSite", + "energy.Metrics", "equipment.Chassis", "equipment.ChassisIdPool", "equipment.ChassisIdentity", @@ -509096,6 +509177,7 @@ "dnac.Template", "dnac.Transit", "dnac.VirtualNetworkFabricSite", + "energy.Metrics", "equipment.Chassis", "equipment.ChassisIdPool", "equipment.ChassisIdentity", @@ -548655,7 +548737,7 @@ }, "scheduler.BaseMonthlyCadenceParams": { "title": "Scheduler:Base Monthly Cadence Params", - "description": "The monthly cadence applied to yearly and monthly schedules.", + "description": "The monthly cadence applied to monthly schedules.", "x-allOf-name": "scheduler.BaseMonthlyCadenceParams", "allOf": [ { @@ -548672,17 +548754,17 @@ "ClassId": { "description": "The fully-qualified name of the instantiated, concrete type.\nThis property is used as a discriminator to identify the type of the payload\nwhen marshaling and unmarshaling data.\nThe enum values provides the list of concrete types that can be instantiated from this abstract type.", "enum": [ - "scheduler.MonthlyCadenceParams", - "scheduler.YearlyCadenceParams" + "scheduler.MonthlyCadenceParams" ], + "default": "scheduler.MonthlyCadenceParams", "x-enum-as-string": true }, "ObjectType": { "description": "The fully-qualified name of the instantiated, concrete type.\nThe value should be the same as the 'ClassId' property.\nThe enum values provides the list of concrete types that can be instantiated from this abstract type.", "enum": [ - "scheduler.MonthlyCadenceParams", - "scheduler.YearlyCadenceParams" + "scheduler.MonthlyCadenceParams" ], + "default": "scheduler.MonthlyCadenceParams", "x-enum-as-string": true }, "CustomDayOfMonth": { @@ -548705,11 +548787,6 @@ "x-omitempty": true }, "nullable": true - }, - "WeekDayFormat": { - "description": "A format with the week and specific days as arguments.", - "$ref": "#/components/schemas/scheduler.MonthlyWeekDayFormat", - "x-omitempty": true } } } @@ -548748,7 +548825,7 @@ "x-enum-as-string": true }, "StartTime": { - "description": "The schedule start time. A future time is required. When the start time is updated, it is mandatory to specify the corresponding timeZone property as well.", + "description": "The schedule start time. A future time is required.", "type": "string", "format": "date-time", "x-omitempty": true @@ -549225,6 +549302,9 @@ "description": "Run every day by default if not specified.", "type": "integer", "format": "int64", + "default": 1, + "minimum": 1, + "maximum": 31, "x-omitempty": true } } @@ -549264,7 +549344,7 @@ "x-enum-as-string": true }, "Interval": { - "description": "An interval specified as string where valid time units are \"ns\", \"us\", \"ms\", \"s\", \"m\", \"h\". The calender calculations use a gregorian calendar with no leap seconds. The default is 24h.", + "description": "An interval specified as string where valid time units are \"s\", \"m\", \"h\". The minimum interval is 15 minutes and the maximum is 24 hours.", "type": "string", "x-omitempty": true } @@ -549282,54 +549362,6 @@ } ] }, - "scheduler.MonthlyWeekDayFormat": { - "title": "Scheduler:Monthly Week Day Format", - "description": "An alternative for monthly scheduled task. For e.g. third Tuesday of every month.", - "x-allOf-name": "scheduler.MonthlyWeekDayFormat", - "nullable": true, - "allOf": [ - { - "$ref": "#/components/schemas/mo.BaseComplexType" - }, - { - "type": "object", - "description": "Definition of the list of properties defined in 'scheduler.MonthlyWeekDayFormat', excluding properties defined in parent classes.", - "required": [ - "ClassId", - "ObjectType" - ], - "properties": { - "DayOfWeek": { - "type": "array", - "items": { - "description": "The days in the week used to schedule a task.\n* `Monday` - The first day of the week.\n* `Tuesday` - The second day of the week.\n* `Wednesday` - The third day of the week.\n* `Thursday` - The fourth day of the week.\n* `Friday` - The fifth day of the week.\n* `Saturday` - The sixth day of the week.\n* `Sunday` - The seventh day of the week.", - "type": "string", - "enum": [ - "Monday", - "Tuesday", - "Wednesday", - "Thursday", - "Friday", - "Saturday", - "Sunday" - ], - "default": "Monday", - "x-omitempty": true - }, - "nullable": true - }, - "WeekOfMonth": { - "description": "The week of the month, 1 through 5.", - "type": "integer", - "format": "int64", - "minimum": 1, - "maximum": 5, - "x-omitempty": true - } - } - } - ] - }, "scheduler.OneTimeScheduleParams": { "title": "Scheduler:One Time Schedule Params", "description": "The parameters for configuring a onetime schedule.", @@ -549347,6 +549379,71 @@ "allOf": [ { "$ref": "#/components/schemas/scheduler.BaseScheduleParams" + }, + { + "type": "object", + "description": "Definition of the list of properties defined in 'scheduler.RecurringScheduleParams', excluding properties defined in parent classes.", + "required": [ + "ClassId", + "ObjectType" + ], + "properties": { + "ClassId": { + "description": "The fully-qualified name of the instantiated, concrete type.\nThis property is used as a discriminator to identify the type of the payload\nwhen marshaling and unmarshaling data.", + "enum": [ + "scheduler.RecurringScheduleParams" + ], + "default": "scheduler.RecurringScheduleParams", + "x-enum-as-string": true + }, + "ObjectType": { + "description": "The fully-qualified name of the instantiated, concrete type.\nThe value should be the same as the 'ClassId' property.", + "enum": [ + "scheduler.RecurringScheduleParams" + ], + "default": "scheduler.RecurringScheduleParams", + "x-enum-as-string": true + }, + "Cadence": { + "description": "Allowed values for a recurring schedule cadence.\n* `None` - No value set for the cadence type (Enum value None).\n* `Every` - Use the 'Every' cadence for tasks that need to be run frequently and are relatively small or quick to execute. This could include tasks such as checking the status of a service every 15 minutes, or updating a counter.\n* `Daily` - A Daily cadence allows for a scheduled task to be run every day or every n-interval days.\n* `Weekly` - A Weekly cadence allows for a scheduled task to be run every week or every n-interval weeks on specific days.\n* `Monthly` - A Montly cadence allows for a scheduled task to be run every month on specific days.", + "type": "string", + "enum": [ + "None", + "Every", + "Daily", + "Weekly", + "Monthly" + ], + "default": "None", + "x-omitempty": true + }, + "EndAfterOccurrences": { + "description": "Specify the number of occurrences (instead of an end-time) for a recurring schedule.", + "type": "integer", + "format": "int64", + "x-omitempty": true + }, + "EndTime": { + "description": "End time for the recurring schedule. The schedule will not run beyond this time. If using the endAfterOccurrences parameter instead, this field should be set to zero time, i.e, 0001-01-01T00:00:00Z.", + "type": "string", + "format": "date-time", + "x-omitempty": true + }, + "FailureThreshold": { + "description": "The maximum number of consecutive failures until the recurring scheduled task is suspended by the system. The default is 1.", + "type": "integer", + "format": "int64", + "default": 1, + "minimum": 1, + "maximum": 10, + "x-omitempty": true + }, + "Params": { + "description": "The cadence for the recurring schedule. Different parameters are used depending on the schedule type.", + "$ref": "#/components/schemas/scheduler.BaseCadenceParams", + "x-omitempty": true + } + } } ] }, @@ -549404,11 +549501,12 @@ }, "Response": { "description": "The response obtained for the scheduled API service.", + "deprecated": true, "nullable": true, "x-omitempty": true }, "Timeout": { - "description": "Upper limit on the execution time of a scheduled task. Helps purge run-away scheduled tasks.", + "description": "Upper limit on the execution time of a scheduled task. Helps purge run-away scheduled tasks.\nNot supported in this release.", "type": "integer", "format": "int64", "x-omitempty": true @@ -550099,7 +550197,7 @@ "x-enum-as-string": true }, "Action": { - "description": "The action of the scheduled task such as suspend or resume.\n* `None` - No action is set (default).\n* `Suspend` - Suspend a scheduled task indefinitely.\n* `Resume` - Resume a suspended scheduled task.\n* `SuspendTill` - Suspend the scheduled task until a specified end-date.", + "description": "The action of the scheduled task such as suspend or resume.\n* `None` - No action is set (default).\n* `Suspend` - Suspend a scheduled task indefinitely.\n* `Resume` - Resume a suspended scheduled task.\n* `SuspendTill` - Suspend the scheduled task until a specified end-date. Not supported in this release.", "type": "string", "enum": [ "None", @@ -550116,7 +550214,7 @@ "x-omitempty": true }, "LastAction": { - "description": "The last action for the scheduled task is saved in this field. Set to none if there was no action.\n* `None` - No action is set (default).\n* `Suspend` - Suspend a scheduled task indefinitely.\n* `Resume` - Resume a suspended scheduled task.\n* `SuspendTill` - Suspend the scheduled task until a specified end-date.", + "description": "The last action for the scheduled task is saved in this field. Set to none if there was no action.\n* `None` - No action is set (default).\n* `Suspend` - Suspend a scheduled task indefinitely.\n* `Resume` - Resume a suspended scheduled task.\n* `SuspendTill` - Suspend the scheduled task until a specified end-date. Not supported in this release.", "type": "string", "enum": [ "None", @@ -550134,7 +550232,7 @@ "x-omitempty": true }, "ScheduleParams": { - "description": "According to the schedule type this property is evaluated. If the property Type is set to OneTime, then the ObjectType must be scheduler.OneTimeScheduleParams.", + "description": "According to the schedule type this property is evaluated. If the property Type is set to OneTime, then the ObjectType must be scheduler.OneTimeScheduleParams. If the Type is Recurring, then the ObjectType must be scheduler.RecurringScheduleParams.", "$ref": "#/components/schemas/scheduler.BaseScheduleParams", "x-omitempty": true }, @@ -550156,7 +550254,7 @@ "x-omitempty": true }, "Type": { - "description": "An Enum describing the type of scheduler to use.\n* `None` - No value was set for the schedule type (Enum value None).\n* `OneTime` - Define a one-time task execution time that will not automatically repeat.\n* `Recurring` - Specify a recurring task cadence based on a predefined pattern, such as daily, weekly, monthly, yearly, or every pattern. This option is not currently supported.", + "description": "An Enum describing the type of scheduler to use.\n* `None` - No value was set for the schedule type (Enum value None).\n* `OneTime` - Define a one-time task execution time that will not automatically repeat.\n* `Recurring` - Specify a recurring task cadence based on a predefined pattern, such as daily, weekly, monthly, or every pattern.", "type": "string", "enum": [ "None", @@ -550240,6 +550338,13 @@ "default": "scheduler.TaskScheduleStatus", "x-enum-as-string": true }, + "ConsecutiveFailures": { + "description": "The number of consecutive times the task has failed.", + "type": "integer", + "format": "int64", + "readOnly": true, + "x-omitempty": true + }, "Count": { "description": "The task completion count, which includes both successful executions and any failures.", "type": "integer", @@ -550269,6 +550374,22 @@ "readOnly": true, "x-omitempty": true }, + "LastRunStatus": { + "description": "The last task completion status, which includes both successful executions and any failures.\n* `None` - No status is set (default).\n* `Scheduled` - The status is set when a task is scheduled.\n* `Running` - The status is set when a task is running.\n* `Completed` - The status is set when a task is complete.\n* `Failed` - The status is set when a task fails.\n* `Suspended` - The status is set when a task is suspended.\n* `Skipped` - The status is set when a task is skipped because the previous task is still running.", + "type": "string", + "enum": [ + "None", + "Scheduled", + "Running", + "Completed", + "Failed", + "Suspended", + "Skipped" + ], + "default": "None", + "readOnly": true, + "x-omitempty": true + }, "NextRunStartTime": { "description": "The next run time for a recurrently scheduled the task.", "type": "string", @@ -550335,81 +550456,30 @@ "DayOfWeek": { "type": "array", "items": { - "description": "The days of week to schedule a task. If this is not provided, all 7 days are picked by default.\n* `Monday` - The first day of the week.\n* `Tuesday` - The second day of the week.\n* `Wednesday` - The third day of the week.\n* `Thursday` - The fourth day of the week.\n* `Friday` - The fifth day of the week.\n* `Saturday` - The sixth day of the week.\n* `Sunday` - The seventh day of the week.", + "description": "The days of week to schedule a task. If this is not provided, Monday is picked by default.\n* `Sunday` - The seventh day of the week.\n* `Monday` - The first day of the week.\n* `Tuesday` - The second day of the week.\n* `Wednesday` - The third day of the week.\n* `Thursday` - The fourth day of the week.\n* `Friday` - The fifth day of the week.\n* `Saturday` - The sixth day of the week.", "type": "string", "enum": [ + "Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", - "Saturday", - "Sunday" + "Saturday" ], - "default": "Monday", + "default": "Sunday", "x-omitempty": true }, "nullable": true - } - } - } - ] - }, - "scheduler.YearlyCadenceParams": { - "title": "Scheduler:Yearly Cadence Params", - "description": "Parameters for a yearly cadence.", - "x-allOf-name": "scheduler.YearlyCadenceParams", - "allOf": [ - { - "$ref": "#/components/schemas/scheduler.BaseMonthlyCadenceParams" - }, - { - "type": "object", - "description": "Definition of the list of properties defined in 'scheduler.YearlyCadenceParams', excluding properties defined in parent classes.", - "required": [ - "ClassId", - "ObjectType" - ], - "properties": { - "ClassId": { - "description": "The fully-qualified name of the instantiated, concrete type.\nThis property is used as a discriminator to identify the type of the payload\nwhen marshaling and unmarshaling data.", - "enum": [ - "scheduler.YearlyCadenceParams" - ], - "default": "scheduler.YearlyCadenceParams", - "x-enum-as-string": true }, - "ObjectType": { - "description": "The fully-qualified name of the instantiated, concrete type.\nThe value should be the same as the 'ClassId' property.", - "enum": [ - "scheduler.YearlyCadenceParams" - ], - "default": "scheduler.YearlyCadenceParams", - "x-enum-as-string": true - }, - "MonthOfYear": { - "type": "array", - "items": { - "description": "A list of months to run the scheduled-task.\n* `January` - The first month of a calendar year.\n* `February` - The second month of a calendar year.\n* `March` - The third month of a calendar year.\n* `April` - The fourth month of a calendar year.\n* `May` - The fifth month of a calendar year.\n* `June` - The sixth month of a calendar year.\n* `July` - The seventh month of a calendar year.\n* `August` - The eighth month of a calendar year.\n* `September` - The ninth month of a calendar year.\n* `October` - The tenth month of a calendar year.\n* `November` - The eleventh month of a calendar year.\n* `December` - The twelfth month of a calendar year.", - "type": "string", - "enum": [ - "January", - "February", - "March", - "April", - "May", - "June", - "July", - "August", - "September", - "October", - "November", - "December" - ], - "default": "January", - "x-omitempty": true - }, - "nullable": true + "RunEvery": { + "description": "A weekly interval for a task execution. If an interval is not explicitly specified, the task will be executed once every week by default.", + "type": "integer", + "format": "int64", + "default": 1, + "minimum": 1, + "maximum": 52, + "x-omitempty": true } } } @@ -551593,6 +551663,17 @@ ], "x-enum-as-string": true }, + "ManagementMode": { + "description": "The management mode of the server.\n* `IntersightStandalone` - Intersight Standalone mode of operation.\n* `Intersight` - Intersight managed mode of operation.", + "type": "string", + "enum": [ + "IntersightStandalone", + "Intersight" + ], + "default": "IntersightStandalone", + "readOnly": true, + "x-omitempty": true + }, "TargetPlatform": { "description": "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.\n* `Standalone` - Servers which are operating in standalone mode i.e. not connected to a Fabric Interconnected.\n* `FIAttached` - Servers which are connected to a Fabric Interconnect that is managed by Intersight.", "type": "string", @@ -553662,9 +553743,9 @@ "x-enum-as-string": true }, "AccessCommunityString": { - "description": "The default SNMPv1, SNMPv2c community name or SNMPv3 username to include on any trap messages sent to the SNMP host. The name can be 18 characters long.", + "description": "The default SNMPv1, SNMPv2c community name or SNMPv3 username to include on any trap messages sent to the SNMP host. The name can be 32 characters long.", "type": "string", - "maxLength": 18, + "maxLength": 32, "x-omitempty": true }, "CommunityAccess": { @@ -553848,9 +553929,9 @@ "x-enum-as-string": true }, "AccessCommunityString": { - "description": "The default SNMPv1, SNMPv2c community name or SNMPv3 username to include on any trap messages sent to the SNMP host. The name can be 18 characters long.", + "description": "The default SNMPv1, SNMPv2c community name or SNMPv3 username to include on any trap messages sent to the SNMP host. The name can be 32 characters long.", "type": "string", - "maxLength": 18, + "maxLength": 32, "readOnly": true, "x-omitempty": true }, @@ -560868,7 +560949,7 @@ "x-omitempty": true }, "SecureDriveGroup": { - "description": "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.", + "description": "Enables/disables the drive security on all the drives used in this policy. This flag just enables the drive security and only after Remote/Manual key setting configured, the actual security will be applied.", "type": "boolean", "x-omitempty": true }, @@ -560950,7 +561031,7 @@ }, "storage.DriveSecurityPolicy": { "title": "DriveSecurity", - "description": "The drive security policy models the KMIP server related configuration that can be applied on multiple servers. Storage controller encryption can be enabled through this policy using remote keys from a KMIP server.", + "description": "The drive security policy defines the configuration for a manual key or a KMIP server, which can be applied to multiple servers. You can enable drive security on the servers using either configuration..", "x-allOf-name": "storage.DriveSecurityPolicy", "allOf": [ { @@ -560981,7 +561062,7 @@ "x-enum-as-string": true }, "KeySetting": { - "description": "Key details for supporting disk encryption.", + "description": "Key details for supporting drive security.", "$ref": "#/components/schemas/storage.KeySetting", "x-omitempty": true }, @@ -566813,7 +566894,7 @@ }, "storage.KeySetting": { "title": "Local Key Management", - "description": "Models the security key configuration required for the disk encryption.", + "description": "Models the security key configuration required for the drive security.", "x-allOf-name": "storage.KeySetting", "nullable": true, "allOf": [ @@ -566845,7 +566926,7 @@ "x-enum-as-string": true }, "KeyType": { - "description": "Method to be used for fetching the encryption key.\n* `Kmip` - Remote encryption using KMIP.\n* `Manual` - Drive encryption using manual key.", + "description": "Method to be used for fetching the security key.\n* `Kmip` - Remote security using KMIP.\n* `Manual` - Drive security using manual key.", "type": "string", "enum": [ "Kmip", @@ -566860,7 +566941,7 @@ "x-omitempty": true }, "RemoteKey": { - "description": "Remote key encryption using KMIP configuration.", + "description": "Remote key security using KMIP configuration.", "$ref": "#/components/schemas/storage.RemoteKeySetting", "x-omitempty": true } @@ -566932,7 +567013,7 @@ }, "storage.KmipServer": { "title": "KMIP Server", - "description": "Models the KMIP Server configuration used to fetch the encryption key.", + "description": "Models the KMIP Server configuration used to fetch the drive security key.", "x-allOf-name": "storage.KmipServer", "nullable": true, "allOf": [ @@ -566964,7 +567045,7 @@ "x-enum-as-string": true }, "EnableDriveSecurity": { - "description": "Enable the selected KMIP Server configuration for encryption. This flag just enables the drive security and only after remote key setting configured, the actual encryption will be done.", + "description": "Enable the selected KMIP Server configuration for security. This flag just enables the drive security and only after remote key setting configured, the actual security will be applied.", "type": "boolean", "x-omitempty": true }, @@ -566997,7 +567078,7 @@ }, "storage.LocalKeySetting": { "title": "Local Key Management", - "description": "Models the local key configuration required for disk encryption.", + "description": "Models the local key configuration required for the drive security.", "x-allOf-name": "storage.LocalKeySetting", "nullable": true, "allOf": [ @@ -567029,9 +567110,8 @@ "x-enum-as-string": true }, "ExistingKey": { - "description": "Current Security Key Passphrase which is already configured on the server.", + "description": "Current Security Key Passphrase which is already configured on the server. From the security context, the passphrase should be at least 8 characters long and should include at least one uppercase letter, one lowercase letter, one number, and one special character.", "type": "string", - "pattern": "^$|^[a-zA-Z0-9=!&#$%+^@_*-]+$", "maxLength": 32, "writeOnly": true, "x-omitempty": true @@ -567051,7 +567131,7 @@ "x-omitempty": true }, "NewKey": { - "description": "New Security Key Passphrase to be configured on the controller.", + "description": "New Security Key Passphrase to be configured on the server. From the security context, the passphrase should be at least 8 characters long and should include at least one uppercase letter, one lowercase letter, one number, and one special character.", "type": "string", "pattern": "^$|^[a-zA-Z0-9=!&#$%+^@_*-]+$", "minLength": 8, @@ -578378,7 +578458,7 @@ }, "storage.RemoteKeySetting": { "title": "Remote Key Management", - "description": "Models the remote key configuration required for disk encryption.", + "description": "Models the remote key configuration required for the drive security.", "x-allOf-name": "storage.RemoteKeySetting", "nullable": true, "allOf": [ @@ -578415,9 +578495,8 @@ "x-omitempty": true }, "ExistingKey": { - "description": "Current Security Key Passphrase which is already configured on the server.", + "description": "Current Security Key Passphrase which is already configured on the server. From the security context, the passphrase should be at least 8 characters long and should include at least one uppercase letter, one lowercase letter, one number, and one special character.", "type": "string", - "pattern": "^$|^[a-zA-Z0-9=!&#$%+^@_*-]+$", "maxLength": 32, "writeOnly": true, "x-omitempty": true @@ -579122,7 +579201,7 @@ }, "storage.StoragePolicy": { "title": "Storage", - "description": "The storage policy models the reusable storage related configuration that can be applied on many servers. This policy allows creation of RAID groups using existing disk group policies and virtual drives on the drive groups. The user has options to move all unused disks to JBOD or Unconfigured good state. The encryption of drives can be enabled through this policy using remote keys from a KMIP server.", + "description": "The storage policy models the reusable storage related configuration that can be applied on many servers. This policy allows creation of RAID groups using existing disk group policies and virtual drives on the drive groups. The user has options to move all unused disks to JBOD or Unconfigured good state. The security of drives can be enabled through this policy using remote keys from a KMIP server or Manually configured keys.", "x-allOf-name": "storage.StoragePolicy", "allOf": [ { @@ -606244,7 +606323,7 @@ "Cloneable": { "description": "When set to false task is not cloneable. It is set to true only if task is of ApiTask type and it is not system defined.", "type": "boolean", - "default": true, + "default": false, "readOnly": true, "x-omitempty": true }, @@ -613733,6 +613812,7 @@ "READ.dnac.Template": "Read a 'dnac.Template' resource.", "READ.dnac.Transit": "Read a 'dnac.Transit' resource.", "READ.dnac.VirtualNetworkFabricSite": "Read a 'dnac.VirtualNetworkFabricSite' resource.", + "CREATE.energy.Metrics": "Create a 'energy.Metrics' resource.", "READ.equipment.Chassis": "Read a 'equipment.Chassis' resource.", "UPDATE.equipment.Chassis": "Update a 'equipment.Chassis' resource.", "READ.equipment.ChassisIdPool": "Read a 'equipment.ChassisIdPool' resource.", diff --git a/tests/common/main.tf b/tests/common/main.tf index 648f440bfa..d6bc46a886 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.53" + version = "1.0.54" } } } diff --git a/tests/data_sources/main.tf b/tests/data_sources/main.tf index f18991da0a..cfa3f47cae 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.53" + version = "1.0.54" } } } diff --git a/tests/iks/main.tf b/tests/iks/main.tf index f18991da0a..cfa3f47cae 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.53" + version = "1.0.54" } } } diff --git a/tests/negative_cases/main.tf b/tests/negative_cases/main.tf index 648f440bfa..d6bc46a886 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.53" + version = "1.0.54" } } } diff --git a/tests/only_post/main.tf b/tests/only_post/main.tf index 577ee5a160..1acd2c50e8 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.53" + version = "1.0.54" } } } diff --git a/tests/server_configurations/main.tf b/tests/server_configurations/main.tf index 648f440bfa..d6bc46a886 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.53" + version = "1.0.54" } } } 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 7f7461739d..a529ddb395 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,8 +22,8 @@ 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-18012 -- Package version: 1.0.11.18012 +- API version: 1.0.11-18369 +- Package version: 1.0.11.18369 - 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) @@ -867,6 +867,7 @@ Class | Method | HTTP request | Description *DnacApi* | [**GetDnacTransitList**](docs/DnacApi.md#getdnactransitlist) | **Get** /api/v1/dnac/Transits | Read a 'dnac.Transit' resource. *DnacApi* | [**GetDnacVirtualNetworkFabricSiteByMoid**](docs/DnacApi.md#getdnacvirtualnetworkfabricsitebymoid) | **Get** /api/v1/dnac/VirtualNetworkFabricSites/{Moid} | Read a 'dnac.VirtualNetworkFabricSite' resource. *DnacApi* | [**GetDnacVirtualNetworkFabricSiteList**](docs/DnacApi.md#getdnacvirtualnetworkfabricsitelist) | **Get** /api/v1/dnac/VirtualNetworkFabricSites | Read a 'dnac.VirtualNetworkFabricSite' resource. +*EnergyApi* | [**CreateEnergyMetrics**](docs/EnergyApi.md#createenergymetrics) | **Post** /api/v1/energy/Metrics | Create a 'energy.Metrics' resource. *EquipmentApi* | [**GetEquipmentChassisByMoid**](docs/EquipmentApi.md#getequipmentchassisbymoid) | **Get** /api/v1/equipment/Chasses/{Moid} | Read a 'equipment.Chassis' resource. *EquipmentApi* | [**GetEquipmentChassisIdPoolByMoid**](docs/EquipmentApi.md#getequipmentchassisidpoolbymoid) | **Get** /api/v1/equipment/ChassisIdPools/{Moid} | Read a 'equipment.ChassisIdPool' resource. *EquipmentApi* | [**GetEquipmentChassisIdPoolList**](docs/EquipmentApi.md#getequipmentchassisidpoollist) | **Get** /api/v1/equipment/ChassisIdPools | Read a 'equipment.ChassisIdPool' resource. @@ -5011,6 +5012,7 @@ Class | Method | HTTP request | Description - [DnacVirtualNetworkFabricSite](docs/DnacVirtualNetworkFabricSite.md) - [DnacVirtualNetworkFabricSiteList](docs/DnacVirtualNetworkFabricSiteList.md) - [DnacVirtualNetworkFabricSiteResponse](docs/DnacVirtualNetworkFabricSiteResponse.md) + - [EnergyMetrics](docs/EnergyMetrics.md) - [EquipmentAbstractDevice](docs/EquipmentAbstractDevice.md) - [EquipmentBase](docs/EquipmentBase.md) - [EquipmentBaseRelationship](docs/EquipmentBaseRelationship.md) @@ -7447,7 +7449,6 @@ Class | Method | HTTP request | Description - [SchedulerDailyCadenceParams](docs/SchedulerDailyCadenceParams.md) - [SchedulerEveryCadenceParams](docs/SchedulerEveryCadenceParams.md) - [SchedulerMonthlyCadenceParams](docs/SchedulerMonthlyCadenceParams.md) - - [SchedulerMonthlyWeekDayFormat](docs/SchedulerMonthlyWeekDayFormat.md) - [SchedulerOneTimeScheduleParams](docs/SchedulerOneTimeScheduleParams.md) - [SchedulerRecurringScheduleParams](docs/SchedulerRecurringScheduleParams.md) - [SchedulerRestStimTaskRequest](docs/SchedulerRestStimTaskRequest.md) @@ -7461,7 +7462,6 @@ Class | Method | HTTP request | Description - [SchedulerTaskScheduleResponse](docs/SchedulerTaskScheduleResponse.md) - [SchedulerTaskScheduleStatus](docs/SchedulerTaskScheduleStatus.md) - [SchedulerWeeklyCadenceParams](docs/SchedulerWeeklyCadenceParams.md) - - [SchedulerYearlyCadenceParams](docs/SchedulerYearlyCadenceParams.md) - [SdaaciConnection](docs/SdaaciConnection.md) - [SdaaciConnectionDetail](docs/SdaaciConnectionDetail.md) - [SdaaciConnectionDetailList](docs/SdaaciConnectionDetailList.md) @@ -8937,7 +8937,7 @@ Authentication schemes defined for the API: - **API key parameter name**: X-Starship-Token - **Location**: -Note, each API key must be added to a map of `map[string]APIKey` where the key is: X-Starship-Token and passed in as the auth context for each request. +Note, each API key must be added to a map of `map[string]APIKey` where the key is: cookieAuth and passed in as the auth context for each request. Example @@ -8946,7 +8946,7 @@ auth := context.WithValue( context.Background(), intersight.ContextAPIKeys, map[string]intersight.APIKey{ - "X-Starship-Token": {Key: "API_KEY_STRING"}, + "cookieAuth": {Key: "API_KEY_STRING"}, }, ) r, err := client.Service.Operation(auth, args) @@ -9599,6 +9599,7 @@ Example - **READ.dnac.Template**: Read a 'dnac.Template' resource. - **READ.dnac.Transit**: Read a 'dnac.Transit' resource. - **READ.dnac.VirtualNetworkFabricSite**: Read a 'dnac.VirtualNetworkFabricSite' resource. + - **CREATE.energy.Metrics**: Create a 'energy.Metrics' resource. - **READ.equipment.Chassis**: Read a 'equipment.Chassis' resource. - **UPDATE.equipment.Chassis**: Update a 'equipment.Chassis' resource. - **READ.equipment.ChassisIdPool**: Read a 'equipment.ChassisIdPool' resource. 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 3a447495ae..eacf98fcff 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 ce8290ec40..c4034a2fc2 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 53ec3ebdc7..ce97bcc708 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 7ba1a82bd8..2ebd9b2655 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 a3f846421f..4927d06262 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 e61f89a84e..8a3e64be1d 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 64693a8c97..1bd08be0e4 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 d4ad6c4f24..03a5c5805b 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 87b1cfeabe..ef2852fcae 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 c7d6f1e3cf..a2c6f10148 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 c15238f003..ebda67fc5d 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 839e1aa19a..6ff57d4630 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 d8f4be7588..cbfe47cfb9 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 62af845dff..68e000356b 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 6dcafa9baf..65e79af0e7 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 b639c7ef21..54b4b54a2e 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 ebcf75f367..6b3ee47e5c 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 2e29797d02..acf1cbc6cd 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 93f82f655a..f3c9acccc5 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 90c0b1223b..cfa191062f 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 c7a69ac032..1e1e464859 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 d18cc6d7ed..91a7919461 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 f5f2b14d9f..1c8f76efdf 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_energy.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_energy.go new file mode 100644 index 0000000000..d50cb78f11 --- /dev/null +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/api_energy.go @@ -0,0 +1,205 @@ +/* +Cisco Intersight + +Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. + +API version: 1.0.11-18369 +Contact: intersight@cisco.com +*/ + +// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. + +package intersight + +import ( + "bytes" + "context" + "io" + "net/http" + "net/url" +) + +// EnergyApiService EnergyApi service +type EnergyApiService service + +type ApiCreateEnergyMetricsRequest struct { + ctx context.Context + ApiService *EnergyApiService + energyMetrics *EnergyMetrics + ifMatch *string + ifNoneMatch *string +} + +// The 'energy.Metrics' resource to create. +func (r ApiCreateEnergyMetricsRequest) EnergyMetrics(energyMetrics EnergyMetrics) ApiCreateEnergyMetricsRequest { + r.energyMetrics = &energyMetrics + return r +} + +// For methods that apply server-side changes, and in particular for PUT, If-Match can be used to prevent the lost update problem. It can check if the modification of a resource that the user wants to upload will not override another change that has been done since the original resource was fetched. If the request cannot be fulfilled, the 412 (Precondition Failed) response is returned. When modifying a resource using POST or PUT, the If-Match header must be set to the value of the resource ModTime property after which no lost update problem should occur. For example, a client send a GET request to obtain a resource, which includes the ModTime property. The ModTime indicates the last time the resource was created or modified. The client then sends a POST or PUT request with the If-Match header set to the ModTime property of the resource as obtained in the GET request. +func (r ApiCreateEnergyMetricsRequest) IfMatch(ifMatch string) ApiCreateEnergyMetricsRequest { + r.ifMatch = &ifMatch + return r +} + +// For methods that apply server-side changes, If-None-Match used with the * value can be used to create a resource not known to exist, guaranteeing that another resource creation didn't happen before, losing the data of the previous put. The request will be processed only if the eventually existing resource's ETag doesn't match any of the values listed. Otherwise, the status code 412 (Precondition Failed) is used. The asterisk is a special value representing any resource. It is only useful when creating a resource, usually with PUT, to check if another resource with the identity has already been created before. The comparison with the stored ETag uses the weak comparison algorithm, meaning two resources are considered identical if the content is equivalent - they don't have to be identical byte for byte. +func (r ApiCreateEnergyMetricsRequest) IfNoneMatch(ifNoneMatch string) ApiCreateEnergyMetricsRequest { + r.ifNoneMatch = &ifNoneMatch + return r +} + +func (r ApiCreateEnergyMetricsRequest) Execute() (*EnergyMetrics, *http.Response, error) { + return r.ApiService.CreateEnergyMetricsExecute(r) +} + +/* +CreateEnergyMetrics Create a 'energy.Metrics' resource. + + @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). + @return ApiCreateEnergyMetricsRequest +*/ +func (a *EnergyApiService) CreateEnergyMetrics(ctx context.Context) ApiCreateEnergyMetricsRequest { + return ApiCreateEnergyMetricsRequest{ + ApiService: a, + ctx: ctx, + } +} + +// Execute executes the request +// +// @return EnergyMetrics +func (a *EnergyApiService) CreateEnergyMetricsExecute(r ApiCreateEnergyMetricsRequest) (*EnergyMetrics, *http.Response, error) { + var ( + localVarHTTPMethod = http.MethodPost + localVarPostBody interface{} + formFiles []formFile + localVarReturnValue *EnergyMetrics + ) + + localBasePath, err := a.client.cfg.ServerURLWithContext(r.ctx, "EnergyApiService.CreateEnergyMetrics") + if err != nil { + return localVarReturnValue, nil, &GenericOpenAPIError{error: err.Error()} + } + + localVarPath := localBasePath + "/api/v1/energy/Metrics" + + localVarHeaderParams := make(map[string]string) + localVarQueryParams := url.Values{} + localVarFormParams := url.Values{} + if r.energyMetrics == nil { + return localVarReturnValue, nil, reportError("energyMetrics is required and must be specified") + } + + // to determine the Content-Type header + localVarHTTPContentTypes := []string{"application/json"} + + // set Content-Type header + localVarHTTPContentType := selectHeaderContentType(localVarHTTPContentTypes) + if localVarHTTPContentType != "" { + localVarHeaderParams["Content-Type"] = localVarHTTPContentType + } + + // to determine the Accept header + localVarHTTPHeaderAccepts := []string{"application/json"} + + // set Accept header + localVarHTTPHeaderAccept := selectHeaderAccept(localVarHTTPHeaderAccepts) + if localVarHTTPHeaderAccept != "" { + localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept + } + if r.ifMatch != nil { + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-Match", r.ifMatch, "simple", "") + } + if r.ifNoneMatch != nil { + parameterAddToHeaderOrQuery(localVarHeaderParams, "If-None-Match", r.ifNoneMatch, "simple", "") + } + // body params + localVarPostBody = r.energyMetrics + req, err := a.client.prepareRequest(r.ctx, localVarPath, localVarHTTPMethod, localVarPostBody, localVarHeaderParams, localVarQueryParams, localVarFormParams, formFiles) + if err != nil { + return localVarReturnValue, nil, err + } + + localVarHTTPResponse, err := a.client.callAPI(req) + if err != nil || localVarHTTPResponse == nil { + return localVarReturnValue, localVarHTTPResponse, err + } + + localVarBody, err := io.ReadAll(localVarHTTPResponse.Body) + localVarHTTPResponse.Body.Close() + localVarHTTPResponse.Body = io.NopCloser(bytes.NewBuffer(localVarBody)) + if err != nil { + return localVarReturnValue, localVarHTTPResponse, err + } + + if localVarHTTPResponse.StatusCode >= 300 { + newErr := &GenericOpenAPIError{ + body: localVarBody, + error: localVarHTTPResponse.Status, + } + if localVarHTTPResponse.StatusCode == 400 { + var v Error + err = a.client.decode(&v, localVarBody, localVarHTTPResponse.Header.Get("Content-Type")) + if err != nil { + newErr.error = err.Error() + return localVarReturnValue, localVarHTTPResponse, newErr + } + newErr.error = formatErrorMessage(localVarHTTPResponse.Status, &v) + newErr.model = v + return localVarReturnValue, localVarHTTPResponse, newErr + } + if localVarHTTPResponse.StatusCode == 401 { + var v Error + err = a.client.decode(&v, localVarBody, localVarHTTPResponse.Header.Get("Content-Type")) + if err != nil { + newErr.error = err.Error() + return localVarReturnValue, localVarHTTPResponse, newErr + } + newErr.error = formatErrorMessage(localVarHTTPResponse.Status, &v) + newErr.model = v + return localVarReturnValue, localVarHTTPResponse, newErr + } + if localVarHTTPResponse.StatusCode == 403 { + var v Error + err = a.client.decode(&v, localVarBody, localVarHTTPResponse.Header.Get("Content-Type")) + if err != nil { + newErr.error = err.Error() + return localVarReturnValue, localVarHTTPResponse, newErr + } + newErr.error = formatErrorMessage(localVarHTTPResponse.Status, &v) + newErr.model = v + return localVarReturnValue, localVarHTTPResponse, newErr + } + if localVarHTTPResponse.StatusCode == 404 { + var v Error + err = a.client.decode(&v, localVarBody, localVarHTTPResponse.Header.Get("Content-Type")) + if err != nil { + newErr.error = err.Error() + return localVarReturnValue, localVarHTTPResponse, newErr + } + newErr.error = formatErrorMessage(localVarHTTPResponse.Status, &v) + newErr.model = v + return localVarReturnValue, localVarHTTPResponse, newErr + } + var v Error + err = a.client.decode(&v, localVarBody, localVarHTTPResponse.Header.Get("Content-Type")) + if err != nil { + newErr.error = err.Error() + return localVarReturnValue, localVarHTTPResponse, newErr + } + newErr.error = formatErrorMessage(localVarHTTPResponse.Status, &v) + newErr.model = v + return localVarReturnValue, localVarHTTPResponse, newErr + } + + err = a.client.decode(&localVarReturnValue, localVarBody, localVarHTTPResponse.Header.Get("Content-Type")) + if err != nil { + newErr := &GenericOpenAPIError{ + body: localVarBody, + error: err.Error(), + } + return localVarReturnValue, localVarHTTPResponse, newErr + } + + return localVarReturnValue, localVarHTTPResponse, nil +} 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 9c840185c1..5b196e435e 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 c61c6d406b..e3004cb2ea 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 c7f9dcd3a1..015171e1ca 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 126939c6d5..e483722690 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 218e640658..8dba26f40c 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 f9742fd91c..72b84e1e66 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 cff2797321..4fbb57f5ca 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 81be596539..a58bd30e7c 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 9d4c5af5f6..6886b41d8a 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 9fad688b35..103960b90d 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 2ea45e4c3f..1e82b5ea6f 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 81bb0ca213..296e7b0458 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 ec2fc6f5b9..a085b0b37c 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 3c49e0054c..1369a31d3f 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 37a9d066ea..75d5bc7248 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 3882cc7174..ffabfc5c2e 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 7ee5ad0971..25f42f8878 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 4fd0ce860e..a2b8f8356a 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 f9ff3c0843..0640e0bba2 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 f8ca2dc0bc..35f2ebd5df 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 98add5419b..7c21e80ea0 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 3bac17661f..cc44478815 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 eb34f2c16e..ada7b928b9 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 4aa461fb99..10c6e473bb 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 45dc7ce90b..67d5c95e42 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 3c156d1ca3..ead2f25ed6 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 1b6d14f7ca..8ace41a7d5 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 25a30bc53e..a270da08d2 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 6e36fc4e1a..22f031df42 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 e9e221faa1..5558632151 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 153ba9c15f..f01f03f1af 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 e97e41ce0b..ab3d8b4a4c 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 9676f768cc..04039b01f6 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 60a634729f..fc561d451b 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 b2e56fbc02..5eba0462be 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 9ac708001c..1826f96bc2 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 d9588f2f12..a3ac1b6bf5 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 6d36e61061..d0b3a8e301 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 9d8004568f..888251771e 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 4ff626ffc8..3b1c401e35 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 811d8e8039..9ed3961357 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 77fba42bed..128b8e92b0 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 cd87010782..222591e93b 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 4508a88022..488bcfc5ee 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 39d2b057c3..39eaecec10 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 628a9b5eb7..83429d4312 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 660730304a..72378ae4a9 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 9d8cdf08c2..39106cd617 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 966029c5c7..595e1d0cfb 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 5a073f31e4..6a10db2f5a 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 8abc460022..e29d857ca1 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 faccc83f5b..03980955a3 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 711088d81d..a29f358d16 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 378e46f320..b1a9a15bd1 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 12347b4d42..a1bf717000 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 29377e8603..9b6d195dd7 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 441b2f61ae..7b2cc446e6 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 a5ca8fa429..ea7b8dc00d 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 0d17cd9491..d566f44faa 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 0366b03f37..7adf44d382 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 a8a6cc7e72..7b59e941c8 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 c11022c78f..4ceeffd335 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 8bb4b2f464..97a126e042 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 a0b6927cfb..c1356ffd4c 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 64516cac9c..109a7c1df7 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 727f501834..9d94b76b83 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 98d1648e03..fc9f550b54 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 d69568e8a9..feb298df4a 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 d2483ceaa7..7a2535751c 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 3fcc9bf803..1b10ef5b1b 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 1ac271b9fe..aedaee40b2 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 b86ce073a0..ab7fd1d78b 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 a3b6ab4d68..f391d81451 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 20d0d19dd9..047f7213fb 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-18012 +API version: 1.0.11-18369 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 4dfc5b76f6..25fb961e60 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 ff83e7e2aa..f8732caaa4 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 9dc69a0c36..8caa272648 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 332cd552fa..8171660285 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 77f1a95c72..86754990f0 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 b0b3993663..0187e6c663 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 7a6d996a28..a7fd76814c 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 71b8e5d5b2..07f73b7e74 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 8fad50994f..c3148d5720 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 3127fa67ab..301666e032 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 b9e30ece6f..cfb31bfad8 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 dafaef1195..2eb4e346e1 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 f4f9358949..8283d046a4 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 d62c9acbb7..add0732018 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 c2893c140a..ff942f3490 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-18012 +API version: 1.0.11-18369 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-18012 +// APIClient manages communication with the Cisco Intersight API v1.0.11-18369 // In most cases there should be only one, shared, APIClient. type APIClient struct { cfg *Configuration @@ -97,6 +97,8 @@ type APIClient struct { DnacApi *DnacApiService + EnergyApi *EnergyApiService + EquipmentApi *EquipmentApiService EtherApi *EtherApiService @@ -313,6 +315,7 @@ func NewAPIClient(cfg *Configuration) *APIClient { c.CrdApi = (*CrdApiService)(&c.common) c.DeviceconnectorApi = (*DeviceconnectorApiService)(&c.common) c.DnacApi = (*DnacApiService)(&c.common) + c.EnergyApi = (*EnergyApiService)(&c.common) c.EquipmentApi = (*EquipmentApiService)(&c.common) c.EtherApi = (*EtherApiService)(&c.common) c.ExternalsiteApi = (*ExternalsiteApiService)(&c.common) 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 583296d80e..e3b54c2281 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-18012 +API version: 1.0.11-18369 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.18012/go", + UserAgent: "OpenAPI-Generator/1.0.11.18369/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 11ad6d1faa..282102a4d3 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-18012 +API version: 1.0.11-18369 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 178eac4377..c2e4991109 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 155ce0e5b0..4c781bca52 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-18012 +API version: 1.0.11-18369 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 7d1a915569..353ceb90d1 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-18012 +API version: 1.0.11-18369 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 1de09b594f..20ffe4f114 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-18012 +API version: 1.0.11-18369 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 29366baa40..22b14ee655 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-18012 +API version: 1.0.11-18369 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 3263a924c9..34c6be9a8e 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-18012 +API version: 1.0.11-18369 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 b59e478473..a0f3937070 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-18012 +API version: 1.0.11-18369 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 a78d667852..cd2e4741cd 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-18012 +API version: 1.0.11-18369 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 864d568cb5..9011bb4409 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-18012 +API version: 1.0.11-18369 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 d4f1c9e43a..07725b623c 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-18012 +API version: 1.0.11-18369 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 f03042c2b6..ff053afdd2 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-18012 +API version: 1.0.11-18369 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 34189d1233..6b924f60f4 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-18012 +API version: 1.0.11-18369 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 4b2ac7cb04..da069fa73c 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 0a4458b8bb..29bf8af12e 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-18012 +API version: 1.0.11-18369 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 aedfa5c587..f039bbc2b5 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-18012 +API version: 1.0.11-18369 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 d413f35371..31ad332280 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-18012 +API version: 1.0.11-18369 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 1a10b59716..f7e64f76dc 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-18012 +API version: 1.0.11-18369 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 1e98d19ea1..fe2dad930b 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-18012 +API version: 1.0.11-18369 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 0c8f6b3015..4de4713a57 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-18012 +API version: 1.0.11-18369 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 71c535edbc..d5bec942e7 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-18012 +API version: 1.0.11-18369 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 e8c14bdec0..9afb0cad37 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-18012 +API version: 1.0.11-18369 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 da4f2d18d6..36da2b7760 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 39545527f6..364f86aa63 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-18012 +API version: 1.0.11-18369 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 570afed2c5..fe47ea3a52 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-18012 +API version: 1.0.11-18369 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 c70ba0ac98..03a3f06994 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-18012 +API version: 1.0.11-18369 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 4b881f3e70..cf2e744439 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-18012 +API version: 1.0.11-18369 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 3b36d15e51..10b5496dfd 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-18012 +API version: 1.0.11-18369 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 dc0e2c9557..86df2f5345 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-18012 +API version: 1.0.11-18369 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 ad73990d40..45b3a2fdb5 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-18012 +API version: 1.0.11-18369 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 febd9a863f..01ce7a3ccb 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-18012 +API version: 1.0.11-18369 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 01888f87c4..1d9403a30a 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-18012 +API version: 1.0.11-18369 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 2839f9ed11..bc80210f3f 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-18012 +API version: 1.0.11-18369 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 fdc3bf3884..c975854ffe 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-18012 +API version: 1.0.11-18369 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 f143f5baa3..9133861396 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-18012 +API version: 1.0.11-18369 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 671c5408a6..a76de6345e 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-18012 +API version: 1.0.11-18369 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 5e8ef5e19e..922b02d678 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-18012 +API version: 1.0.11-18369 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 6e3d40314a..6ca07a8e2b 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-18012 +API version: 1.0.11-18369 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 811d593721..ecb04d5e7c 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-18012 +API version: 1.0.11-18369 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 d00d3f695f..deeccea4fd 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-18012 +API version: 1.0.11-18369 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 3fa281639d..a3aff30135 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-18012 +API version: 1.0.11-18369 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 3ba8b9445d..1b49601126 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-18012 +API version: 1.0.11-18369 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 ed87916afa..bed4d77c2b 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-18012 +API version: 1.0.11-18369 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 a70e92f99c..8183ae66e3 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-18012 +API version: 1.0.11-18369 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 d5ca0ab3bc..f7fde9c35c 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-18012 +API version: 1.0.11-18369 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 f0ae7b92d6..0c9b0e7310 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-18012 +API version: 1.0.11-18369 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 1ed21b87aa..4fea3d6f99 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-18012 +API version: 1.0.11-18369 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 2ebaf54a18..12b95b60a2 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-18012 +API version: 1.0.11-18369 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 eac130e421..5e17f3f6ff 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-18012 +API version: 1.0.11-18369 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 a6556a71bf..d0dd2afe13 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-18012 +API version: 1.0.11-18369 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 707088edc1..256eae8876 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-18012 +API version: 1.0.11-18369 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 1070f23cf8..7105e997d5 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-18012 +API version: 1.0.11-18369 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 2f669f45a6..f16cad30c7 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-18012 +API version: 1.0.11-18369 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 dfb1af2218..ab80f74082 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-18012 +API version: 1.0.11-18369 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 b3f604dc06..8902cc9f4a 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-18012 +API version: 1.0.11-18369 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 12dcae7719..3e4eba8a6a 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-18012 +API version: 1.0.11-18369 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 85ecad7fd9..977fccfacb 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-18012 +API version: 1.0.11-18369 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 70a9e6ab3e..13d27badfe 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-18012 +API version: 1.0.11-18369 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 a5516c0f83..6cb0b96611 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-18012 +API version: 1.0.11-18369 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 b96d079dd0..0e08703575 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-18012 +API version: 1.0.11-18369 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 0fb66d5dd2..89cb5bb1cc 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-18012 +API version: 1.0.11-18369 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 add17227c1..e29ba32460 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-18012 +API version: 1.0.11-18369 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 d462220b1e..407042d66c 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-18012 +API version: 1.0.11-18369 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 d18da9aa8b..fe92163ec3 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-18012 +API version: 1.0.11-18369 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 12509015e1..42e79b409a 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-18012 +API version: 1.0.11-18369 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 0c4817637b..2f272f85f8 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-18012 +API version: 1.0.11-18369 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 7c75ff7305..c1ce0fbc35 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-18012 +API version: 1.0.11-18369 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 d9913d2046..a9a2ca582e 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-18012 +API version: 1.0.11-18369 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 c0f81b7b8d..5e35ed84a4 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-18012 +API version: 1.0.11-18369 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 bdec9170a8..c8fdce9e5b 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-18012 +API version: 1.0.11-18369 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 4761fe17c6..7dbfa2a45a 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-18012 +API version: 1.0.11-18369 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 e6feb22300..c581cc10ed 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-18012 +API version: 1.0.11-18369 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 64b729d8a7..6e636920d2 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-18012 +API version: 1.0.11-18369 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 935aab77f3..5add948891 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-18012 +API version: 1.0.11-18369 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 d1da5a021e..dc7ac3d78e 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-18012 +API version: 1.0.11-18369 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 8d8e28edd1..5df78aa2d5 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-18012 +API version: 1.0.11-18369 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 3ea7349a04..98b741e05b 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-18012 +API version: 1.0.11-18369 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 6688aa8883..7afb0265ff 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-18012 +API version: 1.0.11-18369 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 d48774d455..6dd697d4c1 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-18012 +API version: 1.0.11-18369 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 ea8204a191..a306d1405e 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-18012 +API version: 1.0.11-18369 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 443a265cee..a8bfc41a41 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-18012 +API version: 1.0.11-18369 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 47a2f8301d..9d0dbe5283 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-18012 +API version: 1.0.11-18369 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 c2a0a5b5f0..3564ca56ab 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-18012 +API version: 1.0.11-18369 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 2ac5b0423c..9b1bcd303a 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-18012 +API version: 1.0.11-18369 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 ec5747d6b5..3fce390f4a 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-18012 +API version: 1.0.11-18369 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 6d596ea8ab..d6e146edb6 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-18012 +API version: 1.0.11-18369 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 57c1046ccd..468b940801 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-18012 +API version: 1.0.11-18369 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 d56c85ba05..3b62845f65 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-18012 +API version: 1.0.11-18369 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 092870d241..747d646050 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-18012 +API version: 1.0.11-18369 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 396353ddeb..018d78796f 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-18012 +API version: 1.0.11-18369 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 e914abbaa7..d30eb3c8d4 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-18012 +API version: 1.0.11-18369 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 edf85ad7e6..8adb38a568 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-18012 +API version: 1.0.11-18369 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 58172e2ff7..96fa6e3cf9 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-18012 +API version: 1.0.11-18369 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 8dd26cd9f6..6a2b168d34 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-18012 +API version: 1.0.11-18369 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 7a2db51f4b..709dd3f515 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-18012 +API version: 1.0.11-18369 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 16e5716318..e119e88ad9 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-18012 +API version: 1.0.11-18369 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 c63e8d2d06..c479a3ffd1 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-18012 +API version: 1.0.11-18369 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 34301d5e63..6b3ccdc982 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-18012 +API version: 1.0.11-18369 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 3044a73e54..85d78bc5c1 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-18012 +API version: 1.0.11-18369 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 d5eaa98366..6b10236387 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-18012 +API version: 1.0.11-18369 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 026972719d..4ac855aaf1 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-18012 +API version: 1.0.11-18369 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 cd92fce93b..675513e609 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-18012 +API version: 1.0.11-18369 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 0ab778d749..34a29dda73 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-18012 +API version: 1.0.11-18369 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 79920e643b..b216218d78 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-18012 +API version: 1.0.11-18369 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 a5105de134..23e97fa73f 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-18012 +API version: 1.0.11-18369 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 1b716414ec..9bde316495 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-18012 +API version: 1.0.11-18369 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 37b257da7e..8716988af2 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-18012 +API version: 1.0.11-18369 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 c2610612fe..61598fec48 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-18012 +API version: 1.0.11-18369 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 a7815f7693..b003ee79c0 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-18012 +API version: 1.0.11-18369 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 ea009bbf4b..64889dc093 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 779ad46c09..d8e59fb868 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 711cb51168..6ad268a7c5 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-18012 +API version: 1.0.11-18369 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 114de4b148..8f2d13594a 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-18012 +API version: 1.0.11-18369 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 2b684c1dce..24d8334dd6 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-18012 +API version: 1.0.11-18369 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 4f6f6dfe56..f09cd7a4a8 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-18012 +API version: 1.0.11-18369 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 78ba047cac..a4c48f69a3 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 eaeaf77640..ede2d99afc 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-18012 +API version: 1.0.11-18369 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 3be856196a..238adca9ce 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-18012 +API version: 1.0.11-18369 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 8821e98354..e7fdadfe56 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-18012 +API version: 1.0.11-18369 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 17515a63bf..3c950fe3f6 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-18012 +API version: 1.0.11-18369 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 42ea9653db..33b7493d51 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-18012 +API version: 1.0.11-18369 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 9e93bf1ac4..5b05a6df9b 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-18012 +API version: 1.0.11-18369 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 ebfcff7587..04106868b2 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-18012 +API version: 1.0.11-18369 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 3f5df11eb2..2193cfc68c 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-18012 +API version: 1.0.11-18369 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 4f8566d842..ca6b9da5d0 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-18012 +API version: 1.0.11-18369 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 be99be13c2..4f38b11bd5 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-18012 +API version: 1.0.11-18369 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 17308dec4a..7fb19f5645 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-18012 +API version: 1.0.11-18369 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 aedeed5d0e..327dcb2552 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-18012 +API version: 1.0.11-18369 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 0b790ba603..2a4e404460 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-18012 +API version: 1.0.11-18369 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 32916f2133..7e28f75a43 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-18012 +API version: 1.0.11-18369 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 700c86d406..671608c4e7 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-18012 +API version: 1.0.11-18369 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 2c9151e360..e5d9bb8460 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-18012 +API version: 1.0.11-18369 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 8c52924e06..c1e5aaf803 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-18012 +API version: 1.0.11-18369 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 2dad70ed41..6e03237a16 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-18012 +API version: 1.0.11-18369 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 19a6ffb3e5..143af7adc5 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-18012 +API version: 1.0.11-18369 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 7ef0fa5c01..fe840bfc37 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-18012 +API version: 1.0.11-18369 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 28bb104928..d6e72ffec8 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-18012 +API version: 1.0.11-18369 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 66dfbd21f4..4807ba174f 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-18012 +API version: 1.0.11-18369 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 d2e6ecdb19..a1bb3a70ec 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-18012 +API version: 1.0.11-18369 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 058f0d99d4..fe232567c5 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-18012 +API version: 1.0.11-18369 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 a0041a1bfe..713444ed16 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-18012 +API version: 1.0.11-18369 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 d214958295..1cfbbe8a58 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-18012 +API version: 1.0.11-18369 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 6a8274dcd9..89c47a1aa8 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-18012 +API version: 1.0.11-18369 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 0fde16035a..f496c23589 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-18012 +API version: 1.0.11-18369 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 492d734b02..12c0397ba7 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-18012 +API version: 1.0.11-18369 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 cf34817a40..cb013ffba5 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-18012 +API version: 1.0.11-18369 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 9a4f73ad0f..b7a5d49532 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-18012 +API version: 1.0.11-18369 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 044ad6ac39..297623236e 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-18012 +API version: 1.0.11-18369 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 b98708e900..8b0aa59b0d 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-18012 +API version: 1.0.11-18369 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 cd8b7af601..e2ce756af3 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-18012 +API version: 1.0.11-18369 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 e7539a31af..14b2862d55 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-18012 +API version: 1.0.11-18369 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 d81addf7bb..c17f541959 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-18012 +API version: 1.0.11-18369 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 54ce82191f..de1a6bfe7c 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-18012 +API version: 1.0.11-18369 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 650343c78a..682507bb3d 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-18012 +API version: 1.0.11-18369 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 485670dfac..aec6fab7d7 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-18012 +API version: 1.0.11-18369 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 11eec0c85a..61337231b4 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-18012 +API version: 1.0.11-18369 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 82e294de41..07bb134c21 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-18012 +API version: 1.0.11-18369 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 02ce93739b..62991c5fc1 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-18012 +API version: 1.0.11-18369 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 21e7a8fb4a..2acff5edbd 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-18012 +API version: 1.0.11-18369 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 91f8ebf660..565ba09c06 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-18012 +API version: 1.0.11-18369 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 6d6722f002..6ec46fd088 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-18012 +API version: 1.0.11-18369 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 f40e653678..255d94d9d1 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-18012 +API version: 1.0.11-18369 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 737ec1ee9f..cffb84a3dc 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-18012 +API version: 1.0.11-18369 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 9977d68ddd..fe96a389be 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-18012 +API version: 1.0.11-18369 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 4ec93882cb..2ad5fda629 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-18012 +API version: 1.0.11-18369 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 34cc801efa..1cf8cbd773 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-18012 +API version: 1.0.11-18369 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 0e2b354d1b..b6e6bf0c44 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-18012 +API version: 1.0.11-18369 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 8b69022492..243f3410bc 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-18012 +API version: 1.0.11-18369 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 8d302cc58f..929dbbf210 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-18012 +API version: 1.0.11-18369 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 28a331c393..2fb23a5a77 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-18012 +API version: 1.0.11-18369 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 6ed6a8a54b..a76d9b4ed8 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-18012 +API version: 1.0.11-18369 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 7b4fc18c0e..13bd71c634 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-18012 +API version: 1.0.11-18369 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 b80719b915..eb408c4792 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-18012 +API version: 1.0.11-18369 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 199907fa1d..8ba42bbed5 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-18012 +API version: 1.0.11-18369 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 2c6c07d68c..27f02d5712 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-18012 +API version: 1.0.11-18369 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 42c2028d7d..370f78d2c7 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-18012 +API version: 1.0.11-18369 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 1bec649fdf..a175568493 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-18012 +API version: 1.0.11-18369 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 4c7ff6602d..13102cabee 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-18012 +API version: 1.0.11-18369 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 157582a213..caee388052 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-18012 +API version: 1.0.11-18369 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 c060f42a76..6a89e6ab57 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-18012 +API version: 1.0.11-18369 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 cd2d4b17d5..ad1384d85d 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-18012 +API version: 1.0.11-18369 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 ee030cf90d..480d36e3ee 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-18012 +API version: 1.0.11-18369 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 467e740339..54ec5ec9c2 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-18012 +API version: 1.0.11-18369 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 3429c84db8..6d5f6e7d96 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-18012 +API version: 1.0.11-18369 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 9155c210e8..17b30d90e6 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-18012 +API version: 1.0.11-18369 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 95060b5393..7bd10c9227 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-18012 +API version: 1.0.11-18369 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 3799503d76..d4c2730da5 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-18012 +API version: 1.0.11-18369 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 bfd0909abc..25736cfaaa 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-18012 +API version: 1.0.11-18369 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 507acddc5a..1adfd90c49 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-18012 +API version: 1.0.11-18369 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 1dae1e6cab..53caaffa2b 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-18012 +API version: 1.0.11-18369 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 a1196abb14..4a4c616700 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-18012 +API version: 1.0.11-18369 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 d43c406a83..5e1483b147 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-18012 +API version: 1.0.11-18369 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 b0f8931714..bb04aebd20 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-18012 +API version: 1.0.11-18369 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 f2f2a8b213..45e34cc13e 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-18012 +API version: 1.0.11-18369 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 c5c36f0548..3c780a7b48 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-18012 +API version: 1.0.11-18369 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 5080226f69..bb2c01327a 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-18012 +API version: 1.0.11-18369 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 b5c886d844..fc2159dcd4 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-18012 +API version: 1.0.11-18369 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 838a2111fc..f08623f72c 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-18012 +API version: 1.0.11-18369 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 695d4ef49f..2a4b43e67b 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-18012 +API version: 1.0.11-18369 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 0dd11b59f7..5ad337f307 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-18012 +API version: 1.0.11-18369 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 3e8d58e33e..abf6706449 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-18012 +API version: 1.0.11-18369 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 bc5876a146..bda9339345 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-18012 +API version: 1.0.11-18369 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 29bc6016f8..f7bd87c576 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-18012 +API version: 1.0.11-18369 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 142652cbcb..910f512357 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-18012 +API version: 1.0.11-18369 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 5c173d9520..f798436316 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-18012 +API version: 1.0.11-18369 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 5009299136..484c9a16a6 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-18012 +API version: 1.0.11-18369 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 27e340522d..4685d6e8d8 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-18012 +API version: 1.0.11-18369 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 f2f6328239..d3c51510ef 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-18012 +API version: 1.0.11-18369 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 d4e24a0afb..563e3ca7c3 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-18012 +API version: 1.0.11-18369 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 a999f3f780..62227e8bf2 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-18012 +API version: 1.0.11-18369 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 ee2e3ec66f..ba3c7ae159 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-18012 +API version: 1.0.11-18369 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 2935dd753e..cd876ec95a 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-18012 +API version: 1.0.11-18369 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 9ac19b8ea6..c9b62b1ce8 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-18012 +API version: 1.0.11-18369 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 e3df13c4e9..474b46845a 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-18012 +API version: 1.0.11-18369 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 74cbaa57cf..541723c4ed 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-18012 +API version: 1.0.11-18369 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 14425074c9..090ed495b2 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-18012 +API version: 1.0.11-18369 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 344bb33339..5c06203739 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-18012 +API version: 1.0.11-18369 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 4b5ee1fcc7..a0585c1d30 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-18012 +API version: 1.0.11-18369 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 164b39af67..4c896ec6e8 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 876e7ce011..1b84c17c88 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-18012 +API version: 1.0.11-18369 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 31fca21538..79157adfc4 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-18012 +API version: 1.0.11-18369 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 c41a63c63a..b500666ccd 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-18012 +API version: 1.0.11-18369 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 da634dc7d1..b219ad6c2f 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-18012 +API version: 1.0.11-18369 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 2616f265d3..64cd4fd2b5 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-18012 +API version: 1.0.11-18369 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 d671a1c421..099c234260 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-18012 +API version: 1.0.11-18369 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 f4823f15df..ca5023bfaf 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-18012 +API version: 1.0.11-18369 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 32fefe0a06..475f4507d3 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-18012 +API version: 1.0.11-18369 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 e4d1ebcc9a..570f2a3908 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-18012 +API version: 1.0.11-18369 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 124ce695d7..0b8cda6099 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-18012 +API version: 1.0.11-18369 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 72d9d3de0b..c284682d8a 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-18012 +API version: 1.0.11-18369 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 65a5ef9ae2..d7c39eb61f 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-18012 +API version: 1.0.11-18369 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 8cbe116778..6abbeb089c 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-18012 +API version: 1.0.11-18369 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 3bda01ede2..823c237e5a 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-18012 +API version: 1.0.11-18369 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 5a857d0ff5..273cbf478d 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-18012 +API version: 1.0.11-18369 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 2f1c005151..3ce16b4614 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-18012 +API version: 1.0.11-18369 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 2199c16dba..19691deb13 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-18012 +API version: 1.0.11-18369 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 10018f51d6..8f158af9a7 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-18012 +API version: 1.0.11-18369 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 055e2e7982..230dc014af 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-18012 +API version: 1.0.11-18369 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 86452b5af9..aeb4a4d413 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-18012 +API version: 1.0.11-18369 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 36d9dce812..430c792a71 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-18012 +API version: 1.0.11-18369 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 0462c9f71f..0734484f03 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-18012 +API version: 1.0.11-18369 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 b06bece30d..911922d272 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-18012 +API version: 1.0.11-18369 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 ee5b9ca6cf..908a3903ba 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-18012 +API version: 1.0.11-18369 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 263a8d5c99..49f2486a73 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-18012 +API version: 1.0.11-18369 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 b1c0a1d641..19af84bf41 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-18012 +API version: 1.0.11-18369 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 52dc0dfb62..9a537d022a 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-18012 +API version: 1.0.11-18369 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 13c1d8b905..c2dd7c295f 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-18012 +API version: 1.0.11-18369 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 c3623092f4..cd9bce8ba6 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-18012 +API version: 1.0.11-18369 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 8baa958285..27f5070df3 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-18012 +API version: 1.0.11-18369 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 861538b4df..8258de1ad2 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-18012 +API version: 1.0.11-18369 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 7833f2119d..859f823036 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-18012 +API version: 1.0.11-18369 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 4c7aa23bea..68392e39b7 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-18012 +API version: 1.0.11-18369 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 a3d4fb03b3..36697fb9e9 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-18012 +API version: 1.0.11-18369 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 1bd56e7caa..3a76d8022c 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-18012 +API version: 1.0.11-18369 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 7d1c348545..d28b2943f2 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-18012 +API version: 1.0.11-18369 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 7f01d46c22..6ca1242be0 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-18012 +API version: 1.0.11-18369 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 a024803775..b5e3921a3c 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-18012 +API version: 1.0.11-18369 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 eef263c7b6..96923438ca 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-18012 +API version: 1.0.11-18369 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 0d56380b2c..78f4342eeb 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-18012 +API version: 1.0.11-18369 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 666dbf3184..d67cae8f61 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-18012 +API version: 1.0.11-18369 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 c9cad864d6..d9f102a8ed 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-18012 +API version: 1.0.11-18369 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 eb67e91a12..a5bfac0565 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-18012 +API version: 1.0.11-18369 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 73660d3797..f7bcc0ceff 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-18012 +API version: 1.0.11-18369 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 36c2ba3625..21fd56a4a0 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-18012 +API version: 1.0.11-18369 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 fa14914833..f9be7b3f10 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-18012 +API version: 1.0.11-18369 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 ec27c13519..e421bf97d7 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-18012 +API version: 1.0.11-18369 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 3138002dca..be1da77055 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-18012 +API version: 1.0.11-18369 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 9ced35abde..60243df223 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-18012 +API version: 1.0.11-18369 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 8446d23b8b..07ef77cbb9 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-18012 +API version: 1.0.11-18369 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 9de07c1005..e8839bd1bb 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-18012 +API version: 1.0.11-18369 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 fedbfef22b..4f6700a649 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-18012 +API version: 1.0.11-18369 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 748c3f8a10..8105ccc778 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-18012 +API version: 1.0.11-18369 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 c2e9157522..66283cf78b 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-18012 +API version: 1.0.11-18369 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 008d635f11..efcb1e737b 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-18012 +API version: 1.0.11-18369 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 d178963fca..750170f9e0 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-18012 +API version: 1.0.11-18369 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 91046e27e9..c92ba06338 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-18012 +API version: 1.0.11-18369 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 62a295c9b0..73e301f6fd 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-18012 +API version: 1.0.11-18369 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 4cdf6c7bd4..f585045c69 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-18012 +API version: 1.0.11-18369 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 e00be6dea9..9124c6cd34 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-18012 +API version: 1.0.11-18369 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 1b72e89e8d..45e7bef0bb 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-18012 +API version: 1.0.11-18369 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 49e587ab8a..95ecb48207 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-18012 +API version: 1.0.11-18369 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 ab55dc6da1..1ed6b9233f 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-18012 +API version: 1.0.11-18369 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 c87039d7ae..70726f19b2 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-18012 +API version: 1.0.11-18369 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 a024d4d5a1..685e6eec31 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-18012 +API version: 1.0.11-18369 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 cad8568822..b9d99c6dbe 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-18012 +API version: 1.0.11-18369 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 a4a0da55f2..ca58e01df3 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-18012 +API version: 1.0.11-18369 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 500323dc98..23ceebccaf 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-18012 +API version: 1.0.11-18369 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 93fdf477f1..59a5631623 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-18012 +API version: 1.0.11-18369 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 bf8fd82a1a..9425635aed 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-18012 +API version: 1.0.11-18369 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 54b024abdf..b09a10ae21 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-18012 +API version: 1.0.11-18369 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 7421f86ef7..3a1cbf2f7c 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-18012 +API version: 1.0.11-18369 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 019cf59ee1..1490a49131 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-18012 +API version: 1.0.11-18369 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 0d3deba41f..a2b5a92ec7 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-18012 +API version: 1.0.11-18369 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 625fc7a084..c29fa8beb4 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-18012 +API version: 1.0.11-18369 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 3bff197f34..b88823c0b3 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-18012 +API version: 1.0.11-18369 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 b177f89960..b6009e6d6c 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-18012 +API version: 1.0.11-18369 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 56e02124ad..78183cfa06 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-18012 +API version: 1.0.11-18369 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 d6b0dcd6fb..e6c949cd1b 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-18012 +API version: 1.0.11-18369 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 83e117d8b7..78895e6bb7 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-18012 +API version: 1.0.11-18369 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 8c5c5988b2..991523f0e5 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-18012 +API version: 1.0.11-18369 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 81dfa18c25..dba0f0f59b 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-18012 +API version: 1.0.11-18369 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 3c670331fa..45644bcc00 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-18012 +API version: 1.0.11-18369 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 9d58339244..5bf279cd1a 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-18012 +API version: 1.0.11-18369 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 371d459d1f..debdf50c6a 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-18012 +API version: 1.0.11-18369 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 3f47db30d6..d3adc36a8d 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-18012 +API version: 1.0.11-18369 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 7084c21c07..62950cf6dc 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-18012 +API version: 1.0.11-18369 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 f6f7b46d08..e33e874066 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-18012 +API version: 1.0.11-18369 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 47f4678d5e..9d2459bfbc 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-18012 +API version: 1.0.11-18369 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 58ef3d53a2..8028fd2133 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-18012 +API version: 1.0.11-18369 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 3a96ba8aa9..fd30824781 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-18012 +API version: 1.0.11-18369 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 fcab154bc8..327e03e720 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-18012 +API version: 1.0.11-18369 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 59ac22de07..7539f9b355 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-18012 +API version: 1.0.11-18369 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 9f91053ce4..384b2675dd 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-18012 +API version: 1.0.11-18369 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 10cb96a684..ea2c88de9c 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-18012 +API version: 1.0.11-18369 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 2f47d7f4aa..ae780b8457 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-18012 +API version: 1.0.11-18369 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 03c2dd9fc1..23ce953dc2 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-18012 +API version: 1.0.11-18369 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 3b78fc0760..b98cd56e6b 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-18012 +API version: 1.0.11-18369 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 1c76ee0ddc..bf6d371f3c 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-18012 +API version: 1.0.11-18369 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 797f776c91..35628cbd00 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-18012 +API version: 1.0.11-18369 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 1ae5b79448..2ea8fb32ce 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-18012 +API version: 1.0.11-18369 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 6c213e5e72..7fd7de360c 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-18012 +API version: 1.0.11-18369 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 8236c39ec0..acadb8e44d 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-18012 +API version: 1.0.11-18369 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 c405a490c1..2ea561f641 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-18012 +API version: 1.0.11-18369 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 4d94de5a78..bf7442f0ac 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-18012 +API version: 1.0.11-18369 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 5796fa7e53..4032218ce8 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-18012 +API version: 1.0.11-18369 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 879a8e6885..7a1d21d53d 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-18012 +API version: 1.0.11-18369 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 804a13e562..8cbfdd4165 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-18012 +API version: 1.0.11-18369 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 5f20db151d..60d24ee9cb 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-18012 +API version: 1.0.11-18369 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 b080fb7833..d905050027 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-18012 +API version: 1.0.11-18369 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 bef17dedc8..095d0d0929 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-18012 +API version: 1.0.11-18369 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 68e826f6f7..8261b41579 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-18012 +API version: 1.0.11-18369 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 c7eae94374..bed4d011b9 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-18012 +API version: 1.0.11-18369 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 0b5ea283a1..b18fc29a8c 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-18012 +API version: 1.0.11-18369 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 661c793480..14ff0de788 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-18012 +API version: 1.0.11-18369 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 91d85ab326..277ccb8756 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-18012 +API version: 1.0.11-18369 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 98aee51e42..242caeeb0a 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-18012 +API version: 1.0.11-18369 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 7046194699..787c22f162 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-18012 +API version: 1.0.11-18369 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 0e85964fb3..187192485a 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-18012 +API version: 1.0.11-18369 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 35b4aac607..1560194041 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-18012 +API version: 1.0.11-18369 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 07ce7dc96e..8604facff5 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-18012 +API version: 1.0.11-18369 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 cbe13a3df2..07fbf7f0d5 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-18012 +API version: 1.0.11-18369 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 b44a5eca49..7441207589 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-18012 +API version: 1.0.11-18369 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 125158ed0e..e9f860d9c3 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-18012 +API version: 1.0.11-18369 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 2193f57f1e..684504cf7b 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-18012 +API version: 1.0.11-18369 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 6a4037972b..518b727c55 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-18012 +API version: 1.0.11-18369 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 041e44acb3..d30badab2d 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-18012 +API version: 1.0.11-18369 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 374549a11d..d00694008d 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-18012 +API version: 1.0.11-18369 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 ad71825f01..9b10963cce 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-18012 +API version: 1.0.11-18369 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 e5b6fd4335..671afc5816 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-18012 +API version: 1.0.11-18369 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 069ce5f724..1309be8ec0 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-18012 +API version: 1.0.11-18369 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 33909d0b4c..d62ecd8bb4 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-18012 +API version: 1.0.11-18369 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 fe711f2b84..f4dd34b479 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-18012 +API version: 1.0.11-18369 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 041c5dc36b..39abf368de 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-18012 +API version: 1.0.11-18369 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 f24983fced..c11c65eca4 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-18012 +API version: 1.0.11-18369 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 297df2e6ed..847c6711ea 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-18012 +API version: 1.0.11-18369 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 5468fcfe8c..bf223ecea9 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-18012 +API version: 1.0.11-18369 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 101077e384..e4134bdd4a 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-18012 +API version: 1.0.11-18369 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 ad4ddd46f4..63bf6500ab 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-18012 +API version: 1.0.11-18369 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 3419a9edca..6a7c4d9963 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-18012 +API version: 1.0.11-18369 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 2d67e797a1..e71d8bc24f 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-18012 +API version: 1.0.11-18369 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 c6c3aeb101..8ec6f37c11 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-18012 +API version: 1.0.11-18369 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 638360e604..a66dd5744b 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-18012 +API version: 1.0.11-18369 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 b04dd1ab4a..1d8dd0431e 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-18012 +API version: 1.0.11-18369 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 2596e0a09d..5cc3e24a1a 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-18012 +API version: 1.0.11-18369 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 7135116f21..d6437a46fa 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-18012 +API version: 1.0.11-18369 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 f090471410..84896f0805 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-18012 +API version: 1.0.11-18369 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 abe1eb638c..fdefd1c5f3 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-18012 +API version: 1.0.11-18369 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 be2bed3ab1..76830c71d0 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-18012 +API version: 1.0.11-18369 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 afe8f89028..f4d4873e78 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-18012 +API version: 1.0.11-18369 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 55d8318457..da90e626ed 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 83d334eae2..91a34ae340 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-18012 +API version: 1.0.11-18369 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 db6e0ce178..043ae727d3 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-18012 +API version: 1.0.11-18369 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 ecce15ebfe..6100f7afa6 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-18012 +API version: 1.0.11-18369 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 5a739aba26..03afbd7b9f 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-18012 +API version: 1.0.11-18369 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 66db6cca82..137f714908 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-18012 +API version: 1.0.11-18369 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 47fe0234fe..549a858236 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-18012 +API version: 1.0.11-18369 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 c01d0e4898..654b977e72 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-18012 +API version: 1.0.11-18369 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 9e70a26781..10089d5ef8 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-18012 +API version: 1.0.11-18369 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 ce9e9b3aec..e3844aa8df 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-18012 +API version: 1.0.11-18369 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 33055921fd..efd51cc184 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-18012 +API version: 1.0.11-18369 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 5b2bfb626a..69ac6b9808 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-18012 +API version: 1.0.11-18369 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 f631a94bde..d2bd80e29e 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-18012 +API version: 1.0.11-18369 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 72a04a87a5..413ab6a1bf 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-18012 +API version: 1.0.11-18369 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 bacdc9ef13..7b31e5343a 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-18012 +API version: 1.0.11-18369 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 d094575d3f..44c560065e 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-18012 +API version: 1.0.11-18369 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 74dd4467ed..dddd39f65c 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-18012 +API version: 1.0.11-18369 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 cd14a25e6b..dff45a2a5b 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-18012 +API version: 1.0.11-18369 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 29d1c1dc84..04055967e2 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-18012 +API version: 1.0.11-18369 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 ca7b8d56e2..164d30c87a 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-18012 +API version: 1.0.11-18369 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 262e39ee3c..f1971e903a 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-18012 +API version: 1.0.11-18369 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 7c79204059..bbb0f8deb5 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-18012 +API version: 1.0.11-18369 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 747b0e4050..b3f4edb1de 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-18012 +API version: 1.0.11-18369 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 660682a4d8..658d47bd34 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-18012 +API version: 1.0.11-18369 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 06fddaa794..25768573dd 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-18012 +API version: 1.0.11-18369 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 5b3beec2d4..ada5937efe 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 4fd90762b9..091452ec77 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-18012 +API version: 1.0.11-18369 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 b89c3409b3..c73e1a3805 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-18012 +API version: 1.0.11-18369 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 874ebd0a42..9ee6d29104 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-18012 +API version: 1.0.11-18369 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 26aa0b851d..020d7c3f8c 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-18012 +API version: 1.0.11-18369 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 203bec516d..908ab2d8f3 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-18012 +API version: 1.0.11-18369 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 434cc27724..02d1ab08bb 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-18012 +API version: 1.0.11-18369 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 d21cfaf999..ff38eb472c 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-18012 +API version: 1.0.11-18369 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 2ead4386fc..a20221c295 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-18012 +API version: 1.0.11-18369 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 74c69d0038..83bd537ed1 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-18012 +API version: 1.0.11-18369 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 f84885777e..4209dab274 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-18012 +API version: 1.0.11-18369 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 908178f294..253154cc93 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-18012 +API version: 1.0.11-18369 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 8c38442118..dde0e75457 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-18012 +API version: 1.0.11-18369 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 b69a8bd280..1e7659ea19 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-18012 +API version: 1.0.11-18369 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 d2d75ac21b..4959d8f99d 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 4c0a1fe56b..f016da181c 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 01cd6a5059..b8db74cea8 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-18012 +API version: 1.0.11-18369 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 0884fe67e7..c238e4d7cd 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-18012 +API version: 1.0.11-18369 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 d3c32e3ab6..a488ff53ab 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-18012 +API version: 1.0.11-18369 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 8bf19ec3ea..b4c97ec9b2 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-18012 +API version: 1.0.11-18369 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 5d08394e6a..b021436269 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-18012 +API version: 1.0.11-18369 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 e49e297e8d..b02b93da27 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 31b8d706a3..911fbcb791 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-18012 +API version: 1.0.11-18369 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 5e83c18e3a..1543b60863 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-18012 +API version: 1.0.11-18369 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 4cb616eb91..c4ad721a46 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-18012 +API version: 1.0.11-18369 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 01c2685a72..1713fa3aab 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-18012 +API version: 1.0.11-18369 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 aa7defff94..b6d628c676 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-18012 +API version: 1.0.11-18369 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 e5dad40a8b..b2c543d01e 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-18012 +API version: 1.0.11-18369 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 0e676a1ad0..2a1f1fa128 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-18012 +API version: 1.0.11-18369 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 9a07373536..f826a91e54 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-18012 +API version: 1.0.11-18369 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 dc3013d5d2..050744c7e0 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-18012 +API version: 1.0.11-18369 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 0e73a92322..5d016a4af0 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-18012 +API version: 1.0.11-18369 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 5fd3a91870..4dd6035f6d 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-18012 +API version: 1.0.11-18369 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 4d4ac66b5d..dc497511f6 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-18012 +API version: 1.0.11-18369 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 1240ea1a67..b04c092ccd 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-18012 +API version: 1.0.11-18369 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 092c32c143..c96d7ff519 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 4808d47d42..01002be6ff 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-18012 +API version: 1.0.11-18369 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 c72c70cd9f..2ce16d8b17 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-18012 +API version: 1.0.11-18369 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 9952a7de76..43f8f859cd 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-18012 +API version: 1.0.11-18369 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 8bf267a85f..25a29f6b9d 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-18012 +API version: 1.0.11-18369 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 76c6027605..e11c02bb64 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 948c98290f..3b782e899b 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-18012 +API version: 1.0.11-18369 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 18f455d49e..1374f4aba6 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-18012 +API version: 1.0.11-18369 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 74a0f553bc..3c4e5e1f91 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-18012 +API version: 1.0.11-18369 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 3dcdbdac97..1c43b2c347 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-18012 +API version: 1.0.11-18369 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 3919cc62f1..94d79319c5 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-18012 +API version: 1.0.11-18369 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 f46f409a2e..99d9c35e32 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-18012 +API version: 1.0.11-18369 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 9a5f974a1b..8c2a275d12 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-18012 +API version: 1.0.11-18369 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 caa567017b..9b26950925 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-18012 +API version: 1.0.11-18369 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 1075a0abd3..e03b4c1b12 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-18012 +API version: 1.0.11-18369 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 1978508912..21e709fcf8 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 8642dc30c2..7f30c0663f 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 1c43ce084a..aedab01db2 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-18012 +API version: 1.0.11-18369 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 e32e6a4ac5..b4406b51c0 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-18012 +API version: 1.0.11-18369 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 2b807427e2..52fa261d2f 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-18012 +API version: 1.0.11-18369 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 74ab05b1d6..6d7d60b698 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-18012 +API version: 1.0.11-18369 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 f9fca1686c..90217de9f3 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-18012 +API version: 1.0.11-18369 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 6844a4cf3e..63c98f3f7d 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-18012 +API version: 1.0.11-18369 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 4bb06c9127..d92ede7e5f 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-18012 +API version: 1.0.11-18369 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 96ccf664fa..d1314dc496 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-18012 +API version: 1.0.11-18369 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 39233a30b5..57c32a3e82 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-18012 +API version: 1.0.11-18369 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 cbf6793cfe..bbc13ecda0 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-18012 +API version: 1.0.11-18369 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 002162fdeb..e1209e768b 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-18012 +API version: 1.0.11-18369 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 64514aa6e0..dffa7f0f31 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-18012 +API version: 1.0.11-18369 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 f1527e3b7b..adb6dc814b 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-18012 +API version: 1.0.11-18369 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 123675c755..b0e2e7e1f3 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-18012 +API version: 1.0.11-18369 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 1c6e9e14ca..d0d246d835 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-18012 +API version: 1.0.11-18369 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 5ffdba1c8a..d2d80ea605 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-18012 +API version: 1.0.11-18369 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 c4217923bc..6f04f20b02 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 f534e1791a..09e136a7c4 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-18012 +API version: 1.0.11-18369 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 4d70cf0ce3..9bef8bc045 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-18012 +API version: 1.0.11-18369 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 6e8c9d95c2..7908423458 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-18012 +API version: 1.0.11-18369 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 e7479daa1f..c29a35368a 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-18012 +API version: 1.0.11-18369 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 ac58eaad45..6994b57283 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-18012 +API version: 1.0.11-18369 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 914cddbf86..dc65ba2f75 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-18012 +API version: 1.0.11-18369 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 3384a431cd..72510e3d45 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-18012 +API version: 1.0.11-18369 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 c28514bb18..1ed6a552d9 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-18012 +API version: 1.0.11-18369 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 830b087cec..c1642f204a 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 6e07348b08..456a3f59ed 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-18012 +API version: 1.0.11-18369 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 8631a1ae60..3479414880 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-18012 +API version: 1.0.11-18369 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 ede9e76fc7..8e09bf8b42 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-18012 +API version: 1.0.11-18369 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 01f6511842..26f8633892 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 b90ee054ff..4c45fdfb1c 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-18012 +API version: 1.0.11-18369 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 e5be3e87b0..db52aa7909 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-18012 +API version: 1.0.11-18369 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 370b42bf5d..8849de3da9 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-18012 +API version: 1.0.11-18369 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 36ba446931..fed1c14c7e 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 83623f129e..343faa47ea 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-18012 +API version: 1.0.11-18369 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 43cdb8c474..04768bc2e7 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-18012 +API version: 1.0.11-18369 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 0f85fffd7e..4780a4b454 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-18012 +API version: 1.0.11-18369 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 b2550f00f3..ba513a1b6a 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-18012 +API version: 1.0.11-18369 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 7df7deddff..6ca25a55a1 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-18012 +API version: 1.0.11-18369 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 bafd780aa3..bb04ecc7f1 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-18012 +API version: 1.0.11-18369 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 0fbb5d5bfe..10ae600036 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-18012 +API version: 1.0.11-18369 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 b807ce329f..0a0a969ace 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-18012 +API version: 1.0.11-18369 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 e1ff474a28..ef3c78c2f5 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-18012 +API version: 1.0.11-18369 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 52f753db13..9fc48c9960 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-18012 +API version: 1.0.11-18369 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 f289d199da..d013df5bf7 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-18012 +API version: 1.0.11-18369 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 94e9408d8d..827e395a9e 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-18012 +API version: 1.0.11-18369 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 dda2540a6d..2ad8ea7042 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-18012 +API version: 1.0.11-18369 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 24b26f90d8..460f9d0d50 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-18012 +API version: 1.0.11-18369 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 2b14473ba3..7f4e7f7321 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-18012 +API version: 1.0.11-18369 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 190acaf863..3044baff86 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-18012 +API version: 1.0.11-18369 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 1a6df6466d..84ead2d366 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-18012 +API version: 1.0.11-18369 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 afbadeb780..26cab74f09 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-18012 +API version: 1.0.11-18369 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 b16a418bd4..13ec28107a 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-18012 +API version: 1.0.11-18369 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 b362e6eb22..b6ac8527a9 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-18012 +API version: 1.0.11-18369 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 1233af2b81..57b6948977 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-18012 +API version: 1.0.11-18369 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 801e4541b6..edd746dcd1 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-18012 +API version: 1.0.11-18369 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 7886f18c57..bcf56732f2 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-18012 +API version: 1.0.11-18369 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 b0f934de1c..eab4cf5686 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-18012 +API version: 1.0.11-18369 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 e99e144075..c2d8ace089 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-18012 +API version: 1.0.11-18369 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 a00445283e..28a8bfe09c 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-18012 +API version: 1.0.11-18369 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 a228909cc0..0e3554feac 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-18012 +API version: 1.0.11-18369 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 c1e0ea146e..342693f5a2 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-18012 +API version: 1.0.11-18369 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 93c77bd359..40cd42876f 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-18012 +API version: 1.0.11-18369 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 990b28384d..b1d9e46327 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-18012 +API version: 1.0.11-18369 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 5c91fe715c..b59587caf2 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-18012 +API version: 1.0.11-18369 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 9ac76483e5..b81b967aa3 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-18012 +API version: 1.0.11-18369 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 91e97aa6a9..a2c7573f11 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-18012 +API version: 1.0.11-18369 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 9d8d812c24..d43063008b 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ @@ -24,12 +24,6 @@ var _ MappedNullable = &CapabilityAdapterUpdateConstraintMeta{} // CapabilityAdapterUpdateConstraintMeta Internal meta-data to enable adapter unit update related constraints. type CapabilityAdapterUpdateConstraintMeta struct { CapabilityUpdateConstraintMeta - // 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. - 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"` - // Platform for which the constraint is to be enforced. - SupportedPlatform *string `json:"SupportedPlatform,omitempty"` AdditionalProperties map[string]interface{} } @@ -51,103 +45,9 @@ func NewCapabilityAdapterUpdateConstraintMeta(classId string, objectType string) // but it doesn't guarantee that properties required by API are set func NewCapabilityAdapterUpdateConstraintMetaWithDefaults() *CapabilityAdapterUpdateConstraintMeta { this := CapabilityAdapterUpdateConstraintMeta{} - var classId string = "capability.AdapterUpdateConstraintMeta" - this.ClassId = classId - var objectType string = "capability.AdapterUpdateConstraintMeta" - this.ObjectType = objectType return &this } -// GetClassId returns the ClassId field value -func (o *CapabilityAdapterUpdateConstraintMeta) GetClassId() string { - if o == nil { - var ret string - return ret - } - - return o.ClassId -} - -// GetClassIdOk returns a tuple with the ClassId field value -// and a boolean to check if the value has been set. -func (o *CapabilityAdapterUpdateConstraintMeta) GetClassIdOk() (*string, bool) { - if o == nil { - return nil, false - } - return &o.ClassId, true -} - -// SetClassId sets field value -func (o *CapabilityAdapterUpdateConstraintMeta) SetClassId(v string) { - o.ClassId = v -} - -// GetDefaultClassId returns the default value "capability.AdapterUpdateConstraintMeta" of the ClassId field. -func (o *CapabilityAdapterUpdateConstraintMeta) GetDefaultClassId() interface{} { - return "capability.AdapterUpdateConstraintMeta" -} - -// GetObjectType returns the ObjectType field value -func (o *CapabilityAdapterUpdateConstraintMeta) GetObjectType() string { - if o == nil { - var ret string - return ret - } - - return o.ObjectType -} - -// GetObjectTypeOk returns a tuple with the ObjectType field value -// and a boolean to check if the value has been set. -func (o *CapabilityAdapterUpdateConstraintMeta) GetObjectTypeOk() (*string, bool) { - if o == nil { - return nil, false - } - return &o.ObjectType, true -} - -// SetObjectType sets field value -func (o *CapabilityAdapterUpdateConstraintMeta) SetObjectType(v string) { - o.ObjectType = v -} - -// GetDefaultObjectType returns the default value "capability.AdapterUpdateConstraintMeta" of the ObjectType field. -func (o *CapabilityAdapterUpdateConstraintMeta) GetDefaultObjectType() interface{} { - return "capability.AdapterUpdateConstraintMeta" -} - -// GetSupportedPlatform returns the SupportedPlatform field value if set, zero value otherwise. -func (o *CapabilityAdapterUpdateConstraintMeta) GetSupportedPlatform() string { - if o == nil || IsNil(o.SupportedPlatform) { - var ret string - return ret - } - return *o.SupportedPlatform -} - -// GetSupportedPlatformOk returns a tuple with the SupportedPlatform field value if set, nil otherwise -// and a boolean to check if the value has been set. -func (o *CapabilityAdapterUpdateConstraintMeta) GetSupportedPlatformOk() (*string, bool) { - if o == nil || IsNil(o.SupportedPlatform) { - return nil, false - } - return o.SupportedPlatform, true -} - -// HasSupportedPlatform returns a boolean if a field has been set. -func (o *CapabilityAdapterUpdateConstraintMeta) HasSupportedPlatform() bool { - if o != nil && !IsNil(o.SupportedPlatform) { - return true - } - - return false -} - -// SetSupportedPlatform gets a reference to the given string and assigns it to the SupportedPlatform field. -func (o *CapabilityAdapterUpdateConstraintMeta) SetSupportedPlatform(v string) { - o.SupportedPlatform = &v -} - func (o CapabilityAdapterUpdateConstraintMeta) MarshalJSON() ([]byte, error) { toSerialize, err := o.ToMap() if err != nil { @@ -166,17 +66,6 @@ func (o CapabilityAdapterUpdateConstraintMeta) ToMap() (map[string]interface{}, if errCapabilityUpdateConstraintMeta != nil { return map[string]interface{}{}, errCapabilityUpdateConstraintMeta } - if _, exists := toSerialize["ClassId"]; !exists { - toSerialize["ClassId"] = o.GetDefaultClassId() - } - toSerialize["ClassId"] = o.ClassId - if _, exists := toSerialize["ObjectType"]; !exists { - toSerialize["ObjectType"] = o.GetDefaultObjectType() - } - toSerialize["ObjectType"] = o.ObjectType - if !IsNil(o.SupportedPlatform) { - toSerialize["SupportedPlatform"] = o.SupportedPlatform - } for key, value := range o.AdditionalProperties { toSerialize[key] = value @@ -196,10 +85,7 @@ func (o *CapabilityAdapterUpdateConstraintMeta) UnmarshalJSON(data []byte) (err // defaultValueFuncMap captures the default values for required properties. // These values are used when required properties are missing from the payload. - defaultValueFuncMap := map[string]func() interface{}{ - "ClassId": o.GetDefaultClassId, - "ObjectType": o.GetDefaultObjectType, - } + defaultValueFuncMap := map[string]func() interface{}{} var defaultValueApplied bool allProperties := make(map[string]interface{}) @@ -228,12 +114,6 @@ func (o *CapabilityAdapterUpdateConstraintMeta) UnmarshalJSON(data []byte) (err } } type CapabilityAdapterUpdateConstraintMetaWithoutEmbeddedStruct struct { - // 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. - 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"` - // Platform for which the constraint is to be enforced. - SupportedPlatform *string `json:"SupportedPlatform,omitempty"` } varCapabilityAdapterUpdateConstraintMetaWithoutEmbeddedStruct := CapabilityAdapterUpdateConstraintMetaWithoutEmbeddedStruct{} @@ -241,9 +121,6 @@ func (o *CapabilityAdapterUpdateConstraintMeta) UnmarshalJSON(data []byte) (err err = json.Unmarshal(data, &varCapabilityAdapterUpdateConstraintMetaWithoutEmbeddedStruct) if err == nil { varCapabilityAdapterUpdateConstraintMeta := _CapabilityAdapterUpdateConstraintMeta{} - varCapabilityAdapterUpdateConstraintMeta.ClassId = varCapabilityAdapterUpdateConstraintMetaWithoutEmbeddedStruct.ClassId - varCapabilityAdapterUpdateConstraintMeta.ObjectType = varCapabilityAdapterUpdateConstraintMetaWithoutEmbeddedStruct.ObjectType - varCapabilityAdapterUpdateConstraintMeta.SupportedPlatform = varCapabilityAdapterUpdateConstraintMetaWithoutEmbeddedStruct.SupportedPlatform *o = CapabilityAdapterUpdateConstraintMeta(varCapabilityAdapterUpdateConstraintMeta) } else { return err @@ -261,9 +138,6 @@ func (o *CapabilityAdapterUpdateConstraintMeta) UnmarshalJSON(data []byte) (err additionalProperties := make(map[string]interface{}) if err = json.Unmarshal(data, &additionalProperties); err == nil { - delete(additionalProperties, "ClassId") - delete(additionalProperties, "ObjectType") - delete(additionalProperties, "SupportedPlatform") // remove fields from embedded structs reflectCapabilityUpdateConstraintMeta := reflect.ValueOf(o.CapabilityUpdateConstraintMeta) 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 13568b2e47..c3ca709108 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-18012 +API version: 1.0.11-18369 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 004729f543..b98500020f 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-18012 +API version: 1.0.11-18369 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 efb3d620d7..87e829fd11 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-18012 +API version: 1.0.11-18369 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 c8718bfebc..091ff8c02f 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-18012 +API version: 1.0.11-18369 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 e1758b6ca3..ac83be4fce 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-18012 +API version: 1.0.11-18369 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 54d7a71020..b6b7fc8f95 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-18012 +API version: 1.0.11-18369 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 4297bd16b2..85f7673301 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-18012 +API version: 1.0.11-18369 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 793fc7786e..ecd2b5b03d 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-18012 +API version: 1.0.11-18369 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 bc3a552a0e..b87e0fb414 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-18012 +API version: 1.0.11-18369 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 5e92fe751a..47ea841b1f 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-18012 +API version: 1.0.11-18369 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 6785b96ae2..fa1db4f5b2 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-18012 +API version: 1.0.11-18369 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 8f531ee08f..3c69274234 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-18012 +API version: 1.0.11-18369 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 b9bc38e944..699ad48841 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-18012 +API version: 1.0.11-18369 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 e064d9946e..81061c9e43 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-18012 +API version: 1.0.11-18369 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 fff66fe074..9001f059ba 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-18012 +API version: 1.0.11-18369 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 9d84abce4f..c12bdaf622 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-18012 +API version: 1.0.11-18369 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 a021265e9d..4f1c992f41 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-18012 +API version: 1.0.11-18369 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 cd35416a9f..a2d9993e88 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-18012 +API version: 1.0.11-18369 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 6883d13d22..9b67d4c447 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-18012 +API version: 1.0.11-18369 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 a3bd33d3f2..9743957240 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-18012 +API version: 1.0.11-18369 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 8907dca496..1268a14da2 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-18012 +API version: 1.0.11-18369 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 5314ecb48d..4367405a08 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-18012 +API version: 1.0.11-18369 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 a38e0cd2ba..456b3f30ed 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-18012 +API version: 1.0.11-18369 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 7b25ec731f..68c15b33d9 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-18012 +API version: 1.0.11-18369 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 0e70f4ae2a..9affa915fb 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-18012 +API version: 1.0.11-18369 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 0054ab5464..242babba44 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-18012 +API version: 1.0.11-18369 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 3552c21327..c397ef2aac 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-18012 +API version: 1.0.11-18369 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 468ab599d7..07762b2ee3 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-18012 +API version: 1.0.11-18369 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 a7b960e68e..8dccce703b 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-18012 +API version: 1.0.11-18369 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 efab8e43fc..c914f8172c 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-18012 +API version: 1.0.11-18369 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 4eee41a2f9..2dc2d0e541 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-18012 +API version: 1.0.11-18369 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 0b59cc521c..493783b052 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-18012 +API version: 1.0.11-18369 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 f3b57ddd52..0eaf6152b9 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-18012 +API version: 1.0.11-18369 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 10b8a0508c..33a3dccf00 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-18012 +API version: 1.0.11-18369 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 d08eb5e532..807f476f30 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-18012 +API version: 1.0.11-18369 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 6ea9f6d88f..f0d1ef822a 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-18012 +API version: 1.0.11-18369 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 8968ace918..ef1199bb1b 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-18012 +API version: 1.0.11-18369 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 d84eaa8157..e7d8fee153 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-18012 +API version: 1.0.11-18369 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 bfb200e2d2..5c4489b07c 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-18012 +API version: 1.0.11-18369 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 66895cb360..8256a29829 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-18012 +API version: 1.0.11-18369 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 7b8daad856..0c4414a15b 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-18012 +API version: 1.0.11-18369 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 704318f28a..35ede3fa92 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-18012 +API version: 1.0.11-18369 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 4428619f58..a0412a1490 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-18012 +API version: 1.0.11-18369 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 dea70968d7..a8d0669f70 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-18012 +API version: 1.0.11-18369 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 cad6f998e9..070003c477 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-18012 +API version: 1.0.11-18369 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 dd1e521aae..b85989979c 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-18012 +API version: 1.0.11-18369 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 285211612f..1bbd92532c 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-18012 +API version: 1.0.11-18369 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 5da28d1d2b..31aa807c09 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-18012 +API version: 1.0.11-18369 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 e6c29d34a1..105aab4388 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-18012 +API version: 1.0.11-18369 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 94ecd73d2e..b2de483eaa 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-18012 +API version: 1.0.11-18369 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 e5657e6089..91376a6593 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-18012 +API version: 1.0.11-18369 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 5eb63fc0d8..af5db0cc0f 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-18012 +API version: 1.0.11-18369 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 90e5acdec8..bc5a9852da 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-18012 +API version: 1.0.11-18369 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 3e83368ef9..ec76c1178c 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-18012 +API version: 1.0.11-18369 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 06a48460c5..8a8dfe0c05 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-18012 +API version: 1.0.11-18369 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 31a0ad5ec2..14e39c324f 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-18012 +API version: 1.0.11-18369 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 fe5cadcb9b..bf585b5592 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-18012 +API version: 1.0.11-18369 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 bb3a19f88f..8295e09a83 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-18012 +API version: 1.0.11-18369 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 f80708a4ac..c320327c16 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-18012 +API version: 1.0.11-18369 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 1a807eb7c7..7aec7f98a9 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-18012 +API version: 1.0.11-18369 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 c9ab8853f8..ba21563cd4 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-18012 +API version: 1.0.11-18369 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 f3800888fe..2727e4915d 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-18012 +API version: 1.0.11-18369 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 389e9f5eb6..fb52b86c01 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-18012 +API version: 1.0.11-18369 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 461f55e1e4..9b3c204aea 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-18012 +API version: 1.0.11-18369 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 3de93486da..afd74e13d6 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-18012 +API version: 1.0.11-18369 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 d353903268..9fda1f51ef 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-18012 +API version: 1.0.11-18369 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 55434f087e..38dd08b50d 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-18012 +API version: 1.0.11-18369 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 72d6b55056..5dce3100ef 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-18012 +API version: 1.0.11-18369 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 c7acf9dc2b..dc78d39aa8 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-18012 +API version: 1.0.11-18369 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 f65403728b..f9d8c13957 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-18012 +API version: 1.0.11-18369 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 87a2d57676..aa91fd155a 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-18012 +API version: 1.0.11-18369 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 46aa7cd997..8c06c120b4 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-18012 +API version: 1.0.11-18369 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 b108b48fe4..994c9c7a61 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-18012 +API version: 1.0.11-18369 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 f6269eba67..b96f19ac95 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-18012 +API version: 1.0.11-18369 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 2f5ddca981..348e1bba07 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-18012 +API version: 1.0.11-18369 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 7c9733fd4b..af574014c9 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-18012 +API version: 1.0.11-18369 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 8ff22350a4..366a78ebb7 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-18012 +API version: 1.0.11-18369 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 40f3b19d31..da99cfcd86 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-18012 +API version: 1.0.11-18369 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 3660722eda..eecc0c2f7d 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-18012 +API version: 1.0.11-18369 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 a8d138c2a8..87b62ecfa6 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-18012 +API version: 1.0.11-18369 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 17ae3d00af..ee72f532c4 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-18012 +API version: 1.0.11-18369 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 00b62aa029..87dbd2bd33 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-18012 +API version: 1.0.11-18369 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 9281b5d405..fc5749e53e 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-18012 +API version: 1.0.11-18369 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 cf75e9c227..8eb989e37e 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-18012 +API version: 1.0.11-18369 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 668f84cb05..ab467a2b46 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-18012 +API version: 1.0.11-18369 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 7caf26bad5..3973d270e7 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-18012 +API version: 1.0.11-18369 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 09f178a3af..b697fd0eeb 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-18012 +API version: 1.0.11-18369 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 94f4aaa60c..00b3793d1d 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-18012 +API version: 1.0.11-18369 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 df42cc8d32..a769903cea 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-18012 +API version: 1.0.11-18369 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 7ec2b6da5f..37049c2f1e 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-18012 +API version: 1.0.11-18369 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 4472197d35..ca26027da7 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-18012 +API version: 1.0.11-18369 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 5d9970d8bb..71ef5d80a4 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-18012 +API version: 1.0.11-18369 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 57616aaed6..234117ec48 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-18012 +API version: 1.0.11-18369 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 4b9c23e079..551e72bdc8 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-18012 +API version: 1.0.11-18369 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 d633b11812..b8de03eb47 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-18012 +API version: 1.0.11-18369 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 b9491253fb..dc7b034029 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-18012 +API version: 1.0.11-18369 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 a82ae257e9..844be215fe 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-18012 +API version: 1.0.11-18369 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 5c9fd4a354..59e4b227b2 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-18012 +API version: 1.0.11-18369 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 4fe7ecefc8..664ee44f59 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-18012 +API version: 1.0.11-18369 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 48ab91e4dd..b147b888bc 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-18012 +API version: 1.0.11-18369 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 be2b8897a6..9d2bbf4890 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-18012 +API version: 1.0.11-18369 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 367136db3d..ef714d6c6b 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-18012 +API version: 1.0.11-18369 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 13b29eae79..7f4de290de 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-18012 +API version: 1.0.11-18369 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 aeb149a73c..85ab81a683 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-18012 +API version: 1.0.11-18369 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 4bca976d21..bc6a0f8859 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-18012 +API version: 1.0.11-18369 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 5bf914f08b..17cee804cd 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-18012 +API version: 1.0.11-18369 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 1de78abde7..ee0bedb4e0 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-18012 +API version: 1.0.11-18369 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 5b290a810b..e17b3bf071 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-18012 +API version: 1.0.11-18369 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 9cf1a92722..09eec0ce11 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-18012 +API version: 1.0.11-18369 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 ebe04ff10e..c914d3e309 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-18012 +API version: 1.0.11-18369 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 724f79e9de..1c1c60228d 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-18012 +API version: 1.0.11-18369 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 462ccc52d1..ed0bae8c00 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-18012 +API version: 1.0.11-18369 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 d8fc9e1d02..7b10c45f9f 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-18012 +API version: 1.0.11-18369 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 cdaf7e1914..8530de8c6c 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-18012 +API version: 1.0.11-18369 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 a8d07d8305..163a11ec61 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-18012 +API version: 1.0.11-18369 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 a088fe1b7d..1d1e78ac68 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-18012 +API version: 1.0.11-18369 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 7c4e1d1e91..a3f6aa1439 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-18012 +API version: 1.0.11-18369 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 e9c603eb86..7a54d00d18 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-18012 +API version: 1.0.11-18369 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 6e43bd0209..a0b3fdb493 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-18012 +API version: 1.0.11-18369 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 63a7d7668a..c23b03d2ba 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-18012 +API version: 1.0.11-18369 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 087701c4e6..7395392a2a 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-18012 +API version: 1.0.11-18369 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 ddbee45c9b..984e381889 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-18012 +API version: 1.0.11-18369 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 2f01524a90..d7dca33cd2 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-18012 +API version: 1.0.11-18369 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 cf0f4e7341..1121f4f8d2 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-18012 +API version: 1.0.11-18369 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 05e4e6ba2f..048adf90d4 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-18012 +API version: 1.0.11-18369 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 b78ce20b59..049bfe50e8 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-18012 +API version: 1.0.11-18369 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 831902db97..95ee7df9f6 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-18012 +API version: 1.0.11-18369 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 ed31387797..a122565cc3 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-18012 +API version: 1.0.11-18369 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 29628dff99..ff127a414d 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-18012 +API version: 1.0.11-18369 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 7cc3c1b22b..585065aedc 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-18012 +API version: 1.0.11-18369 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 32cd2cfb8b..c7a17b0428 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-18012 +API version: 1.0.11-18369 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 540c679e45..f00be8d3cb 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-18012 +API version: 1.0.11-18369 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 b6b1040916..d271c9ac3c 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-18012 +API version: 1.0.11-18369 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 035304a7b5..02e4034ebe 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-18012 +API version: 1.0.11-18369 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 09ed5448c2..db81663c0d 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-18012 +API version: 1.0.11-18369 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 2a4cdce970..d284534c27 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-18012 +API version: 1.0.11-18369 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 921b8741ff..30ae11816d 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-18012 +API version: 1.0.11-18369 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 a2a48d8be2..4085841440 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ @@ -37,7 +37,6 @@ type CapabilityUpdateConstraintMeta struct { // Platform type for which the constraint is to be enforced. PlatformType *string `json:"PlatformType,omitempty"` ServerSpecificConstraint []CapabilityServerComponentConstraint `json:"ServerSpecificConstraint,omitempty"` - SupportedPlatforms []string `json:"SupportedPlatforms,omitempty"` AdditionalProperties map[string]interface{} } @@ -271,39 +270,6 @@ func (o *CapabilityUpdateConstraintMeta) SetServerSpecificConstraint(v []Capabil o.ServerSpecificConstraint = v } -// GetSupportedPlatforms returns the SupportedPlatforms field value if set, zero value otherwise (both if not set or set to explicit null). -func (o *CapabilityUpdateConstraintMeta) GetSupportedPlatforms() []string { - if o == nil { - var ret []string - return ret - } - return o.SupportedPlatforms -} - -// GetSupportedPlatformsOk returns a tuple with the SupportedPlatforms 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 *CapabilityUpdateConstraintMeta) GetSupportedPlatformsOk() ([]string, bool) { - if o == nil || IsNil(o.SupportedPlatforms) { - return nil, false - } - return o.SupportedPlatforms, true -} - -// HasSupportedPlatforms returns a boolean if a field has been set. -func (o *CapabilityUpdateConstraintMeta) HasSupportedPlatforms() bool { - if o != nil && !IsNil(o.SupportedPlatforms) { - return true - } - - return false -} - -// SetSupportedPlatforms gets a reference to the given []string and assigns it to the SupportedPlatforms field. -func (o *CapabilityUpdateConstraintMeta) SetSupportedPlatforms(v []string) { - o.SupportedPlatforms = v -} - func (o CapabilityUpdateConstraintMeta) MarshalJSON() ([]byte, error) { toSerialize, err := o.ToMap() if err != nil { @@ -339,9 +305,6 @@ func (o CapabilityUpdateConstraintMeta) ToMap() (map[string]interface{}, error) if o.ServerSpecificConstraint != nil { toSerialize["ServerSpecificConstraint"] = o.ServerSpecificConstraint } - if o.SupportedPlatforms != nil { - toSerialize["SupportedPlatforms"] = o.SupportedPlatforms - } for key, value := range o.AdditionalProperties { toSerialize[key] = value @@ -403,7 +366,6 @@ func (o *CapabilityUpdateConstraintMeta) UnmarshalJSON(data []byte) (err error) // Platform type for which the constraint is to be enforced. PlatformType *string `json:"PlatformType,omitempty"` ServerSpecificConstraint []CapabilityServerComponentConstraint `json:"ServerSpecificConstraint,omitempty"` - SupportedPlatforms []string `json:"SupportedPlatforms,omitempty"` } varCapabilityUpdateConstraintMetaWithoutEmbeddedStruct := CapabilityUpdateConstraintMetaWithoutEmbeddedStruct{} @@ -418,7 +380,6 @@ func (o *CapabilityUpdateConstraintMeta) UnmarshalJSON(data []byte) (err error) varCapabilityUpdateConstraintMeta.Model = varCapabilityUpdateConstraintMetaWithoutEmbeddedStruct.Model varCapabilityUpdateConstraintMeta.PlatformType = varCapabilityUpdateConstraintMetaWithoutEmbeddedStruct.PlatformType varCapabilityUpdateConstraintMeta.ServerSpecificConstraint = varCapabilityUpdateConstraintMetaWithoutEmbeddedStruct.ServerSpecificConstraint - varCapabilityUpdateConstraintMeta.SupportedPlatforms = varCapabilityUpdateConstraintMetaWithoutEmbeddedStruct.SupportedPlatforms *o = CapabilityUpdateConstraintMeta(varCapabilityUpdateConstraintMeta) } else { return err @@ -443,7 +404,6 @@ func (o *CapabilityUpdateConstraintMeta) UnmarshalJSON(data []byte) (err error) delete(additionalProperties, "Model") delete(additionalProperties, "PlatformType") delete(additionalProperties, "ServerSpecificConstraint") - delete(additionalProperties, "SupportedPlatforms") // remove fields from embedded structs reflectCapabilityCapability := reflect.ValueOf(o.CapabilityCapability) 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 e9d2b5c2ab..affa1a5ddb 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-18012 +API version: 1.0.11-18369 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 096b1d84da..ce007f21a9 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-18012 +API version: 1.0.11-18369 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 a5c28382ba..0b6e593022 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-18012 +API version: 1.0.11-18369 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 cb5c284749..898a9e824f 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-18012 +API version: 1.0.11-18369 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 7b21ecc067..27cf28b632 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-18012 +API version: 1.0.11-18369 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 a5e297cfdc..d941c9ae2c 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-18012 +API version: 1.0.11-18369 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 8942566aaa..d04eaf7480 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-18012 +API version: 1.0.11-18369 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 8ce2de6e3f..f35f0f4a4f 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-18012 +API version: 1.0.11-18369 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 bba16af36f..cd1a0d92bf 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-18012 +API version: 1.0.11-18369 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 5d262c2dc1..0c67c489e1 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-18012 +API version: 1.0.11-18369 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 4088fe1630..2d0255b95a 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-18012 +API version: 1.0.11-18369 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 b2fd79f26c..7a1044902a 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-18012 +API version: 1.0.11-18369 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 b0f4c377fd..7d89ebdba7 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-18012 +API version: 1.0.11-18369 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 fe4d994a66..1813285496 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-18012 +API version: 1.0.11-18369 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 630a372de9..c9c238aafc 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ @@ -30,6 +30,8 @@ type CatalystsdwanVedgeDevice struct { ObjectType string `json:"ObjectType"` // The Catalyst SDWAN device config status message. ConfigStatusMessage *string `json:"ConfigStatusMessage,omitempty"` + // The Catalyst SDWAN device id. + DeviceId *string `json:"DeviceId,omitempty"` // The Catalyst SDWAN device state. DeviceState *string `json:"DeviceState,omitempty"` // The Catalyst SDWAN device host name. @@ -169,6 +171,38 @@ func (o *CatalystsdwanVedgeDevice) SetConfigStatusMessage(v string) { o.ConfigStatusMessage = &v } +// GetDeviceId returns the DeviceId field value if set, zero value otherwise. +func (o *CatalystsdwanVedgeDevice) GetDeviceId() string { + if o == nil || IsNil(o.DeviceId) { + var ret string + return ret + } + return *o.DeviceId +} + +// GetDeviceIdOk returns a tuple with the DeviceId field value if set, nil otherwise +// and a boolean to check if the value has been set. +func (o *CatalystsdwanVedgeDevice) GetDeviceIdOk() (*string, bool) { + if o == nil || IsNil(o.DeviceId) { + return nil, false + } + return o.DeviceId, true +} + +// HasDeviceId returns a boolean if a field has been set. +func (o *CatalystsdwanVedgeDevice) HasDeviceId() bool { + if o != nil && !IsNil(o.DeviceId) { + return true + } + + return false +} + +// SetDeviceId gets a reference to the given string and assigns it to the DeviceId field. +func (o *CatalystsdwanVedgeDevice) SetDeviceId(v string) { + o.DeviceId = &v +} + // GetDeviceState returns the DeviceState field value if set, zero value otherwise. func (o *CatalystsdwanVedgeDevice) GetDeviceState() string { if o == nil || IsNil(o.DeviceState) { @@ -561,6 +595,9 @@ func (o CatalystsdwanVedgeDevice) ToMap() (map[string]interface{}, error) { if !IsNil(o.ConfigStatusMessage) { toSerialize["ConfigStatusMessage"] = o.ConfigStatusMessage } + if !IsNil(o.DeviceId) { + toSerialize["DeviceId"] = o.DeviceId + } if !IsNil(o.DeviceState) { toSerialize["DeviceState"] = o.DeviceState } @@ -651,6 +688,8 @@ func (o *CatalystsdwanVedgeDevice) UnmarshalJSON(data []byte) (err error) { ObjectType string `json:"ObjectType"` // The Catalyst SDWAN device config status message. ConfigStatusMessage *string `json:"ConfigStatusMessage,omitempty"` + // The Catalyst SDWAN device id. + DeviceId *string `json:"DeviceId,omitempty"` // The Catalyst SDWAN device state. DeviceState *string `json:"DeviceState,omitempty"` // The Catalyst SDWAN device host name. @@ -682,6 +721,7 @@ func (o *CatalystsdwanVedgeDevice) UnmarshalJSON(data []byte) (err error) { varCatalystsdwanVedgeDevice.ClassId = varCatalystsdwanVedgeDeviceWithoutEmbeddedStruct.ClassId varCatalystsdwanVedgeDevice.ObjectType = varCatalystsdwanVedgeDeviceWithoutEmbeddedStruct.ObjectType varCatalystsdwanVedgeDevice.ConfigStatusMessage = varCatalystsdwanVedgeDeviceWithoutEmbeddedStruct.ConfigStatusMessage + varCatalystsdwanVedgeDevice.DeviceId = varCatalystsdwanVedgeDeviceWithoutEmbeddedStruct.DeviceId varCatalystsdwanVedgeDevice.DeviceState = varCatalystsdwanVedgeDeviceWithoutEmbeddedStruct.DeviceState varCatalystsdwanVedgeDevice.HostName = varCatalystsdwanVedgeDeviceWithoutEmbeddedStruct.HostName varCatalystsdwanVedgeDevice.PlatformFamily = varCatalystsdwanVedgeDeviceWithoutEmbeddedStruct.PlatformFamily @@ -713,6 +753,7 @@ func (o *CatalystsdwanVedgeDevice) UnmarshalJSON(data []byte) (err error) { delete(additionalProperties, "ClassId") delete(additionalProperties, "ObjectType") delete(additionalProperties, "ConfigStatusMessage") + delete(additionalProperties, "DeviceId") delete(additionalProperties, "DeviceState") delete(additionalProperties, "HostName") delete(additionalProperties, "PlatformFamily") 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 062ebf143b..53e64c452e 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-18012 +API version: 1.0.11-18369 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 712a7a8906..c01d73744d 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-18012 +API version: 1.0.11-18369 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 1f725a25d3..8139752807 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-18012 +API version: 1.0.11-18369 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 4c41d812c9..6688cdff31 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-18012 +API version: 1.0.11-18369 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 c370479a29..566ef28e7c 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-18012 +API version: 1.0.11-18369 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 1a8b39ef23..1928fcefd4 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-18012 +API version: 1.0.11-18369 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 042e40da50..6f49e1a0ec 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-18012 +API version: 1.0.11-18369 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 3a59e73f7b..e75f16469f 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-18012 +API version: 1.0.11-18369 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 fc67da63c9..02154886ab 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-18012 +API version: 1.0.11-18369 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 0109cefdb8..88282b5857 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-18012 +API version: 1.0.11-18369 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 dee96767c6..364042bc89 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 ca6f5e2839..7acbeeda43 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-18012 +API version: 1.0.11-18369 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 78843c713e..2697b156f7 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-18012 +API version: 1.0.11-18369 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 cc369e2074..4dccbbb605 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-18012 +API version: 1.0.11-18369 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 fa1d45cc93..3015bbd92b 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-18012 +API version: 1.0.11-18369 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 c5529e9b57..80f7965233 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-18012 +API version: 1.0.11-18369 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 ae5aee2be6..105fd78c45 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-18012 +API version: 1.0.11-18369 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 3019759457..ae3e0c38d8 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 f956a80b20..39a947e079 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-18012 +API version: 1.0.11-18369 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 38096cb7bb..6cd6a7f37c 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-18012 +API version: 1.0.11-18369 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 c769c1a867..8ee4d12651 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-18012 +API version: 1.0.11-18369 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 dbc6f2ef58..866303e533 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-18012 +API version: 1.0.11-18369 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 f11dda14cc..4406b89a68 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-18012 +API version: 1.0.11-18369 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 98f91e1f12..4a584196a0 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-18012 +API version: 1.0.11-18369 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 fa88ee3273..1481f69d26 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-18012 +API version: 1.0.11-18369 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 530b1e57c7..8cd1281cde 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-18012 +API version: 1.0.11-18369 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 72b11c9a39..6be225ee53 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-18012 +API version: 1.0.11-18369 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 11183f50e7..1bb19be472 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-18012 +API version: 1.0.11-18369 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 d571facf8f..008cf2ded4 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-18012 +API version: 1.0.11-18369 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 89fd020330..964af2ff4a 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-18012 +API version: 1.0.11-18369 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 21ab23e864..e4a0e95eeb 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-18012 +API version: 1.0.11-18369 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 891a4013a9..b34657cd6f 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-18012 +API version: 1.0.11-18369 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 1db047c619..45460e8b05 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 6f96148433..76d3f3319b 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-18012 +API version: 1.0.11-18369 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 7259c04898..02cc95d684 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-18012 +API version: 1.0.11-18369 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 4bdf0677a5..9c7be27d23 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-18012 +API version: 1.0.11-18369 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 f86426caea..37d12673ed 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-18012 +API version: 1.0.11-18369 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 2a8a858e9f..46be6872f6 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-18012 +API version: 1.0.11-18369 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 f2e82727dc..6f93afa25a 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-18012 +API version: 1.0.11-18369 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 d7a8ad4cc3..148b92bc5f 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-18012 +API version: 1.0.11-18369 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 26ac3b50ae..52d94a8c20 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 dba6886fa0..f37dbfa169 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-18012 +API version: 1.0.11-18369 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 2cf24be370..7f2ab168f7 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-18012 +API version: 1.0.11-18369 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 1a9898b256..62c2bd632d 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-18012 +API version: 1.0.11-18369 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 59cd7f7396..c4916eab64 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-18012 +API version: 1.0.11-18369 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 a3e52dc48c..bbd6ec6240 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-18012 +API version: 1.0.11-18369 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 df3feff566..098384b13a 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-18012 +API version: 1.0.11-18369 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 3a1b0c2018..fbce26f611 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-18012 +API version: 1.0.11-18369 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 b5d0026333..19e20c68cb 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-18012 +API version: 1.0.11-18369 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 63063fa1bc..221ac18119 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-18012 +API version: 1.0.11-18369 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 08adbbf951..3b8dc3c49b 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-18012 +API version: 1.0.11-18369 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 e706b1659c..b6bd181d51 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-18012 +API version: 1.0.11-18369 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 835a945330..eaa7e9f626 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-18012 +API version: 1.0.11-18369 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 eba5960740..9ecbab31d2 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-18012 +API version: 1.0.11-18369 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 02997b6a84..4ea24d25bf 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-18012 +API version: 1.0.11-18369 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 0640e82159..0e3acbf421 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-18012 +API version: 1.0.11-18369 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 755fdfc06d..ed5f57e543 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-18012 +API version: 1.0.11-18369 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 297f147dbb..632309171f 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-18012 +API version: 1.0.11-18369 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 e8d8c893e4..414cc8430d 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-18012 +API version: 1.0.11-18369 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 8142e81c2e..d8e9016190 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-18012 +API version: 1.0.11-18369 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 c9ec28c1f5..0481b65c04 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-18012 +API version: 1.0.11-18369 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 97f76b6d68..c9980bc716 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-18012 +API version: 1.0.11-18369 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 477841ec56..1a77477303 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-18012 +API version: 1.0.11-18369 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 5f4815341f..24614949d0 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-18012 +API version: 1.0.11-18369 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 267eda7f80..8d542fa984 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-18012 +API version: 1.0.11-18369 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 61018239be..f66247da3f 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-18012 +API version: 1.0.11-18369 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 524b0e505e..522ff5ff12 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-18012 +API version: 1.0.11-18369 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 ae1e52b44b..8018316a6d 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-18012 +API version: 1.0.11-18369 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 bd5e68ebd4..e7daaa43e9 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-18012 +API version: 1.0.11-18369 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 e95f115d5f..f6ad2acb2b 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-18012 +API version: 1.0.11-18369 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 6a0aa7eddd..e0da4a3fce 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-18012 +API version: 1.0.11-18369 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 edb0ac1119..167be14bbe 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-18012 +API version: 1.0.11-18369 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 b29385aa58..063c941b18 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-18012 +API version: 1.0.11-18369 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 1d260a1c64..e54e77f2a4 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-18012 +API version: 1.0.11-18369 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 24737e4720..b8692d722b 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-18012 +API version: 1.0.11-18369 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 c91c7f7483..30cf1165a6 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-18012 +API version: 1.0.11-18369 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 1db0041170..f9355faf48 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-18012 +API version: 1.0.11-18369 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 089a951161..e0017d48d0 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-18012 +API version: 1.0.11-18369 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 61fb5bb770..357bc263ea 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-18012 +API version: 1.0.11-18369 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 fc45f21cf2..22f4d10ba0 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-18012 +API version: 1.0.11-18369 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 b543698d41..796601b94b 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-18012 +API version: 1.0.11-18369 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 cd1f20bc46..5bc7f79afb 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-18012 +API version: 1.0.11-18369 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 eaa7ae35bf..0a4f3ae78c 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-18012 +API version: 1.0.11-18369 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 e4afd78102..c0dabf0791 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-18012 +API version: 1.0.11-18369 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 a98f0a8c85..d544c2098d 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-18012 +API version: 1.0.11-18369 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 66c5a48427..45471de63a 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-18012 +API version: 1.0.11-18369 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 d4d0670172..ddedfcd8c7 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-18012 +API version: 1.0.11-18369 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 d0d7974cb4..952b35a1b7 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-18012 +API version: 1.0.11-18369 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 97aad73732..f28b69dd91 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-18012 +API version: 1.0.11-18369 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 7ff2527c31..5bab07f953 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-18012 +API version: 1.0.11-18369 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 deeab92fc7..fa64033b25 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-18012 +API version: 1.0.11-18369 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 43bcca3e9f..f6316a607c 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-18012 +API version: 1.0.11-18369 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 1cc0fefaba..f0452f96ff 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-18012 +API version: 1.0.11-18369 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 3916d87fc2..184ff2df0b 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-18012 +API version: 1.0.11-18369 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 d4837ea2f5..b0038b3c10 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-18012 +API version: 1.0.11-18369 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 2683449018..7d0f65751d 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-18012 +API version: 1.0.11-18369 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 6634cd1fe8..0fbc84857d 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-18012 +API version: 1.0.11-18369 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 9d02b230be..e36f055a18 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-18012 +API version: 1.0.11-18369 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 34a335c29b..02e8788718 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-18012 +API version: 1.0.11-18369 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 7d2f81a9e3..cea65ff962 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-18012 +API version: 1.0.11-18369 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 25eac6d798..c003f6964d 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-18012 +API version: 1.0.11-18369 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 9cfbed351b..7e2fb65a75 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-18012 +API version: 1.0.11-18369 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 9e4690275f..08d87370ba 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-18012 +API version: 1.0.11-18369 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 1c43d0f518..37fa71d4c7 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-18012 +API version: 1.0.11-18369 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 db2dab7c46..69145fa6a7 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-18012 +API version: 1.0.11-18369 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 0172580cc5..2137e1109c 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-18012 +API version: 1.0.11-18369 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 e65bd7ae4b..d2d97dcd04 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-18012 +API version: 1.0.11-18369 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 aa73372421..b31923d59b 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-18012 +API version: 1.0.11-18369 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 fa0114d76b..da862b42ee 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-18012 +API version: 1.0.11-18369 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 5ef44512a0..b7d9d28a66 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-18012 +API version: 1.0.11-18369 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 5549100714..698869e707 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-18012 +API version: 1.0.11-18369 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 a158aa7694..b8b10cf917 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-18012 +API version: 1.0.11-18369 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 57735ef201..ae61423aa6 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-18012 +API version: 1.0.11-18369 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 2cdb51b837..f4ba22fc10 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-18012 +API version: 1.0.11-18369 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 966e9de816..aeb92a0c6c 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-18012 +API version: 1.0.11-18369 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 602a23b8ea..4fe7c2fb78 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-18012 +API version: 1.0.11-18369 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 97c6ed1f2f..d379d9ab72 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-18012 +API version: 1.0.11-18369 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 a7b89217e5..64a6ed04e0 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-18012 +API version: 1.0.11-18369 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 a6578fc020..b794ac1c93 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-18012 +API version: 1.0.11-18369 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 4452292628..25d43e4050 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-18012 +API version: 1.0.11-18369 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 815f6774d3..5d03c26d60 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-18012 +API version: 1.0.11-18369 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 6d5074c023..8715b02500 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-18012 +API version: 1.0.11-18369 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 775d57a9d9..3d84dd4cca 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-18012 +API version: 1.0.11-18369 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 017b95a995..bff43ae155 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-18012 +API version: 1.0.11-18369 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 46b68721d6..b6edc1dc1c 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-18012 +API version: 1.0.11-18369 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 a58046676e..a6f628b675 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-18012 +API version: 1.0.11-18369 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 3cffb0c69a..4cf2f1409a 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-18012 +API version: 1.0.11-18369 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 c570c35e0e..2a5f63c32a 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-18012 +API version: 1.0.11-18369 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 ce477e937c..9168226018 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-18012 +API version: 1.0.11-18369 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 2148d06911..222f082639 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-18012 +API version: 1.0.11-18369 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 eccbad4df0..b41c849737 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-18012 +API version: 1.0.11-18369 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 50621810ea..810296fdcf 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-18012 +API version: 1.0.11-18369 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 5bfe897682..832515f3b9 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 7744ee58d9..3d5d70b7f6 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-18012 +API version: 1.0.11-18369 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 e3bf68d0f2..344a3fa8e2 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-18012 +API version: 1.0.11-18369 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 d402592757..248cb60e4f 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-18012 +API version: 1.0.11-18369 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 8cbc530eb9..6fcf4b19bf 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-18012 +API version: 1.0.11-18369 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 3ccec4873b..8722060913 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 cfad5614b9..32ca7bad83 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 25fbe027c0..9c18e85bc3 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 57f8ea41f5..23fce30936 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-18012 +API version: 1.0.11-18369 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 8fd11b7d31..0b6cebc19a 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-18012 +API version: 1.0.11-18369 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 ffd3615728..5df7ffb039 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-18012 +API version: 1.0.11-18369 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 018942d750..7375502abe 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-18012 +API version: 1.0.11-18369 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 91e791ca5e..e98b74dd82 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-18012 +API version: 1.0.11-18369 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 3be09bb31a..43e7eb8c4e 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-18012 +API version: 1.0.11-18369 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 0fa437b573..e243d84b4c 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-18012 +API version: 1.0.11-18369 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 0755ecaeac..9122d9ac62 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-18012 +API version: 1.0.11-18369 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 2087a4feb5..c8af2770ae 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-18012 +API version: 1.0.11-18369 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 10755f3ecf..90144b9228 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-18012 +API version: 1.0.11-18369 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 a07f58a203..35b518ca99 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-18012 +API version: 1.0.11-18369 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 a5944d9b2c..f5f5bce880 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-18012 +API version: 1.0.11-18369 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 b1700d6b7c..4ed1e7ace1 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-18012 +API version: 1.0.11-18369 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 6cc3ecc7e5..7e21de589f 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-18012 +API version: 1.0.11-18369 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 d62f1d8df5..68dd588977 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-18012 +API version: 1.0.11-18369 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 aa24d184b0..261e2fd7c7 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-18012 +API version: 1.0.11-18369 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 4ebaafbc94..c6f82842b7 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-18012 +API version: 1.0.11-18369 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 543cf3231b..ffa6843419 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-18012 +API version: 1.0.11-18369 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 e783e94333..f532227f29 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-18012 +API version: 1.0.11-18369 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 cab1d4854a..d0be8edf87 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-18012 +API version: 1.0.11-18369 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 813db9e942..9443e71a47 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-18012 +API version: 1.0.11-18369 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 3e11cc9e98..e0338ef468 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-18012 +API version: 1.0.11-18369 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 9fafca5bbd..9ecea1697c 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-18012 +API version: 1.0.11-18369 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 ce425ee543..f20f4abd90 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-18012 +API version: 1.0.11-18369 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 82f81b1d49..a4a0b631a3 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-18012 +API version: 1.0.11-18369 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 35089416b5..c72ca2693a 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-18012 +API version: 1.0.11-18369 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 8d7f1663cc..a861867362 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-18012 +API version: 1.0.11-18369 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 ddce2387b4..f76fa46843 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-18012 +API version: 1.0.11-18369 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 6500c38277..7ea8a35a0f 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-18012 +API version: 1.0.11-18369 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 f775a54d63..0f2787df10 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-18012 +API version: 1.0.11-18369 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 a445aeafcd..b2c24775ad 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-18012 +API version: 1.0.11-18369 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 2fe9f6fcab..e4493dcc63 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-18012 +API version: 1.0.11-18369 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 b4cb4fe68d..5f08cb6f63 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-18012 +API version: 1.0.11-18369 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 9c1aacaf5a..eb02ef6ea5 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-18012 +API version: 1.0.11-18369 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 db181fd024..fa7e1a17bc 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-18012 +API version: 1.0.11-18369 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 9525614e4f..96b67847c5 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-18012 +API version: 1.0.11-18369 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 114029fce6..296fc28830 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-18012 +API version: 1.0.11-18369 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 8e201579f0..1986a76b88 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-18012 +API version: 1.0.11-18369 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 a7ed3c4894..c4c851ef52 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-18012 +API version: 1.0.11-18369 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 5ee6ef5b2c..988e2dc6c1 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-18012 +API version: 1.0.11-18369 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 00ca6a490a..8611653305 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-18012 +API version: 1.0.11-18369 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 f3d407ee9e..d5d4e04608 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-18012 +API version: 1.0.11-18369 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 3daf6a9b4a..fa3146f22e 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-18012 +API version: 1.0.11-18369 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 43bf02ed4e..fdd3fc4540 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-18012 +API version: 1.0.11-18369 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 195a89e4de..4554cf95bf 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-18012 +API version: 1.0.11-18369 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 ff959822d5..65d0dfb91b 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-18012 +API version: 1.0.11-18369 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 18b775422f..65ca3de28d 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-18012 +API version: 1.0.11-18369 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 81da9ea294..5116fceb18 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-18012 +API version: 1.0.11-18369 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 f57852790f..922ba796a3 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-18012 +API version: 1.0.11-18369 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 13ab1d84f7..3bd19a890b 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 32e6c69bc4..55e7cae257 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-18012 +API version: 1.0.11-18369 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 fd1d8a6466..a412863ad4 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-18012 +API version: 1.0.11-18369 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 5980e8e0f6..74e36d505b 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-18012 +API version: 1.0.11-18369 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 d6ff24bb96..f095c5ae69 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-18012 +API version: 1.0.11-18369 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 610ba4b348..5f9c6335dd 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-18012 +API version: 1.0.11-18369 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 bf4b1dae7b..e113a28685 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-18012 +API version: 1.0.11-18369 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 fd246b44f4..c820d18bb2 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-18012 +API version: 1.0.11-18369 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 5e475cb148..351efea8b1 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ @@ -50,9 +50,11 @@ type ComputeServerSetting struct { // The property used to identify the name of the server it is associated with. Name *string `json:"Name,omitempty"` // The name of the device chosen by user for configuring One-Time Boot device. - OneTimeBootDevice *string `json:"OneTimeBootDevice,omitempty"` - PersistentMemoryOperation NullableComputePersistentMemoryOperation `json:"PersistentMemoryOperation,omitempty"` - PersonalitySetting NullableComputePersonalitySetting `json:"PersonalitySetting,omitempty"` + OneTimeBootDevice *string `json:"OneTimeBootDevice,omitempty"` + PersistentMemoryOperation NullableComputePersistentMemoryOperation `json:"PersistentMemoryOperation,omitempty"` + PersonalitySetting NullableComputePersonalitySetting `json:"PersonalitySetting,omitempty"` + // Reset Correctable and Uncorrectable ECC errors on all the DIMMs present in the server. * `Ready` - Reset memory errors operation is allowed on the server in this state. * `Reset` - Trigger reset memory errors operation on a server. + ResetMemoryErrors *string `json:"ResetMemoryErrors,omitempty"` ServerConfig NullableComputeServerConfig `json:"ServerConfig,omitempty"` ServerOpStatus []ComputeServerOpStatus `json:"ServerOpStatus,omitempty"` StorageControllerOperation NullableComputeStorageControllerOperation `json:"StorageControllerOperation,omitempty"` @@ -94,6 +96,8 @@ func NewComputeServerSetting(classId string, objectType string) *ComputeServerSe this.FrontPanelLockState = &frontPanelLockState var kvmReset string = "Ready" this.KvmReset = &kvmReset + var resetMemoryErrors string = "Ready" + this.ResetMemoryErrors = &resetMemoryErrors var tpmReset string = "None" this.TpmReset = &tpmReset var tunneledKvmState string = "Ready" @@ -124,6 +128,8 @@ func NewComputeServerSettingWithDefaults() *ComputeServerSetting { this.FrontPanelLockState = &frontPanelLockState var kvmReset string = "Ready" this.KvmReset = &kvmReset + var resetMemoryErrors string = "Ready" + this.ResetMemoryErrors = &resetMemoryErrors var tpmReset string = "None" this.TpmReset = &tpmReset var tunneledKvmState string = "Ready" @@ -670,6 +676,38 @@ func (o *ComputeServerSetting) UnsetPersonalitySetting() { o.PersonalitySetting.Unset() } +// GetResetMemoryErrors returns the ResetMemoryErrors field value if set, zero value otherwise. +func (o *ComputeServerSetting) GetResetMemoryErrors() string { + if o == nil || IsNil(o.ResetMemoryErrors) { + var ret string + return ret + } + return *o.ResetMemoryErrors +} + +// GetResetMemoryErrorsOk returns a tuple with the ResetMemoryErrors field value if set, nil otherwise +// and a boolean to check if the value has been set. +func (o *ComputeServerSetting) GetResetMemoryErrorsOk() (*string, bool) { + if o == nil || IsNil(o.ResetMemoryErrors) { + return nil, false + } + return o.ResetMemoryErrors, true +} + +// HasResetMemoryErrors returns a boolean if a field has been set. +func (o *ComputeServerSetting) HasResetMemoryErrors() bool { + if o != nil && !IsNil(o.ResetMemoryErrors) { + return true + } + + return false +} + +// SetResetMemoryErrors gets a reference to the given string and assigns it to the ResetMemoryErrors field. +func (o *ComputeServerSetting) SetResetMemoryErrors(v string) { + o.ResetMemoryErrors = &v +} + // GetServerConfig returns the ServerConfig field value if set, zero value otherwise (both if not set or set to explicit null). func (o *ComputeServerSetting) GetServerConfig() ComputeServerConfig { if o == nil || IsNil(o.ServerConfig.Get()) { @@ -1222,6 +1260,9 @@ func (o ComputeServerSetting) ToMap() (map[string]interface{}, error) { if o.PersonalitySetting.IsSet() { toSerialize["PersonalitySetting"] = o.PersonalitySetting.Get() } + if !IsNil(o.ResetMemoryErrors) { + toSerialize["ResetMemoryErrors"] = o.ResetMemoryErrors + } if o.ServerConfig.IsSet() { toSerialize["ServerConfig"] = o.ServerConfig.Get() } @@ -1335,9 +1376,11 @@ func (o *ComputeServerSetting) UnmarshalJSON(data []byte) (err error) { // The property used to identify the name of the server it is associated with. Name *string `json:"Name,omitempty"` // The name of the device chosen by user for configuring One-Time Boot device. - OneTimeBootDevice *string `json:"OneTimeBootDevice,omitempty"` - PersistentMemoryOperation NullableComputePersistentMemoryOperation `json:"PersistentMemoryOperation,omitempty"` - PersonalitySetting NullableComputePersonalitySetting `json:"PersonalitySetting,omitempty"` + OneTimeBootDevice *string `json:"OneTimeBootDevice,omitempty"` + PersistentMemoryOperation NullableComputePersistentMemoryOperation `json:"PersistentMemoryOperation,omitempty"` + PersonalitySetting NullableComputePersonalitySetting `json:"PersonalitySetting,omitempty"` + // Reset Correctable and Uncorrectable ECC errors on all the DIMMs present in the server. * `Ready` - Reset memory errors operation is allowed on the server in this state. * `Reset` - Trigger reset memory errors operation on a server. + ResetMemoryErrors *string `json:"ResetMemoryErrors,omitempty"` ServerConfig NullableComputeServerConfig `json:"ServerConfig,omitempty"` ServerOpStatus []ComputeServerOpStatus `json:"ServerOpStatus,omitempty"` StorageControllerOperation NullableComputeStorageControllerOperation `json:"StorageControllerOperation,omitempty"` @@ -1375,6 +1418,7 @@ func (o *ComputeServerSetting) UnmarshalJSON(data []byte) (err error) { varComputeServerSetting.OneTimeBootDevice = varComputeServerSettingWithoutEmbeddedStruct.OneTimeBootDevice varComputeServerSetting.PersistentMemoryOperation = varComputeServerSettingWithoutEmbeddedStruct.PersistentMemoryOperation varComputeServerSetting.PersonalitySetting = varComputeServerSettingWithoutEmbeddedStruct.PersonalitySetting + varComputeServerSetting.ResetMemoryErrors = varComputeServerSettingWithoutEmbeddedStruct.ResetMemoryErrors varComputeServerSetting.ServerConfig = varComputeServerSettingWithoutEmbeddedStruct.ServerConfig varComputeServerSetting.ServerOpStatus = varComputeServerSettingWithoutEmbeddedStruct.ServerOpStatus varComputeServerSetting.StorageControllerOperation = varComputeServerSettingWithoutEmbeddedStruct.StorageControllerOperation @@ -1420,6 +1464,7 @@ func (o *ComputeServerSetting) UnmarshalJSON(data []byte) (err error) { delete(additionalProperties, "OneTimeBootDevice") delete(additionalProperties, "PersistentMemoryOperation") delete(additionalProperties, "PersonalitySetting") + delete(additionalProperties, "ResetMemoryErrors") delete(additionalProperties, "ServerConfig") delete(additionalProperties, "ServerOpStatus") delete(additionalProperties, "StorageControllerOperation") 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 ea6a7ec020..2ec71a1a96 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-18012 +API version: 1.0.11-18369 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 f36fcc30b8..9f955d2901 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-18012 +API version: 1.0.11-18369 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 07e2ad38ce..e16c7dbd0a 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-18012 +API version: 1.0.11-18369 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 ca45e0b6f5..9e13883c00 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-18012 +API version: 1.0.11-18369 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 872510c489..dbd142fffe 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-18012 +API version: 1.0.11-18369 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 ae1e8f6b4d..a063ccf1fb 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-18012 +API version: 1.0.11-18369 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 ce214b5342..9e857ce0b5 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-18012 +API version: 1.0.11-18369 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 315644826a..5d1d8a84fa 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-18012 +API version: 1.0.11-18369 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 23ef3973a9..31a7b2beb9 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-18012 +API version: 1.0.11-18369 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 2a4fe64bc9..611f1b69e9 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-18012 +API version: 1.0.11-18369 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 60adc48830..cf2db438f6 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-18012 +API version: 1.0.11-18369 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 3ce71dc3d4..fbd1d05d48 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-18012 +API version: 1.0.11-18369 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 6a689355d4..7ad5f42e8e 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-18012 +API version: 1.0.11-18369 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 a0b9e369c3..96910a29a5 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-18012 +API version: 1.0.11-18369 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 b81a3f3ecf..713a0b9692 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-18012 +API version: 1.0.11-18369 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 ce88a62149..e7f836cb2a 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-18012 +API version: 1.0.11-18369 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 d0e3caebc8..ce661ccadd 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-18012 +API version: 1.0.11-18369 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 6c6e811e6c..cf488c9022 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 2ca59d8fb8..d6c4e78424 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-18012 +API version: 1.0.11-18369 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 e0bb7faf42..52a3d61f85 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-18012 +API version: 1.0.11-18369 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 d47373dd99..b25109082b 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-18012 +API version: 1.0.11-18369 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 d0dac180f5..5f65c784d2 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-18012 +API version: 1.0.11-18369 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 975d242d4b..8bc01916a3 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-18012 +API version: 1.0.11-18369 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 09b4fc36c4..a5de8d0d48 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-18012 +API version: 1.0.11-18369 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 14ce10397c..7ce48ad861 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-18012 +API version: 1.0.11-18369 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 923c3b2edc..4bf171b1ca 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-18012 +API version: 1.0.11-18369 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 c0e835492a..0c56b947c1 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-18012 +API version: 1.0.11-18369 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 73a7aa1c4b..0676f00e1c 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-18012 +API version: 1.0.11-18369 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 5d6ad55057..ec4afda130 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-18012 +API version: 1.0.11-18369 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 58d11e44fd..2fec44086e 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-18012 +API version: 1.0.11-18369 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 d4e8e78806..d5a10d4314 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-18012 +API version: 1.0.11-18369 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 f8df0917db..455238f89d 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-18012 +API version: 1.0.11-18369 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 a306c23b9c..160105847f 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-18012 +API version: 1.0.11-18369 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 762ac69573..0944181936 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-18012 +API version: 1.0.11-18369 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 8e8f255fbf..813c6c01c8 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-18012 +API version: 1.0.11-18369 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 2e82ec8243..bb982bcee4 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-18012 +API version: 1.0.11-18369 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 d9aa917bc4..6379490fa7 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-18012 +API version: 1.0.11-18369 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 6b3dba85ae..da093019e9 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-18012 +API version: 1.0.11-18369 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 ce8e5a028d..7557c3e925 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-18012 +API version: 1.0.11-18369 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 d6eb3e3532..3c734aa8f0 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-18012 +API version: 1.0.11-18369 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 cd1c87791c..1fdf4e311c 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-18012 +API version: 1.0.11-18369 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 e52c204b18..95dc04f0ee 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-18012 +API version: 1.0.11-18369 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 97e824b9b6..56825ac05c 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-18012 +API version: 1.0.11-18369 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 1904b23b4c..a1159b53f2 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-18012 +API version: 1.0.11-18369 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 de0b38cc81..78f685ea76 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-18012 +API version: 1.0.11-18369 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 8970e17dcc..abc8ad761a 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-18012 +API version: 1.0.11-18369 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 eebe5b6c34..60004cc53e 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-18012 +API version: 1.0.11-18369 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 a5953c9d9f..d8381454a0 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-18012 +API version: 1.0.11-18369 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 3cb2119924..b6c476d4cb 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-18012 +API version: 1.0.11-18369 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 6db9078177..b2c61e4205 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-18012 +API version: 1.0.11-18369 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 ad5048ba1c..07cdf7ee21 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-18012 +API version: 1.0.11-18369 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 b8abd42a8e..4b323bcc5a 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-18012 +API version: 1.0.11-18369 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 372ef6fe00..196e4be34d 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-18012 +API version: 1.0.11-18369 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 5abfb1dcca..09c1809791 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-18012 +API version: 1.0.11-18369 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 49c3d65059..d725b7c1d8 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-18012 +API version: 1.0.11-18369 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 142d023f50..d93f4cf0a4 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-18012 +API version: 1.0.11-18369 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 5632ec4cd9..45656f79dd 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-18012 +API version: 1.0.11-18369 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 97b3ded10a..5388bb7cf5 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-18012 +API version: 1.0.11-18369 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 f544edc241..cccd0ad7a0 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-18012 +API version: 1.0.11-18369 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 1d708d3e02..c04b8e5660 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-18012 +API version: 1.0.11-18369 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 3089b2dbe5..91e1661033 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-18012 +API version: 1.0.11-18369 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 0a523eb492..270b51a09a 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-18012 +API version: 1.0.11-18369 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 afb0129891..53d9ca2687 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-18012 +API version: 1.0.11-18369 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 41761f15af..d3fe892af4 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-18012 +API version: 1.0.11-18369 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 014bb83e71..85a52ac5a7 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-18012 +API version: 1.0.11-18369 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 e765e15446..8948894829 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-18012 +API version: 1.0.11-18369 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 07ea6e5ccc..ce5dd24c19 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-18012 +API version: 1.0.11-18369 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 c8b50e783f..e6f16ff72c 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-18012 +API version: 1.0.11-18369 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 6c9304ad39..e2efbbecc8 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-18012 +API version: 1.0.11-18369 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 2e819d9d34..2ff9069ce6 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-18012 +API version: 1.0.11-18369 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 5120476e83..d023419c6a 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-18012 +API version: 1.0.11-18369 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 49201b8c90..2127f62ffc 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-18012 +API version: 1.0.11-18369 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 bd36a5390f..856f59cbc0 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-18012 +API version: 1.0.11-18369 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 cbddb9d307..ca520ea279 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-18012 +API version: 1.0.11-18369 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 23034cd039..bc434c0417 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-18012 +API version: 1.0.11-18369 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 93410d40ff..1a51acccc7 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-18012 +API version: 1.0.11-18369 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 c40f2ca153..4a820a218d 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-18012 +API version: 1.0.11-18369 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 944fe2a511..fe5bb916c1 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-18012 +API version: 1.0.11-18369 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 6c98f6d1e9..07df70781b 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-18012 +API version: 1.0.11-18369 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 88ed9f83e7..47f61aba2d 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-18012 +API version: 1.0.11-18369 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 d51a2d3752..c1689667b6 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-18012 +API version: 1.0.11-18369 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 94ae9df52a..2c88fe528b 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-18012 +API version: 1.0.11-18369 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 2970bfa1b5..ac2d96fa00 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 6cfe20b5a5..32fc71dbdc 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-18012 +API version: 1.0.11-18369 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 2c2f40ab92..7dcc7f98bb 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-18012 +API version: 1.0.11-18369 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 75c934fb08..fc3f903e2a 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-18012 +API version: 1.0.11-18369 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 ead7ecee5d..f336e15562 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-18012 +API version: 1.0.11-18369 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 de8cf99bd9..fcae654cf6 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-18012 +API version: 1.0.11-18369 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 dfe8134c88..a560c4e3ad 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-18012 +API version: 1.0.11-18369 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 4d238b6a45..e6f470fab3 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-18012 +API version: 1.0.11-18369 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 91e5380583..340def8e77 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-18012 +API version: 1.0.11-18369 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 185bf37f29..b4c503bade 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-18012 +API version: 1.0.11-18369 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 2eeefa6b17..fd9ebf4843 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-18012 +API version: 1.0.11-18369 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 7e49f7c86b..1562c9816b 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 6ae0b0cf1a..ad3f283aa8 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-18012 +API version: 1.0.11-18369 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 3d1978a218..c4ef3bcbaa 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-18012 +API version: 1.0.11-18369 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 3707727e3f..47e0628004 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-18012 +API version: 1.0.11-18369 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 38ca5b27f2..ab709867cf 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-18012 +API version: 1.0.11-18369 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 806fdf1dc6..87d78008c5 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-18012 +API version: 1.0.11-18369 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 f09e094dfa..2e2f7d0625 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-18012 +API version: 1.0.11-18369 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 8be1c09020..497d843688 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-18012 +API version: 1.0.11-18369 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 8071b5c05b..30a1e1f337 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-18012 +API version: 1.0.11-18369 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 4d2fd1b2dd..5be4205f5d 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-18012 +API version: 1.0.11-18369 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 977e885348..ee683b99a2 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-18012 +API version: 1.0.11-18369 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 021abd53a6..f6d139f590 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-18012 +API version: 1.0.11-18369 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 ae8fcb878d..9f922b243a 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-18012 +API version: 1.0.11-18369 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 a6c445a249..64c60cd612 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-18012 +API version: 1.0.11-18369 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 169125ecb4..0c02758ea8 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-18012 +API version: 1.0.11-18369 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 a5a624a6b1..8a0e7e5dc0 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-18012 +API version: 1.0.11-18369 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 6adf05ad65..e0dc496fff 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-18012 +API version: 1.0.11-18369 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 0c459c9c98..cd630361ea 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-18012 +API version: 1.0.11-18369 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 a53b92a360..b401d8e166 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-18012 +API version: 1.0.11-18369 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 88e697d50a..f4abaaad52 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-18012 +API version: 1.0.11-18369 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 63604cfe54..8e01410ad9 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-18012 +API version: 1.0.11-18369 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 efef2b8c44..2f3e99bc8c 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-18012 +API version: 1.0.11-18369 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 afc4e9d513..2f5c682923 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-18012 +API version: 1.0.11-18369 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 931608738b..e2ba370990 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-18012 +API version: 1.0.11-18369 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 347adb2a5a..7781747487 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-18012 +API version: 1.0.11-18369 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 e528a44ead..586f663a97 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-18012 +API version: 1.0.11-18369 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 024c7bd500..c9eed9e209 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-18012 +API version: 1.0.11-18369 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 04927ba041..27274ffee8 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-18012 +API version: 1.0.11-18369 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 7e00b2369d..5b040c02ed 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-18012 +API version: 1.0.11-18369 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 37f11fbcae..636f1ba83a 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-18012 +API version: 1.0.11-18369 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 7c40978589..8a9dea72b1 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-18012 +API version: 1.0.11-18369 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 bb816b37d5..8be0ca689b 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-18012 +API version: 1.0.11-18369 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 d52a45257f..e17ec31d7e 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-18012 +API version: 1.0.11-18369 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 4c8a6ab2b8..6e387d1eab 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-18012 +API version: 1.0.11-18369 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 621fdbf0eb..56f80aaa80 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-18012 +API version: 1.0.11-18369 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 0c33337a1e..af4d94c5f6 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-18012 +API version: 1.0.11-18369 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 1706c00a7b..0a6e076ac9 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-18012 +API version: 1.0.11-18369 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 4426095eae..33a5d1ed91 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-18012 +API version: 1.0.11-18369 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 27b18628c5..5e73949cf0 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-18012 +API version: 1.0.11-18369 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 fdb380876c..63a3e476ee 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-18012 +API version: 1.0.11-18369 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 71a3764e3d..479511a9d8 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-18012 +API version: 1.0.11-18369 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 4a90d82f5d..5fc069d74d 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-18012 +API version: 1.0.11-18369 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 67e029612d..ddb135a48c 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-18012 +API version: 1.0.11-18369 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 22c5ecd709..492ecc1764 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-18012 +API version: 1.0.11-18369 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 8a48a4dbc2..6a0a1f07ce 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-18012 +API version: 1.0.11-18369 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 d91ac2d8f6..c204a5f528 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-18012 +API version: 1.0.11-18369 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 ed11666a10..e943653546 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-18012 +API version: 1.0.11-18369 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 3dc3c6d16e..c46c3d6f54 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-18012 +API version: 1.0.11-18369 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 53f1a54980..59ea77c352 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-18012 +API version: 1.0.11-18369 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 f545ac3bb2..1b9d6a9636 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-18012 +API version: 1.0.11-18369 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 fca1a71b20..505ac53c34 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-18012 +API version: 1.0.11-18369 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 17da77de99..236e82cfd4 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-18012 +API version: 1.0.11-18369 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 93e3ef9445..1e586f817e 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-18012 +API version: 1.0.11-18369 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 041fcf041c..1cae5fd83f 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-18012 +API version: 1.0.11-18369 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 d480ef5b1f..10a7f91309 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-18012 +API version: 1.0.11-18369 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 f592922a03..fea93c2407 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-18012 +API version: 1.0.11-18369 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 555da323af..3962ff5442 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-18012 +API version: 1.0.11-18369 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 61310291c8..d9a650dfcf 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-18012 +API version: 1.0.11-18369 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 514894c8f5..ef96e686ca 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-18012 +API version: 1.0.11-18369 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 823a719949..1945d127a3 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-18012 +API version: 1.0.11-18369 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 20b83cc4a6..30daf9bc8e 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-18012 +API version: 1.0.11-18369 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 a0e336d78d..32fc7f86f4 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_energy_metrics.go b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_energy_metrics.go new file mode 100644 index 0000000000..a6126d4c14 --- /dev/null +++ b/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_energy_metrics.go @@ -0,0 +1,200 @@ +/* +Cisco Intersight + +Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. + +API version: 1.0.11-18369 +Contact: intersight@cisco.com +*/ + +// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. + +package intersight + +import ( + "encoding/json" + "fmt" + "reflect" + "strings" +) + +// checks if the EnergyMetrics type satisfies the MappedNullable interface at compile time +var _ MappedNullable = &EnergyMetrics{} + +// EnergyMetrics Returns carbon intensity, power breakdown, and electricity rate power metrics for a set of locations and a time span. +type EnergyMetrics struct { + MoBaseMo + AdditionalProperties map[string]interface{} +} + +type _EnergyMetrics EnergyMetrics + +// NewEnergyMetrics instantiates a new EnergyMetrics object +// This constructor will assign default values to properties that have it defined, +// and makes sure properties required by API are set, but the set of arguments +// will change when the set of required properties is changed +func NewEnergyMetrics(classId string, objectType string) *EnergyMetrics { + this := EnergyMetrics{} + this.ClassId = classId + this.ObjectType = objectType + return &this +} + +// NewEnergyMetricsWithDefaults instantiates a new EnergyMetrics object +// This constructor will only assign default values to properties that have it defined, +// but it doesn't guarantee that properties required by API are set +func NewEnergyMetricsWithDefaults() *EnergyMetrics { + this := EnergyMetrics{} + return &this +} + +func (o EnergyMetrics) MarshalJSON() ([]byte, error) { + toSerialize, err := o.ToMap() + if err != nil { + return []byte{}, err + } + return json.Marshal(toSerialize) +} + +func (o EnergyMetrics) ToMap() (map[string]interface{}, error) { + toSerialize := map[string]interface{}{} + serializedMoBaseMo, errMoBaseMo := json.Marshal(o.MoBaseMo) + if errMoBaseMo != nil { + return map[string]interface{}{}, errMoBaseMo + } + errMoBaseMo = json.Unmarshal([]byte(serializedMoBaseMo), &toSerialize) + if errMoBaseMo != nil { + return map[string]interface{}{}, errMoBaseMo + } + + for key, value := range o.AdditionalProperties { + toSerialize[key] = value + } + + return toSerialize, nil +} + +func (o *EnergyMetrics) UnmarshalJSON(data []byte) (err error) { + // This validates that all required properties are included in the JSON object + // by unmarshalling the object into a generic map with string keys and checking + // that every required field exists as a key in the generic map. + requiredProperties := []string{ + "ClassId", + "ObjectType", + } + + // defaultValueFuncMap captures the default values for required properties. + // These values are used when required properties are missing from the payload. + defaultValueFuncMap := map[string]func() interface{}{} + var defaultValueApplied bool + allProperties := make(map[string]interface{}) + + err = json.Unmarshal(data, &allProperties) + + if err != nil { + return err + } + + for _, requiredProperty := range requiredProperties { + if value, exists := allProperties[requiredProperty]; !exists || value == "" { + if _, ok := defaultValueFuncMap[requiredProperty]; ok { + allProperties[requiredProperty] = defaultValueFuncMap[requiredProperty]() + defaultValueApplied = true + } + } + if value, exists := allProperties[requiredProperty]; !exists || value == "" { + return fmt.Errorf("no value given for required property %v", requiredProperty) + } + } + + if defaultValueApplied { + data, err = json.Marshal(allProperties) + if err != nil { + return err + } + } + type EnergyMetricsWithoutEmbeddedStruct struct { + } + + varEnergyMetricsWithoutEmbeddedStruct := EnergyMetricsWithoutEmbeddedStruct{} + + err = json.Unmarshal(data, &varEnergyMetricsWithoutEmbeddedStruct) + if err == nil { + varEnergyMetrics := _EnergyMetrics{} + *o = EnergyMetrics(varEnergyMetrics) + } else { + return err + } + + varEnergyMetrics := _EnergyMetrics{} + + err = json.Unmarshal(data, &varEnergyMetrics) + if err == nil { + o.MoBaseMo = varEnergyMetrics.MoBaseMo + } else { + return err + } + + additionalProperties := make(map[string]interface{}) + + if err = json.Unmarshal(data, &additionalProperties); err == nil { + + // remove fields from embedded structs + reflectMoBaseMo := reflect.ValueOf(o.MoBaseMo) + for i := 0; i < reflectMoBaseMo.Type().NumField(); i++ { + t := reflectMoBaseMo.Type().Field(i) + + if jsonTag := t.Tag.Get("json"); jsonTag != "" { + fieldName := "" + if commaIdx := strings.Index(jsonTag, ","); commaIdx > 0 { + fieldName = jsonTag[:commaIdx] + } else { + fieldName = jsonTag + } + if fieldName != "AdditionalProperties" { + delete(additionalProperties, fieldName) + } + } + } + + o.AdditionalProperties = additionalProperties + } + + return err +} + +type NullableEnergyMetrics struct { + value *EnergyMetrics + isSet bool +} + +func (v NullableEnergyMetrics) Get() *EnergyMetrics { + return v.value +} + +func (v *NullableEnergyMetrics) Set(val *EnergyMetrics) { + v.value = val + v.isSet = true +} + +func (v NullableEnergyMetrics) IsSet() bool { + return v.isSet +} + +func (v *NullableEnergyMetrics) Unset() { + v.value = nil + v.isSet = false +} + +func NewNullableEnergyMetrics(val *EnergyMetrics) *NullableEnergyMetrics { + return &NullableEnergyMetrics{value: val, isSet: true} +} + +func (v NullableEnergyMetrics) MarshalJSON() ([]byte, error) { + return json.Marshal(v.value) +} + +func (v *NullableEnergyMetrics) UnmarshalJSON(src []byte) error { + v.isSet = true + return json.Unmarshal(src, &v.value) +} 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 4363d304b3..8c3ab8f462 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 701b6a8819..0b244d4eae 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-18012 +API version: 1.0.11-18369 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 a75b233673..eb38913a91 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-18012 +API version: 1.0.11-18369 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 dbe157c496..ab896fd483 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-18012 +API version: 1.0.11-18369 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 5e8f5b93d3..9e9185dcfe 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 0ed2eec422..9b5e745161 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-18012 +API version: 1.0.11-18369 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 ed178e790f..120f11041e 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-18012 +API version: 1.0.11-18369 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 45289749eb..e4a86da64c 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-18012 +API version: 1.0.11-18369 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 05495a318b..3942f2ace1 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-18012 +API version: 1.0.11-18369 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 9d0e236e05..0db48a859c 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-18012 +API version: 1.0.11-18369 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 558f853cd8..22a0886e5b 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-18012 +API version: 1.0.11-18369 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 5c628e0925..4adc76b74c 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-18012 +API version: 1.0.11-18369 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 5f97b4e5cf..bbffa4809b 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-18012 +API version: 1.0.11-18369 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 28937f352b..3d9b1c63f1 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-18012 +API version: 1.0.11-18369 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 73205de594..7c1bcb7fc4 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-18012 +API version: 1.0.11-18369 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 a1f8b9c599..6794819a3d 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-18012 +API version: 1.0.11-18369 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 af9573bd4d..70207dd45d 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-18012 +API version: 1.0.11-18369 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 7d1c945dd6..aa58ba44da 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-18012 +API version: 1.0.11-18369 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 edb28c12e4..a8b2a1ae5b 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-18012 +API version: 1.0.11-18369 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 3bc959fb57..10f04e81b3 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-18012 +API version: 1.0.11-18369 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 cfd73f43be..2cae9289f7 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-18012 +API version: 1.0.11-18369 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 b4fa903cdd..6e369e29b9 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-18012 +API version: 1.0.11-18369 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 44086f8ac4..8093c94478 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-18012 +API version: 1.0.11-18369 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 1eb352d79e..d6257c69bc 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-18012 +API version: 1.0.11-18369 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 a8090bd1ff..32f6b94bf4 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-18012 +API version: 1.0.11-18369 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 b32cb449e8..dfa88c8b3b 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-18012 +API version: 1.0.11-18369 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 769d2ae3ee..9e49290e92 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-18012 +API version: 1.0.11-18369 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 7d557b6e48..9bfca15bb8 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-18012 +API version: 1.0.11-18369 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 10c956a842..9e1759cdda 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-18012 +API version: 1.0.11-18369 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 70c8898200..4381fe113e 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-18012 +API version: 1.0.11-18369 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 16ab43847a..9e07e6e7a0 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-18012 +API version: 1.0.11-18369 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 62cdfddb20..b355a0b3c2 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-18012 +API version: 1.0.11-18369 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 76e9aee408..52419787fb 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-18012 +API version: 1.0.11-18369 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 d7fc831033..41f6a03b00 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-18012 +API version: 1.0.11-18369 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 8ff9d91c44..b67d66e4fc 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-18012 +API version: 1.0.11-18369 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 d294a298d4..a29df76a6d 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-18012 +API version: 1.0.11-18369 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 dfe3313fdb..32472e6c46 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-18012 +API version: 1.0.11-18369 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 d3b2b3203f..ce771c358e 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-18012 +API version: 1.0.11-18369 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 ae10e97111..31eae5c640 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-18012 +API version: 1.0.11-18369 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 daacff717e..428f5b0ad2 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-18012 +API version: 1.0.11-18369 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 1421ba734f..15651298d6 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-18012 +API version: 1.0.11-18369 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 65249476bd..75d9dc1704 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-18012 +API version: 1.0.11-18369 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 c54c7af030..34504e53a5 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-18012 +API version: 1.0.11-18369 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 678b7f78dd..f69962f27f 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-18012 +API version: 1.0.11-18369 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 f5eb7f1ea7..eb6a4b9e86 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-18012 +API version: 1.0.11-18369 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 509697e48b..b8d20f8a20 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-18012 +API version: 1.0.11-18369 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 90f3715037..ed6d0255c0 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-18012 +API version: 1.0.11-18369 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 353a60bdcf..0fe728a20f 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-18012 +API version: 1.0.11-18369 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 ea2c646370..b2f09dfa85 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-18012 +API version: 1.0.11-18369 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 4660a9bbb9..f6d5ba2582 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-18012 +API version: 1.0.11-18369 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 e05389f91d..e23a4ec685 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-18012 +API version: 1.0.11-18369 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 371f6cfd8a..f371663085 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-18012 +API version: 1.0.11-18369 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 effcda753e..21f3cda526 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-18012 +API version: 1.0.11-18369 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 e3a5b48fb0..8d16f5e27d 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-18012 +API version: 1.0.11-18369 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 ec57259952..cbe000d5cf 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-18012 +API version: 1.0.11-18369 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 7929007178..a4d7bbbc39 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-18012 +API version: 1.0.11-18369 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 245bc28802..bd10670bc7 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-18012 +API version: 1.0.11-18369 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 761d60dcdc..493ceb5867 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-18012 +API version: 1.0.11-18369 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 4a706f20b8..6897e8172c 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-18012 +API version: 1.0.11-18369 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 8d162bc106..caa3bc9e76 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-18012 +API version: 1.0.11-18369 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 8499d6f2da..f8d0ede4f0 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-18012 +API version: 1.0.11-18369 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 cfe7716622..a3174f7766 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-18012 +API version: 1.0.11-18369 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 46e332f548..e2cbaa5283 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-18012 +API version: 1.0.11-18369 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 7dba955144..4894c37265 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-18012 +API version: 1.0.11-18369 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 9eac91e59a..279a9ef8ea 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-18012 +API version: 1.0.11-18369 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 019b093bc6..976608f528 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-18012 +API version: 1.0.11-18369 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 045fcb865e..17b038645c 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-18012 +API version: 1.0.11-18369 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 0bc9963640..5f39303f2f 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-18012 +API version: 1.0.11-18369 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 3d87d145ad..9298cabe4e 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-18012 +API version: 1.0.11-18369 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 c52f6859ad..3502b752ee 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-18012 +API version: 1.0.11-18369 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 531e96ed7e..5cb7375167 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-18012 +API version: 1.0.11-18369 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 6ec0e48400..62c210af11 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-18012 +API version: 1.0.11-18369 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 07a1838ba9..ce361a894e 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-18012 +API version: 1.0.11-18369 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 73d7852cdc..3072f9b868 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-18012 +API version: 1.0.11-18369 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 f953029282..7dd04297a3 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-18012 +API version: 1.0.11-18369 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 5e9c47e0d6..5d9ee61492 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-18012 +API version: 1.0.11-18369 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 77670b4aa4..af478f59b2 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-18012 +API version: 1.0.11-18369 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 7142fc9275..6c0aadcce8 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-18012 +API version: 1.0.11-18369 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 768659695e..79977a5841 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-18012 +API version: 1.0.11-18369 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 4fdeff3f18..cfc3bfde02 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-18012 +API version: 1.0.11-18369 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 7daf5f7187..dbb45465ff 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-18012 +API version: 1.0.11-18369 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 9e11f3a65a..8d4f1bfea5 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-18012 +API version: 1.0.11-18369 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 38c158e25e..ce1901e815 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-18012 +API version: 1.0.11-18369 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 4b6e28e909..d2ea8930f9 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-18012 +API version: 1.0.11-18369 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 e9f26608fc..bca0f9ca4e 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-18012 +API version: 1.0.11-18369 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 c93252f0b3..ba4ce3c7f0 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-18012 +API version: 1.0.11-18369 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 228e9b7945..ac888a9a78 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-18012 +API version: 1.0.11-18369 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 dc256b311e..cf18d09269 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-18012 +API version: 1.0.11-18369 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 6e31dff87d..78855df81a 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-18012 +API version: 1.0.11-18369 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 3b93b201aa..6cfc83c8bb 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-18012 +API version: 1.0.11-18369 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 75d715417b..45302f4a53 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-18012 +API version: 1.0.11-18369 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 69c805f806..8d9668e080 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-18012 +API version: 1.0.11-18369 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 92ed5d83d7..9f6eacf2f0 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-18012 +API version: 1.0.11-18369 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 294f9b58ff..b49141a38f 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-18012 +API version: 1.0.11-18369 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 08464be146..2dd93263ea 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-18012 +API version: 1.0.11-18369 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 c3801f9f5c..9849d425e1 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-18012 +API version: 1.0.11-18369 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 0ee79d3383..8a2404fecc 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-18012 +API version: 1.0.11-18369 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 995c010f45..34ed61caa3 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-18012 +API version: 1.0.11-18369 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 c967253c38..a42fbf9b55 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-18012 +API version: 1.0.11-18369 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 73e013ce31..94c3ac2604 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-18012 +API version: 1.0.11-18369 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 36e11e21e7..b81b111a18 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-18012 +API version: 1.0.11-18369 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 89e52cab56..eb7803d0ef 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-18012 +API version: 1.0.11-18369 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 eb6c05fcf8..26c9e9b398 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-18012 +API version: 1.0.11-18369 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 38e8463141..95e08539fd 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-18012 +API version: 1.0.11-18369 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 2a3422a0bf..89087b2483 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-18012 +API version: 1.0.11-18369 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 6564d00254..d017a1ac0d 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-18012 +API version: 1.0.11-18369 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 5062d09ae3..e45e0de38b 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-18012 +API version: 1.0.11-18369 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 cb62dc3b29..9ec321775d 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-18012 +API version: 1.0.11-18369 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 6923d426a1..100303e8b4 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-18012 +API version: 1.0.11-18369 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 dbc0392561..2cc17d030c 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-18012 +API version: 1.0.11-18369 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 9b9155808c..ec9972d6ca 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-18012 +API version: 1.0.11-18369 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 d04fe03f5e..99fd801e1c 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-18012 +API version: 1.0.11-18369 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 75dc9faa3c..e0800af311 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-18012 +API version: 1.0.11-18369 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 70ab881ed0..8d16d914c7 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-18012 +API version: 1.0.11-18369 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 9bd012fbea..01484d53fb 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-18012 +API version: 1.0.11-18369 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 f12b88422c..fd4db78097 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-18012 +API version: 1.0.11-18369 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 113d7d7128..f90f070c94 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-18012 +API version: 1.0.11-18369 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 880f81144a..95d8aaea20 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-18012 +API version: 1.0.11-18369 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 a1b5808d95..816a55c370 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-18012 +API version: 1.0.11-18369 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 0988b83032..a87e516b48 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-18012 +API version: 1.0.11-18369 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 a6790fa561..741c4347ba 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-18012 +API version: 1.0.11-18369 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 0940e3cc1b..181784e2a0 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-18012 +API version: 1.0.11-18369 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 57b8e9ab08..a8b2479482 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-18012 +API version: 1.0.11-18369 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 9053eb421d..bfd578a2d0 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-18012 +API version: 1.0.11-18369 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 776b048e59..6389854a72 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-18012 +API version: 1.0.11-18369 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 6419f530ae..56160be7e2 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-18012 +API version: 1.0.11-18369 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 793bbc40fc..c02c4f6a6c 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-18012 +API version: 1.0.11-18369 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 f1abe5bfa6..e688b32816 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-18012 +API version: 1.0.11-18369 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 7d6eb0253c..1b16b80420 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-18012 +API version: 1.0.11-18369 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 66638153d2..680aa5e25d 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-18012 +API version: 1.0.11-18369 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 a3b14f8907..9ed092d171 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-18012 +API version: 1.0.11-18369 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 4545f7f915..831c37e582 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-18012 +API version: 1.0.11-18369 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 179ab69a68..5d2ca66c41 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-18012 +API version: 1.0.11-18369 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 33779d31c9..3080b8fc49 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-18012 +API version: 1.0.11-18369 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 2f20d49ba6..976a8845af 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-18012 +API version: 1.0.11-18369 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 d0a65def20..7318b64536 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-18012 +API version: 1.0.11-18369 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 313d092dd4..f5fc492d09 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-18012 +API version: 1.0.11-18369 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 828eaab7a3..5196dd4c8f 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-18012 +API version: 1.0.11-18369 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 20ad9e056c..b0d0c9b7c6 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-18012 +API version: 1.0.11-18369 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 3c466e4ce4..f7b7105ab5 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-18012 +API version: 1.0.11-18369 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 7d27eb6048..2292492672 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-18012 +API version: 1.0.11-18369 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 248fe47a11..ee38cee9b3 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-18012 +API version: 1.0.11-18369 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 101f32e415..9202dcd1c1 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-18012 +API version: 1.0.11-18369 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 ce5b068854..adb5e9625d 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-18012 +API version: 1.0.11-18369 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 352e6539a1..e1033b2bc1 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-18012 +API version: 1.0.11-18369 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 93748907d2..afdef31088 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-18012 +API version: 1.0.11-18369 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 f5aa80e491..1c69f3c868 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-18012 +API version: 1.0.11-18369 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 4848350bdd..03b2dfe98e 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-18012 +API version: 1.0.11-18369 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 4ff86b3f8b..e933143a0b 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-18012 +API version: 1.0.11-18369 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 bb5d65cba8..ad454161a5 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-18012 +API version: 1.0.11-18369 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 ba1e9a0444..26a008c78a 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-18012 +API version: 1.0.11-18369 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 d01aa4b6e2..d775cd18d7 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-18012 +API version: 1.0.11-18369 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 7e389c3c55..d1eaafd50a 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-18012 +API version: 1.0.11-18369 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 cefaf44431..8bfe49649f 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-18012 +API version: 1.0.11-18369 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 9f2bafe744..61b58cc383 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 b5a9ce61c0..799df3eae1 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-18012 +API version: 1.0.11-18369 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 734c36d3d5..c183bd46d9 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-18012 +API version: 1.0.11-18369 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 8b4187a2c6..b8abe10c5f 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-18012 +API version: 1.0.11-18369 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 6a3520694e..910caac986 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-18012 +API version: 1.0.11-18369 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 c6f44e0763..84d052d108 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-18012 +API version: 1.0.11-18369 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 3e297647c2..ee11b13b3d 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-18012 +API version: 1.0.11-18369 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 16f50e0340..e2c9e424de 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-18012 +API version: 1.0.11-18369 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 e63ab8da43..d8ab5c9db6 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-18012 +API version: 1.0.11-18369 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 d0581f242a..a7b3126c42 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-18012 +API version: 1.0.11-18369 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 3c5cb4b3d2..d7d3b39c3d 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-18012 +API version: 1.0.11-18369 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 2796895376..ee33df8ee7 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-18012 +API version: 1.0.11-18369 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 d9a1e4c826..6d6e9248d1 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-18012 +API version: 1.0.11-18369 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 e89a99efb3..b59fcb3c18 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-18012 +API version: 1.0.11-18369 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 0857fc9332..9f5e500f39 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-18012 +API version: 1.0.11-18369 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 08b528fb95..819dcb1ed4 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-18012 +API version: 1.0.11-18369 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 718cd9ba2c..e370820a02 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-18012 +API version: 1.0.11-18369 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 d8e1175127..865bbe5e67 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 8367aed950..7d26b23fe3 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-18012 +API version: 1.0.11-18369 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 8a6a4c92e5..b2157622cf 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-18012 +API version: 1.0.11-18369 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 432d5a12e0..ce89c0e1ea 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-18012 +API version: 1.0.11-18369 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 b11bcac47e..a2da239f94 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-18012 +API version: 1.0.11-18369 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 c0c081876d..b7d018c236 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-18012 +API version: 1.0.11-18369 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 078a34250e..97e3f3dd9b 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-18012 +API version: 1.0.11-18369 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 4be126fffd..e6184eae6d 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-18012 +API version: 1.0.11-18369 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 384236f19a..4a0f3b5972 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-18012 +API version: 1.0.11-18369 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 a05bb6b620..a567cc3821 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-18012 +API version: 1.0.11-18369 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 0d9d73a21f..a3ab1588e3 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-18012 +API version: 1.0.11-18369 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 9faeb9fad0..4ad52b08dc 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-18012 +API version: 1.0.11-18369 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 3db7b332d4..a26d67a270 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-18012 +API version: 1.0.11-18369 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 12449547fa..2ce7472638 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-18012 +API version: 1.0.11-18369 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 fb6a53b975..2925f16965 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-18012 +API version: 1.0.11-18369 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 680e505fdf..e16b8c0982 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-18012 +API version: 1.0.11-18369 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 2cc8a5d444..e3333091ef 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-18012 +API version: 1.0.11-18369 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 b50a350136..655f7f3742 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-18012 +API version: 1.0.11-18369 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 817e12668d..ce7e49c5e7 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-18012 +API version: 1.0.11-18369 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 0e69c2cd0d..8029bf9d8c 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-18012 +API version: 1.0.11-18369 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 c786fa16c3..0fc1894e53 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-18012 +API version: 1.0.11-18369 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 ca5cf2e754..d6dc6370d1 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-18012 +API version: 1.0.11-18369 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 78f835926f..bed095ef64 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-18012 +API version: 1.0.11-18369 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 7a95c87f2c..4f70ac22a7 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-18012 +API version: 1.0.11-18369 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 ef8da42642..06367f835c 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-18012 +API version: 1.0.11-18369 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 04d5d08ee2..b0b290f600 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-18012 +API version: 1.0.11-18369 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 4b8d7fb46e..9eb48bd2a9 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-18012 +API version: 1.0.11-18369 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 9fa9e86245..8ab9e55830 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-18012 +API version: 1.0.11-18369 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 8818343407..444503c1fd 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-18012 +API version: 1.0.11-18369 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 76b6d9c23a..fe61c579ae 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-18012 +API version: 1.0.11-18369 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 45e51c8e26..0b08a9a64a 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-18012 +API version: 1.0.11-18369 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 c06d7bc016..7fc659f4c3 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-18012 +API version: 1.0.11-18369 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 bda94ea028..403002a91f 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-18012 +API version: 1.0.11-18369 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 c4aab72679..92ea1dc161 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-18012 +API version: 1.0.11-18369 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 6d6df7118b..0069d33f0e 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-18012 +API version: 1.0.11-18369 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 c19c93f3a2..4028af5e82 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-18012 +API version: 1.0.11-18369 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 015ff9f785..5cf28f716e 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-18012 +API version: 1.0.11-18369 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 161e34d35e..10864f427c 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-18012 +API version: 1.0.11-18369 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 1589fa1e1c..8c4124c7c7 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-18012 +API version: 1.0.11-18369 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 9e6d71bc0c..ad4687f7e8 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-18012 +API version: 1.0.11-18369 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 287a73699f..4d49d9dc52 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-18012 +API version: 1.0.11-18369 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 b5bd701d8e..5fe9160f99 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-18012 +API version: 1.0.11-18369 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 92c9e61fc1..53f21f819f 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-18012 +API version: 1.0.11-18369 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 7847573987..f2cb309a2f 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-18012 +API version: 1.0.11-18369 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 915d1b315f..11f79c0a5d 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-18012 +API version: 1.0.11-18369 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 7081f18de9..4caca68c2b 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-18012 +API version: 1.0.11-18369 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 9b91d19746..601f35b0d1 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-18012 +API version: 1.0.11-18369 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 807f08efa0..aa54707317 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-18012 +API version: 1.0.11-18369 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 a6528201d8..f439de16af 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-18012 +API version: 1.0.11-18369 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 2c1015a2c0..1846799a75 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-18012 +API version: 1.0.11-18369 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 53367149e0..139b0e2feb 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 e99caf1713..1f383a0128 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-18012 +API version: 1.0.11-18369 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 15d1c31c5e..a668271124 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-18012 +API version: 1.0.11-18369 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 8d946c3329..af98e8f135 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-18012 +API version: 1.0.11-18369 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 bf700b4573..8e0f99b013 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-18012 +API version: 1.0.11-18369 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 7b5a50a8af..ab659dad0d 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-18012 +API version: 1.0.11-18369 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 77a3b1b37c..3b82f15c83 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-18012 +API version: 1.0.11-18369 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 600afb0bea..2a70bef218 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-18012 +API version: 1.0.11-18369 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 a727597687..4a6f314340 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-18012 +API version: 1.0.11-18369 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 d42d436101..69e2532be9 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-18012 +API version: 1.0.11-18369 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 f950fae785..b978a2b7e0 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-18012 +API version: 1.0.11-18369 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 942b469061..c170c25461 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-18012 +API version: 1.0.11-18369 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 eeddd88e4c..039b10f1ff 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-18012 +API version: 1.0.11-18369 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 9d29dfbc89..86cba1a4aa 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-18012 +API version: 1.0.11-18369 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 539b86f369..5faa811746 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-18012 +API version: 1.0.11-18369 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 63799f7a28..241a158b8e 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-18012 +API version: 1.0.11-18369 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 6197368cef..95ff2dbe1a 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-18012 +API version: 1.0.11-18369 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 54f6266f73..efdd41ae16 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-18012 +API version: 1.0.11-18369 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 c0d58a8305..765e627d4d 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-18012 +API version: 1.0.11-18369 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 2aa5e1d48a..1568473e0d 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-18012 +API version: 1.0.11-18369 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 ff4e310492..7de25322e3 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-18012 +API version: 1.0.11-18369 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 915e1a8a28..e52c82d36a 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-18012 +API version: 1.0.11-18369 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 ecdd677ef2..42908c03f1 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-18012 +API version: 1.0.11-18369 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 401637f94b..63b435a6b7 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-18012 +API version: 1.0.11-18369 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 7d39cc5e2e..375e6090d7 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-18012 +API version: 1.0.11-18369 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 cfba749f3a..3a4cf51c3e 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-18012 +API version: 1.0.11-18369 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 832cd39fc3..d779f5c5f1 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-18012 +API version: 1.0.11-18369 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 dda2f5cb99..dd914554f9 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-18012 +API version: 1.0.11-18369 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 441e8cab1a..f0a0600128 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 7ad379be33..07c5fb884b 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-18012 +API version: 1.0.11-18369 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 7c0b184575..a3d3daa474 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-18012 +API version: 1.0.11-18369 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 46da8ac7df..6f38cfd201 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-18012 +API version: 1.0.11-18369 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 70e90cd560..b3f98872ae 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-18012 +API version: 1.0.11-18369 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 61f142de9a..79c5378321 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-18012 +API version: 1.0.11-18369 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 d2eeba1131..846fe1c921 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-18012 +API version: 1.0.11-18369 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 f35e7f0acf..57181b481a 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-18012 +API version: 1.0.11-18369 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 d61120fcac..e7e592f871 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-18012 +API version: 1.0.11-18369 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 a5a9c6ee83..14317a08c1 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-18012 +API version: 1.0.11-18369 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 484186dd71..a1536209b2 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 2ada9243f9..93e132d3ab 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-18012 +API version: 1.0.11-18369 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 32c1eded78..bee0721201 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-18012 +API version: 1.0.11-18369 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 0360991d07..7584038827 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-18012 +API version: 1.0.11-18369 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 68089976df..004acb985f 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-18012 +API version: 1.0.11-18369 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 d1a6d17d71..8f6cdde8c6 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-18012 +API version: 1.0.11-18369 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 cf301595de..0671541bfd 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-18012 +API version: 1.0.11-18369 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 65f29dac38..7414d075ac 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-18012 +API version: 1.0.11-18369 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 cc3996d2d4..ce49b32488 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-18012 +API version: 1.0.11-18369 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 995ac068a0..4b9668df9e 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-18012 +API version: 1.0.11-18369 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 ca69904d60..64c2969028 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-18012 +API version: 1.0.11-18369 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 cf29de9541..2a12110678 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-18012 +API version: 1.0.11-18369 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 8be5ba01ca..ab3b752a5f 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-18012 +API version: 1.0.11-18369 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 9b57f0e376..3fe6b64826 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-18012 +API version: 1.0.11-18369 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 f2a0a0849a..4ba470b42f 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-18012 +API version: 1.0.11-18369 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 efc28e672c..d10d469169 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-18012 +API version: 1.0.11-18369 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 fa45fe60eb..c056785b53 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-18012 +API version: 1.0.11-18369 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 1c32fd5b2f..a945d2f364 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-18012 +API version: 1.0.11-18369 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 d1eb85da60..c78748c0f1 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-18012 +API version: 1.0.11-18369 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 d7611d18cc..c7e75190fe 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-18012 +API version: 1.0.11-18369 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 94377958b5..00722991ed 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-18012 +API version: 1.0.11-18369 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 8ad937cbf6..bc77af900d 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-18012 +API version: 1.0.11-18369 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 2c23f178be..f9c7a97a13 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-18012 +API version: 1.0.11-18369 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 5dd04ed99c..d9eda22b52 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-18012 +API version: 1.0.11-18369 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 c77786acea..8942d0d4f8 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-18012 +API version: 1.0.11-18369 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 d157c8ccf0..ef23581edd 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-18012 +API version: 1.0.11-18369 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 5d106dbb69..c54cbc678d 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-18012 +API version: 1.0.11-18369 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 e41e7f96a6..c8458d0c5f 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-18012 +API version: 1.0.11-18369 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 833663da0c..ac10b8d44a 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-18012 +API version: 1.0.11-18369 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 463c56bb65..dbc667f124 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-18012 +API version: 1.0.11-18369 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 e9b8039228..26f8fc4c99 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-18012 +API version: 1.0.11-18369 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 015778d6dd..14fe8f5cc0 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-18012 +API version: 1.0.11-18369 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 1f49196e1e..01811395c8 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-18012 +API version: 1.0.11-18369 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 c39727f8e1..3c7283d541 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-18012 +API version: 1.0.11-18369 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 d2d4f9aa46..c5a2b9a501 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-18012 +API version: 1.0.11-18369 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 43e273b974..ad32030fb9 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-18012 +API version: 1.0.11-18369 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 9f9955b91a..8d8769acba 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-18012 +API version: 1.0.11-18369 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 facc04eaff..e29584613c 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-18012 +API version: 1.0.11-18369 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 c36080fc7e..cae9f8e9d9 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-18012 +API version: 1.0.11-18369 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 a6d3324181..839f5c8319 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-18012 +API version: 1.0.11-18369 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 bdc8c5bc99..de1f57ea0e 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-18012 +API version: 1.0.11-18369 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 36bc323edb..6cd1b30326 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-18012 +API version: 1.0.11-18369 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 0b76bd8775..145e245ae5 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 6dd59456d9..aea79557c7 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-18012 +API version: 1.0.11-18369 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 639bb3697f..0a78f41b98 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-18012 +API version: 1.0.11-18369 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 0169229900..b27f234638 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-18012 +API version: 1.0.11-18369 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 b86eba4c22..50991326c3 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-18012 +API version: 1.0.11-18369 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 60cc2c7f82..2cedb319a2 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-18012 +API version: 1.0.11-18369 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 8b33047812..ac9e592a35 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-18012 +API version: 1.0.11-18369 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 da06997678..21ae1ba6e0 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-18012 +API version: 1.0.11-18369 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 c0faf7431f..20952bbb67 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-18012 +API version: 1.0.11-18369 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 ea9063826e..543eab0c87 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-18012 +API version: 1.0.11-18369 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 71167ec466..ae02120c25 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-18012 +API version: 1.0.11-18369 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 f1b5fa1b1a..4212224c86 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-18012 +API version: 1.0.11-18369 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 8802859ecc..e3219234ef 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-18012 +API version: 1.0.11-18369 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 f5e6b7b012..a6f85fa979 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-18012 +API version: 1.0.11-18369 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 f7f1c4c56d..e261ddc8bc 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-18012 +API version: 1.0.11-18369 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 179b95d7a1..1860564a9d 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-18012 +API version: 1.0.11-18369 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 bd97741298..0575abbc9f 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-18012 +API version: 1.0.11-18369 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 8b46fe844f..dcbde33078 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-18012 +API version: 1.0.11-18369 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 be8ac2a5f3..aa08962c7a 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-18012 +API version: 1.0.11-18369 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 b840ebff6c..de1235e343 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-18012 +API version: 1.0.11-18369 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 7426e05733..920191af15 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-18012 +API version: 1.0.11-18369 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 01585ebe8c..17db59abd6 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-18012 +API version: 1.0.11-18369 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 67f3a842fa..50db294c18 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-18012 +API version: 1.0.11-18369 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 88803cd875..69d9764d93 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-18012 +API version: 1.0.11-18369 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 aef3139c48..0a6df27117 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-18012 +API version: 1.0.11-18369 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 f8dd60e129..7363233c8d 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-18012 +API version: 1.0.11-18369 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 b5794b56e6..110aa85c4f 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-18012 +API version: 1.0.11-18369 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 c038d90623..243167d8a3 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-18012 +API version: 1.0.11-18369 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 d88e824bcc..620f909390 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-18012 +API version: 1.0.11-18369 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 1dfa4f007f..eee5047181 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-18012 +API version: 1.0.11-18369 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 623fe5166e..4f6a831652 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-18012 +API version: 1.0.11-18369 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 715521be73..c562441b3c 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-18012 +API version: 1.0.11-18369 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 f5b91f9ae7..87089864a9 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-18012 +API version: 1.0.11-18369 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 99f3a239ad..11fd0af72f 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-18012 +API version: 1.0.11-18369 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 c3001c2e46..0afe86ed90 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-18012 +API version: 1.0.11-18369 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 d874fae7c4..64a2b34af1 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-18012 +API version: 1.0.11-18369 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 6eea2cc22d..dacba36692 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-18012 +API version: 1.0.11-18369 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 16f4bf355e..a083904466 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 829fa31690..5938fa84ee 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-18012 +API version: 1.0.11-18369 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 a79d2982a5..4d24b51509 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-18012 +API version: 1.0.11-18369 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 773d5bbdb2..e7f119f573 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-18012 +API version: 1.0.11-18369 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 d1450f1bb2..b36fa123c6 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ @@ -30,7 +30,7 @@ type FabricVlanSettings struct { 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" 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. + // Native VLAN ID of the virtual interface or the corresponding Vethernet on the peer Fabric Interconnect to which the virtual interface is connected. Native VLAN ID maps all incoming untagged traffic i.e. packets without a VLAN tag to the native VLAN for switching purposes. If the native VLAN is not a part of the allowed VLANs, it will automatically be added to the list of allowed VLANs. A native VLAN ID of 0 will indicate to the system to use the system default native VLAN ID and will also prevent native VLAN from being added to the allowed VLAN list. NativeVlan *int64 `json:"NativeVlan,omitempty"` // Enable QinQ (802.1Q-in-802.1Q) Tunneling on the vNIC. QinqEnabled *bool `json:"QinqEnabled,omitempty"` @@ -49,7 +49,7 @@ func NewFabricVlanSettings(classId string, objectType string) *FabricVlanSetting this := FabricVlanSettings{} this.ClassId = classId this.ObjectType = objectType - var nativeVlan int64 = 1 + var nativeVlan int64 = 0 this.NativeVlan = &nativeVlan var qinqEnabled bool = false this.QinqEnabled = &qinqEnabled @@ -67,7 +67,7 @@ func NewFabricVlanSettingsWithDefaults() *FabricVlanSettings { this.ClassId = classId var objectType string = "fabric.VlanSettings" this.ObjectType = objectType - var nativeVlan int64 = 1 + var nativeVlan int64 = 0 this.NativeVlan = &nativeVlan var qinqEnabled bool = false this.QinqEnabled = &qinqEnabled @@ -357,7 +357,7 @@ func (o *FabricVlanSettings) UnmarshalJSON(data []byte) (err error) { 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" 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. + // Native VLAN ID of the virtual interface or the corresponding Vethernet on the peer Fabric Interconnect to which the virtual interface is connected. Native VLAN ID maps all incoming untagged traffic i.e. packets without a VLAN tag to the native VLAN for switching purposes. If the native VLAN is not a part of the allowed VLANs, it will automatically be added to the list of allowed VLANs. A native VLAN ID of 0 will indicate to the system to use the system default native VLAN ID and will also prevent native VLAN from being added to the allowed VLAN list. NativeVlan *int64 `json:"NativeVlan,omitempty"` // Enable QinQ (802.1Q-in-802.1Q) Tunneling on the vNIC. QinqEnabled *bool `json:"QinqEnabled,omitempty"` 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 59e5297703..81c55fa650 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-18012 +API version: 1.0.11-18369 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 5ec879ee14..4bff773dba 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-18012 +API version: 1.0.11-18369 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 f71fcfcd4b..fc3b7c5d5e 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-18012 +API version: 1.0.11-18369 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 18ab9bc422..f8f3e75343 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-18012 +API version: 1.0.11-18369 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 fa5a217f0e..2a92004ee7 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-18012 +API version: 1.0.11-18369 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 cb26eb2eb1..886c99bb9c 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-18012 +API version: 1.0.11-18369 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 bbeebf1204..77c27e357d 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-18012 +API version: 1.0.11-18369 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 6469ad617c..2c5f10ae05 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-18012 +API version: 1.0.11-18369 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 0f1bab67b8..f7981f8fa7 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-18012 +API version: 1.0.11-18369 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 ac8eadfbb8..918f6e08f3 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-18012 +API version: 1.0.11-18369 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 61f0d1688e..adbafd32ee 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-18012 +API version: 1.0.11-18369 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 3e517acb46..90398c657b 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-18012 +API version: 1.0.11-18369 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 461270a2e7..b727b4776f 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-18012 +API version: 1.0.11-18369 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 4cc70a905a..f3b86ac710 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-18012 +API version: 1.0.11-18369 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 6129f12816..45d7e5aa0a 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-18012 +API version: 1.0.11-18369 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 f5229ffbd3..e78d506294 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-18012 +API version: 1.0.11-18369 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 39e0d5193d..77c2d2692e 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-18012 +API version: 1.0.11-18369 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 f5a501aed5..d93a2b2544 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-18012 +API version: 1.0.11-18369 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 400c84c141..4b3d30e3c8 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-18012 +API version: 1.0.11-18369 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 4cf4f84717..ed894a4919 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-18012 +API version: 1.0.11-18369 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 499321d412..ad4eb78dc6 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-18012 +API version: 1.0.11-18369 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 ab6467ab17..2981229c3b 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 951d1d7e6f..a417fe064e 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-18012 +API version: 1.0.11-18369 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 12bc2510f2..7cb66ae17d 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-18012 +API version: 1.0.11-18369 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 92f8261a57..7e33fd67f2 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-18012 +API version: 1.0.11-18369 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 e8f422f862..9cf17e9891 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-18012 +API version: 1.0.11-18369 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 0019f344b0..5d4b13e2dd 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 8dcd07a2a9..491962454e 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-18012 +API version: 1.0.11-18369 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 5032d24e9c..b65725160d 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-18012 +API version: 1.0.11-18369 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 dd5e54df7e..7dea1d80d6 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-18012 +API version: 1.0.11-18369 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 f35dd5993c..d53f2e7220 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-18012 +API version: 1.0.11-18369 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 29072499a0..20d745825d 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-18012 +API version: 1.0.11-18369 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 62e0a64662..04d8763d0c 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 ed9805a4bb..7c066d9a69 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-18012 +API version: 1.0.11-18369 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 cd89110c46..f8d40dbc02 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-18012 +API version: 1.0.11-18369 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 fdf7f032b4..6409f4efbc 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-18012 +API version: 1.0.11-18369 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 32e69e3bbb..eefcfbb150 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-18012 +API version: 1.0.11-18369 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 4fe2cb887e..12a32f6b6b 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-18012 +API version: 1.0.11-18369 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 f533f46e42..e5492dbd34 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 2a694ae593..1fe106f7c8 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-18012 +API version: 1.0.11-18369 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 c8de2eb9a5..6528ed044a 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-18012 +API version: 1.0.11-18369 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 37169bbd20..746d60b06b 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-18012 +API version: 1.0.11-18369 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 ca835947cc..874f96f249 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-18012 +API version: 1.0.11-18369 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 83e4b0a26f..dc8080b232 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-18012 +API version: 1.0.11-18369 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 d6ac740d04..9498e41248 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-18012 +API version: 1.0.11-18369 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 7662d5c23a..ca288d6452 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-18012 +API version: 1.0.11-18369 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 f4f18909fb..2796701e24 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-18012 +API version: 1.0.11-18369 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 d639e86abe..5ac087e749 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-18012 +API version: 1.0.11-18369 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 9ec066af5a..eb207d4122 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-18012 +API version: 1.0.11-18369 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 daa32c0510..b9ca32a5ef 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-18012 +API version: 1.0.11-18369 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 8b1f38b3a6..27af04540d 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-18012 +API version: 1.0.11-18369 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 4fe8316018..4aee106e96 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-18012 +API version: 1.0.11-18369 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 2d1be7d236..d5fd25130e 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-18012 +API version: 1.0.11-18369 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 896066961a..b759728189 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-18012 +API version: 1.0.11-18369 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 8b73990774..a6872c6b42 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-18012 +API version: 1.0.11-18369 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 ad2bf82576..9d1d67885b 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-18012 +API version: 1.0.11-18369 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 4458b4b5f2..e505eef159 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-18012 +API version: 1.0.11-18369 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 19b1bf14b2..c05f071148 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-18012 +API version: 1.0.11-18369 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 fc723d89fa..aa36a3e15b 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-18012 +API version: 1.0.11-18369 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 34759c6ca1..804a0b563a 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-18012 +API version: 1.0.11-18369 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 4d3957ebce..b2c0debb24 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-18012 +API version: 1.0.11-18369 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 da97a55927..ffe81da94e 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-18012 +API version: 1.0.11-18369 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 7b074ce1fc..660f05fc5d 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-18012 +API version: 1.0.11-18369 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 a1090c3e07..08b5fbb3e5 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-18012 +API version: 1.0.11-18369 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 62fda7bb20..8c41ca46cb 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-18012 +API version: 1.0.11-18369 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 19a67c6179..096f0666c7 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-18012 +API version: 1.0.11-18369 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 87322adc59..36e5a0892e 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-18012 +API version: 1.0.11-18369 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 668d328bb4..b3d8ebab4d 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-18012 +API version: 1.0.11-18369 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 e42612208b..f4e870aa38 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-18012 +API version: 1.0.11-18369 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 d4d6bcfc56..fc764a4518 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-18012 +API version: 1.0.11-18369 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 42967d7ecd..8c5e03004c 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-18012 +API version: 1.0.11-18369 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 a110a8a756..64553f6d54 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-18012 +API version: 1.0.11-18369 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 f46677887b..9aee6fedfc 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-18012 +API version: 1.0.11-18369 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 29f4948b6d..13a21165a9 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-18012 +API version: 1.0.11-18369 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 536c314e7b..5ccf13fa6e 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-18012 +API version: 1.0.11-18369 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 0ef119e6be..9b3ad6d510 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-18012 +API version: 1.0.11-18369 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 7d55791810..43dec8d701 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-18012 +API version: 1.0.11-18369 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 3d9c174e23..238cc21d34 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-18012 +API version: 1.0.11-18369 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 607b41c6dc..53469f77c3 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-18012 +API version: 1.0.11-18369 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 4c52351b89..56f3a4d135 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-18012 +API version: 1.0.11-18369 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 822fa4526d..acd37d09e7 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-18012 +API version: 1.0.11-18369 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 ff3a4236d9..0a17615341 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-18012 +API version: 1.0.11-18369 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 a277a930ee..1cad021107 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-18012 +API version: 1.0.11-18369 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 7132c53b90..1505453ae6 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-18012 +API version: 1.0.11-18369 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 40bc250f2f..f093c7794c 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-18012 +API version: 1.0.11-18369 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 8924df6e67..28728715b2 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-18012 +API version: 1.0.11-18369 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 6105f9f6dc..8201cd7268 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-18012 +API version: 1.0.11-18369 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 648f2e55c8..4307dc898a 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-18012 +API version: 1.0.11-18369 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 c88742d611..6dba9fc24e 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-18012 +API version: 1.0.11-18369 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 288d3585d5..1ae1f1647b 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-18012 +API version: 1.0.11-18369 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 a87f785109..3dfc87e1bb 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-18012 +API version: 1.0.11-18369 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 c81eb6fbb8..7a3f8b7770 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-18012 +API version: 1.0.11-18369 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 3503aa3cac..74be41cd48 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-18012 +API version: 1.0.11-18369 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 2357e6fad4..2d462357fd 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-18012 +API version: 1.0.11-18369 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 55b6e776d9..48295d07c6 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-18012 +API version: 1.0.11-18369 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 ce7f64d77b..da0cf88b40 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-18012 +API version: 1.0.11-18369 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 77d77e9e38..89b4c2b77d 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-18012 +API version: 1.0.11-18369 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 cf20e8bd65..fda8c64e24 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-18012 +API version: 1.0.11-18369 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 0032170396..fd1b52af5d 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-18012 +API version: 1.0.11-18369 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 d9ea70bd20..bf8e9db645 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-18012 +API version: 1.0.11-18369 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 673dc5ff6f..b43733736d 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-18012 +API version: 1.0.11-18369 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 ec6fb9e716..3ebe6a297f 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-18012 +API version: 1.0.11-18369 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 8155ad6d19..004a137f75 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-18012 +API version: 1.0.11-18369 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 6916c43049..d269b0539e 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-18012 +API version: 1.0.11-18369 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 1cb88f920e..9a229ca256 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-18012 +API version: 1.0.11-18369 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 14fb4ebafa..484ed44882 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-18012 +API version: 1.0.11-18369 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 56d5a87457..0d7137c961 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-18012 +API version: 1.0.11-18369 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 d574e84c1a..c1fdfd0eef 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-18012 +API version: 1.0.11-18369 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 55a991808e..5c6801a8cc 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-18012 +API version: 1.0.11-18369 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 929121a523..3d1777cc90 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-18012 +API version: 1.0.11-18369 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 2b1b107800..2fa5da4ae7 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-18012 +API version: 1.0.11-18369 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 f1bd17e857..6a8299535f 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-18012 +API version: 1.0.11-18369 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 101393a0ea..1d67862727 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-18012 +API version: 1.0.11-18369 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 793e507181..383515d389 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-18012 +API version: 1.0.11-18369 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 18e101a6dd..f9996a7363 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-18012 +API version: 1.0.11-18369 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 3b976f4bb5..bf0bde2360 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-18012 +API version: 1.0.11-18369 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 e2a3427a2e..3f7817b466 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-18012 +API version: 1.0.11-18369 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 cb2e775826..bff86dde3d 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-18012 +API version: 1.0.11-18369 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 84f704b026..8c55a7af76 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-18012 +API version: 1.0.11-18369 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 9bf56ed460..c84d09616c 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-18012 +API version: 1.0.11-18369 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 5ceea26488..84757d3c1d 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-18012 +API version: 1.0.11-18369 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 6daab08fce..d600cfc83f 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-18012 +API version: 1.0.11-18369 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 be1ba2b573..8ec582a53d 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-18012 +API version: 1.0.11-18369 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 93f6a6fa0d..4e574b969c 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-18012 +API version: 1.0.11-18369 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 26c25915d1..fb190ab04b 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-18012 +API version: 1.0.11-18369 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 79c308b33a..ac12937b34 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-18012 +API version: 1.0.11-18369 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 3053b709d2..dd70ca8134 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-18012 +API version: 1.0.11-18369 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 9763da4e26..9d85d89b6a 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-18012 +API version: 1.0.11-18369 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 654c00bd7f..0dc6a079a6 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-18012 +API version: 1.0.11-18369 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 be469f1bf1..beff123fa3 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-18012 +API version: 1.0.11-18369 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 8bfd6bcc4d..a777b27be9 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-18012 +API version: 1.0.11-18369 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 850f54b4cb..1d655b1517 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-18012 +API version: 1.0.11-18369 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 c7b3ff7872..5a3781d786 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-18012 +API version: 1.0.11-18369 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 93981f446c..9e38517fad 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-18012 +API version: 1.0.11-18369 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 8171a4867d..94e288d814 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-18012 +API version: 1.0.11-18369 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 d9ae7543e0..99de6eec03 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-18012 +API version: 1.0.11-18369 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 c694c6a1e8..a9830392f0 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-18012 +API version: 1.0.11-18369 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 a61396c0a0..4f6f586727 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-18012 +API version: 1.0.11-18369 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 19bff52a1a..4513192db2 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-18012 +API version: 1.0.11-18369 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 9bf1075b09..5d391ef946 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-18012 +API version: 1.0.11-18369 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 634233a7f7..d0e299f65c 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-18012 +API version: 1.0.11-18369 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 7d9b5f1521..363e7fb52c 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-18012 +API version: 1.0.11-18369 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 3e91985e7d..45eb1c7d26 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-18012 +API version: 1.0.11-18369 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 2753c4eb7a..96e41382f5 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-18012 +API version: 1.0.11-18369 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 eba7ecec7b..4a98e5fc72 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-18012 +API version: 1.0.11-18369 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 5628a71a3f..6242ed5bfd 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-18012 +API version: 1.0.11-18369 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 6d7353776c..28778c6af0 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-18012 +API version: 1.0.11-18369 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 62f9e5b4c9..b041d685ca 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-18012 +API version: 1.0.11-18369 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 286963848d..e9189de1ca 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-18012 +API version: 1.0.11-18369 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 25a4b61abf..8e231c4dc6 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-18012 +API version: 1.0.11-18369 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 01c57c7c67..01af595d00 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-18012 +API version: 1.0.11-18369 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 68f4759194..a601d11a87 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-18012 +API version: 1.0.11-18369 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 b3d28babbf..6e783a3f4d 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-18012 +API version: 1.0.11-18369 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 f52d70b54f..501f66d4ef 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-18012 +API version: 1.0.11-18369 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 19f4273dea..fc6147f2d2 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-18012 +API version: 1.0.11-18369 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 b5e9823bc7..704334eeb4 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-18012 +API version: 1.0.11-18369 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 127f9e4a19..bd1d34e4d7 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-18012 +API version: 1.0.11-18369 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 62d698f28c..e06f680a35 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-18012 +API version: 1.0.11-18369 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 cb9adb08e9..6a0dddfa2e 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-18012 +API version: 1.0.11-18369 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 822a70cdb6..84c2bb1f5d 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-18012 +API version: 1.0.11-18369 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 6629971f85..a0c0638b9b 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-18012 +API version: 1.0.11-18369 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 adbe997f72..fc66a8fabf 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-18012 +API version: 1.0.11-18369 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 6892ea73c3..4e440733b6 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-18012 +API version: 1.0.11-18369 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 f19cdb5445..b9996305da 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-18012 +API version: 1.0.11-18369 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 2d25067445..14ac10769a 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-18012 +API version: 1.0.11-18369 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 b8e6b70478..58f9cdfda7 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-18012 +API version: 1.0.11-18369 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 02aeb5d363..835ecfefec 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-18012 +API version: 1.0.11-18369 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 ce872dd3d9..049a5fc59f 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-18012 +API version: 1.0.11-18369 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 1a19c4ab2c..b66bf524b6 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-18012 +API version: 1.0.11-18369 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 33706309ab..f51b765151 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-18012 +API version: 1.0.11-18369 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 ee4c17f2d8..a7e77918e4 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-18012 +API version: 1.0.11-18369 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 66eaf60544..49dcf92c77 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-18012 +API version: 1.0.11-18369 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 a22b8841b4..8b20ba3ac7 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-18012 +API version: 1.0.11-18369 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 f2b7a16d04..d65c83b602 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-18012 +API version: 1.0.11-18369 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 a62ea2b90f..a393c4cb93 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-18012 +API version: 1.0.11-18369 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 946e5897e2..0257abe5a1 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 7304e4d99d..e650cb6909 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-18012 +API version: 1.0.11-18369 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 e2ab770141..3304dc8a4d 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-18012 +API version: 1.0.11-18369 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 4565635ed3..81599c9847 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-18012 +API version: 1.0.11-18369 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 852301c5b3..4534103ac1 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-18012 +API version: 1.0.11-18369 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 8f6baffbaf..cc3f48c085 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-18012 +API version: 1.0.11-18369 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 a84fd02e71..f67d7603b6 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-18012 +API version: 1.0.11-18369 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 00b142a8c9..fa7c582f91 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-18012 +API version: 1.0.11-18369 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 af8f4bdc2c..b3e16123b9 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-18012 +API version: 1.0.11-18369 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 fbb89e6170..b57a0397fd 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-18012 +API version: 1.0.11-18369 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 f43df681bc..c1aa10cc80 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-18012 +API version: 1.0.11-18369 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 2b00d4da17..e7494afccc 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-18012 +API version: 1.0.11-18369 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 fb3938ebb9..a5497061f0 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-18012 +API version: 1.0.11-18369 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 2fdb44e1dd..8b1ee048ac 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-18012 +API version: 1.0.11-18369 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 94df337852..709a033b62 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-18012 +API version: 1.0.11-18369 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 639bda19a9..3071d7055c 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-18012 +API version: 1.0.11-18369 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 806661eed6..47f57e5d62 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-18012 +API version: 1.0.11-18369 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 3c5519c0a4..6f6326254b 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-18012 +API version: 1.0.11-18369 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 3d16b9f636..bfccbd376f 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-18012 +API version: 1.0.11-18369 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 6dab36ae64..cc7e26a834 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-18012 +API version: 1.0.11-18369 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 d3e603750a..f799b3a32e 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-18012 +API version: 1.0.11-18369 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 dcc6ea734e..48385192ad 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-18012 +API version: 1.0.11-18369 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 34de7e80da..0d74defeff 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-18012 +API version: 1.0.11-18369 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 115b2244c3..f0bb13bbd5 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-18012 +API version: 1.0.11-18369 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 34b9d627bc..ae55dde27f 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-18012 +API version: 1.0.11-18369 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 3926d0c142..1e3d8935c0 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-18012 +API version: 1.0.11-18369 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 be5e80336b..0cd41d43f8 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-18012 +API version: 1.0.11-18369 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 88966c369f..62a58ce922 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-18012 +API version: 1.0.11-18369 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 b802281797..c52fff9477 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-18012 +API version: 1.0.11-18369 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 865000ed0b..928ec6052d 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-18012 +API version: 1.0.11-18369 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 4081df944a..9a893118f2 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-18012 +API version: 1.0.11-18369 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 1ed3c18fd8..0b492010b3 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-18012 +API version: 1.0.11-18369 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 d142d347c7..9de8351a6b 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-18012 +API version: 1.0.11-18369 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 fb54786105..0ee091c556 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-18012 +API version: 1.0.11-18369 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 626a05416b..f0490d0e1b 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-18012 +API version: 1.0.11-18369 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 f50af61d2b..225f2cbd34 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-18012 +API version: 1.0.11-18369 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 93cb9765de..9d24034375 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-18012 +API version: 1.0.11-18369 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 de0e781584..b793f355fe 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-18012 +API version: 1.0.11-18369 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 c26c7ab1a0..191a7dfeeb 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-18012 +API version: 1.0.11-18369 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 197f091d23..d34c41fd28 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-18012 +API version: 1.0.11-18369 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 7b36691705..fca85ba4b8 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-18012 +API version: 1.0.11-18369 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 6a876e89c6..8fb1cd0eb1 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-18012 +API version: 1.0.11-18369 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 5482a7f5b6..e17d1d15b7 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-18012 +API version: 1.0.11-18369 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 cd6cdc8f87..77cde73680 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-18012 +API version: 1.0.11-18369 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 a8e36eb744..239a33ebb7 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-18012 +API version: 1.0.11-18369 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 63970fb1ba..2346ff8115 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-18012 +API version: 1.0.11-18369 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 8b84ebc097..c3331a424a 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-18012 +API version: 1.0.11-18369 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 634cfad74d..1fd1602883 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-18012 +API version: 1.0.11-18369 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 1ae447565b..b3f681f9a0 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-18012 +API version: 1.0.11-18369 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 3e949f2d6d..d211b34c43 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-18012 +API version: 1.0.11-18369 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 fabd48eb42..306b5dbaf9 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-18012 +API version: 1.0.11-18369 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 68a216ec91..71b9467ebb 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-18012 +API version: 1.0.11-18369 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 145d2bbd81..4a9f84e141 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-18012 +API version: 1.0.11-18369 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 7b8ccf33ed..a426b66e27 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-18012 +API version: 1.0.11-18369 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 e2ee56dec8..6335595912 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-18012 +API version: 1.0.11-18369 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 a86d54ae78..80f1b62833 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-18012 +API version: 1.0.11-18369 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 d52476e803..3ed5951106 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-18012 +API version: 1.0.11-18369 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 88f2045459..3a23c9ef7b 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-18012 +API version: 1.0.11-18369 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 94076ec8c9..f370f100c5 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-18012 +API version: 1.0.11-18369 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 23d28e27d7..b8cdca79f5 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-18012 +API version: 1.0.11-18369 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 93cf4e1f78..29084afccf 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-18012 +API version: 1.0.11-18369 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 9b579c9f26..37f67c4103 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-18012 +API version: 1.0.11-18369 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 30c5213c0d..4795d4561a 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-18012 +API version: 1.0.11-18369 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 b8cd998644..845bcc5a99 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-18012 +API version: 1.0.11-18369 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 6006205821..9a9f7701ce 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 f7e3dfca52..ffa099170c 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-18012 +API version: 1.0.11-18369 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 013464e4c9..c882a03d6b 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-18012 +API version: 1.0.11-18369 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 d433006256..dcd42e40f1 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-18012 +API version: 1.0.11-18369 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 0d991a1593..b6903fef42 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-18012 +API version: 1.0.11-18369 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 50eb6a935b..7588f21a9d 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-18012 +API version: 1.0.11-18369 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 ea8a8dfec6..1d255cfac9 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-18012 +API version: 1.0.11-18369 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 ecc21a65c1..3b6812e8db 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-18012 +API version: 1.0.11-18369 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 060490251a..d42e802625 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-18012 +API version: 1.0.11-18369 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 b47a3be3ea..9194754598 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-18012 +API version: 1.0.11-18369 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 ca48545b74..bb885de8a2 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-18012 +API version: 1.0.11-18369 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 2867d364dd..a5c02f16cd 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-18012 +API version: 1.0.11-18369 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 506ee2ec3c..578eac1541 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-18012 +API version: 1.0.11-18369 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 63b967e289..8688b334f3 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-18012 +API version: 1.0.11-18369 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 099a802d2e..8028fb12db 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-18012 +API version: 1.0.11-18369 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 75966440cd..0a3cecae81 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-18012 +API version: 1.0.11-18369 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 e824b4757d..96fe8dc030 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-18012 +API version: 1.0.11-18369 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 e71ab39d84..f9b6bdfcf0 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-18012 +API version: 1.0.11-18369 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 835e4e39f8..57d558acea 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-18012 +API version: 1.0.11-18369 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 99a3923b46..330fcc6135 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-18012 +API version: 1.0.11-18369 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 1ac2f29120..4dbd2222d6 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-18012 +API version: 1.0.11-18369 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 c41c30e949..323135b33a 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-18012 +API version: 1.0.11-18369 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 bc1165210a..782ff0736d 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-18012 +API version: 1.0.11-18369 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 62fa0f7223..34498835a1 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-18012 +API version: 1.0.11-18369 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 99d091805c..5e54c7b3e6 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-18012 +API version: 1.0.11-18369 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 795ed13975..d79354a98d 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-18012 +API version: 1.0.11-18369 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 b7a490093d..960844ffd1 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-18012 +API version: 1.0.11-18369 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 db7035ff98..706f1ea452 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-18012 +API version: 1.0.11-18369 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 ad68878ed9..03b0568149 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-18012 +API version: 1.0.11-18369 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 51672c357c..183db9ecae 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-18012 +API version: 1.0.11-18369 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 a388fa1ba7..8ffd2e9b87 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-18012 +API version: 1.0.11-18369 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 616aa99493..8e15444871 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-18012 +API version: 1.0.11-18369 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 43f5089e99..cb3e145b1a 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-18012 +API version: 1.0.11-18369 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 acf81ad440..da50ab01a8 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-18012 +API version: 1.0.11-18369 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 730ba965b3..12a8580608 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-18012 +API version: 1.0.11-18369 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 78d82bdcb8..51db4e4de0 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 c782562434..f98c2538e2 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-18012 +API version: 1.0.11-18369 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 705b7cbffb..d6c9656467 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-18012 +API version: 1.0.11-18369 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 5e66fb1774..f7c67c9503 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-18012 +API version: 1.0.11-18369 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 6888fd5f56..c1c9b20c64 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-18012 +API version: 1.0.11-18369 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 c6d4997f0e..dc8ec004ee 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-18012 +API version: 1.0.11-18369 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 a507831f8b..b70576369e 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-18012 +API version: 1.0.11-18369 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 0095605f84..4755cf90ec 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-18012 +API version: 1.0.11-18369 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 5b15187259..292537f5ed 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-18012 +API version: 1.0.11-18369 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 a394d27156..26c51c20c0 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-18012 +API version: 1.0.11-18369 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 4bcf8211fb..f6110fab8e 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-18012 +API version: 1.0.11-18369 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 43d1fa96d1..af19bbd173 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-18012 +API version: 1.0.11-18369 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 d63a549676..55b7f21800 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-18012 +API version: 1.0.11-18369 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 c0558194ed..c0b92c700d 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-18012 +API version: 1.0.11-18369 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 15ef11945a..e10973e7a9 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-18012 +API version: 1.0.11-18369 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 bd787d5b95..afb1108f3e 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-18012 +API version: 1.0.11-18369 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 a35a82275a..ad48f45d85 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-18012 +API version: 1.0.11-18369 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 4f1f8581ef..5335838b82 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-18012 +API version: 1.0.11-18369 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 bda2b39de4..b56a8de170 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-18012 +API version: 1.0.11-18369 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 208e8eb032..39bdc98971 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-18012 +API version: 1.0.11-18369 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 05bceec73f..3033fb3d0d 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-18012 +API version: 1.0.11-18369 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 17b0054f1e..095bbabdf3 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-18012 +API version: 1.0.11-18369 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 41a4151ce0..e2554b38ce 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-18012 +API version: 1.0.11-18369 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 fb9b7c5346..6d46bb85cb 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-18012 +API version: 1.0.11-18369 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 619c81753c..c6239e3b8f 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-18012 +API version: 1.0.11-18369 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 d948ce4864..1019187a4c 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-18012 +API version: 1.0.11-18369 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 19700b30d4..ec31d45bba 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-18012 +API version: 1.0.11-18369 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 46293555a7..8844208e29 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-18012 +API version: 1.0.11-18369 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 0c06d3a6db..42be465739 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-18012 +API version: 1.0.11-18369 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 43d743382d..680319911a 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-18012 +API version: 1.0.11-18369 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 0d2335a7d9..3d1b86a0a6 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-18012 +API version: 1.0.11-18369 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 e26c450ee9..bba9260a19 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-18012 +API version: 1.0.11-18369 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 b7f5da023a..bec70f369f 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-18012 +API version: 1.0.11-18369 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 fa3641028c..82025167fb 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-18012 +API version: 1.0.11-18369 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 bc9ccf1692..d7ac71ebef 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-18012 +API version: 1.0.11-18369 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 d1a3a7983e..e942443699 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-18012 +API version: 1.0.11-18369 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 ac687e24fc..29c61ff8cf 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-18012 +API version: 1.0.11-18369 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 455bef61d8..bf0b952b96 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-18012 +API version: 1.0.11-18369 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 f3f0e3f8ed..af9e599d32 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-18012 +API version: 1.0.11-18369 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 302f567e98..2c30f16f2e 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-18012 +API version: 1.0.11-18369 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 840add55dd..62b4e0ed85 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-18012 +API version: 1.0.11-18369 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 b781208cfd..d858ca00c6 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-18012 +API version: 1.0.11-18369 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 95a95ba677..caf527e293 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-18012 +API version: 1.0.11-18369 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 533dfb3bf7..cc3135664c 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-18012 +API version: 1.0.11-18369 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 0d2068d611..e083689e1d 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-18012 +API version: 1.0.11-18369 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 8a7aaf8f3b..112fa80a11 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-18012 +API version: 1.0.11-18369 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 041394162b..0faf98fee5 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-18012 +API version: 1.0.11-18369 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 ce1d9f7ea5..70bd408412 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-18012 +API version: 1.0.11-18369 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 7fb282598d..7e213ad40e 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-18012 +API version: 1.0.11-18369 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 1430bc2184..7a3b06c414 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-18012 +API version: 1.0.11-18369 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 4737691203..ac2793b98c 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-18012 +API version: 1.0.11-18369 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 e3efd42b36..73b7eb5c56 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-18012 +API version: 1.0.11-18369 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 f395914160..7f39afda93 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-18012 +API version: 1.0.11-18369 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 00127fa77c..3731665e4b 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-18012 +API version: 1.0.11-18369 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 27c96cb644..dcb3f5ad48 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-18012 +API version: 1.0.11-18369 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 a4f3334aef..fa115ae8d9 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-18012 +API version: 1.0.11-18369 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 8c963424f6..19d7d331c8 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-18012 +API version: 1.0.11-18369 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 deceece5dd..538aee763a 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-18012 +API version: 1.0.11-18369 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 ae76992349..d3519b9221 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-18012 +API version: 1.0.11-18369 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 29f490a2be..ecc66ddbd9 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-18012 +API version: 1.0.11-18369 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 770cf2327e..9db13994aa 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-18012 +API version: 1.0.11-18369 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 601be1be63..a866af94df 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-18012 +API version: 1.0.11-18369 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 369e05f9d4..cac1b076fc 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-18012 +API version: 1.0.11-18369 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 492734658a..f7145f0df4 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-18012 +API version: 1.0.11-18369 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 375919c42c..660abf2bfc 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-18012 +API version: 1.0.11-18369 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 025a4d2a4a..792a1be6cc 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-18012 +API version: 1.0.11-18369 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 3c2c6cb27d..47f24753fe 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-18012 +API version: 1.0.11-18369 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 58dd50d819..945d34c6d5 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-18012 +API version: 1.0.11-18369 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 6f0337f09c..07605597db 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-18012 +API version: 1.0.11-18369 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 6db9cc76ff..f0748294d3 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-18012 +API version: 1.0.11-18369 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 f7e78fbc56..44927c62fa 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-18012 +API version: 1.0.11-18369 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 fb87fb4ad8..b6c5a3400a 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-18012 +API version: 1.0.11-18369 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 5e03e3073a..2012e3daa5 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-18012 +API version: 1.0.11-18369 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 b5c0a14371..31ac7e7650 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-18012 +API version: 1.0.11-18369 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 f66bb8d2ff..df14b4b146 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-18012 +API version: 1.0.11-18369 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 6c34cf2a86..6cbd0b72fe 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-18012 +API version: 1.0.11-18369 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 5b2100ce65..f1278b475d 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-18012 +API version: 1.0.11-18369 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 87699088e3..04408b7641 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-18012 +API version: 1.0.11-18369 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 5671a7b87f..4775464126 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-18012 +API version: 1.0.11-18369 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 ac358ea8e4..14b20ed579 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-18012 +API version: 1.0.11-18369 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 4786ed0f5e..edc8693681 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-18012 +API version: 1.0.11-18369 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 4b20464f67..076e720b99 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-18012 +API version: 1.0.11-18369 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 2c7afd031e..cb626677ce 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-18012 +API version: 1.0.11-18369 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 e4e0169f6c..6ea0fcf205 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-18012 +API version: 1.0.11-18369 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 69c553e0a6..fce5295bdf 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-18012 +API version: 1.0.11-18369 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 4f0c4173d5..ed01fa1b58 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-18012 +API version: 1.0.11-18369 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 1556d607ca..56d9abd04f 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-18012 +API version: 1.0.11-18369 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 2ae97ff990..4eb04f18ac 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-18012 +API version: 1.0.11-18369 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 093af96cbd..259130aa64 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-18012 +API version: 1.0.11-18369 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 065edd8452..3628f6adb3 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-18012 +API version: 1.0.11-18369 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 b98d5421c3..a57e70df5f 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-18012 +API version: 1.0.11-18369 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 90f8adf8dd..c41b4e5a45 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-18012 +API version: 1.0.11-18369 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 1865902cc4..5570670073 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-18012 +API version: 1.0.11-18369 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 b5e4718c5a..0ef79b6321 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-18012 +API version: 1.0.11-18369 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 1e4afca92c..aa8d4b9ccf 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-18012 +API version: 1.0.11-18369 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 da1aeb8c44..ea06f59f59 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-18012 +API version: 1.0.11-18369 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 0229bc9310..f869aa0bf7 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-18012 +API version: 1.0.11-18369 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 6cdaa6592e..ae9248d420 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-18012 +API version: 1.0.11-18369 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 b5590d2cc1..227341ea2b 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-18012 +API version: 1.0.11-18369 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 982f3be0fa..a7723c359a 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-18012 +API version: 1.0.11-18369 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 aa8ec93abf..494c3b7426 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-18012 +API version: 1.0.11-18369 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 cf807e4c38..c615a8822c 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-18012 +API version: 1.0.11-18369 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 c753f44b69..9d50c1e3d7 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-18012 +API version: 1.0.11-18369 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 0bd3629de1..7795854485 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-18012 +API version: 1.0.11-18369 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 3e544700b5..08276ece1f 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-18012 +API version: 1.0.11-18369 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 b1a6bdf61c..71026dddaf 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-18012 +API version: 1.0.11-18369 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 605b764251..d8d5fff47e 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-18012 +API version: 1.0.11-18369 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 bc8df65a49..fdafb12f00 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-18012 +API version: 1.0.11-18369 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 f3d99c1c99..d65945e6b9 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-18012 +API version: 1.0.11-18369 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 7a5be8b131..8973ae0d60 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-18012 +API version: 1.0.11-18369 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 d16930d4ff..68fa90f71f 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-18012 +API version: 1.0.11-18369 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 4848d9f675..ebfd5b7bf0 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-18012 +API version: 1.0.11-18369 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 462347e343..0b101dff31 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-18012 +API version: 1.0.11-18369 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 ea1b5740ef..10baa714cf 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-18012 +API version: 1.0.11-18369 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 381d3ba7f6..2dde1f0645 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-18012 +API version: 1.0.11-18369 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 141d8bc6b2..7e511aee82 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 9b67da6042..537372fb34 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-18012 +API version: 1.0.11-18369 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 a545c19eb8..956a5bb907 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-18012 +API version: 1.0.11-18369 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 c382ad82ae..366bfcea7c 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-18012 +API version: 1.0.11-18369 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 8fc941110d..7ebe4cdb8d 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-18012 +API version: 1.0.11-18369 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 490712b694..03728912cc 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-18012 +API version: 1.0.11-18369 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 8c42e66ce3..90cfe10d11 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-18012 +API version: 1.0.11-18369 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 50388a5f03..9327495e2b 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-18012 +API version: 1.0.11-18369 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 6f6d46feda..2a0e0c59bf 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-18012 +API version: 1.0.11-18369 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 e97f9bcd5d..5b7bc32687 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-18012 +API version: 1.0.11-18369 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 61797bcf23..d985fa7fce 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-18012 +API version: 1.0.11-18369 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 a19c62632f..b145c13d42 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 22c539e041..da019139f9 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-18012 +API version: 1.0.11-18369 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 62329c6dae..4dec40e146 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-18012 +API version: 1.0.11-18369 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 e352e5c787..af833b50da 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-18012 +API version: 1.0.11-18369 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 680cff4061..bbd4fafcf3 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-18012 +API version: 1.0.11-18369 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 98471067aa..96ca9a1b3d 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-18012 +API version: 1.0.11-18369 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 1ffda85334..d8b7efd157 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-18012 +API version: 1.0.11-18369 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 29584247c4..e72012ab1e 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-18012 +API version: 1.0.11-18369 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 6501a99d67..2eab556057 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-18012 +API version: 1.0.11-18369 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 5b32eec580..7f45e7aea9 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 77f4d897f8..e8ee203b58 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-18012 +API version: 1.0.11-18369 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 c80227ab29..d8d3f0309c 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-18012 +API version: 1.0.11-18369 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 f494a7f2b1..9154bdc13c 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-18012 +API version: 1.0.11-18369 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 6a97a8eea6..a6f5367e82 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 a95070d881..c8ee5de614 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 95f4b1241e..b251a4a413 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 3b4016f29a..d6214180fb 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-18012 +API version: 1.0.11-18369 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 e880ba01c0..4c22bfd5cc 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 e5c15cadaa..c0dafb599e 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-18012 +API version: 1.0.11-18369 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 bf774786b1..74f795849a 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-18012 +API version: 1.0.11-18369 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 622f6975bb..fa4206b3b2 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-18012 +API version: 1.0.11-18369 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 1abfb47b92..900aa5cefb 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-18012 +API version: 1.0.11-18369 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 f842a34b76..c2352edd6f 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 c50a1c96ae..dffcff963e 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-18012 +API version: 1.0.11-18369 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 37286b5ccc..7ddd8090b1 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-18012 +API version: 1.0.11-18369 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 9eb7dccc4f..1f86ba56f7 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-18012 +API version: 1.0.11-18369 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 2ec54c1b2f..96a1f630df 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-18012 +API version: 1.0.11-18369 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 74c84ae373..ffcf853d0e 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-18012 +API version: 1.0.11-18369 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 59f910540f..701a623a2e 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-18012 +API version: 1.0.11-18369 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 8eddf7dc12..06acbfcc5a 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-18012 +API version: 1.0.11-18369 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 72119b2f9a..2a0808dda9 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-18012 +API version: 1.0.11-18369 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 bacbec80cf..7bf781b9c2 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-18012 +API version: 1.0.11-18369 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 300546cd44..6d0dd0cdea 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-18012 +API version: 1.0.11-18369 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 8fe14430d2..012e572b44 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 3375a74788..086dbe07d4 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-18012 +API version: 1.0.11-18369 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 e027c44adc..f580457870 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-18012 +API version: 1.0.11-18369 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 b85c6c7087..d1cd9b3a9d 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-18012 +API version: 1.0.11-18369 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 4263b5cb0a..f3844445e5 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-18012 +API version: 1.0.11-18369 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 5b4f2e067d..665d4e4fdc 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-18012 +API version: 1.0.11-18369 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 c206004814..f497982a70 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-18012 +API version: 1.0.11-18369 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 a2d85630c5..a681cc39b8 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-18012 +API version: 1.0.11-18369 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 c08913d44e..6809355c3d 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-18012 +API version: 1.0.11-18369 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 afab44a84d..551c1b65fc 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-18012 +API version: 1.0.11-18369 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 a26f58f675..b915f86f54 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-18012 +API version: 1.0.11-18369 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 0fadda2dd7..6c02fe527d 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-18012 +API version: 1.0.11-18369 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 e9c8d095c6..ac8f0635dd 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-18012 +API version: 1.0.11-18369 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 d230f6da46..66a3457b0a 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-18012 +API version: 1.0.11-18369 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 186c20763a..d2657d5939 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-18012 +API version: 1.0.11-18369 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 02d7ebc6fe..a83c43ccc8 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-18012 +API version: 1.0.11-18369 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 7646fc1cad..9cd8cf3f33 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 61136a68e7..277ad3f750 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-18012 +API version: 1.0.11-18369 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 0e231c397a..03e4909b48 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-18012 +API version: 1.0.11-18369 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 f52d377e36..1d3baf876a 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-18012 +API version: 1.0.11-18369 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 c9a428b789..c90d4ebbbf 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 bb35e79d9b..60d0246081 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-18012 +API version: 1.0.11-18369 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 f52db84962..1ee37dd19b 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-18012 +API version: 1.0.11-18369 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 3224ea3843..222f9748f8 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-18012 +API version: 1.0.11-18369 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 41e4311d54..b33f4da1a8 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-18012 +API version: 1.0.11-18369 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 702cbf8ce5..c714c77118 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-18012 +API version: 1.0.11-18369 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 1f11ac5fb1..5675950362 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-18012 +API version: 1.0.11-18369 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 cdaa4baeb0..881d93ed5b 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-18012 +API version: 1.0.11-18369 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 c06c6a1ff7..7f8bb6582f 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-18012 +API version: 1.0.11-18369 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 74541b5aa7..542aa78583 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-18012 +API version: 1.0.11-18369 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 e1f71e7e44..33ceea5dc6 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-18012 +API version: 1.0.11-18369 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 a1147da907..983a9fe85d 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-18012 +API version: 1.0.11-18369 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 7701a0bcf7..f20786909f 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-18012 +API version: 1.0.11-18369 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 16402966f2..5c4e582ffa 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-18012 +API version: 1.0.11-18369 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 fc3646522a..f6ab142910 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-18012 +API version: 1.0.11-18369 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 0cb1598563..0e6cd43a01 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-18012 +API version: 1.0.11-18369 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 d8845d85b8..5f41bb9fce 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-18012 +API version: 1.0.11-18369 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 185e391caa..55e85749ee 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-18012 +API version: 1.0.11-18369 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 f2df037a2e..896e0ee5d9 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-18012 +API version: 1.0.11-18369 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 4169c0fa5a..b4d563dcc6 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-18012 +API version: 1.0.11-18369 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 0ba9dca311..517f851f39 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-18012 +API version: 1.0.11-18369 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 6d2df56b2f..496685471d 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-18012 +API version: 1.0.11-18369 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 fb1ffcd3bd..8205ec6a10 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-18012 +API version: 1.0.11-18369 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 93264fba15..6a15131460 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-18012 +API version: 1.0.11-18369 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 3b5d6d1dd4..fb58020a17 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-18012 +API version: 1.0.11-18369 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 1f90d51cc2..12fbd26130 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-18012 +API version: 1.0.11-18369 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 3b7c69c32d..cd4293070b 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-18012 +API version: 1.0.11-18369 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 ef89482064..73638b85bb 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-18012 +API version: 1.0.11-18369 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 a80f4c54e9..10cc016410 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-18012 +API version: 1.0.11-18369 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 31215e20c5..5c9511d33a 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 dafb21be4d..7bf7786be1 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-18012 +API version: 1.0.11-18369 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 56559a897b..270d8d02a4 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-18012 +API version: 1.0.11-18369 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 73cb62602f..0746f73121 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-18012 +API version: 1.0.11-18369 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 6de2fb269b..85b495a0c4 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-18012 +API version: 1.0.11-18369 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 b2f9edc179..7105253897 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-18012 +API version: 1.0.11-18369 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 762e08ac10..fdf7b17a30 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-18012 +API version: 1.0.11-18369 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 62218d80d0..ebf948cde4 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-18012 +API version: 1.0.11-18369 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 4ff19673c7..c0312c1517 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-18012 +API version: 1.0.11-18369 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 e2735fd03a..daadbb5dfa 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-18012 +API version: 1.0.11-18369 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 abf1b3a129..433fa6d3ba 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-18012 +API version: 1.0.11-18369 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 a8e34bdffc..d7d2c2b803 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-18012 +API version: 1.0.11-18369 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 d335b1e615..ed4f968c93 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-18012 +API version: 1.0.11-18369 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 1efbb3db72..29e8e48be5 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-18012 +API version: 1.0.11-18369 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 84946881b1..6c4d3d0262 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 89719a558a..359f3dcda5 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-18012 +API version: 1.0.11-18369 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 33bf77f3e3..3fc786d373 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-18012 +API version: 1.0.11-18369 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 8d1808f9f8..4e74b72927 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-18012 +API version: 1.0.11-18369 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 3a81ab2dce..74d3aa628c 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-18012 +API version: 1.0.11-18369 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 16e2531219..3a8822922d 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-18012 +API version: 1.0.11-18369 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 dc0e5a9e30..e04e28fac4 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-18012 +API version: 1.0.11-18369 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 bb7cb70d94..cb181e1f8c 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-18012 +API version: 1.0.11-18369 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 4bd390f8c1..2041fd7367 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-18012 +API version: 1.0.11-18369 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 f367856210..fd8164eb68 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-18012 +API version: 1.0.11-18369 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 172a7d8a4c..91a5f907b3 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 2d764581f6..a082f5e953 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-18012 +API version: 1.0.11-18369 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 d8c55a0f09..b4ac80cce2 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-18012 +API version: 1.0.11-18369 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 5aceec9d98..6d5f35e453 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-18012 +API version: 1.0.11-18369 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 4532e1a848..1c06291ee8 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 c13a35c3ee..e428cf99d7 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-18012 +API version: 1.0.11-18369 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 46f5e207c2..6fbbe0da34 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-18012 +API version: 1.0.11-18369 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 c2ef5effc7..c6447f71ac 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-18012 +API version: 1.0.11-18369 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 eefabf2b1c..f5eb8046a0 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-18012 +API version: 1.0.11-18369 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 c305fe6d66..3969770bf0 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-18012 +API version: 1.0.11-18369 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 a522f94d96..8429ac5505 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-18012 +API version: 1.0.11-18369 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 f9947e7427..0a9bf26635 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-18012 +API version: 1.0.11-18369 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 1d548c0cfd..6ebf792af9 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-18012 +API version: 1.0.11-18369 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 6950b990eb..c99b4295a5 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-18012 +API version: 1.0.11-18369 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 0bf5f36fe0..9e5f94025f 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-18012 +API version: 1.0.11-18369 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 04c17dc71a..5516a3b997 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-18012 +API version: 1.0.11-18369 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 d5a1747968..4db71793c6 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-18012 +API version: 1.0.11-18369 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 63fe977ce6..6cf9861868 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-18012 +API version: 1.0.11-18369 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 beb07fa726..a20dd4fbbd 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-18012 +API version: 1.0.11-18369 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 28372e1d28..b015a401f9 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-18012 +API version: 1.0.11-18369 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 f2a37aa893..d77aab0529 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-18012 +API version: 1.0.11-18369 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 16af12df2a..fd1ecf41a0 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-18012 +API version: 1.0.11-18369 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 7f53a49c98..5380156f55 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-18012 +API version: 1.0.11-18369 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 449b115495..f1b91953b0 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-18012 +API version: 1.0.11-18369 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 dbdc1cdfb8..e4ac4a6cf1 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-18012 +API version: 1.0.11-18369 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 22b8df8452..3b742e8478 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-18012 +API version: 1.0.11-18369 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 d680c1b6fc..c75eba77d9 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-18012 +API version: 1.0.11-18369 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 799901f1e7..8c79335468 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-18012 +API version: 1.0.11-18369 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 96209afea2..34ee24d676 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-18012 +API version: 1.0.11-18369 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 407915d5a5..4cf6efac5b 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-18012 +API version: 1.0.11-18369 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 df032b8d45..bd12dca923 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-18012 +API version: 1.0.11-18369 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 46a8da8d8d..e2d95f396a 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-18012 +API version: 1.0.11-18369 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 2c4012579a..65fca19ca2 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-18012 +API version: 1.0.11-18369 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 a520164756..9360100f93 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 41aa71962b..f10aa87b4a 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-18012 +API version: 1.0.11-18369 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 1b8f4bcf75..c3876f1fbd 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-18012 +API version: 1.0.11-18369 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 c59a7d8b7f..8f6036ce69 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-18012 +API version: 1.0.11-18369 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 94ffa9efff..fb00e7d9d9 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-18012 +API version: 1.0.11-18369 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 fb55372edf..c5ec533028 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-18012 +API version: 1.0.11-18369 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 9369ddc3bb..0682c945e8 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-18012 +API version: 1.0.11-18369 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 e1a6d2706c..8561197988 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-18012 +API version: 1.0.11-18369 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 b14a6c894e..99fc685d47 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-18012 +API version: 1.0.11-18369 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 6f412d76e8..8cf0842e19 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-18012 +API version: 1.0.11-18369 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 4c3a77e7d2..31366c5858 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-18012 +API version: 1.0.11-18369 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 b404b28401..692ea3cfec 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-18012 +API version: 1.0.11-18369 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 fb856d0fc4..de3a290bb4 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-18012 +API version: 1.0.11-18369 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 b726d065c0..e4f086b26c 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-18012 +API version: 1.0.11-18369 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 85aca30015..c308007f8a 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-18012 +API version: 1.0.11-18369 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 d19dd0f237..313996bab1 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-18012 +API version: 1.0.11-18369 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 6acbb8dd0b..170a3b81d9 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-18012 +API version: 1.0.11-18369 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 89c3d34c19..0e08e5b139 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-18012 +API version: 1.0.11-18369 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 cea2b6431b..e186189380 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-18012 +API version: 1.0.11-18369 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 708a5f7d5c..8654002f9e 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-18012 +API version: 1.0.11-18369 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 a63ae62939..595d635d7d 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-18012 +API version: 1.0.11-18369 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 138caec4db..2fbd4038cc 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-18012 +API version: 1.0.11-18369 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 67aecd43cc..a43f0c2023 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-18012 +API version: 1.0.11-18369 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 22b06fa3a2..608a97441e 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-18012 +API version: 1.0.11-18369 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 bd0b88271d..3317a103b5 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-18012 +API version: 1.0.11-18369 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 067ea3cbe7..20c8ae8e1f 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-18012 +API version: 1.0.11-18369 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 919cd7c343..a47e879486 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-18012 +API version: 1.0.11-18369 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 7b7f90237c..835b6addee 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-18012 +API version: 1.0.11-18369 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 568c03f2b8..352fccd8e4 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-18012 +API version: 1.0.11-18369 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 4a863d0f0e..7c4df3c943 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-18012 +API version: 1.0.11-18369 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 4808c80f50..af3e24e24a 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-18012 +API version: 1.0.11-18369 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 bf6dc71566..1354493a3c 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-18012 +API version: 1.0.11-18369 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 24cfeb5964..b415fa71ea 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-18012 +API version: 1.0.11-18369 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 7168c8c086..ee990336c7 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-18012 +API version: 1.0.11-18369 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 48e25a9f1c..31a19d7458 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-18012 +API version: 1.0.11-18369 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 b419b736d2..5208628b80 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-18012 +API version: 1.0.11-18369 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 165cde3bfd..d6e7d67fdd 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-18012 +API version: 1.0.11-18369 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 7d8278e2db..1887adc3cf 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-18012 +API version: 1.0.11-18369 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 aa3e220b3d..66dbd9679c 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-18012 +API version: 1.0.11-18369 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 096dcb36f3..2c3e0dfd4e 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-18012 +API version: 1.0.11-18369 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 2a3204df39..ce0dbe39ca 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-18012 +API version: 1.0.11-18369 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 678afc0059..98705f10ab 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-18012 +API version: 1.0.11-18369 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 7e8e28f198..1c2fa98df8 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-18012 +API version: 1.0.11-18369 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 d91024d362..5bdaebf0bd 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-18012 +API version: 1.0.11-18369 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 677aeec0fa..70c1cd6376 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-18012 +API version: 1.0.11-18369 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 4d83a5a346..273b49e04d 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-18012 +API version: 1.0.11-18369 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 2eff4a4d2d..4ebd8ffa79 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-18012 +API version: 1.0.11-18369 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 c66a629165..ee0d745208 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 8bfd05cc42..5c129f17de 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-18012 +API version: 1.0.11-18369 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 0a99002a8b..c82cceb728 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-18012 +API version: 1.0.11-18369 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 2668f7e324..789f45e9bc 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-18012 +API version: 1.0.11-18369 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 8a18263918..7e0d119cfc 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-18012 +API version: 1.0.11-18369 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 d1c87b904b..80e1225b72 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-18012 +API version: 1.0.11-18369 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 e5a86edd49..7157e0c6ac 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-18012 +API version: 1.0.11-18369 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 c1d49548aa..34f97b1884 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-18012 +API version: 1.0.11-18369 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 570f898ea7..edf5bf21c7 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-18012 +API version: 1.0.11-18369 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 13195c42fc..42f3599df5 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-18012 +API version: 1.0.11-18369 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 72ce7804cc..8c29d9e850 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-18012 +API version: 1.0.11-18369 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 68fe9fa0d3..f05719e15c 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-18012 +API version: 1.0.11-18369 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 4ac76d4d0f..b7c63b8038 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-18012 +API version: 1.0.11-18369 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 f4547b50ef..e1854e8eb4 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-18012 +API version: 1.0.11-18369 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 9a6a202c69..d93709bfa6 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-18012 +API version: 1.0.11-18369 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 1e9a15680f..b0fa08ff7e 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-18012 +API version: 1.0.11-18369 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 6ae5ed2ec7..fb8720fd55 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-18012 +API version: 1.0.11-18369 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 570e0ee745..6781bac257 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-18012 +API version: 1.0.11-18369 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 01c0be12a4..780c22fe29 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-18012 +API version: 1.0.11-18369 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 9400ac0cc6..07c52f4cbc 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-18012 +API version: 1.0.11-18369 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 25c216a915..443d847365 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-18012 +API version: 1.0.11-18369 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 87eec60b90..d996a22da2 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-18012 +API version: 1.0.11-18369 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 2cf1d99e54..167a4f4c65 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-18012 +API version: 1.0.11-18369 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 7a2ab45d2b..db8e4bfc01 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-18012 +API version: 1.0.11-18369 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 3604d9e434..d0e14eb03a 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-18012 +API version: 1.0.11-18369 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 6ac1b0c900..f56f8fe07d 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-18012 +API version: 1.0.11-18369 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 d9964f5837..5fa0a0ef08 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-18012 +API version: 1.0.11-18369 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 7af80b0ab4..07a445e775 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-18012 +API version: 1.0.11-18369 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 fe3a6e8450..ad67d6dfe0 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-18012 +API version: 1.0.11-18369 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 8da70cae47..5669dd53d0 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-18012 +API version: 1.0.11-18369 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 9f890ca08b..c700850825 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-18012 +API version: 1.0.11-18369 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 726834a3c3..15e0701897 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-18012 +API version: 1.0.11-18369 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 dcf8b90a26..754b9900e7 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-18012 +API version: 1.0.11-18369 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 2deec93a8e..ad62ce89b9 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 20e69122f4..c5eb446505 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-18012 +API version: 1.0.11-18369 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 45a677c3bb..15e22a3ecb 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-18012 +API version: 1.0.11-18369 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 fae32a60a7..20ee1cb108 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-18012 +API version: 1.0.11-18369 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 7b3df3c528..5802e9e898 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-18012 +API version: 1.0.11-18369 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 6c1af9d0fc..58bb470d48 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-18012 +API version: 1.0.11-18369 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 669adb36be..d734ec7afe 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-18012 +API version: 1.0.11-18369 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 32c9480621..5169210b18 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-18012 +API version: 1.0.11-18369 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 59342a9ee1..b7659f724e 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-18012 +API version: 1.0.11-18369 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 5d6826d919..e134e401f0 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-18012 +API version: 1.0.11-18369 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 1a31e7ae98..28a28c09d7 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-18012 +API version: 1.0.11-18369 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 30f44f5539..afae7651f4 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-18012 +API version: 1.0.11-18369 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 ac12e43616..26521691c2 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 c94b856b74..06889679d5 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 c8ba5efe3d..df5bca407f 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-18012 +API version: 1.0.11-18369 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 bad2bff219..849a53db9c 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-18012 +API version: 1.0.11-18369 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 4b2f166614..cb409683e3 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-18012 +API version: 1.0.11-18369 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 2aeb144c09..b4a11d7425 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-18012 +API version: 1.0.11-18369 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 8a4e615584..dd3d191092 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-18012 +API version: 1.0.11-18369 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 37c90cde32..65cceed279 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-18012 +API version: 1.0.11-18369 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 61d880a657..fd97665b5e 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-18012 +API version: 1.0.11-18369 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 940d19450f..a3e84a02d0 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-18012 +API version: 1.0.11-18369 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 581a54d3db..1c8982a690 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-18012 +API version: 1.0.11-18369 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 2e811c692a..62e69c2603 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-18012 +API version: 1.0.11-18369 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 c8ce904660..f5467d3f08 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-18012 +API version: 1.0.11-18369 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 220865c70a..be95120be9 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-18012 +API version: 1.0.11-18369 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 f4df3a2885..b80159b225 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-18012 +API version: 1.0.11-18369 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 0acd1528ee..19e91f5c85 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-18012 +API version: 1.0.11-18369 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 b1e2b74ca9..4cfa7bfa6b 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 5255f023e6..ca732bcd50 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 5270a2f5b9..044baf007f 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-18012 +API version: 1.0.11-18369 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 3c3dda4256..ad4b5bc14d 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-18012 +API version: 1.0.11-18369 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 9297547aa7..f4e313f7fd 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-18012 +API version: 1.0.11-18369 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 12991793a4..b8682c8a5c 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-18012 +API version: 1.0.11-18369 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 14281fd873..ae6f9dc013 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-18012 +API version: 1.0.11-18369 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 b0f8aef927..c9f4c52049 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-18012 +API version: 1.0.11-18369 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 463b559aa8..d91478bd0a 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-18012 +API version: 1.0.11-18369 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 b6d6372df5..b0c80044e4 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-18012 +API version: 1.0.11-18369 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 64dad2f328..ce539400a2 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-18012 +API version: 1.0.11-18369 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 b54e445f19..1b7aa57e72 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 f2fcb5d577..a1f2dd608b 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-18012 +API version: 1.0.11-18369 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 b560922797..6d59fcc35c 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-18012 +API version: 1.0.11-18369 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 375382113e..ea4f161e14 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-18012 +API version: 1.0.11-18369 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 3db3ec0250..f80fca4c44 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-18012 +API version: 1.0.11-18369 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 b259e0de26..165b5b204a 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-18012 +API version: 1.0.11-18369 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 33c59daac2..8784ffc3cc 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-18012 +API version: 1.0.11-18369 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 3082959e0a..5be9514f0b 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-18012 +API version: 1.0.11-18369 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 45309b78eb..af59953961 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-18012 +API version: 1.0.11-18369 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 0a5e98de72..275e9c5268 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-18012 +API version: 1.0.11-18369 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 80eda239b0..66ef1d4f1c 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-18012 +API version: 1.0.11-18369 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 9acb8f3e14..d32b419c1e 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-18012 +API version: 1.0.11-18369 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 4670c5c52c..3599a604f0 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-18012 +API version: 1.0.11-18369 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 cdf42e74c2..5e97a7e016 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-18012 +API version: 1.0.11-18369 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 7bee8f69fd..8712049c68 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-18012 +API version: 1.0.11-18369 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 736c0c9a36..0a7941d820 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-18012 +API version: 1.0.11-18369 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 4ed18522e8..d2b8a22c4a 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 e8969c44bc..e81d05b958 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-18012 +API version: 1.0.11-18369 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 3afb74dc21..60aa02c32d 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-18012 +API version: 1.0.11-18369 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 0f2e49c522..b28ed574b1 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-18012 +API version: 1.0.11-18369 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 9ddd204f30..042f19d1b6 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 28a996a324..93445b725d 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 c6651667c5..b47bdf6f01 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-18012 +API version: 1.0.11-18369 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 7b57605267..8e07e4c5f1 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-18012 +API version: 1.0.11-18369 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 82f8086ab8..4d2797fc22 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-18012 +API version: 1.0.11-18369 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 345aa938a3..3f5f8d9fe6 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-18012 +API version: 1.0.11-18369 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 ba7d7397a8..f38e7534fd 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-18012 +API version: 1.0.11-18369 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 a6c73a8577..ea76147742 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-18012 +API version: 1.0.11-18369 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 52f4d7808b..3458e663c3 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-18012 +API version: 1.0.11-18369 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 e308ed5ca3..d835e93c79 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-18012 +API version: 1.0.11-18369 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 26fced23ad..79112e06d9 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-18012 +API version: 1.0.11-18369 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 2bc036eef6..ea33d436b1 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-18012 +API version: 1.0.11-18369 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 eb0106e27e..81a442bf08 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-18012 +API version: 1.0.11-18369 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 0fc29dd8c4..e1b7d85b28 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-18012 +API version: 1.0.11-18369 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 b0f5f10471..5964b8a3b1 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-18012 +API version: 1.0.11-18369 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 2dee6c8e11..fd2d1dd338 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-18012 +API version: 1.0.11-18369 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 70e0c7e8ce..4167119112 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-18012 +API version: 1.0.11-18369 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 cf51e921da..524f378018 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-18012 +API version: 1.0.11-18369 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 94fd79573e..499f022956 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-18012 +API version: 1.0.11-18369 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 20004e3db2..97334ce36b 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-18012 +API version: 1.0.11-18369 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 448618f86b..c099c7b5eb 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-18012 +API version: 1.0.11-18369 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 23708f9113..11eb8eb061 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-18012 +API version: 1.0.11-18369 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 7941a7fe3c..3a770c5093 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-18012 +API version: 1.0.11-18369 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 9b568a3f36..35f8c9cc11 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-18012 +API version: 1.0.11-18369 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 831e3d8676..98b09c923e 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 6ac91ac0e0..72b9412596 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-18012 +API version: 1.0.11-18369 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 74154e3014..5c5c67bce9 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-18012 +API version: 1.0.11-18369 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 191b5478aa..4fa592b793 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-18012 +API version: 1.0.11-18369 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 0f6e57a9d6..71d6eae8e4 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-18012 +API version: 1.0.11-18369 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 7aea75fdd8..ad4f607251 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-18012 +API version: 1.0.11-18369 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 d9aa55666d..82d0c45ff7 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-18012 +API version: 1.0.11-18369 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 d56e1a9b57..c4fdfcffda 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-18012 +API version: 1.0.11-18369 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 ad838d2e1a..267d857aea 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-18012 +API version: 1.0.11-18369 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 24d89fae5c..a89f224511 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-18012 +API version: 1.0.11-18369 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 4cfc84a4e3..dc8f68afa3 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-18012 +API version: 1.0.11-18369 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 16b4f66c8a..344c3df391 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-18012 +API version: 1.0.11-18369 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 9c8d0ea1bc..e02dc3d2ec 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-18012 +API version: 1.0.11-18369 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 32bbbe73df..6eb7aadf69 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-18012 +API version: 1.0.11-18369 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 b12ad4ce7a..8aeb974fcb 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 bd3beda914..b28a7a8c6e 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-18012 +API version: 1.0.11-18369 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 1c2e71ec6a..c0e4dadc14 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-18012 +API version: 1.0.11-18369 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 fc7495c4bb..3cb76d391e 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-18012 +API version: 1.0.11-18369 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 80aa1bb94f..23c56b999f 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-18012 +API version: 1.0.11-18369 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 a40a0af2af..493f652b2c 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-18012 +API version: 1.0.11-18369 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 6aff6360ba..3b0ccc19ad 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-18012 +API version: 1.0.11-18369 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 a768abe0de..0989fdee25 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-18012 +API version: 1.0.11-18369 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 94ace8037c..f809ee52c7 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-18012 +API version: 1.0.11-18369 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 6c466852cb..ae87915176 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-18012 +API version: 1.0.11-18369 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 5989efa6a2..21b1d090ce 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-18012 +API version: 1.0.11-18369 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 d9815c408b..dcbb12c0d2 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-18012 +API version: 1.0.11-18369 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 4b41fa2888..72d1d2b799 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-18012 +API version: 1.0.11-18369 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 2f52b4d87c..50cbe234c7 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-18012 +API version: 1.0.11-18369 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 997ed2feed..ccd6b4e137 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-18012 +API version: 1.0.11-18369 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 cf8e69ae6a..6779901770 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-18012 +API version: 1.0.11-18369 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 7086734401..bd6b9b7614 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-18012 +API version: 1.0.11-18369 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 aeccbad03d..b146553953 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-18012 +API version: 1.0.11-18369 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 4fe3fddbe3..084e5ab055 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-18012 +API version: 1.0.11-18369 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 56a24b81d7..cffb9c1319 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-18012 +API version: 1.0.11-18369 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 b29edbf3ff..8154533f1f 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-18012 +API version: 1.0.11-18369 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 9f2e7da496..a6dd1b05b8 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 60ba9c4aec..9c6b0fb9e1 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-18012 +API version: 1.0.11-18369 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 ffcf6edc57..f59a1e42ce 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-18012 +API version: 1.0.11-18369 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 7146e0aa8f..59ec0b4a07 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-18012 +API version: 1.0.11-18369 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 af64c1454f..3742dee769 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-18012 +API version: 1.0.11-18369 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 3983396b08..5f6fa82a7a 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-18012 +API version: 1.0.11-18369 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 84a17c1d08..222ab81ff1 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-18012 +API version: 1.0.11-18369 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 aeef52a4c0..f2d416f828 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-18012 +API version: 1.0.11-18369 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 4be74f3357..192f05e892 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-18012 +API version: 1.0.11-18369 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 05d7859bea..5a638c016e 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-18012 +API version: 1.0.11-18369 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 21aecab8bf..ac91cc940a 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-18012 +API version: 1.0.11-18369 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 aa3811bfb8..4eae2218ba 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-18012 +API version: 1.0.11-18369 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 e41c976c2a..6dbfeafe99 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-18012 +API version: 1.0.11-18369 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 739fdd9158..30aacb9863 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-18012 +API version: 1.0.11-18369 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 1c325e66b7..3f7a91a995 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-18012 +API version: 1.0.11-18369 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 280723e81f..1515dda025 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-18012 +API version: 1.0.11-18369 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 55afb16d14..901c33aa27 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-18012 +API version: 1.0.11-18369 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 fcff470705..e2f22b7ef9 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-18012 +API version: 1.0.11-18369 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 fc00dcd2a6..e91ef91bcc 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-18012 +API version: 1.0.11-18369 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 beba028a0c..3f09f7c7e5 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-18012 +API version: 1.0.11-18369 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 0fce3df9c4..e35b9c5583 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-18012 +API version: 1.0.11-18369 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 95d31f01d0..bcbb4806b3 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-18012 +API version: 1.0.11-18369 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 3d5a3f19f9..6305b8031a 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-18012 +API version: 1.0.11-18369 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 cfb478f3ce..0f8efac6bc 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-18012 +API version: 1.0.11-18369 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 c053d366a3..1662df6a11 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-18012 +API version: 1.0.11-18369 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 acd84e90b1..98ac1e4726 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-18012 +API version: 1.0.11-18369 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 9a4cdcd720..f917f7e316 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-18012 +API version: 1.0.11-18369 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 e481befeaf..a78fe54b90 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-18012 +API version: 1.0.11-18369 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 a69fa28e1e..8f63177b06 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-18012 +API version: 1.0.11-18369 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 4a61174586..64cd68dbe5 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-18012 +API version: 1.0.11-18369 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 6bcc60c239..8a823e2328 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-18012 +API version: 1.0.11-18369 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 92514ab9cd..76365ebdcc 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-18012 +API version: 1.0.11-18369 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 bda4fb5b82..0d4b0c1a70 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-18012 +API version: 1.0.11-18369 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 ad1c7633d6..476b8f7753 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-18012 +API version: 1.0.11-18369 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 6c07cd499f..e300564582 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-18012 +API version: 1.0.11-18369 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 d4e0708306..f3461c5ae2 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-18012 +API version: 1.0.11-18369 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 f70cbc13c1..bdcab0f22b 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 2a40e6a976..ab0633a8b2 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-18012 +API version: 1.0.11-18369 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 0ea5493db6..85a663124e 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-18012 +API version: 1.0.11-18369 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 de1420fd3e..9b3bcb16c1 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-18012 +API version: 1.0.11-18369 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 1c2ba48b65..0d2c579f2b 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-18012 +API version: 1.0.11-18369 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 1dcd688dfa..04fa661a41 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-18012 +API version: 1.0.11-18369 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 aa1782b8c0..bf76e357e4 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-18012 +API version: 1.0.11-18369 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 77ccea2980..58485cf390 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-18012 +API version: 1.0.11-18369 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 7bf5df8649..5b9fa9b501 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-18012 +API version: 1.0.11-18369 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 3c840af167..50ca58c407 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-18012 +API version: 1.0.11-18369 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 e5e909e37b..e465c6f102 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-18012 +API version: 1.0.11-18369 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 48a9806543..94b00be9b1 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-18012 +API version: 1.0.11-18369 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 4064777c65..670fc8ea83 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-18012 +API version: 1.0.11-18369 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 c778b20d0c..79e0d20c85 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-18012 +API version: 1.0.11-18369 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 c03defa23d..887f3061f2 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-18012 +API version: 1.0.11-18369 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 bc10cc2106..299dfda5eb 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-18012 +API version: 1.0.11-18369 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 bff7f17c86..18b4232dce 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-18012 +API version: 1.0.11-18369 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 0849bf2eb8..0856383e60 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 c6362d069b..edcf30f5ec 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-18012 +API version: 1.0.11-18369 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 823e02fa81..02020c36ba 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-18012 +API version: 1.0.11-18369 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 cbb9fbb732..220f6bf162 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-18012 +API version: 1.0.11-18369 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 853cc8f961..05b333d786 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-18012 +API version: 1.0.11-18369 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 40fad16e1e..9f2eeaa98f 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-18012 +API version: 1.0.11-18369 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 c678677521..5c8f22524c 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-18012 +API version: 1.0.11-18369 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 0312d8069f..9bc5989b29 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-18012 +API version: 1.0.11-18369 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 f31e3c919b..c71086bfab 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-18012 +API version: 1.0.11-18369 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 5136e4c90b..d8544d41b3 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-18012 +API version: 1.0.11-18369 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 d61cb2f00d..c828d863df 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-18012 +API version: 1.0.11-18369 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 037b23f67c..6119538830 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-18012 +API version: 1.0.11-18369 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 fae51d022d..01a3991ba2 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-18012 +API version: 1.0.11-18369 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 d7af25cb7c..f6076e178a 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-18012 +API version: 1.0.11-18369 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 31802285ca..a849e04f49 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-18012 +API version: 1.0.11-18369 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 6b3fd28697..7ecc6678b1 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-18012 +API version: 1.0.11-18369 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 6c75aeb269..ef217dd939 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-18012 +API version: 1.0.11-18369 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 cf447ac9df..7d8f108cda 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-18012 +API version: 1.0.11-18369 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 5ebc611187..c7677690bc 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-18012 +API version: 1.0.11-18369 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 42146f1145..96c889a864 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-18012 +API version: 1.0.11-18369 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 bbce626175..37abfe109d 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-18012 +API version: 1.0.11-18369 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 be5d3cbebb..d65784538e 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-18012 +API version: 1.0.11-18369 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 3ec3e61ea1..6898e61f6d 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-18012 +API version: 1.0.11-18369 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 e684aed341..49915d5d34 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-18012 +API version: 1.0.11-18369 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 cc4d6a3112..eb12a88026 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-18012 +API version: 1.0.11-18369 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 ced475f178..49a589683b 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-18012 +API version: 1.0.11-18369 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 095ac6f0be..0bc0987c08 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-18012 +API version: 1.0.11-18369 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 6b3e1fd724..a72fc8bdf2 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-18012 +API version: 1.0.11-18369 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 5a988cf931..6b519863fc 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-18012 +API version: 1.0.11-18369 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 bbac9efa3b..3a54767eb6 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-18012 +API version: 1.0.11-18369 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 16e7889346..83b10d9903 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ @@ -30,11 +30,11 @@ type IpmioverlanPolicy struct { ObjectType string `json:"ObjectType"` // 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. + // 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 C-Series servers. FI-attached C-Series servers with firmware at minimum of 4.2.3a support this configuration. B/X-Series 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" 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. + // The highest privilege level that can be assigned to an IPMI session on a server. This configuration is supported by all Standalone C-Series servers. FI-attached C-Series servers with firmware at minimum of 4.2.3a support this configuration. B/X-Series servers with firmware at minimum of 5.1.0.x support this configuration. Privilege level user is not supported for B/X-Series 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. Privilege *string `json:"Privilege,omitempty"` Organization NullableOrganizationOrganizationRelationship `json:"Organization,omitempty"` // An array of relationships to policyAbstractConfigProfile resources. @@ -438,11 +438,11 @@ func (o *IpmioverlanPolicy) UnmarshalJSON(data []byte) (err error) { ObjectType string `json:"ObjectType"` // 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. + // 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 C-Series servers. FI-attached C-Series servers with firmware at minimum of 4.2.3a support this configuration. B/X-Series 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" 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. + // The highest privilege level that can be assigned to an IPMI session on a server. This configuration is supported by all Standalone C-Series servers. FI-attached C-Series servers with firmware at minimum of 4.2.3a support this configuration. B/X-Series servers with firmware at minimum of 5.1.0.x support this configuration. Privilege level user is not supported for B/X-Series 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. Privilege *string `json:"Privilege,omitempty"` Organization NullableOrganizationOrganizationRelationship `json:"Organization,omitempty"` // An array of relationships to policyAbstractConfigProfile resources. 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 0c6e5d209b..0044da3b66 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ @@ -30,11 +30,11 @@ type IpmioverlanPolicyInventory struct { ObjectType string `json:"ObjectType"` // 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. + // 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 C-Series servers. FI-attached C-Series servers with firmware at minimum of 4.2.3a support this configuration. B/X-Series 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" 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. + // The highest privilege level that can be assigned to an IPMI session on a server. This configuration is supported by all Standalone C-Series servers. FI-attached C-Series servers with firmware at minimum of 4.2.3a support this configuration. B/X-Series servers with firmware at minimum of 5.1.0.x support this configuration. Privilege level user is not supported for B/X-Series 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. Privilege *string `json:"Privilege,omitempty"` TargetMo NullableMoBaseMoRelationship `json:"TargetMo,omitempty"` AdditionalProperties map[string]interface{} @@ -392,11 +392,11 @@ func (o *IpmioverlanPolicyInventory) UnmarshalJSON(data []byte) (err error) { ObjectType string `json:"ObjectType"` // 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. + // 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 C-Series servers. FI-attached C-Series servers with firmware at minimum of 4.2.3a support this configuration. B/X-Series 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" 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. + // The highest privilege level that can be assigned to an IPMI session on a server. This configuration is supported by all Standalone C-Series servers. FI-attached C-Series servers with firmware at minimum of 4.2.3a support this configuration. B/X-Series servers with firmware at minimum of 5.1.0.x support this configuration. Privilege level user is not supported for B/X-Series 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. Privilege *string `json:"Privilege,omitempty"` TargetMo NullableMoBaseMoRelationship `json:"TargetMo,omitempty"` } 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 fd826372e2..504b34e19e 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-18012 +API version: 1.0.11-18369 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 141649a6dc..e46206c419 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-18012 +API version: 1.0.11-18369 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 8747f5fca6..fb8390be83 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-18012 +API version: 1.0.11-18369 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 1c582a97ea..b86b4be677 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-18012 +API version: 1.0.11-18369 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 fd571df677..658503b7d7 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-18012 +API version: 1.0.11-18369 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 5c94efc0a9..747bbcb472 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-18012 +API version: 1.0.11-18369 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 69bb063293..7cff50b637 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-18012 +API version: 1.0.11-18369 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 179618e12b..4df7a0540e 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-18012 +API version: 1.0.11-18369 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 e294eb0ca3..0a70c95042 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 7a1517a652..339cd79883 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-18012 +API version: 1.0.11-18369 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 df8212cbb8..6bb1bf3298 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-18012 +API version: 1.0.11-18369 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 c9b560f1b4..757f275482 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-18012 +API version: 1.0.11-18369 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 98856d78af..d60a06cc02 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 2f6ac8ce99..c21299b49a 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 97a20c3f28..f97e870a24 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 34d9b23923..99a9292381 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 aa76b71e5d..291c742a40 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-18012 +API version: 1.0.11-18369 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 0aee4210c2..6e8c653c1a 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-18012 +API version: 1.0.11-18369 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 8d077d466f..a3a74578b8 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 099b2a1c60..0b0ec4038d 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-18012 +API version: 1.0.11-18369 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 86eef737c7..a2c63e54b2 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-18012 +API version: 1.0.11-18369 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 1cc080968e..e14bcb6dde 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-18012 +API version: 1.0.11-18369 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 0a5fc615fa..70653cde71 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-18012 +API version: 1.0.11-18369 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 3b1584f45c..12a70631b8 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-18012 +API version: 1.0.11-18369 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 739eb5b48e..33e84b0c67 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 a2e29bb2e6..24cfbc0c06 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-18012 +API version: 1.0.11-18369 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 82e314bc8a..012714507f 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-18012 +API version: 1.0.11-18369 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 e9685cd0ac..55f3726840 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-18012 +API version: 1.0.11-18369 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 ebfda313a8..7261b28d2e 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-18012 +API version: 1.0.11-18369 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 28dd0156e0..45671b19c0 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-18012 +API version: 1.0.11-18369 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 a8913f7c9e..d1858ad395 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-18012 +API version: 1.0.11-18369 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 2875d95965..3cfdb30b86 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-18012 +API version: 1.0.11-18369 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 202b6d633d..b5a3c975cb 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-18012 +API version: 1.0.11-18369 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 2b890931fd..d40313a553 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-18012 +API version: 1.0.11-18369 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 856936fded..acb7778fc6 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-18012 +API version: 1.0.11-18369 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 f3922ac9c0..da3172782e 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-18012 +API version: 1.0.11-18369 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 2ef8530687..c6c75f5e97 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-18012 +API version: 1.0.11-18369 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 dc70089706..42d80c2f4e 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-18012 +API version: 1.0.11-18369 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 0b80de0b07..ad6d197349 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-18012 +API version: 1.0.11-18369 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 96a20e41b9..8d4a253299 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-18012 +API version: 1.0.11-18369 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 0578854eb2..5bc2a1fc14 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-18012 +API version: 1.0.11-18369 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 2ba937c57d..b5edad3ed0 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-18012 +API version: 1.0.11-18369 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 b822b234d9..b5b6075fa3 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-18012 +API version: 1.0.11-18369 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 5fecbc17a4..07155f63c5 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-18012 +API version: 1.0.11-18369 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 2170589c3b..5831bb8418 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-18012 +API version: 1.0.11-18369 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 c3ee42e119..6ac9aa3aa5 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-18012 +API version: 1.0.11-18369 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 74dd5505ee..f43e2aa28f 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 430710c563..1c115f6dde 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-18012 +API version: 1.0.11-18369 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 39447ab70e..72c02e9a21 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-18012 +API version: 1.0.11-18369 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 203c6bace4..1b68234378 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-18012 +API version: 1.0.11-18369 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 fd2cfacadf..c937c946d5 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-18012 +API version: 1.0.11-18369 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 c46c26f53b..07327281c3 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-18012 +API version: 1.0.11-18369 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 74e1d22935..c107e70f99 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-18012 +API version: 1.0.11-18369 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 ada6dd8b6a..c9edd20040 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-18012 +API version: 1.0.11-18369 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 f37885f24f..abe73e8f55 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-18012 +API version: 1.0.11-18369 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 7f58fc2f5a..cae8c27fb7 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-18012 +API version: 1.0.11-18369 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 d1701c3db1..9ebc05b36d 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-18012 +API version: 1.0.11-18369 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 1653f88669..43144ff4ae 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-18012 +API version: 1.0.11-18369 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 cbad879a0f..a303ed01a6 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 9963118c4e..abb9f2bf46 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-18012 +API version: 1.0.11-18369 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 7e2485af5e..5a60a2391e 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-18012 +API version: 1.0.11-18369 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 28b6217a30..fcb465a27d 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-18012 +API version: 1.0.11-18369 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 2bc09611f4..d7821568d0 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-18012 +API version: 1.0.11-18369 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 bfb37dcfdc..b9b1611343 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-18012 +API version: 1.0.11-18369 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 9858162f7e..0baba9dfbd 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-18012 +API version: 1.0.11-18369 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 584a27e0a5..b273063ceb 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-18012 +API version: 1.0.11-18369 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 d63250a68c..132cdd97fc 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-18012 +API version: 1.0.11-18369 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 e068f55747..31b4652f1b 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-18012 +API version: 1.0.11-18369 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 8cb8dcb0c6..2840924310 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-18012 +API version: 1.0.11-18369 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 a6a44862c1..9551515f67 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-18012 +API version: 1.0.11-18369 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 f5328cde09..4564b2eea2 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-18012 +API version: 1.0.11-18369 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 b31af9fed7..ef7ad01443 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-18012 +API version: 1.0.11-18369 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 e82e708e7e..ccb3744734 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-18012 +API version: 1.0.11-18369 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 cde9735d16..b790db264d 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-18012 +API version: 1.0.11-18369 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 beb5b9d2a4..379783a5c5 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-18012 +API version: 1.0.11-18369 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 3b5e1f61d9..bcf0dfc206 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-18012 +API version: 1.0.11-18369 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 e60c3ab0be..aee0040f23 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-18012 +API version: 1.0.11-18369 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 8e518aed54..1fa7a31a51 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-18012 +API version: 1.0.11-18369 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 3ff46cd258..35fe2bf3e7 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-18012 +API version: 1.0.11-18369 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 7747a42086..85fe18addf 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-18012 +API version: 1.0.11-18369 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 a0cbc33084..8cf852beae 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-18012 +API version: 1.0.11-18369 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 2589bae4a5..0478925862 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-18012 +API version: 1.0.11-18369 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 6793857be9..f23529de42 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-18012 +API version: 1.0.11-18369 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 1c8b79ad4c..b81efd6c5d 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-18012 +API version: 1.0.11-18369 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 64b3563691..c28fd589e5 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-18012 +API version: 1.0.11-18369 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 ab491624cc..9a0a103817 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-18012 +API version: 1.0.11-18369 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 f553d367d3..540564f0b8 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-18012 +API version: 1.0.11-18369 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 dde16a33b3..636619649d 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-18012 +API version: 1.0.11-18369 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 91c488c029..f5a0350f84 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-18012 +API version: 1.0.11-18369 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 11cf0f5bce..5c4ec01f9c 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-18012 +API version: 1.0.11-18369 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 2dbfd4e0dc..bdf2610f54 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-18012 +API version: 1.0.11-18369 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 818b964c63..e92ca2c175 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-18012 +API version: 1.0.11-18369 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 d12b24eb61..af88011266 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-18012 +API version: 1.0.11-18369 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 5b6768044a..37cc529d43 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-18012 +API version: 1.0.11-18369 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 775942ba8f..c227da40ed 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 2b58000d2e..30334f5840 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-18012 +API version: 1.0.11-18369 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 34fe3173f8..0a60cbbe69 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-18012 +API version: 1.0.11-18369 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 567b82993b..978e044810 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-18012 +API version: 1.0.11-18369 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 654be90952..82b67e9a53 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 68c1ae01e8..08529dde21 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-18012 +API version: 1.0.11-18369 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 96aaf9aead..78c72581e0 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-18012 +API version: 1.0.11-18369 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 3b037249d8..32c2b89098 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-18012 +API version: 1.0.11-18369 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 45e0e679c1..ac60368457 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-18012 +API version: 1.0.11-18369 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 4108fd3c7d..792a2fc215 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-18012 +API version: 1.0.11-18369 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 d96282f5e4..53b482edff 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-18012 +API version: 1.0.11-18369 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 8c86d6e7ab..5a4203447a 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-18012 +API version: 1.0.11-18369 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 6cb8f982cd..be35852646 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-18012 +API version: 1.0.11-18369 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 e15b04667e..184f7f7b09 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-18012 +API version: 1.0.11-18369 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 2dabbeb42e..77e56a2d04 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-18012 +API version: 1.0.11-18369 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 7f323f2656..75ae6ff696 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-18012 +API version: 1.0.11-18369 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 fd695843f4..34a0084c35 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-18012 +API version: 1.0.11-18369 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 088083c826..c66b6eb51c 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-18012 +API version: 1.0.11-18369 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 0863ec9a64..fdda1cc645 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-18012 +API version: 1.0.11-18369 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 849efe8b5b..a6e56d82c2 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-18012 +API version: 1.0.11-18369 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 411c844d18..2083bd2612 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-18012 +API version: 1.0.11-18369 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 20449fc266..7870addb3d 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-18012 +API version: 1.0.11-18369 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 f22259716c..d2e192fe04 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-18012 +API version: 1.0.11-18369 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 10266483f8..834f8a8d66 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-18012 +API version: 1.0.11-18369 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 3242799ee4..447f18493a 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-18012 +API version: 1.0.11-18369 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 5a5df57dd9..a332c0bb52 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-18012 +API version: 1.0.11-18369 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 eec01ea3e0..3b245b33fa 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-18012 +API version: 1.0.11-18369 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 ab2d83a308..1d0d6c5631 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-18012 +API version: 1.0.11-18369 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 1a94d67359..ea486d34a9 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-18012 +API version: 1.0.11-18369 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 97b1af7ea8..88fc8fb25d 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-18012 +API version: 1.0.11-18369 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 ddba56fdfe..74a5ff461e 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-18012 +API version: 1.0.11-18369 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 8fea9d2247..5198c2d8a4 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-18012 +API version: 1.0.11-18369 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 257c772ada..cd9f2e4c4e 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-18012 +API version: 1.0.11-18369 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 5426618ca1..6f7df0a6a9 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-18012 +API version: 1.0.11-18369 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 7e7cbe1360..e2011d5d97 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-18012 +API version: 1.0.11-18369 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 ef4c07c06a..d68347478b 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-18012 +API version: 1.0.11-18369 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 3e72aaad1c..eed37fec10 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-18012 +API version: 1.0.11-18369 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 309ba1ae95..96766d7697 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-18012 +API version: 1.0.11-18369 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 6c1c28e5d4..046a870df4 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-18012 +API version: 1.0.11-18369 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 6c16c55e1f..4c5665eab2 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-18012 +API version: 1.0.11-18369 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 ad868316f6..ece628ee1d 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-18012 +API version: 1.0.11-18369 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 2f9d3f873c..0f60437cda 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-18012 +API version: 1.0.11-18369 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 ea7440a1d6..8bba7f7dcd 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-18012 +API version: 1.0.11-18369 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 b939a1ddb6..a648b19fdf 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-18012 +API version: 1.0.11-18369 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 72cbdb3e8e..e8ba504e80 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-18012 +API version: 1.0.11-18369 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 7a47687102..f8037aa3e9 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-18012 +API version: 1.0.11-18369 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 8ac27a4946..a47cb2f867 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-18012 +API version: 1.0.11-18369 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 1ca80c5a3e..c4a16dd199 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-18012 +API version: 1.0.11-18369 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 e35053ff33..e006014760 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-18012 +API version: 1.0.11-18369 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 9487eac02d..66824cb57b 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-18012 +API version: 1.0.11-18369 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 6d4843146d..9015d764a9 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-18012 +API version: 1.0.11-18369 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 eb9cbf7cc7..eead8bc654 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-18012 +API version: 1.0.11-18369 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 0a20039a13..a6e1b1d99f 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-18012 +API version: 1.0.11-18369 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 df7f76e9fd..370be879e4 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-18012 +API version: 1.0.11-18369 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 f9f4f1b302..5e63bedb67 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-18012 +API version: 1.0.11-18369 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 a0d0add6f7..6274d014f5 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-18012 +API version: 1.0.11-18369 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 69e8399fdf..c3addb05e1 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-18012 +API version: 1.0.11-18369 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 3ff350485e..27febbe70b 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-18012 +API version: 1.0.11-18369 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 6414331bdf..c1910d3689 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-18012 +API version: 1.0.11-18369 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 a382c51433..f1ebdaed5a 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-18012 +API version: 1.0.11-18369 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 64a80d24bc..f5ab2b6017 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 79b5777e46..7bb84d2eb4 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-18012 +API version: 1.0.11-18369 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 f93e6e74a2..87b825c44c 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-18012 +API version: 1.0.11-18369 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 8afb9ee553..dab7493a00 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-18012 +API version: 1.0.11-18369 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 0ff83070f5..b0e54797f1 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-18012 +API version: 1.0.11-18369 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 9c85445c5d..38aabf2756 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-18012 +API version: 1.0.11-18369 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 0ee862a67b..521a62e9b3 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-18012 +API version: 1.0.11-18369 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 7c4ce8ecc1..23690e5105 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-18012 +API version: 1.0.11-18369 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 9314511c1c..1d1337ceab 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-18012 +API version: 1.0.11-18369 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 2487ad719b..8c3e22ff70 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-18012 +API version: 1.0.11-18369 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 f9b3160e71..93f04c48cf 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-18012 +API version: 1.0.11-18369 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 430726b7d5..6ddc6d6c7f 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-18012 +API version: 1.0.11-18369 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 6f9bf3986b..320a5191a7 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-18012 +API version: 1.0.11-18369 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 f0e4d95cb9..637b79b8cf 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-18012 +API version: 1.0.11-18369 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 007d2b32f1..c3e758836d 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-18012 +API version: 1.0.11-18369 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 3ed41735af..1a78e7cd58 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-18012 +API version: 1.0.11-18369 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 af9634bfa4..963e15b01d 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-18012 +API version: 1.0.11-18369 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 351eec3957..fab3eff172 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-18012 +API version: 1.0.11-18369 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 45cc241c8b..df9455947f 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-18012 +API version: 1.0.11-18369 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 b37c0541bc..c9b5dba02d 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-18012 +API version: 1.0.11-18369 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 7f2102ce40..ff864da27f 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-18012 +API version: 1.0.11-18369 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 c20dd3638b..c8ae0ebac7 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-18012 +API version: 1.0.11-18369 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 8ebd605359..1fac16cf49 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-18012 +API version: 1.0.11-18369 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 f9fdc6ad3e..58e68caadf 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-18012 +API version: 1.0.11-18369 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 8b147abdef..ff91cf987e 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-18012 +API version: 1.0.11-18369 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 2f896e35a3..ba19fa9526 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 41bc6c365e..a8026daf3a 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-18012 +API version: 1.0.11-18369 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 c8462a4328..c662f296fd 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-18012 +API version: 1.0.11-18369 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 7ddc4162c0..20fcf5dc1d 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-18012 +API version: 1.0.11-18369 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 564d260e04..f6be633269 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-18012 +API version: 1.0.11-18369 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 0b860bdd81..32e680c6b1 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-18012 +API version: 1.0.11-18369 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 3fece1e6be..8504e264ae 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 836d0fe238..69730a68f8 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-18012 +API version: 1.0.11-18369 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 ad1d56ac4b..8982e31e55 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-18012 +API version: 1.0.11-18369 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 0408978571..24507dc324 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-18012 +API version: 1.0.11-18369 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 202b8eb133..2a7899948c 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-18012 +API version: 1.0.11-18369 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 f6d2437140..aea8fd7f1d 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-18012 +API version: 1.0.11-18369 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 f8b1080245..d52b047cc8 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-18012 +API version: 1.0.11-18369 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 5692d480f5..f24567049e 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-18012 +API version: 1.0.11-18369 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 02b64d7b00..ddb3a73e83 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-18012 +API version: 1.0.11-18369 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 2bccd3a573..da8049de8a 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-18012 +API version: 1.0.11-18369 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 70785ca210..ac25a52a86 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-18012 +API version: 1.0.11-18369 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 6ed17fe03e..966351578f 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-18012 +API version: 1.0.11-18369 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 3cd832a7ba..0addb120ae 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-18012 +API version: 1.0.11-18369 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 68a32df2f7..b44e5a98ce 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-18012 +API version: 1.0.11-18369 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 4765805bf1..077a51a2c6 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-18012 +API version: 1.0.11-18369 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 525ff1875e..32447b1ed0 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-18012 +API version: 1.0.11-18369 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 5d84889efb..9015ee79cb 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-18012 +API version: 1.0.11-18369 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 6c091c3357..147f1a0122 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-18012 +API version: 1.0.11-18369 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 7f885a7b6e..265aa61f8d 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-18012 +API version: 1.0.11-18369 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 c08d7219e0..09bf867a33 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-18012 +API version: 1.0.11-18369 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 00208bf60b..f285ea2782 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-18012 +API version: 1.0.11-18369 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 8110270f0d..1994895ea6 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-18012 +API version: 1.0.11-18369 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 f0a65e083f..12a4b9ddcc 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-18012 +API version: 1.0.11-18369 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 9cb1ba10fc..a810c16f4f 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-18012 +API version: 1.0.11-18369 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 0628600a7c..94a6314f42 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-18012 +API version: 1.0.11-18369 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 c7cc0cc2a8..65f43b6066 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-18012 +API version: 1.0.11-18369 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 5e9ad5f597..6d696e703e 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-18012 +API version: 1.0.11-18369 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 16036628e5..d7a79f1bb1 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-18012 +API version: 1.0.11-18369 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 f53c9db898..83d670b6ee 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 a98abab95b..602fc726b4 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 23aebf4125..248ac2c6f6 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-18012 +API version: 1.0.11-18369 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 c29b7e09e8..b728ea39b2 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-18012 +API version: 1.0.11-18369 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 d2c0c1aa06..93a2ad1b82 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-18012 +API version: 1.0.11-18369 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 a2a0c011a3..5e385e9599 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-18012 +API version: 1.0.11-18369 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 040af1ce73..a25bab4f8f 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-18012 +API version: 1.0.11-18369 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 68f161d1b2..1925788cee 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-18012 +API version: 1.0.11-18369 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 2217688c6a..252aed747c 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-18012 +API version: 1.0.11-18369 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 5827036d81..f2f101ddf1 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-18012 +API version: 1.0.11-18369 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 27f1b678f8..4521b2a8df 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 1b45d55b16..f7e668d036 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-18012 +API version: 1.0.11-18369 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 63588160fa..2264337935 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-18012 +API version: 1.0.11-18369 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 c0ea113e38..4ff2fbcdb7 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-18012 +API version: 1.0.11-18369 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 eac801a2fa..f6cf303f19 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-18012 +API version: 1.0.11-18369 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 66520c3c0b..c118e9b5e4 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-18012 +API version: 1.0.11-18369 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 381102ec69..f2652cf1fe 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-18012 +API version: 1.0.11-18369 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 bfde564778..0827648a49 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-18012 +API version: 1.0.11-18369 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 fa2ad05eea..9b069d0c4d 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-18012 +API version: 1.0.11-18369 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 f9500a8331..f51fe2fef0 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 fa3652f719..65a674d8f7 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-18012 +API version: 1.0.11-18369 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 9382eba636..bb7e55ba72 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-18012 +API version: 1.0.11-18369 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 358fa372b3..6b5238114f 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-18012 +API version: 1.0.11-18369 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 fc80f4ed3a..fdc9ae7b0b 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-18012 +API version: 1.0.11-18369 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 8fc9155c1b..80071f095d 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-18012 +API version: 1.0.11-18369 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 31adaf305c..f33689a1ad 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-18012 +API version: 1.0.11-18369 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 89514e5a4a..1c6430ccc9 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-18012 +API version: 1.0.11-18369 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 717fe4c82e..9a59fa0010 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-18012 +API version: 1.0.11-18369 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 4bbc63a12a..1b71055c28 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-18012 +API version: 1.0.11-18369 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 fa104c7962..e0a6ffc050 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-18012 +API version: 1.0.11-18369 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 88773b86fa..70bc56e227 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-18012 +API version: 1.0.11-18369 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 3395d92ac4..3b4450549f 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-18012 +API version: 1.0.11-18369 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 dacf64e2e0..056c98d4e9 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-18012 +API version: 1.0.11-18369 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 98a1d9114e..cfdd892ff2 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-18012 +API version: 1.0.11-18369 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 ec0c9d3599..22dfbc0978 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-18012 +API version: 1.0.11-18369 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 a31dfa0346..5d75558f48 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-18012 +API version: 1.0.11-18369 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 f9a70abac5..6eadaf704b 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-18012 +API version: 1.0.11-18369 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 8a3ab512ba..b50527e72b 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-18012 +API version: 1.0.11-18369 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 0496d4c5e8..2218113399 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-18012 +API version: 1.0.11-18369 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 e121de711f..294fb92f0b 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-18012 +API version: 1.0.11-18369 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 b7c90e26ea..02dcd984d3 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-18012 +API version: 1.0.11-18369 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 ec60397f31..2ea0f655bf 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-18012 +API version: 1.0.11-18369 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 219c9e16fb..b30919607a 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-18012 +API version: 1.0.11-18369 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 0ec88225f7..56112cea89 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-18012 +API version: 1.0.11-18369 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 9ef811f852..dd6309fec0 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-18012 +API version: 1.0.11-18369 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 6f6bb41bd6..ca48cb1e17 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-18012 +API version: 1.0.11-18369 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 5b2305060e..32f9296961 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-18012 +API version: 1.0.11-18369 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 ceb04bed71..33eece68b0 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-18012 +API version: 1.0.11-18369 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 78dd6ca2bd..424aef16e7 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-18012 +API version: 1.0.11-18369 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 34f36cc843..f602b54114 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-18012 +API version: 1.0.11-18369 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 7be81b8e26..49fafe10a0 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-18012 +API version: 1.0.11-18369 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 e7e1a80f1f..4c0cb61c04 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-18012 +API version: 1.0.11-18369 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 c16fffb665..c283f53bd3 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-18012 +API version: 1.0.11-18369 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 ca305c9481..5640836438 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-18012 +API version: 1.0.11-18369 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 2e841d35b6..32376b8573 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-18012 +API version: 1.0.11-18369 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 ee7a605a21..20f5aef4eb 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-18012 +API version: 1.0.11-18369 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 bbb7db83a4..79beb1d405 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-18012 +API version: 1.0.11-18369 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 e4f0617c9e..32097504ef 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-18012 +API version: 1.0.11-18369 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 7266ec6b67..f6c059c8bb 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-18012 +API version: 1.0.11-18369 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 3dde0a7322..ec010dbc36 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-18012 +API version: 1.0.11-18369 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 42517c4c31..9eb29039e7 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-18012 +API version: 1.0.11-18369 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 62388df11e..b17663751c 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-18012 +API version: 1.0.11-18369 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 93a30d0fd7..8d68c5b4cf 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-18012 +API version: 1.0.11-18369 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 912e8b4ff2..18da6238a9 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-18012 +API version: 1.0.11-18369 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 1b9deefc3a..91a663fdb4 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-18012 +API version: 1.0.11-18369 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 0f24191d78..4ba52e64fa 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-18012 +API version: 1.0.11-18369 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 ba8740bc6f..c9a9ab8029 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-18012 +API version: 1.0.11-18369 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 9a08afc115..faaf3acfec 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-18012 +API version: 1.0.11-18369 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 b11c6bb343..963de80faf 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-18012 +API version: 1.0.11-18369 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 b06a5f4a39..6f4c1dd8be 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-18012 +API version: 1.0.11-18369 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 bf30f550e7..c299a888c5 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-18012 +API version: 1.0.11-18369 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 bc4f3d576e..793a655628 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-18012 +API version: 1.0.11-18369 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 ead168d20a..00e1c25a0d 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-18012 +API version: 1.0.11-18369 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 84420d0cf1..95b9f79df7 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-18012 +API version: 1.0.11-18369 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 333ce60888..96c140677e 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-18012 +API version: 1.0.11-18369 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 740972d4d0..5b021e7bc1 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-18012 +API version: 1.0.11-18369 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 35369544fc..1879603102 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-18012 +API version: 1.0.11-18369 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 0f9f08498b..94b6774d0b 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-18012 +API version: 1.0.11-18369 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 a2507be4ef..0229ea2ffa 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-18012 +API version: 1.0.11-18369 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 fd467ce0f1..546151d9d5 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-18012 +API version: 1.0.11-18369 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 d776ff6b91..371869701c 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-18012 +API version: 1.0.11-18369 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 fe7ccadf47..3bab680724 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-18012 +API version: 1.0.11-18369 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 993b4e0e85..7ff79c57fc 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-18012 +API version: 1.0.11-18369 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 0010f71a56..aa1be8fd9b 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-18012 +API version: 1.0.11-18369 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 ceeed8d093..169e64a3da 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-18012 +API version: 1.0.11-18369 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 7d70188610..629c6ce7bc 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-18012 +API version: 1.0.11-18369 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 9003ee4460..5691014d4f 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-18012 +API version: 1.0.11-18369 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 89b287063f..3774a471f8 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-18012 +API version: 1.0.11-18369 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 e573052745..b12c3c2a63 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-18012 +API version: 1.0.11-18369 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 01c5e58ebd..aa92aa9af7 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-18012 +API version: 1.0.11-18369 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 b71c39eb9f..f304390132 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-18012 +API version: 1.0.11-18369 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 e6551cbcce..9e5ad7e429 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-18012 +API version: 1.0.11-18369 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 f178fdb000..32ddc3f08b 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-18012 +API version: 1.0.11-18369 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 30027899e5..b85df815e9 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-18012 +API version: 1.0.11-18369 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 7d6ab1e711..d12a5d5770 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-18012 +API version: 1.0.11-18369 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 5e43c4225b..33c4315c50 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-18012 +API version: 1.0.11-18369 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 f60bd3dc36..f30898324a 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-18012 +API version: 1.0.11-18369 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 44167a8ec4..71e8d7d55c 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-18012 +API version: 1.0.11-18369 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 929222c270..4540f30fc2 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-18012 +API version: 1.0.11-18369 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 72d05f6de1..83be38ded2 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-18012 +API version: 1.0.11-18369 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 e335c20836..2efbf06365 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-18012 +API version: 1.0.11-18369 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 634ac9b1df..26983cf83c 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-18012 +API version: 1.0.11-18369 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 69bd7011db..5224c640a0 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-18012 +API version: 1.0.11-18369 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 c619e90f35..8426664574 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-18012 +API version: 1.0.11-18369 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 c941e3d3c7..2199fae869 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-18012 +API version: 1.0.11-18369 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 0e8abdd3a0..862536e1d2 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-18012 +API version: 1.0.11-18369 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 922bce7c00..61690bc928 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-18012 +API version: 1.0.11-18369 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 dde918dda6..e7b794dfd7 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-18012 +API version: 1.0.11-18369 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 8057817f9e..80b10efab7 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-18012 +API version: 1.0.11-18369 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 c8737a4a15..100536c735 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-18012 +API version: 1.0.11-18369 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 9d389854a4..9f773dc52f 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-18012 +API version: 1.0.11-18369 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 88f653012e..060b027ec5 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-18012 +API version: 1.0.11-18369 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 52f8fb6bf0..01a4a6494a 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-18012 +API version: 1.0.11-18369 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 5077a3428d..10059f7bc7 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-18012 +API version: 1.0.11-18369 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 cc766d35a4..d589e792b7 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-18012 +API version: 1.0.11-18369 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 cd386a729f..ddd2be82fd 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-18012 +API version: 1.0.11-18369 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 f481753851..3842e57ca2 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-18012 +API version: 1.0.11-18369 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 63a1ec12f2..4121111237 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-18012 +API version: 1.0.11-18369 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 a64259bd82..d3158fbbdf 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-18012 +API version: 1.0.11-18369 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 427765459c..41e0a541df 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-18012 +API version: 1.0.11-18369 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 76e5c4ca21..8ab499d595 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-18012 +API version: 1.0.11-18369 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 7f76834a3d..549b03061d 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-18012 +API version: 1.0.11-18369 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 810bfc4d3a..2f59527361 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-18012 +API version: 1.0.11-18369 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 b8b5a69ed8..8ac24409f8 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-18012 +API version: 1.0.11-18369 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 385543265d..87c02ef797 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-18012 +API version: 1.0.11-18369 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 01cc27c5e0..f53a833981 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-18012 +API version: 1.0.11-18369 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 8276ab95e8..51006c9176 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-18012 +API version: 1.0.11-18369 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 3e5924affb..d4673c1962 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-18012 +API version: 1.0.11-18369 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 e29b2d262d..c8eb8d17b3 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-18012 +API version: 1.0.11-18369 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 0f6c5d99e5..2a1ccb522c 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-18012 +API version: 1.0.11-18369 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 b2b4da1d0a..68caf2104d 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-18012 +API version: 1.0.11-18369 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 f046b59fe8..9db4cae5db 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-18012 +API version: 1.0.11-18369 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 e1ccf3370f..2f7ff1ef49 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-18012 +API version: 1.0.11-18369 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 5a864c727e..d34e4ecb07 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-18012 +API version: 1.0.11-18369 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 9f1be3ae5d..14479acf33 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-18012 +API version: 1.0.11-18369 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 9a01ecc066..38ba928c23 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-18012 +API version: 1.0.11-18369 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 4f1c965ed6..8681d12605 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-18012 +API version: 1.0.11-18369 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 4e9b0e558d..ba446712a3 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-18012 +API version: 1.0.11-18369 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 d8f84eb30d..8ba3a99dd7 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-18012 +API version: 1.0.11-18369 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 0032d320f7..9716196073 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-18012 +API version: 1.0.11-18369 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 9342620a41..1f2b4df89e 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-18012 +API version: 1.0.11-18369 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 aefe114efe..f6ee504573 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-18012 +API version: 1.0.11-18369 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 f0f231b2e6..28084d7ad4 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-18012 +API version: 1.0.11-18369 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 1fdda91624..d297392b48 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-18012 +API version: 1.0.11-18369 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 01d34962c7..48b35184f2 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-18012 +API version: 1.0.11-18369 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 41e1c2b750..d4140c4386 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-18012 +API version: 1.0.11-18369 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 352f9096a9..b3ff9ea35a 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-18012 +API version: 1.0.11-18369 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 b0ca7cf468..2d7ab5ce4b 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-18012 +API version: 1.0.11-18369 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 64bbbd47b8..43ceb5e5e8 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-18012 +API version: 1.0.11-18369 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 233806691d..5ac6828c5d 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-18012 +API version: 1.0.11-18369 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 2319f30c4d..4adb7fd30d 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-18012 +API version: 1.0.11-18369 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 59d345546a..b868d424c9 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-18012 +API version: 1.0.11-18369 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 a281808d5b..c11920d199 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-18012 +API version: 1.0.11-18369 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 b8007db795..f21ccb6280 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-18012 +API version: 1.0.11-18369 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 5a384fbb67..be57c43429 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-18012 +API version: 1.0.11-18369 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 c27d3a64a3..615f4c55c5 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-18012 +API version: 1.0.11-18369 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 cb273ff8c5..788a66ab05 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-18012 +API version: 1.0.11-18369 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 6740c96796..da09221409 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 548f9443d0..cc755f3354 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-18012 +API version: 1.0.11-18369 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 4271659232..fbcf2b41b0 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-18012 +API version: 1.0.11-18369 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 8e27726ac9..67558cf7ba 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-18012 +API version: 1.0.11-18369 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 1bea4e1376..bb8da9d950 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-18012 +API version: 1.0.11-18369 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 d82fd9345c..1806c54176 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 f6267de528..cd19e75adb 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-18012 +API version: 1.0.11-18369 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 9b42a6ac40..b849de4d9a 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-18012 +API version: 1.0.11-18369 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 29953766ad..cec17e4948 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-18012 +API version: 1.0.11-18369 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 f9b2c58363..b33ef1e845 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-18012 +API version: 1.0.11-18369 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 dc480d5f74..9e6e0f2f06 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-18012 +API version: 1.0.11-18369 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 445ebbc712..91e04daf5f 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-18012 +API version: 1.0.11-18369 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 0ea5a4ea54..eded863688 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-18012 +API version: 1.0.11-18369 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 382e854183..dc7f339a06 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-18012 +API version: 1.0.11-18369 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 36142e0aa2..da761bc57f 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-18012 +API version: 1.0.11-18369 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 64df96b3b2..a257cfe53b 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-18012 +API version: 1.0.11-18369 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 bdc9fa2018..67d98a77c4 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-18012 +API version: 1.0.11-18369 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 2fae83b842..4acad6cb72 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-18012 +API version: 1.0.11-18369 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 b2f2e1a9a9..73413f8b58 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-18012 +API version: 1.0.11-18369 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 763c383170..bb315cd805 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-18012 +API version: 1.0.11-18369 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 b228483bd9..c840d26bd5 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-18012 +API version: 1.0.11-18369 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 03845d7d90..6b3b8d5ae5 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-18012 +API version: 1.0.11-18369 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 25ce1ecfdc..f5cc006a04 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 73473bed9d..86e06e9e8f 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 68ebc18ebd..78f264f6eb 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-18012 +API version: 1.0.11-18369 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 9bb1c438c8..b11bff59a0 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-18012 +API version: 1.0.11-18369 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 83e072a605..e81521cb4e 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-18012 +API version: 1.0.11-18369 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 7ba394b140..7803544aa9 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-18012 +API version: 1.0.11-18369 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 c50eb84b3b..923c5e4b3b 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-18012 +API version: 1.0.11-18369 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 05dd9b23eb..c6e082db85 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-18012 +API version: 1.0.11-18369 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 5d08add468..59ff614159 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-18012 +API version: 1.0.11-18369 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 763e35d0cb..a2e07d6f1e 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-18012 +API version: 1.0.11-18369 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 99256487fd..b765e96511 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-18012 +API version: 1.0.11-18369 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 2a15501ae8..5055e31e27 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-18012 +API version: 1.0.11-18369 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 e9a6ae76cf..fb9a56fee0 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-18012 +API version: 1.0.11-18369 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 749b620011..d4c3d41c58 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-18012 +API version: 1.0.11-18369 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 397cc8cb6c..c909f5bd67 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-18012 +API version: 1.0.11-18369 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 838b36955b..03bc3ebf1e 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-18012 +API version: 1.0.11-18369 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 4c218f5213..05b7b05843 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-18012 +API version: 1.0.11-18369 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 57fb06b7b6..abf1ba0280 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-18012 +API version: 1.0.11-18369 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 37c8cd22f1..632a6e5558 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-18012 +API version: 1.0.11-18369 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 4a34abc91e..c98bcd9f7b 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-18012 +API version: 1.0.11-18369 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 bbab36877b..338d015f92 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-18012 +API version: 1.0.11-18369 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 cd3dd9906c..b365837b4f 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-18012 +API version: 1.0.11-18369 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 7601147ff0..3a5f197ed5 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-18012 +API version: 1.0.11-18369 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 f10f72be3b..8ed238a6a1 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-18012 +API version: 1.0.11-18369 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 55cd33ca26..e6da363401 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-18012 +API version: 1.0.11-18369 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 ce1a0696d3..3af05a140c 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-18012 +API version: 1.0.11-18369 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 4eae275e8c..1ad567e817 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-18012 +API version: 1.0.11-18369 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 94cd311011..77359eef36 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-18012 +API version: 1.0.11-18369 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 76362e6378..a04c6df0f2 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-18012 +API version: 1.0.11-18369 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 c60f118d9f..120c4dc169 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-18012 +API version: 1.0.11-18369 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 4bba866d5b..19a4cb0561 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-18012 +API version: 1.0.11-18369 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 e60b4677fe..ce9f8c66af 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-18012 +API version: 1.0.11-18369 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 01878741a6..2fecf28782 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-18012 +API version: 1.0.11-18369 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 9d0990ac90..0fdcd5ccda 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-18012 +API version: 1.0.11-18369 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 f37df95627..537a0918d5 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-18012 +API version: 1.0.11-18369 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 e034fdb8e7..2798012f7a 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-18012 +API version: 1.0.11-18369 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 556e86fd58..862d75eb4a 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-18012 +API version: 1.0.11-18369 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 eb52fb4899..b3bb08511c 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-18012 +API version: 1.0.11-18369 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 87a45ea0d2..14667e55a8 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-18012 +API version: 1.0.11-18369 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 7bae672859..64e056deaf 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-18012 +API version: 1.0.11-18369 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 877c35f772..33c2f6da79 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-18012 +API version: 1.0.11-18369 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 245d0998f1..7f63de3f3d 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-18012 +API version: 1.0.11-18369 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 e919102650..91d8248d26 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-18012 +API version: 1.0.11-18369 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 3bab0fdc59..3cc140397f 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-18012 +API version: 1.0.11-18369 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 c5e3121c3e..5fbdef4cf2 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-18012 +API version: 1.0.11-18369 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 15a69ef2b7..abee796844 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-18012 +API version: 1.0.11-18369 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 fc5ac2872b..24f0779d92 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-18012 +API version: 1.0.11-18369 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 f041e59eee..e45f40e122 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-18012 +API version: 1.0.11-18369 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 aac7a0ede7..be95f5ef3a 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-18012 +API version: 1.0.11-18369 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 9a9742e7f4..1c5c4951e9 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-18012 +API version: 1.0.11-18369 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 cabf5490ad..04cd97362d 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-18012 +API version: 1.0.11-18369 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 0827b86062..92e7073d52 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-18012 +API version: 1.0.11-18369 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 2aba0b09b1..15ad655546 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-18012 +API version: 1.0.11-18369 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 7dc53c1fde..ddf699bbad 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-18012 +API version: 1.0.11-18369 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 cbbe024590..2ccf10cdfb 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-18012 +API version: 1.0.11-18369 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 cd01e7d062..75e80b9959 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-18012 +API version: 1.0.11-18369 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 d2bb60e8fb..b0a5c4b1f3 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-18012 +API version: 1.0.11-18369 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 1afc3feeae..ec60d47c86 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-18012 +API version: 1.0.11-18369 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 786752fee2..16463f776a 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-18012 +API version: 1.0.11-18369 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 2ae00c0529..217422b8b4 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-18012 +API version: 1.0.11-18369 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 877ef93f4f..f5e193bad6 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-18012 +API version: 1.0.11-18369 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 aa8f6427be..da9cd5fb48 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-18012 +API version: 1.0.11-18369 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 92979724bb..393112e879 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-18012 +API version: 1.0.11-18369 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 c12597c8b9..a6a7afe2db 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-18012 +API version: 1.0.11-18369 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 9cc5543305..1cda064af3 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-18012 +API version: 1.0.11-18369 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 cf1d13b679..d06f1816ec 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-18012 +API version: 1.0.11-18369 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 98c4e960d6..e772284526 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 3946221372..56494f0421 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-18012 +API version: 1.0.11-18369 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 59b6fa3fe3..ed9fec93bf 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-18012 +API version: 1.0.11-18369 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 34e15ad613..08995c87e7 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-18012 +API version: 1.0.11-18369 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 215f02960b..69c06534d9 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-18012 +API version: 1.0.11-18369 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 581b4df6d9..2a91eb1738 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-18012 +API version: 1.0.11-18369 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 0e93f624fe..7616e284bf 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-18012 +API version: 1.0.11-18369 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 6a76efa42c..5242cba382 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-18012 +API version: 1.0.11-18369 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 9aacb64f7c..5333ab79f0 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-18012 +API version: 1.0.11-18369 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 1a4d0894e8..624d477364 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-18012 +API version: 1.0.11-18369 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 fc07931631..7c25bab003 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-18012 +API version: 1.0.11-18369 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 0e82654f8e..cc778a3783 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-18012 +API version: 1.0.11-18369 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 18290a3619..7205637394 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-18012 +API version: 1.0.11-18369 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 34465b6df8..77e23cf970 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-18012 +API version: 1.0.11-18369 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 f496f47a12..441b7d9f6c 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-18012 +API version: 1.0.11-18369 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 b0c26c9747..2a510570e4 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 2d865008fe..fde5e80fb6 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-18012 +API version: 1.0.11-18369 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 6241e9bbcc..160dc05c85 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-18012 +API version: 1.0.11-18369 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 ad7582ed70..6fb951358d 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-18012 +API version: 1.0.11-18369 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 110f8c42f9..59caaba048 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 f1dc3a2327..4bd0da4b4e 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-18012 +API version: 1.0.11-18369 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 8943750db5..fe9b07f0df 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-18012 +API version: 1.0.11-18369 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 f2407498ab..1fa657c7d9 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-18012 +API version: 1.0.11-18369 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 971f280222..09d9ece5d9 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-18012 +API version: 1.0.11-18369 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 0c8cf8da5f..2fe3e990cb 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-18012 +API version: 1.0.11-18369 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 b42b3a8d97..2de0c0dd17 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-18012 +API version: 1.0.11-18369 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 2fb8b4c5e9..e8acbe0403 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-18012 +API version: 1.0.11-18369 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 56a626f1ee..89f52b298a 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-18012 +API version: 1.0.11-18369 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 8073e9a7d4..dac2599007 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-18012 +API version: 1.0.11-18369 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 3af71eb3e3..9ac28b8de3 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-18012 +API version: 1.0.11-18369 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 0d0070c23b..4505ddcf04 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-18012 +API version: 1.0.11-18369 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 f800cdc10b..8061ac6899 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-18012 +API version: 1.0.11-18369 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 3f9eb85242..4bd7e08f16 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-18012 +API version: 1.0.11-18369 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 2d3e4e31c2..04e60e8b53 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-18012 +API version: 1.0.11-18369 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 284c1a518e..c1e0b8f12d 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-18012 +API version: 1.0.11-18369 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 737fa66368..92896d511a 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-18012 +API version: 1.0.11-18369 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 2a6f22d0d7..8c5885ce02 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-18012 +API version: 1.0.11-18369 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 04e388f406..5a9a097a90 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-18012 +API version: 1.0.11-18369 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 0273c01b35..7ba43a7fb1 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-18012 +API version: 1.0.11-18369 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 af43cc54df..94c30637dc 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-18012 +API version: 1.0.11-18369 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 536098c0d6..4e0424ea91 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-18012 +API version: 1.0.11-18369 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 d1ae36ff15..f1bc19345c 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-18012 +API version: 1.0.11-18369 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 0fa3b4acf6..96c5af7e8f 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-18012 +API version: 1.0.11-18369 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 f4ad96678b..76d61da7a7 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-18012 +API version: 1.0.11-18369 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 e4a6ff115c..a08c7ea2a7 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-18012 +API version: 1.0.11-18369 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 95064f56ca..e51ab8d654 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-18012 +API version: 1.0.11-18369 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 962a8f633e..f4b8081c55 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-18012 +API version: 1.0.11-18369 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 155e92a1e1..689bd6d0a4 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-18012 +API version: 1.0.11-18369 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 3499815cea..d895a4f816 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-18012 +API version: 1.0.11-18369 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 38c34874da..5f82715439 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-18012 +API version: 1.0.11-18369 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 a3c2d5b02c..ada0e4a726 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-18012 +API version: 1.0.11-18369 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 46199a5cb1..c879189ec4 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-18012 +API version: 1.0.11-18369 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 33aa104c87..b6d66bfafc 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-18012 +API version: 1.0.11-18369 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 e950e2cb55..ffe2536d79 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-18012 +API version: 1.0.11-18369 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 4eee662852..c991a0cad7 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-18012 +API version: 1.0.11-18369 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 3b7c23034a..b74e359edf 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-18012 +API version: 1.0.11-18369 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 5bbd19d3d3..811dbb04cb 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-18012 +API version: 1.0.11-18369 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 49e60220c5..fcfd580e5d 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-18012 +API version: 1.0.11-18369 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 057dbca6c0..f8073b87eb 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-18012 +API version: 1.0.11-18369 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 64a47a62fc..1d2611bc36 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-18012 +API version: 1.0.11-18369 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 4f1e755f73..aead195706 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-18012 +API version: 1.0.11-18369 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 9056b9af53..4d89d1d716 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-18012 +API version: 1.0.11-18369 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 d697d97490..4042c89e6f 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-18012 +API version: 1.0.11-18369 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 a99bf7198b..442ceb3a96 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-18012 +API version: 1.0.11-18369 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 5d691ff19a..ecfd12ff8f 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-18012 +API version: 1.0.11-18369 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 80170a544b..81eb75ed3a 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-18012 +API version: 1.0.11-18369 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 af67803dba..e0719fd779 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-18012 +API version: 1.0.11-18369 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 7ed97735e8..4ded8fb759 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-18012 +API version: 1.0.11-18369 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 5047fc8b19..0ee6950566 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-18012 +API version: 1.0.11-18369 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 82812595f3..89c623083a 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-18012 +API version: 1.0.11-18369 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 329630f5eb..a5a917bb43 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-18012 +API version: 1.0.11-18369 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 fa88db5c3c..037b32fa05 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-18012 +API version: 1.0.11-18369 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 7efa87dd2c..db6386e714 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-18012 +API version: 1.0.11-18369 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 e9e41ac40b..b79ce78dd6 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-18012 +API version: 1.0.11-18369 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 a962aa91ee..6554e32183 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-18012 +API version: 1.0.11-18369 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 642c849e65..17fd3f404f 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-18012 +API version: 1.0.11-18369 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 a7640de7d5..fac28c601e 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 4422946aa0..75f9484675 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 25820a2860..adfe6a5220 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-18012 +API version: 1.0.11-18369 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 aecf3a8695..3acd053107 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-18012 +API version: 1.0.11-18369 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 a1804d1a5e..89f5b481a8 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-18012 +API version: 1.0.11-18369 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 cd603e4b92..d1925e3784 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-18012 +API version: 1.0.11-18369 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 28904333f1..c065f3ef39 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-18012 +API version: 1.0.11-18369 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 91f0eebca0..b1e879d0a0 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-18012 +API version: 1.0.11-18369 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 e5ce937c69..4426a530a4 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-18012 +API version: 1.0.11-18369 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 e16b055bde..656f060242 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-18012 +API version: 1.0.11-18369 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 a4319b169a..d99cfc2843 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-18012 +API version: 1.0.11-18369 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 8d07ed654c..55046f92c8 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-18012 +API version: 1.0.11-18369 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 bde70f0c95..e9336571c8 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-18012 +API version: 1.0.11-18369 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 7e3155e3af..9f077aa8a2 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-18012 +API version: 1.0.11-18369 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 eddffd7356..b0c18dbac9 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-18012 +API version: 1.0.11-18369 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 aeff690a17..e691b62183 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-18012 +API version: 1.0.11-18369 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 c915a612b3..2a47c4084e 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-18012 +API version: 1.0.11-18369 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 c59e1a48ca..c20241eeb1 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-18012 +API version: 1.0.11-18369 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 b3d63e5ee1..3faace1c18 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-18012 +API version: 1.0.11-18369 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 3c7481ebb2..9676186568 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-18012 +API version: 1.0.11-18369 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 9575e1f0fc..b9e5895514 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-18012 +API version: 1.0.11-18369 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 923e5c60f3..1946063934 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-18012 +API version: 1.0.11-18369 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 5229154e8f..9912d86b40 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-18012 +API version: 1.0.11-18369 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 c7f299aaeb..6a1aa81f00 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-18012 +API version: 1.0.11-18369 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 a7928ed6fa..f2bb7ad10f 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-18012 +API version: 1.0.11-18369 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 27f316b82b..fd3f43fb1a 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-18012 +API version: 1.0.11-18369 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 5e800b47ad..b307205f25 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-18012 +API version: 1.0.11-18369 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 b35c4193ae..cbe6a9e7b0 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-18012 +API version: 1.0.11-18369 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 11053c5662..282be902be 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-18012 +API version: 1.0.11-18369 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 0d6198eb1a..11fd7f3fe3 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-18012 +API version: 1.0.11-18369 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 ddfeda1521..60c141bae7 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-18012 +API version: 1.0.11-18369 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 3367f9d8cd..7931667670 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-18012 +API version: 1.0.11-18369 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 7cdd12d1e6..e51dab429d 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-18012 +API version: 1.0.11-18369 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 edd6ac7041..a55af3c952 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-18012 +API version: 1.0.11-18369 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 69d56aecef..c567b3c386 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-18012 +API version: 1.0.11-18369 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 e3be2f29c5..776c20189d 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-18012 +API version: 1.0.11-18369 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 a66371574c..c61666eb1a 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-18012 +API version: 1.0.11-18369 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 2a36441f79..eca1a7f172 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-18012 +API version: 1.0.11-18369 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 97dd4b9b29..352e0371f7 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-18012 +API version: 1.0.11-18369 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 d0a2cfccdc..da1839e406 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-18012 +API version: 1.0.11-18369 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 7eb672f2f1..ecfb48e927 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-18012 +API version: 1.0.11-18369 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 11b8e43f3f..5c05b0293c 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-18012 +API version: 1.0.11-18369 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 51898724f6..d9c9216c07 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-18012 +API version: 1.0.11-18369 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 9ecff3fae5..f9d178095e 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-18012 +API version: 1.0.11-18369 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 946e72547e..ff71651138 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-18012 +API version: 1.0.11-18369 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 60294dacd6..d1b54950df 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-18012 +API version: 1.0.11-18369 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 cf44512cbe..e845d17e76 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-18012 +API version: 1.0.11-18369 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 f4ff3443f7..24465a9e08 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-18012 +API version: 1.0.11-18369 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 089a832cf2..3f87f43ce9 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-18012 +API version: 1.0.11-18369 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 809f7a81be..4c294197b6 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-18012 +API version: 1.0.11-18369 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 f9ebbc62f7..da41dd9445 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-18012 +API version: 1.0.11-18369 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 32f763950e..f6963d6dc2 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-18012 +API version: 1.0.11-18369 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 c56b9bf684..c79f373330 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-18012 +API version: 1.0.11-18369 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 326b1266ef..35a8cdba05 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-18012 +API version: 1.0.11-18369 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 da0718ac61..7bce02dcff 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-18012 +API version: 1.0.11-18369 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 26e7af67ed..5d75423a64 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-18012 +API version: 1.0.11-18369 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 e2ea012086..f1933de0ba 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-18012 +API version: 1.0.11-18369 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 496084fb77..80a966fc70 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-18012 +API version: 1.0.11-18369 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 d576ceab43..a181e35372 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-18012 +API version: 1.0.11-18369 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 5603156968..7ad948783d 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-18012 +API version: 1.0.11-18369 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 ef4b205dac..9486a8aad1 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-18012 +API version: 1.0.11-18369 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 9dd79f431d..7ab7fe4b78 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-18012 +API version: 1.0.11-18369 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 7d9e6883ed..4dbbb49598 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-18012 +API version: 1.0.11-18369 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 f9ea3e4abb..27011ef5ec 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-18012 +API version: 1.0.11-18369 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 104a5cfecf..f4254eaec2 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-18012 +API version: 1.0.11-18369 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 fbd3681864..e764c7efd3 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-18012 +API version: 1.0.11-18369 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 4c595b1773..f6aa063f35 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-18012 +API version: 1.0.11-18369 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 280532ff95..88422f4890 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-18012 +API version: 1.0.11-18369 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 f06cebecc0..67d7492c48 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-18012 +API version: 1.0.11-18369 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 593c3aae92..fbf44c75b5 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-18012 +API version: 1.0.11-18369 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 3d322a38ca..047e68875d 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-18012 +API version: 1.0.11-18369 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 ebbfcba96d..2c9f688c2e 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-18012 +API version: 1.0.11-18369 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 dc884ab17a..07c22cce9f 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-18012 +API version: 1.0.11-18369 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 c1364dfb61..e9d0821b33 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-18012 +API version: 1.0.11-18369 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 7b6eee1d98..37c71a07ad 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-18012 +API version: 1.0.11-18369 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 6278895a25..708ad0b4e0 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-18012 +API version: 1.0.11-18369 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 39125b3448..60ab40bcd3 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-18012 +API version: 1.0.11-18369 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 3c3f73f85a..02a5f0d408 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-18012 +API version: 1.0.11-18369 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 09540baff2..e93d303737 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-18012 +API version: 1.0.11-18369 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 d37435513b..28f4da189c 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-18012 +API version: 1.0.11-18369 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 5b60f66da5..d09fba07bd 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-18012 +API version: 1.0.11-18369 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 9e152e661a..b44c8c2b59 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-18012 +API version: 1.0.11-18369 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 3f41f786c9..2b182b37db 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-18012 +API version: 1.0.11-18369 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 91b419c073..5a5344a160 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-18012 +API version: 1.0.11-18369 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 fc469c939f..2700dedd8b 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-18012 +API version: 1.0.11-18369 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 3e4108ad51..0ae5df5b77 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-18012 +API version: 1.0.11-18369 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 79ff2bd69b..44031b4dfa 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-18012 +API version: 1.0.11-18369 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 b850a981af..2479640eb6 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-18012 +API version: 1.0.11-18369 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 3923f28c11..c68ee40492 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-18012 +API version: 1.0.11-18369 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 7788e4c7d5..937e97d2b5 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-18012 +API version: 1.0.11-18369 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 d412ed8d36..5f5535a193 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-18012 +API version: 1.0.11-18369 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 3099f15623..a5408ffd8f 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-18012 +API version: 1.0.11-18369 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 893e9cc76f..6596113600 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-18012 +API version: 1.0.11-18369 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 c9516407fc..d2a43b83c2 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-18012 +API version: 1.0.11-18369 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 397b4962c8..4124a1a61a 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-18012 +API version: 1.0.11-18369 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 4ffe86b609..ea2578a70b 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-18012 +API version: 1.0.11-18369 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 5c9aa691f6..57b5c6d1d3 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-18012 +API version: 1.0.11-18369 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 3d98c948aa..d3d6c34f97 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-18012 +API version: 1.0.11-18369 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 cec91103fb..17611e1a5c 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-18012 +API version: 1.0.11-18369 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 21909eb115..5b4d80004a 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-18012 +API version: 1.0.11-18369 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 18924fbd7b..1baf084442 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-18012 +API version: 1.0.11-18369 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 f097345760..ca8edfa2e2 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-18012 +API version: 1.0.11-18369 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 5e619c1362..bded96eed3 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-18012 +API version: 1.0.11-18369 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 3e63bceace..9a916cc5d7 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-18012 +API version: 1.0.11-18369 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 4d9e76c7dd..df32c4468c 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-18012 +API version: 1.0.11-18369 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 f1a9ad25d9..559a93c940 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-18012 +API version: 1.0.11-18369 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 e4e34431ae..2a5c93bdfc 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-18012 +API version: 1.0.11-18369 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 eb658e216d..c31a3dcd65 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-18012 +API version: 1.0.11-18369 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 2a85220f47..ee385364ea 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-18012 +API version: 1.0.11-18369 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 7ccd6f79d5..554cd8fdc5 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-18012 +API version: 1.0.11-18369 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 8e45933c9b..decc09e398 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-18012 +API version: 1.0.11-18369 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 fd3fe06d6d..1d8d1183ac 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-18012 +API version: 1.0.11-18369 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 2d68fcec91..0b7f6526b9 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-18012 +API version: 1.0.11-18369 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 71b5762f97..47541f75bb 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-18012 +API version: 1.0.11-18369 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 5274abffb0..75c7b16211 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-18012 +API version: 1.0.11-18369 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 cccbec8db0..2efa73e7ed 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-18012 +API version: 1.0.11-18369 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 3abc11f25c..7c9d530328 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-18012 +API version: 1.0.11-18369 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 64d999d33f..f869879c71 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-18012 +API version: 1.0.11-18369 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 cc256d2f93..5bf8c2e817 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-18012 +API version: 1.0.11-18369 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 25d076e7c4..6acdde3e42 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-18012 +API version: 1.0.11-18369 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 52fc531430..34923ee740 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-18012 +API version: 1.0.11-18369 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 582a0a3330..9b282d515d 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-18012 +API version: 1.0.11-18369 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 b469e19ecc..15838062c7 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-18012 +API version: 1.0.11-18369 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 6538f63f6c..0d0e47b106 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-18012 +API version: 1.0.11-18369 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 c80c24200c..16fe01e83f 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-18012 +API version: 1.0.11-18369 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 4684b29abe..7720f45d7a 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-18012 +API version: 1.0.11-18369 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 a18a4a73a5..bc5ee2f68c 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-18012 +API version: 1.0.11-18369 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 5ef866ea59..a99b045bbe 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-18012 +API version: 1.0.11-18369 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 7e36f5088f..efc9e542f2 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-18012 +API version: 1.0.11-18369 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 dc2291c441..f06928ee2e 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-18012 +API version: 1.0.11-18369 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 c5f91eacfc..0d06a850bd 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-18012 +API version: 1.0.11-18369 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 4c34405130..9831a397e4 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-18012 +API version: 1.0.11-18369 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 0e8ed82204..99951ec37c 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-18012 +API version: 1.0.11-18369 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 19994af0fa..8a75b9cf76 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-18012 +API version: 1.0.11-18369 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 a8f58e4721..9a8259dafb 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-18012 +API version: 1.0.11-18369 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 b4140e66ec..7c460e3d66 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-18012 +API version: 1.0.11-18369 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 f30844e81b..1a790dda3d 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-18012 +API version: 1.0.11-18369 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 8225b531d2..6acb25cb42 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-18012 +API version: 1.0.11-18369 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 98a2305dcb..f9620613ec 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-18012 +API version: 1.0.11-18369 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 91bb3cd7ee..8613e24490 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-18012 +API version: 1.0.11-18369 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 d325756ccd..5cbb1e4944 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-18012 +API version: 1.0.11-18369 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 0219cd1c06..875454f2f8 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-18012 +API version: 1.0.11-18369 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 9e495ed1d3..eb40ca9cbe 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-18012 +API version: 1.0.11-18369 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 e39abef4b1..63e65cba61 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-18012 +API version: 1.0.11-18369 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 5e23f8dd3e..03c69e0ea3 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-18012 +API version: 1.0.11-18369 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 87fa49a5f3..ad770c0a03 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-18012 +API version: 1.0.11-18369 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 23d98e4f5e..538ffbd4e1 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-18012 +API version: 1.0.11-18369 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 355168e2c9..0037c6181e 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-18012 +API version: 1.0.11-18369 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 e6edf5dba3..a180e6e4d1 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-18012 +API version: 1.0.11-18369 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 638fd13e73..a17c3ff44d 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-18012 +API version: 1.0.11-18369 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 f29939eb47..0bb5fdd4e4 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-18012 +API version: 1.0.11-18369 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 1d38bccf36..9b603a5c53 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-18012 +API version: 1.0.11-18369 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 1cd41280c0..9c05d7cea1 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-18012 +API version: 1.0.11-18369 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 6129a8affd..46a5319daf 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-18012 +API version: 1.0.11-18369 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 6e3aec76cd..cda00230fb 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-18012 +API version: 1.0.11-18369 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 53382245a0..827897d50d 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-18012 +API version: 1.0.11-18369 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 615480f395..f098a0bd44 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-18012 +API version: 1.0.11-18369 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 222fcb9700..a535bbe512 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-18012 +API version: 1.0.11-18369 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 9c649e236b..ac5d83d8ac 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-18012 +API version: 1.0.11-18369 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 ac9122b2c6..c942d7da5f 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-18012 +API version: 1.0.11-18369 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 b94cce2b80..5d3d58e4bd 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-18012 +API version: 1.0.11-18369 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 d742100542..153fc3c1f5 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-18012 +API version: 1.0.11-18369 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 5f8fe5ca4a..bc48bf0d14 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-18012 +API version: 1.0.11-18369 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 875461c2a0..f6126f468d 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-18012 +API version: 1.0.11-18369 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 2438bab28a..58ae3d6ee4 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-18012 +API version: 1.0.11-18369 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 6c585ef733..47de65db74 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-18012 +API version: 1.0.11-18369 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 1b679cb15f..b46134fa33 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-18012 +API version: 1.0.11-18369 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 8bff6e320a..37346aa157 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-18012 +API version: 1.0.11-18369 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 69d9c8944d..3153f5b42a 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-18012 +API version: 1.0.11-18369 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 0983b99b2c..c492dd9b50 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-18012 +API version: 1.0.11-18369 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 ed6562cad2..6ddb5114e4 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-18012 +API version: 1.0.11-18369 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 5c9d81ff57..a4b041d9f0 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-18012 +API version: 1.0.11-18369 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 6ac8be1b63..4d478170a2 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-18012 +API version: 1.0.11-18369 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 3829fa5b33..9da58df4d2 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-18012 +API version: 1.0.11-18369 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 3a5b0c1c92..9ef64f3a3a 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-18012 +API version: 1.0.11-18369 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 09ab3581ff..191fa97600 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-18012 +API version: 1.0.11-18369 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 bab6b26085..8f628d6f29 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-18012 +API version: 1.0.11-18369 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 1e53ca8c11..95f3d565d2 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-18012 +API version: 1.0.11-18369 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 54efa52699..87d38f4488 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-18012 +API version: 1.0.11-18369 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 e9b884deba..d514fb88d5 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-18012 +API version: 1.0.11-18369 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 850e5777d9..378505e1a1 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-18012 +API version: 1.0.11-18369 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 1267e76e03..1f40340f24 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-18012 +API version: 1.0.11-18369 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 6724502d02..95571988dc 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-18012 +API version: 1.0.11-18369 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 da8cbc5d2d..4f72d6abad 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-18012 +API version: 1.0.11-18369 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 ca10ac9fa7..23eb9511c0 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-18012 +API version: 1.0.11-18369 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 35e9698e8a..578f6aa703 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-18012 +API version: 1.0.11-18369 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 b9bcc5324e..9bb0cee1f1 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-18012 +API version: 1.0.11-18369 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 75b4635ae2..6a01e177e5 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-18012 +API version: 1.0.11-18369 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 7f42bfcbcc..58fbcae95e 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-18012 +API version: 1.0.11-18369 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 d8475e1b9d..bc4610ac4e 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-18012 +API version: 1.0.11-18369 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 48f4ff2d61..5da80eb797 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-18012 +API version: 1.0.11-18369 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 e043c1c483..070ee1f997 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-18012 +API version: 1.0.11-18369 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 53b72b761e..47862e8f4c 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-18012 +API version: 1.0.11-18369 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 292272b4db..488addc1e9 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-18012 +API version: 1.0.11-18369 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 196f6ff35c..2f33f79ccd 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-18012 +API version: 1.0.11-18369 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 123a0c7ff4..e5e95e6bc2 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-18012 +API version: 1.0.11-18369 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 9006fee081..f495cd3d85 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-18012 +API version: 1.0.11-18369 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 34a86f8cf8..e87f36837b 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-18012 +API version: 1.0.11-18369 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 1871301ba2..afb266947e 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-18012 +API version: 1.0.11-18369 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 ece7d6929a..384eb6b041 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-18012 +API version: 1.0.11-18369 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 ddf106f2d6..84d26b022b 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-18012 +API version: 1.0.11-18369 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 f8f134657b..ffffb75664 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-18012 +API version: 1.0.11-18369 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 d397e123ac..0f4e5a2b95 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-18012 +API version: 1.0.11-18369 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 11df0d0593..1e8166ee59 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-18012 +API version: 1.0.11-18369 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 5486b677be..e990fe7c29 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-18012 +API version: 1.0.11-18369 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 976b5a210b..89609c1e3f 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-18012 +API version: 1.0.11-18369 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 8926d1586a..7527f18b09 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-18012 +API version: 1.0.11-18369 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 df758e8011..37f370cdc0 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-18012 +API version: 1.0.11-18369 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 071e18c8b7..0f384f8ce2 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-18012 +API version: 1.0.11-18369 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 f70aad5d81..c568fc0106 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-18012 +API version: 1.0.11-18369 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 9936014366..9c1cfbbbf3 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-18012 +API version: 1.0.11-18369 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 55792dbc28..374b2339a5 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-18012 +API version: 1.0.11-18369 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 5996c59e55..83fe37dce5 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-18012 +API version: 1.0.11-18369 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 78b618ff18..84f863a2e7 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-18012 +API version: 1.0.11-18369 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 3b16ac11d8..8235c353da 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-18012 +API version: 1.0.11-18369 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 9dadb623b0..0c099b4169 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-18012 +API version: 1.0.11-18369 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 7d1070a567..a99973049c 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-18012 +API version: 1.0.11-18369 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 9d0ed504a1..13434acea6 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-18012 +API version: 1.0.11-18369 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 0f21dd843a..650d8b9470 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-18012 +API version: 1.0.11-18369 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 481a806b03..3c350e3e26 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-18012 +API version: 1.0.11-18369 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 b84a3839eb..76452deb5e 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-18012 +API version: 1.0.11-18369 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 284564a3db..28c1bf8f0c 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-18012 +API version: 1.0.11-18369 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 8069bd6397..70fb5f507d 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-18012 +API version: 1.0.11-18369 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 d7b44e7745..a473ff90f6 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-18012 +API version: 1.0.11-18369 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 5031b0220c..bb5519bf59 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-18012 +API version: 1.0.11-18369 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 b352739067..492b6e7897 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-18012 +API version: 1.0.11-18369 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 67227e7115..edebe2bdbc 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-18012 +API version: 1.0.11-18369 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 1aad9e353a..a7ddbac8a0 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-18012 +API version: 1.0.11-18369 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 5072f38a53..a9a8d936d2 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-18012 +API version: 1.0.11-18369 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 773363d485..38a8552c65 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-18012 +API version: 1.0.11-18369 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 496a303bdf..cbb01a1ac0 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-18012 +API version: 1.0.11-18369 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 e2e0cc530e..632f20aef2 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-18012 +API version: 1.0.11-18369 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 377335656b..1fe4a271c5 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-18012 +API version: 1.0.11-18369 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 402c05b5af..da95d500c4 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-18012 +API version: 1.0.11-18369 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 6c805aa5aa..692de04e17 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-18012 +API version: 1.0.11-18369 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 12b55a9d2c..6cf90ad3c1 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-18012 +API version: 1.0.11-18369 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 1db091125d..5e571f8edd 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-18012 +API version: 1.0.11-18369 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 9572686986..0b0ced52d4 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-18012 +API version: 1.0.11-18369 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 4666ac647c..65313623cd 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-18012 +API version: 1.0.11-18369 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 bc35651346..1e45bf90ab 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-18012 +API version: 1.0.11-18369 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 093a0629e8..f78c4e7516 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-18012 +API version: 1.0.11-18369 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 f18e8e843a..6872cfee68 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-18012 +API version: 1.0.11-18369 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 663393e83d..46f764f2e6 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-18012 +API version: 1.0.11-18369 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 d0060ab670..ba1de28008 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-18012 +API version: 1.0.11-18369 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 841d753720..96855f8da1 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-18012 +API version: 1.0.11-18369 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 93ab5ab884..d2ac608a79 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-18012 +API version: 1.0.11-18369 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 1681282290..ff90f55cb6 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-18012 +API version: 1.0.11-18369 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 0cb6850a7e..87f7efea66 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-18012 +API version: 1.0.11-18369 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 1cb968b809..ca5fcd88f0 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-18012 +API version: 1.0.11-18369 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 d01525a898..41ee9de6a9 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-18012 +API version: 1.0.11-18369 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 aa35cda3fb..e1c6e5a21c 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-18012 +API version: 1.0.11-18369 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 4568e0d3f7..37eea18024 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-18012 +API version: 1.0.11-18369 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 ff3ce044d0..2b9b0153f3 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-18012 +API version: 1.0.11-18369 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 ed28f89e23..4907806020 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-18012 +API version: 1.0.11-18369 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 66d8110f8d..73636c0904 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-18012 +API version: 1.0.11-18369 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 b83364490c..6b4fdbba1b 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-18012 +API version: 1.0.11-18369 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 15975a1f75..062567c9e4 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-18012 +API version: 1.0.11-18369 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 45ab49cad2..bd3f3acb0d 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-18012 +API version: 1.0.11-18369 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 914acd1ed6..d3a443ec8b 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-18012 +API version: 1.0.11-18369 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 d224d8add0..412b42d72c 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-18012 +API version: 1.0.11-18369 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 b14aac2a03..82f59ae053 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-18012 +API version: 1.0.11-18369 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 10882c2ea7..8f014e735c 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-18012 +API version: 1.0.11-18369 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 6871806964..bdbbcb0322 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-18012 +API version: 1.0.11-18369 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 2d5f55db15..d933075970 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-18012 +API version: 1.0.11-18369 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 83774a5a7b..a867cbb2ea 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-18012 +API version: 1.0.11-18369 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 3adad6b428..29eb53ade7 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-18012 +API version: 1.0.11-18369 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 afdbca2556..7a805e8985 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-18012 +API version: 1.0.11-18369 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 d01dacab6d..0d643546bf 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-18012 +API version: 1.0.11-18369 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 e9ae3065df..1b4cefa690 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-18012 +API version: 1.0.11-18369 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 8e9369b6ce..9d195c7461 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-18012 +API version: 1.0.11-18369 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 4e330a8b0e..e2f73722f6 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-18012 +API version: 1.0.11-18369 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 074a9f55d4..6d8864a0bd 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-18012 +API version: 1.0.11-18369 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 dbe50112a8..d2f1e01632 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-18012 +API version: 1.0.11-18369 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 017063ae2f..0c620d7b9b 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-18012 +API version: 1.0.11-18369 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 0ea2f6f223..20af95c911 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-18012 +API version: 1.0.11-18369 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 d5abb39288..96d2acde3b 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-18012 +API version: 1.0.11-18369 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 33e805e9c8..fafe446a2e 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-18012 +API version: 1.0.11-18369 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 ccc95755cb..bdfe036246 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-18012 +API version: 1.0.11-18369 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 23e93856b8..db56c2ed82 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-18012 +API version: 1.0.11-18369 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 ea83b81fc6..92730304e4 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-18012 +API version: 1.0.11-18369 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 00a4068222..8218291449 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-18012 +API version: 1.0.11-18369 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 fc5662008c..6d859532ef 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-18012 +API version: 1.0.11-18369 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 2003e4a616..936d8bbad3 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-18012 +API version: 1.0.11-18369 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 6f98122d08..a632e1c2e3 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-18012 +API version: 1.0.11-18369 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 a9052a38a6..a50ad79bd4 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-18012 +API version: 1.0.11-18369 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 73bd678ccb..993d1b034b 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-18012 +API version: 1.0.11-18369 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 f638c512ef..e10e95a9f6 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-18012 +API version: 1.0.11-18369 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 0ffe50eb51..33f5f879cd 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-18012 +API version: 1.0.11-18369 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 becb83b625..8d51f02cc2 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-18012 +API version: 1.0.11-18369 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 d24f9a4988..84c84efcf3 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-18012 +API version: 1.0.11-18369 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 131be73a1b..8e8b879a2a 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-18012 +API version: 1.0.11-18369 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 3a4a32c842..789626102d 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-18012 +API version: 1.0.11-18369 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 d11e39eac1..a6e162701d 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-18012 +API version: 1.0.11-18369 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 0bba7ce9f3..d9c2c5fe9a 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-18012 +API version: 1.0.11-18369 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 9ca451ae7e..c103c4c47f 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-18012 +API version: 1.0.11-18369 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 8e1eada197..6e7df47b5b 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-18012 +API version: 1.0.11-18369 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 24c99f1141..db6a2d67dd 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-18012 +API version: 1.0.11-18369 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 7b7492408a..540c0c26c8 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-18012 +API version: 1.0.11-18369 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 0895238be6..d3f1152e96 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-18012 +API version: 1.0.11-18369 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 b10c1fd909..6b5803ca62 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-18012 +API version: 1.0.11-18369 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 532c3bca7b..5ba95795a8 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-18012 +API version: 1.0.11-18369 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 87a6188d8e..a6d7a1d3f3 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-18012 +API version: 1.0.11-18369 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 bbf97a2132..661c9b2a00 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-18012 +API version: 1.0.11-18369 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 d25ed19844..7ad236a6e2 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-18012 +API version: 1.0.11-18369 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 4970929457..a7a598850b 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-18012 +API version: 1.0.11-18369 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 d055c97bec..ed7c0dc930 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-18012 +API version: 1.0.11-18369 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 f749d245ae..f40da44d1e 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-18012 +API version: 1.0.11-18369 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 ef93deca56..66dde64ed3 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-18012 +API version: 1.0.11-18369 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 dba1913654..a95714ec04 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-18012 +API version: 1.0.11-18369 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 ca242eef5c..6e8954544b 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-18012 +API version: 1.0.11-18369 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 c6542aa64e..8fe5576d62 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-18012 +API version: 1.0.11-18369 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 361fd23a67..78cef176f3 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-18012 +API version: 1.0.11-18369 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 bdb62461fb..67335aed37 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-18012 +API version: 1.0.11-18369 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 68911cc7df..9982eda856 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-18012 +API version: 1.0.11-18369 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 8577bfdcad..4ab7939f74 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-18012 +API version: 1.0.11-18369 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 be8d536299..1d1761522d 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-18012 +API version: 1.0.11-18369 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 35a89a0c7c..35c41f2940 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-18012 +API version: 1.0.11-18369 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 f825059b8b..31df557cf7 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-18012 +API version: 1.0.11-18369 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 fefeb08ec4..32540213f7 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-18012 +API version: 1.0.11-18369 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 ef613a47d6..abfaf9ff78 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-18012 +API version: 1.0.11-18369 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 dec4149390..642eb07557 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-18012 +API version: 1.0.11-18369 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 2b301969fb..d9707eeca7 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-18012 +API version: 1.0.11-18369 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 9807b0fb97..41766e96f1 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-18012 +API version: 1.0.11-18369 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 1441f0c8b3..381cdc8f58 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-18012 +API version: 1.0.11-18369 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 5ee6cf55e2..b5cbcc9eea 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-18012 +API version: 1.0.11-18369 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 e761080e2c..09bc606b3c 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-18012 +API version: 1.0.11-18369 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 8a4ad6561c..033c8141b0 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-18012 +API version: 1.0.11-18369 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 aed9c083d5..c36a0e2711 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-18012 +API version: 1.0.11-18369 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 7592708e82..e05fdcbade 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-18012 +API version: 1.0.11-18369 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 4a15af829e..a093daddf9 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-18012 +API version: 1.0.11-18369 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 f818e7f850..4054aaa60c 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-18012 +API version: 1.0.11-18369 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 364185a8ed..3fac384850 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-18012 +API version: 1.0.11-18369 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 3ba183a43c..a68ba06ed3 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-18012 +API version: 1.0.11-18369 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 8a51f80d1f..f9401caaa0 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-18012 +API version: 1.0.11-18369 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 5aebdfffad..1d2cf2f201 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-18012 +API version: 1.0.11-18369 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 9a83788291..3d3ed5eba7 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-18012 +API version: 1.0.11-18369 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 2b381af2dc..7ef15f4486 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-18012 +API version: 1.0.11-18369 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 daceffab00..72dbf87cd7 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-18012 +API version: 1.0.11-18369 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 c4f6c5e7d4..c307be9689 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-18012 +API version: 1.0.11-18369 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 0bfe90c601..01f8d7f6aa 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-18012 +API version: 1.0.11-18369 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 0d6fde69d8..8da1842e3d 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-18012 +API version: 1.0.11-18369 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 8df1f90318..cf876e80d6 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-18012 +API version: 1.0.11-18369 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 2970e5a04c..123f0fdea7 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-18012 +API version: 1.0.11-18369 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 6a82007e3f..83791005ee 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-18012 +API version: 1.0.11-18369 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 8214488ede..d0de9528f4 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-18012 +API version: 1.0.11-18369 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 f1a541f5f4..eb9f5b442f 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-18012 +API version: 1.0.11-18369 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 450cd0f579..8ff501310e 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-18012 +API version: 1.0.11-18369 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 c8a155df19..c4953863d7 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-18012 +API version: 1.0.11-18369 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 54df689c8c..1bb19812d0 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-18012 +API version: 1.0.11-18369 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 804cd71dc1..230d93e902 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-18012 +API version: 1.0.11-18369 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 6ccd97c773..0b6df062a5 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-18012 +API version: 1.0.11-18369 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 878c646812..0e67649008 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-18012 +API version: 1.0.11-18369 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 41a9f5e999..151eb93b4c 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-18012 +API version: 1.0.11-18369 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 071ab289da..98038ad7f1 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-18012 +API version: 1.0.11-18369 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 6d9a814822..f4581e93eb 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-18012 +API version: 1.0.11-18369 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 c1246dd6ec..4465f47475 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-18012 +API version: 1.0.11-18369 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 91139653b5..3a563536c1 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-18012 +API version: 1.0.11-18369 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 3501e0aa64..554fae5b34 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-18012 +API version: 1.0.11-18369 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 44d9833aca..6bf0de65a9 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-18012 +API version: 1.0.11-18369 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 01643a3683..1be73932ce 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-18012 +API version: 1.0.11-18369 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 55039a3a09..51923e5ddd 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-18012 +API version: 1.0.11-18369 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 d3720255e4..0717c002c5 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-18012 +API version: 1.0.11-18369 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 2956b5e5e2..405a8a10f7 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 56fe1bd990..78ae656bce 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-18012 +API version: 1.0.11-18369 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 5b860405b8..8ae57460ee 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-18012 +API version: 1.0.11-18369 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 af56c9350d..731277817e 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-18012 +API version: 1.0.11-18369 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 f20fe82bfb..dacc3c21ff 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-18012 +API version: 1.0.11-18369 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 92a65540a2..2f47256340 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-18012 +API version: 1.0.11-18369 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 6c040d1679..8516132779 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-18012 +API version: 1.0.11-18369 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 36ed7a788b..bc247a81e7 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-18012 +API version: 1.0.11-18369 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 85e7ee0f62..86412277e3 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-18012 +API version: 1.0.11-18369 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 814735a767..4c0d17bcdf 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-18012 +API version: 1.0.11-18369 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 51c8b5cc1b..93fa307207 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-18012 +API version: 1.0.11-18369 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 21c2fbd43e..a271d492a0 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 1cb0e65c10..c563b21434 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-18012 +API version: 1.0.11-18369 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 c3e9f7c2d0..ac107ac1d1 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-18012 +API version: 1.0.11-18369 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 f8c3070615..5240796598 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-18012 +API version: 1.0.11-18369 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 5f4739f5b8..80dc4c7849 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-18012 +API version: 1.0.11-18369 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 69a5576cc6..f9787f9376 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-18012 +API version: 1.0.11-18369 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 8f16dd99a0..2bd1bc997f 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-18012 +API version: 1.0.11-18369 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 e740088d9c..c32f45be22 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-18012 +API version: 1.0.11-18369 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 05da67180e..e8ee681bcf 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-18012 +API version: 1.0.11-18369 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 0688b6a974..40f884187f 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-18012 +API version: 1.0.11-18369 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 16b27a781c..93c2d3cbce 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-18012 +API version: 1.0.11-18369 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 bae9331120..d33d60dc0f 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-18012 +API version: 1.0.11-18369 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 5463c88280..0bc17050a5 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-18012 +API version: 1.0.11-18369 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 6425295be7..70832b5eb8 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-18012 +API version: 1.0.11-18369 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 f6c25bcc82..dca63739dd 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-18012 +API version: 1.0.11-18369 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 2d9bd62ca1..6ba31f2b7b 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-18012 +API version: 1.0.11-18369 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 b5ce88a204..191413302a 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-18012 +API version: 1.0.11-18369 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 17ed7857f2..a47cff8a34 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-18012 +API version: 1.0.11-18369 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 df8161d6f9..fa29817a85 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-18012 +API version: 1.0.11-18369 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 cfaff8d0e0..453a7347fd 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-18012 +API version: 1.0.11-18369 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 b216ccd8a1..ab1373f1b5 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-18012 +API version: 1.0.11-18369 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 5dbc8c0557..2b4f22b58d 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-18012 +API version: 1.0.11-18369 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 88959df984..92957c3c89 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-18012 +API version: 1.0.11-18369 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 80c43ae70f..b8d7b65356 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-18012 +API version: 1.0.11-18369 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 ea26657e3b..1c353364d8 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-18012 +API version: 1.0.11-18369 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 c268c53bec..5198be1be8 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-18012 +API version: 1.0.11-18369 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 c7395060df..d21b0d9707 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-18012 +API version: 1.0.11-18369 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 b9d8adefd8..a398d68c55 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-18012 +API version: 1.0.11-18369 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 f36f9a3cde..d7ef05f41c 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-18012 +API version: 1.0.11-18369 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 27d427a4c1..3508952085 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-18012 +API version: 1.0.11-18369 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 9f879bf30e..ca5f8e8cc5 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-18012 +API version: 1.0.11-18369 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 9602d88290..5e2e85444b 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-18012 +API version: 1.0.11-18369 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 c44ca1de65..cdf496c26f 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-18012 +API version: 1.0.11-18369 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 205847da29..45022a269e 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-18012 +API version: 1.0.11-18369 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 d4b1acd2a1..0d2a8d291e 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-18012 +API version: 1.0.11-18369 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 5fde5c3854..f376ca2863 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-18012 +API version: 1.0.11-18369 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 1930afbc29..3a358267e6 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-18012 +API version: 1.0.11-18369 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 686c9fc9b6..c9a298ae0b 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-18012 +API version: 1.0.11-18369 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 b9950ef9b2..513ed61222 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-18012 +API version: 1.0.11-18369 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 bbc389392f..a41a9869b0 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-18012 +API version: 1.0.11-18369 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 fbb82153c1..6ee3084ce9 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-18012 +API version: 1.0.11-18369 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 d3e52fb656..5d1596a60f 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-18012 +API version: 1.0.11-18369 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 f02e91d7e5..593e5a270f 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-18012 +API version: 1.0.11-18369 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 53a39a578d..f7a0c40f07 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-18012 +API version: 1.0.11-18369 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 881f9c75c4..8c0bb3396f 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-18012 +API version: 1.0.11-18369 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 ed5fb1ce19..9dccb97e60 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-18012 +API version: 1.0.11-18369 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 6525ae3777..d5fc0b2353 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-18012 +API version: 1.0.11-18369 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 4d917a1a62..edc7d186db 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-18012 +API version: 1.0.11-18369 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 4fe636845f..3ac923073a 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-18012 +API version: 1.0.11-18369 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 2399d132d7..d63336c1c8 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-18012 +API version: 1.0.11-18369 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 6619f7ea99..714a695a15 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-18012 +API version: 1.0.11-18369 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 519821028f..ab7f5c4a27 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 ae8601d2fa..2707cabcad 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-18012 +API version: 1.0.11-18369 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 c0188dad84..cae03929ce 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-18012 +API version: 1.0.11-18369 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 f2ed6114d6..dcc6ca11ac 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-18012 +API version: 1.0.11-18369 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 96004a95d2..15794b3507 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-18012 +API version: 1.0.11-18369 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 4a55e7944c..358a41db41 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-18012 +API version: 1.0.11-18369 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 145c2788f0..4027aa0012 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-18012 +API version: 1.0.11-18369 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 b2135fdcbd..55fd5880df 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-18012 +API version: 1.0.11-18369 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 e3d2b0ff6a..bb99c76898 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-18012 +API version: 1.0.11-18369 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 7fb36e19a0..778bf4cf0b 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-18012 +API version: 1.0.11-18369 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 3abdb246fe..c087d44a3c 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-18012 +API version: 1.0.11-18369 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 9306d2cdd3..7c2d76e55d 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-18012 +API version: 1.0.11-18369 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 bc8875d558..bd68a47943 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-18012 +API version: 1.0.11-18369 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 6298673573..fbae071aa2 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 f64131d0e9..0210946586 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-18012 +API version: 1.0.11-18369 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 55c08b37bf..4df9118ac6 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-18012 +API version: 1.0.11-18369 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 d47c55c365..5ad9e7cbcd 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-18012 +API version: 1.0.11-18369 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 80365fd13d..0b2c67fcb7 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-18012 +API version: 1.0.11-18369 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 d366219b88..9665ef6092 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-18012 +API version: 1.0.11-18369 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 7c0b8d9c88..1844d73cac 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-18012 +API version: 1.0.11-18369 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 6c179ea7e6..c20b0d5b8d 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-18012 +API version: 1.0.11-18369 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 999fec5a10..c8ac1a55b9 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 91a1e7c20b..d5699ea1e5 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 958915b494..accfd15fd2 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-18012 +API version: 1.0.11-18369 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 90e7a8a7ee..449c17abac 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-18012 +API version: 1.0.11-18369 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 0e63ae399d..849aacd8ab 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-18012 +API version: 1.0.11-18369 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 a26369c9cb..6751da8ec0 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-18012 +API version: 1.0.11-18369 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 7d47d214c4..d0c18c84dd 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-18012 +API version: 1.0.11-18369 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 c78ad0027e..3d87c2f72b 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-18012 +API version: 1.0.11-18369 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 946aed4675..cce9a3acdd 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-18012 +API version: 1.0.11-18369 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 f1abea5747..5cdbf38e82 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-18012 +API version: 1.0.11-18369 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 1585a30484..cd6bbfedb9 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 fd31bbdb16..044fee98cb 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-18012 +API version: 1.0.11-18369 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 43d4494d07..c7a3a3a813 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-18012 +API version: 1.0.11-18369 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 c00330b989..b6e59aa02c 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-18012 +API version: 1.0.11-18369 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 b9b7e74317..44fa3f30f2 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-18012 +API version: 1.0.11-18369 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 aaa12a0d6c..b0501635f4 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-18012 +API version: 1.0.11-18369 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 d68faa6229..6ddd0b1d36 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-18012 +API version: 1.0.11-18369 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 afb1b062a5..fdc5192c34 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 4af76fb1e6..9570fadf41 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-18012 +API version: 1.0.11-18369 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 a5046121f6..9f32467d4a 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-18012 +API version: 1.0.11-18369 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 9fdf091671..b2c7d0d7fc 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-18012 +API version: 1.0.11-18369 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 76c3fb9b84..6ebf1aba9f 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-18012 +API version: 1.0.11-18369 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 eb94b31659..28eae373e0 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-18012 +API version: 1.0.11-18369 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 370b07270f..1a71f679b5 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-18012 +API version: 1.0.11-18369 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 912f6a818a..9cc25d1666 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-18012 +API version: 1.0.11-18369 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 f697754d75..4e4a5a7979 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-18012 +API version: 1.0.11-18369 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 4a0a9ee7ab..d28ef58a10 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-18012 +API version: 1.0.11-18369 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 2de483c8c4..38cc5705cb 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-18012 +API version: 1.0.11-18369 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 b551ef8d3e..f362ed361d 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-18012 +API version: 1.0.11-18369 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 dc143c1cc4..4e9f401f85 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-18012 +API version: 1.0.11-18369 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 24ce377433..da2ebedc28 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-18012 +API version: 1.0.11-18369 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 784c8bd638..03458368b0 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-18012 +API version: 1.0.11-18369 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 1cb25ee0ef..ea96ec91fb 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 15ec8a43a8..ce3c443701 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-18012 +API version: 1.0.11-18369 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 fb81db7faf..47bc1d5a9a 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-18012 +API version: 1.0.11-18369 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 68bb5066c4..3f2e954a23 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-18012 +API version: 1.0.11-18369 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 b814ce007e..780dcdcae3 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-18012 +API version: 1.0.11-18369 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 812799b021..b10c3cf74e 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-18012 +API version: 1.0.11-18369 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 65477ec385..c72787a101 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-18012 +API version: 1.0.11-18369 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 53587764a5..e49ba05c38 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-18012 +API version: 1.0.11-18369 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 acefe8274c..458c8a7513 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 c7ac089676..3cbed5a541 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-18012 +API version: 1.0.11-18369 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 9f0348b4c9..df7bda702b 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-18012 +API version: 1.0.11-18369 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 f6babfd9d7..9bd2c6367c 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-18012 +API version: 1.0.11-18369 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 83b978bef4..30fbae7ddb 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-18012 +API version: 1.0.11-18369 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 139241543b..53ec4566cc 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-18012 +API version: 1.0.11-18369 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 2e78e4fd67..cdeeb9414a 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-18012 +API version: 1.0.11-18369 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 9da254fe58..fda9e2224c 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 8889fe798e..e3ddbdc76a 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-18012 +API version: 1.0.11-18369 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 dee3883edd..07b07da120 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-18012 +API version: 1.0.11-18369 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 4d47f05da3..d9fed646a6 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-18012 +API version: 1.0.11-18369 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 d3711519be..53053bdc99 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-18012 +API version: 1.0.11-18369 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 0f14c17a70..25b15e6679 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-18012 +API version: 1.0.11-18369 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 97f1e181f7..c2f88729d4 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-18012 +API version: 1.0.11-18369 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 2730ddf764..79efa916fc 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-18012 +API version: 1.0.11-18369 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 1d5d724378..447799de92 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 32e203dacf..fade091879 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-18012 +API version: 1.0.11-18369 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 abf19153c3..b6b755cf91 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-18012 +API version: 1.0.11-18369 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 cb6831de49..22988e9961 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-18012 +API version: 1.0.11-18369 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 3e4ebe62a4..c01dad17cb 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-18012 +API version: 1.0.11-18369 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 c13b3c9487..39b7ba8a05 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 c201b0ceab..0b67128b5b 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-18012 +API version: 1.0.11-18369 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 443ce252ba..820f0a0a37 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-18012 +API version: 1.0.11-18369 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 d400f79b5d..8fac5a7fa5 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-18012 +API version: 1.0.11-18369 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 c1624bfc52..b59cdaabd9 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-18012 +API version: 1.0.11-18369 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 320e34583b..ad4d7945a0 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-18012 +API version: 1.0.11-18369 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 c8d98e2895..895187d38d 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-18012 +API version: 1.0.11-18369 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 e8189dabc1..e30779e84a 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-18012 +API version: 1.0.11-18369 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 273e51a4df..6f52ab580a 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-18012 +API version: 1.0.11-18369 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 1240f93470..695ff5d8a4 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-18012 +API version: 1.0.11-18369 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 9d798bbf98..b22843bf98 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-18012 +API version: 1.0.11-18369 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 24450916c3..7836f6d0d2 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-18012 +API version: 1.0.11-18369 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 af958314ce..b01ed78de4 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-18012 +API version: 1.0.11-18369 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 04072893b0..07f69b39d3 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-18012 +API version: 1.0.11-18369 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 0452a22520..41f0bc0561 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-18012 +API version: 1.0.11-18369 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 4ae4d14ea2..91ded35a7a 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-18012 +API version: 1.0.11-18369 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 6d1c641636..5024a3f433 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-18012 +API version: 1.0.11-18369 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 cbaa8dbc9b..94f42e4401 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-18012 +API version: 1.0.11-18369 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 8459908692..04773d927f 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-18012 +API version: 1.0.11-18369 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 1df9d9044a..f16e47cd92 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-18012 +API version: 1.0.11-18369 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 1ea6dcaf7f..a4923510d0 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-18012 +API version: 1.0.11-18369 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 8174588aac..857e2cec98 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-18012 +API version: 1.0.11-18369 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 5854a15323..c061f713bc 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-18012 +API version: 1.0.11-18369 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 d7a2b46717..230e350984 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-18012 +API version: 1.0.11-18369 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 0547c19c06..f83b68b624 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-18012 +API version: 1.0.11-18369 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 4561c99bb9..4c8a66af2f 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-18012 +API version: 1.0.11-18369 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 f1b0c17a3b..4ae3fd9921 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-18012 +API version: 1.0.11-18369 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 2de4782294..94a06cca70 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-18012 +API version: 1.0.11-18369 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 6c31747838..e706d6c6c2 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-18012 +API version: 1.0.11-18369 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 9caa7e76f1..926e2232aa 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-18012 +API version: 1.0.11-18369 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 d5988a5d7c..b7f9e49c91 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-18012 +API version: 1.0.11-18369 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 e772ffcba5..72589f6bb5 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-18012 +API version: 1.0.11-18369 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 75b45e25a3..3bb8838b72 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-18012 +API version: 1.0.11-18369 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 6d938ebc2a..bf6b93bbce 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-18012 +API version: 1.0.11-18369 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 594e3bf57c..719cb697aa 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-18012 +API version: 1.0.11-18369 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 af9740f073..872af4f13a 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-18012 +API version: 1.0.11-18369 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 0568ccd161..d9464f2b24 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-18012 +API version: 1.0.11-18369 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 07e20a9199..2e96c831d4 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-18012 +API version: 1.0.11-18369 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 5f00528319..2b22751bc7 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-18012 +API version: 1.0.11-18369 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 056b8fa6ef..e72d54f80b 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 e9b4cf40af..1c4272bc1e 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 16aada62d2..f95937be48 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-18012 +API version: 1.0.11-18369 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 654ffa1d8a..9c57b1b18e 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-18012 +API version: 1.0.11-18369 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 ae56e65517..55a372e738 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 02bb09d879..681f785ae8 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-18012 +API version: 1.0.11-18369 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 4b0722a50d..5a3178fa6c 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-18012 +API version: 1.0.11-18369 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 ff9d0faf98..ec4f772e92 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-18012 +API version: 1.0.11-18369 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 06d0f0a192..6ce0baf55e 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-18012 +API version: 1.0.11-18369 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 483312b9ac..2543468edc 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-18012 +API version: 1.0.11-18369 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 16c081bb8b..87981a5656 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-18012 +API version: 1.0.11-18369 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 b9e66ac0de..f9be8fee1d 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-18012 +API version: 1.0.11-18369 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 df755e362e..98141510df 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-18012 +API version: 1.0.11-18369 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 ec6863b85a..7eafd19c2f 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-18012 +API version: 1.0.11-18369 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 6e29ad20ca..07fe18ef1a 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-18012 +API version: 1.0.11-18369 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 db2b610299..cbf015ccfc 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-18012 +API version: 1.0.11-18369 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 12198e912f..c52161b442 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-18012 +API version: 1.0.11-18369 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 2c063ddfd7..350f5440ca 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-18012 +API version: 1.0.11-18369 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 8e8482831d..47b398e8e7 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-18012 +API version: 1.0.11-18369 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 71788dd8ea..5e332770d3 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-18012 +API version: 1.0.11-18369 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 c76f266ecf..6b7a6badb5 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-18012 +API version: 1.0.11-18369 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 4f8f8a402f..e53cc6c53e 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-18012 +API version: 1.0.11-18369 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 ff8ba8ae12..60bc153f73 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-18012 +API version: 1.0.11-18369 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 adbc04f238..24e84d84cd 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-18012 +API version: 1.0.11-18369 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 6c31f3f2ab..f7fa480f09 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-18012 +API version: 1.0.11-18369 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 ef3dfd4b3d..aa631783ed 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-18012 +API version: 1.0.11-18369 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 9946e3ce9f..abe91d0724 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-18012 +API version: 1.0.11-18369 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 284b7133b8..90688fc40c 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-18012 +API version: 1.0.11-18369 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 17097bae9e..3e781a8723 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-18012 +API version: 1.0.11-18369 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 164e925940..b992b09192 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-18012 +API version: 1.0.11-18369 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 1851d69416..7ec93276fb 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-18012 +API version: 1.0.11-18369 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 f6fa0c8d2d..5f4646cd07 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-18012 +API version: 1.0.11-18369 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 ee3db4e0f1..6e905f1a20 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-18012 +API version: 1.0.11-18369 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 08a67406cf..9910736934 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-18012 +API version: 1.0.11-18369 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 5628fd9663..84a18d4898 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-18012 +API version: 1.0.11-18369 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 6dcd1a09c5..9c9e2ffa22 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-18012 +API version: 1.0.11-18369 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 e3081577b4..b85567cfd7 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-18012 +API version: 1.0.11-18369 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 fb43ae4e6b..19522ee619 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-18012 +API version: 1.0.11-18369 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 998246946d..fe3435b136 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-18012 +API version: 1.0.11-18369 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 671aa6cf86..8456f8e98f 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-18012 +API version: 1.0.11-18369 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 2d2874bf95..f138dec2c1 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-18012 +API version: 1.0.11-18369 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 1e65adb59a..35a835f5e1 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-18012 +API version: 1.0.11-18369 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 cd2dbeb32c..6e3a467c9f 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-18012 +API version: 1.0.11-18369 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 e93a207bb1..51f25b26cf 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-18012 +API version: 1.0.11-18369 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 a7451491e3..d241a72cef 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-18012 +API version: 1.0.11-18369 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 d05d59df95..d9b19ba99f 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-18012 +API version: 1.0.11-18369 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 ad15f8e455..9c62cb75e4 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-18012 +API version: 1.0.11-18369 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 43c1b493e3..13f8ca8ca9 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-18012 +API version: 1.0.11-18369 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 f55787e235..0a83645ebc 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-18012 +API version: 1.0.11-18369 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 976d78d43a..1f72c70d1a 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-18012 +API version: 1.0.11-18369 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 83f1eb6ee3..53b99914b5 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-18012 +API version: 1.0.11-18369 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 4b7d39022f..d11b848ebd 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-18012 +API version: 1.0.11-18369 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 6f7c958333..5ad0718f68 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-18012 +API version: 1.0.11-18369 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 d30788203e..0fb1c53fe4 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-18012 +API version: 1.0.11-18369 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 4663c4b94d..ed71dcf9b2 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-18012 +API version: 1.0.11-18369 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 97e72cf649..2be0f8b435 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-18012 +API version: 1.0.11-18369 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 d773f736d9..47e705ddbc 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-18012 +API version: 1.0.11-18369 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 a1a9b14224..f853903aa1 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-18012 +API version: 1.0.11-18369 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 659414779d..d5b0b4c3f4 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-18012 +API version: 1.0.11-18369 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 aabe796bf1..4ec1bd10c7 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-18012 +API version: 1.0.11-18369 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 ebbbb6b192..c98d4cd468 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-18012 +API version: 1.0.11-18369 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 9d821f519d..61d6f1b40c 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-18012 +API version: 1.0.11-18369 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 356841372b..fc9ee9a404 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-18012 +API version: 1.0.11-18369 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 28b497c17c..a9f38e7d4f 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-18012 +API version: 1.0.11-18369 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 6e83f5bf06..f9c4af9677 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-18012 +API version: 1.0.11-18369 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 822e39ce7c..519a9ab60c 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-18012 +API version: 1.0.11-18369 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 b942c329ab..62cdb071ff 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-18012 +API version: 1.0.11-18369 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 c18943ad00..a1ec62d61f 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-18012 +API version: 1.0.11-18369 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 0f414dbffd..9899c11e00 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-18012 +API version: 1.0.11-18369 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 e197e02b73..14baf6e88f 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-18012 +API version: 1.0.11-18369 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 8b08a02734..64fab06475 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-18012 +API version: 1.0.11-18369 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 7c06a59b02..6a794cfd27 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-18012 +API version: 1.0.11-18369 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 2e3ca0e77b..5c6ea59e07 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-18012 +API version: 1.0.11-18369 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 dbe49453e7..79855aa80d 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-18012 +API version: 1.0.11-18369 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 0445982992..15de472881 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-18012 +API version: 1.0.11-18369 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 d0ffdbe8df..ffe7c01e62 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-18012 +API version: 1.0.11-18369 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 5efa7e99e6..b907447589 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-18012 +API version: 1.0.11-18369 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 70431aef3b..b41616bc9d 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-18012 +API version: 1.0.11-18369 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 efebed0fef..7bdc7c4fc9 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-18012 +API version: 1.0.11-18369 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 c8ff9fcd01..413f5431d9 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-18012 +API version: 1.0.11-18369 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 0c53392b76..97ad88cadd 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-18012 +API version: 1.0.11-18369 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 52c09e0187..33f226efc2 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-18012 +API version: 1.0.11-18369 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 79ee2b81ff..6417966971 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-18012 +API version: 1.0.11-18369 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 a586339ebe..d32491ecca 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-18012 +API version: 1.0.11-18369 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 ca7887c4fe..177a9e2fef 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-18012 +API version: 1.0.11-18369 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 d9a9a44572..d75675b45f 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-18012 +API version: 1.0.11-18369 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 f201beb692..8cc03d626e 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-18012 +API version: 1.0.11-18369 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 9c02b947e0..7076faf5a0 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-18012 +API version: 1.0.11-18369 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 13d0399dd6..b142be371d 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-18012 +API version: 1.0.11-18369 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 ddf2a53ce1..2f3cfbbf10 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-18012 +API version: 1.0.11-18369 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 f2c88ddee7..95e5a3c391 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-18012 +API version: 1.0.11-18369 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 4fbf680584..477d8350b4 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-18012 +API version: 1.0.11-18369 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 7da9750810..0acc0b5a34 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-18012 +API version: 1.0.11-18369 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 49dc7703b8..f4e3874b69 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-18012 +API version: 1.0.11-18369 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 ce04941eff..fa7f355bf2 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-18012 +API version: 1.0.11-18369 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 be0ed4eddf..5bb0f69486 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-18012 +API version: 1.0.11-18369 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 8a010cb284..ea02b1e1a9 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-18012 +API version: 1.0.11-18369 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 7e398b6755..37394ed48d 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-18012 +API version: 1.0.11-18369 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 49a6da9de9..4b57f9140c 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-18012 +API version: 1.0.11-18369 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 f8912f5ea0..c719d3375c 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-18012 +API version: 1.0.11-18369 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 29ba6a9124..df270d865e 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-18012 +API version: 1.0.11-18369 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 8ca5214b42..fc9005d12b 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-18012 +API version: 1.0.11-18369 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 def31144cc..f3a8b143db 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-18012 +API version: 1.0.11-18369 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 e58864dcac..f3cee4fbd6 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-18012 +API version: 1.0.11-18369 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 62b4c07f0c..921707df54 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-18012 +API version: 1.0.11-18369 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 bb6092c88d..be8ef1175a 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-18012 +API version: 1.0.11-18369 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 a9115f4c21..b154c9df72 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-18012 +API version: 1.0.11-18369 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 80ff1f8a03..3d0b0bfdd9 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-18012 +API version: 1.0.11-18369 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 846f8e358f..9fde87ff69 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-18012 +API version: 1.0.11-18369 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 b0ff5dd471..331d82b904 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-18012 +API version: 1.0.11-18369 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 8ae6b398e8..442be35ed6 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-18012 +API version: 1.0.11-18369 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 967033e9b2..869bc52a73 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-18012 +API version: 1.0.11-18369 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 5d851fc323..190998024e 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-18012 +API version: 1.0.11-18369 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 59cb6db2f1..beae37a803 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-18012 +API version: 1.0.11-18369 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 321cb9a38e..0e05eb4dae 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-18012 +API version: 1.0.11-18369 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 e60fd30780..8849766b93 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-18012 +API version: 1.0.11-18369 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 46d11e82c7..68fe6735e3 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-18012 +API version: 1.0.11-18369 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 a87643b461..a9c7c3d197 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-18012 +API version: 1.0.11-18369 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 814efc7696..ac92cccdcc 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-18012 +API version: 1.0.11-18369 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 fa08f71add..cc14d05f5c 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-18012 +API version: 1.0.11-18369 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 4cacae81dd..81893c5b5f 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-18012 +API version: 1.0.11-18369 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 aa1f82dc38..560ad1fb6f 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-18012 +API version: 1.0.11-18369 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 b55b2c744e..7fdb740852 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-18012 +API version: 1.0.11-18369 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 031068812f..27eb0acd19 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-18012 +API version: 1.0.11-18369 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 9966ad82a7..62a90846a0 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-18012 +API version: 1.0.11-18369 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 5aa6c0b1a5..b0e52644a9 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-18012 +API version: 1.0.11-18369 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 325d800b75..40e6defc19 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 71b22eed1e..7ca63fb060 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-18012 +API version: 1.0.11-18369 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 6d4a8c8764..1cfd6c0f4b 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-18012 +API version: 1.0.11-18369 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 0790afb5b1..f1f69118e1 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-18012 +API version: 1.0.11-18369 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 2d73bccf90..a70f401eb0 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-18012 +API version: 1.0.11-18369 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 e128323f77..0fef3fd628 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-18012 +API version: 1.0.11-18369 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 f393f168a2..127fba2e35 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-18012 +API version: 1.0.11-18369 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 3437a28929..68b061d70a 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-18012 +API version: 1.0.11-18369 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 85aa036986..a289090281 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-18012 +API version: 1.0.11-18369 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 856b677a9f..45074733a0 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-18012 +API version: 1.0.11-18369 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 e8ab7704bf..00054455ee 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-18012 +API version: 1.0.11-18369 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 3a94d3480d..f35d097416 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-18012 +API version: 1.0.11-18369 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 2073ab9ce3..2ff60fa0d4 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-18012 +API version: 1.0.11-18369 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 6a42122e40..a00d1a030e 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-18012 +API version: 1.0.11-18369 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 9ea5f24838..f5489f5645 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-18012 +API version: 1.0.11-18369 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 5d36c2344f..d8f025af7d 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-18012 +API version: 1.0.11-18369 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 b025b56316..e407f729c4 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-18012 +API version: 1.0.11-18369 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 13b9c2fd54..be18e3b456 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-18012 +API version: 1.0.11-18369 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 02c5f37b3e..d5a85fe47f 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-18012 +API version: 1.0.11-18369 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 9e8283d277..333db747f2 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-18012 +API version: 1.0.11-18369 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 65e7b1023e..adbd3cca6d 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-18012 +API version: 1.0.11-18369 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 3702983a9c..b4021cae22 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-18012 +API version: 1.0.11-18369 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 7d87044194..d96dcef675 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 8a3d8c9dce..33be07a034 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-18012 +API version: 1.0.11-18369 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 e58eb192ab..ae38f99ec8 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-18012 +API version: 1.0.11-18369 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 1a516999b0..5b8a6ff7c5 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 6eb58aac66..2d414f4b2f 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-18012 +API version: 1.0.11-18369 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 391baf173f..72be655358 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-18012 +API version: 1.0.11-18369 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 373ef283ef..ee8369c198 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-18012 +API version: 1.0.11-18369 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 e465e93c96..64b627e200 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-18012 +API version: 1.0.11-18369 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 5dba8fcac4..c879fec64a 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-18012 +API version: 1.0.11-18369 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 0b7cbab345..22c08b2329 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-18012 +API version: 1.0.11-18369 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 eea445dc0b..6416ff5237 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-18012 +API version: 1.0.11-18369 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 02af3a8417..e0fdcb226e 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-18012 +API version: 1.0.11-18369 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 4398745617..d2b741404e 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-18012 +API version: 1.0.11-18369 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 ca2e4adae6..08980f0e90 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-18012 +API version: 1.0.11-18369 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 bf5f4ab38a..397fb700aa 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-18012 +API version: 1.0.11-18369 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 d4b53aece2..a1cb6cbca7 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-18012 +API version: 1.0.11-18369 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 64bcb91b9b..8266915bca 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-18012 +API version: 1.0.11-18369 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 c68ca0599b..473e661b00 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-18012 +API version: 1.0.11-18369 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 1795a5ffd4..7288dc40b6 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-18012 +API version: 1.0.11-18369 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 4e479cce11..8ca0279ff1 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-18012 +API version: 1.0.11-18369 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 fa8bfecb85..1c4d88f3ad 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-18012 +API version: 1.0.11-18369 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 20cd579fba..be4fbc1305 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-18012 +API version: 1.0.11-18369 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 a9debb2f26..2159716c58 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-18012 +API version: 1.0.11-18369 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 e8abbe99c5..fb5454df3a 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-18012 +API version: 1.0.11-18369 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 9a7cd4032a..64abb227d6 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-18012 +API version: 1.0.11-18369 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 069044f186..1eea4680a4 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-18012 +API version: 1.0.11-18369 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 aa468e0e8c..953b480579 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-18012 +API version: 1.0.11-18369 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 865e32017f..b12f035f35 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-18012 +API version: 1.0.11-18369 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 6677e73994..07875a847e 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-18012 +API version: 1.0.11-18369 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 457f6f51bb..d58aea73d1 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-18012 +API version: 1.0.11-18369 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 94ff09afa9..c0409e0ff2 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-18012 +API version: 1.0.11-18369 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 89a9ffb1ae..8b4c0d4fa8 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-18012 +API version: 1.0.11-18369 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 80a6405382..41717eb628 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-18012 +API version: 1.0.11-18369 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 a1321c7776..8b8885cbd0 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-18012 +API version: 1.0.11-18369 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 359390db87..7bafd3f7c2 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-18012 +API version: 1.0.11-18369 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 cc8e60ec41..e298a70d59 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-18012 +API version: 1.0.11-18369 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 4944210a89..d0c2d2e2cd 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-18012 +API version: 1.0.11-18369 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 8b42984e94..9e789515b6 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-18012 +API version: 1.0.11-18369 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 bf8557b619..9d5c288a6f 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-18012 +API version: 1.0.11-18369 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 ec6f3733e9..e03dcb4abb 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-18012 +API version: 1.0.11-18369 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 26ef905188..47fae69ad8 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ @@ -21,7 +21,7 @@ import ( // checks if the SchedulerBaseMonthlyCadenceParams type satisfies the MappedNullable interface at compile time var _ MappedNullable = &SchedulerBaseMonthlyCadenceParams{} -// SchedulerBaseMonthlyCadenceParams The monthly cadence applied to yearly and monthly schedules. +// SchedulerBaseMonthlyCadenceParams The monthly cadence applied to monthly schedules. type SchedulerBaseMonthlyCadenceParams struct { SchedulerBaseCadenceParams // The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data. The enum values provides the list of concrete types that can be instantiated from this abstract type. @@ -29,9 +29,8 @@ type SchedulerBaseMonthlyCadenceParams 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"` // Significant business days, such as days when reports are generated for analysis. * `None` - Placeholder. One of the following two fields must be selected. * `FirstWeekDay` - First week day of the month. * `MonthLastDay` - The last day of the month. - CustomDayOfMonth *string `json:"CustomDayOfMonth,omitempty"` - DayOfMonth []int64 `json:"DayOfMonth,omitempty"` - WeekDayFormat NullableSchedulerMonthlyWeekDayFormat `json:"WeekDayFormat,omitempty"` + CustomDayOfMonth *string `json:"CustomDayOfMonth,omitempty"` + DayOfMonth []int64 `json:"DayOfMonth,omitempty"` AdditionalProperties map[string]interface{} } @@ -55,6 +54,10 @@ func NewSchedulerBaseMonthlyCadenceParams(classId string, objectType string) *Sc // but it doesn't guarantee that properties required by API are set func NewSchedulerBaseMonthlyCadenceParamsWithDefaults() *SchedulerBaseMonthlyCadenceParams { this := SchedulerBaseMonthlyCadenceParams{} + var classId string = "scheduler.MonthlyCadenceParams" + this.ClassId = classId + var objectType string = "scheduler.MonthlyCadenceParams" + this.ObjectType = objectType var customDayOfMonth string = "None" this.CustomDayOfMonth = &customDayOfMonth return &this @@ -84,6 +87,11 @@ func (o *SchedulerBaseMonthlyCadenceParams) SetClassId(v string) { o.ClassId = v } +// GetDefaultClassId returns the default value "scheduler.MonthlyCadenceParams" of the ClassId field. +func (o *SchedulerBaseMonthlyCadenceParams) GetDefaultClassId() interface{} { + return "scheduler.MonthlyCadenceParams" +} + // GetObjectType returns the ObjectType field value func (o *SchedulerBaseMonthlyCadenceParams) GetObjectType() string { if o == nil { @@ -108,6 +116,11 @@ func (o *SchedulerBaseMonthlyCadenceParams) SetObjectType(v string) { o.ObjectType = v } +// GetDefaultObjectType returns the default value "scheduler.MonthlyCadenceParams" of the ObjectType field. +func (o *SchedulerBaseMonthlyCadenceParams) GetDefaultObjectType() interface{} { + return "scheduler.MonthlyCadenceParams" +} + // GetCustomDayOfMonth returns the CustomDayOfMonth field value if set, zero value otherwise. func (o *SchedulerBaseMonthlyCadenceParams) GetCustomDayOfMonth() string { if o == nil || IsNil(o.CustomDayOfMonth) { @@ -173,49 +186,6 @@ func (o *SchedulerBaseMonthlyCadenceParams) SetDayOfMonth(v []int64) { o.DayOfMonth = v } -// GetWeekDayFormat returns the WeekDayFormat field value if set, zero value otherwise (both if not set or set to explicit null). -func (o *SchedulerBaseMonthlyCadenceParams) GetWeekDayFormat() SchedulerMonthlyWeekDayFormat { - if o == nil || IsNil(o.WeekDayFormat.Get()) { - var ret SchedulerMonthlyWeekDayFormat - return ret - } - return *o.WeekDayFormat.Get() -} - -// GetWeekDayFormatOk returns a tuple with the WeekDayFormat 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 *SchedulerBaseMonthlyCadenceParams) GetWeekDayFormatOk() (*SchedulerMonthlyWeekDayFormat, bool) { - if o == nil { - return nil, false - } - return o.WeekDayFormat.Get(), o.WeekDayFormat.IsSet() -} - -// HasWeekDayFormat returns a boolean if a field has been set. -func (o *SchedulerBaseMonthlyCadenceParams) HasWeekDayFormat() bool { - if o != nil && o.WeekDayFormat.IsSet() { - return true - } - - return false -} - -// SetWeekDayFormat gets a reference to the given NullableSchedulerMonthlyWeekDayFormat and assigns it to the WeekDayFormat field. -func (o *SchedulerBaseMonthlyCadenceParams) SetWeekDayFormat(v SchedulerMonthlyWeekDayFormat) { - o.WeekDayFormat.Set(&v) -} - -// SetWeekDayFormatNil sets the value for WeekDayFormat to be an explicit nil -func (o *SchedulerBaseMonthlyCadenceParams) SetWeekDayFormatNil() { - o.WeekDayFormat.Set(nil) -} - -// UnsetWeekDayFormat ensures that no value is present for WeekDayFormat, not even an explicit nil -func (o *SchedulerBaseMonthlyCadenceParams) UnsetWeekDayFormat() { - o.WeekDayFormat.Unset() -} - func (o SchedulerBaseMonthlyCadenceParams) MarshalJSON() ([]byte, error) { toSerialize, err := o.ToMap() if err != nil { @@ -234,7 +204,13 @@ func (o SchedulerBaseMonthlyCadenceParams) ToMap() (map[string]interface{}, erro if errSchedulerBaseCadenceParams != nil { return map[string]interface{}{}, errSchedulerBaseCadenceParams } + if _, exists := toSerialize["ClassId"]; !exists { + toSerialize["ClassId"] = o.GetDefaultClassId() + } toSerialize["ClassId"] = o.ClassId + if _, exists := toSerialize["ObjectType"]; !exists { + toSerialize["ObjectType"] = o.GetDefaultObjectType() + } toSerialize["ObjectType"] = o.ObjectType if !IsNil(o.CustomDayOfMonth) { toSerialize["CustomDayOfMonth"] = o.CustomDayOfMonth @@ -242,9 +218,6 @@ func (o SchedulerBaseMonthlyCadenceParams) ToMap() (map[string]interface{}, erro if o.DayOfMonth != nil { toSerialize["DayOfMonth"] = o.DayOfMonth } - if o.WeekDayFormat.IsSet() { - toSerialize["WeekDayFormat"] = o.WeekDayFormat.Get() - } for key, value := range o.AdditionalProperties { toSerialize[key] = value @@ -264,7 +237,10 @@ func (o *SchedulerBaseMonthlyCadenceParams) UnmarshalJSON(data []byte) (err erro // defaultValueFuncMap captures the default values for required properties. // These values are used when required properties are missing from the payload. - defaultValueFuncMap := map[string]func() interface{}{} + defaultValueFuncMap := map[string]func() interface{}{ + "ClassId": o.GetDefaultClassId, + "ObjectType": o.GetDefaultObjectType, + } var defaultValueApplied bool allProperties := make(map[string]interface{}) @@ -298,9 +274,8 @@ func (o *SchedulerBaseMonthlyCadenceParams) UnmarshalJSON(data []byte) (err erro // 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"` // Significant business days, such as days when reports are generated for analysis. * `None` - Placeholder. One of the following two fields must be selected. * `FirstWeekDay` - First week day of the month. * `MonthLastDay` - The last day of the month. - CustomDayOfMonth *string `json:"CustomDayOfMonth,omitempty"` - DayOfMonth []int64 `json:"DayOfMonth,omitempty"` - WeekDayFormat NullableSchedulerMonthlyWeekDayFormat `json:"WeekDayFormat,omitempty"` + CustomDayOfMonth *string `json:"CustomDayOfMonth,omitempty"` + DayOfMonth []int64 `json:"DayOfMonth,omitempty"` } varSchedulerBaseMonthlyCadenceParamsWithoutEmbeddedStruct := SchedulerBaseMonthlyCadenceParamsWithoutEmbeddedStruct{} @@ -312,7 +287,6 @@ func (o *SchedulerBaseMonthlyCadenceParams) UnmarshalJSON(data []byte) (err erro varSchedulerBaseMonthlyCadenceParams.ObjectType = varSchedulerBaseMonthlyCadenceParamsWithoutEmbeddedStruct.ObjectType varSchedulerBaseMonthlyCadenceParams.CustomDayOfMonth = varSchedulerBaseMonthlyCadenceParamsWithoutEmbeddedStruct.CustomDayOfMonth varSchedulerBaseMonthlyCadenceParams.DayOfMonth = varSchedulerBaseMonthlyCadenceParamsWithoutEmbeddedStruct.DayOfMonth - varSchedulerBaseMonthlyCadenceParams.WeekDayFormat = varSchedulerBaseMonthlyCadenceParamsWithoutEmbeddedStruct.WeekDayFormat *o = SchedulerBaseMonthlyCadenceParams(varSchedulerBaseMonthlyCadenceParams) } else { return err @@ -334,7 +308,6 @@ func (o *SchedulerBaseMonthlyCadenceParams) UnmarshalJSON(data []byte) (err erro delete(additionalProperties, "ObjectType") delete(additionalProperties, "CustomDayOfMonth") delete(additionalProperties, "DayOfMonth") - delete(additionalProperties, "WeekDayFormat") // remove fields from embedded structs reflectSchedulerBaseCadenceParams := reflect.ValueOf(o.SchedulerBaseCadenceParams) 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 fb96e24db1..09e8658351 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ @@ -29,7 +29,7 @@ type SchedulerBaseScheduleParams struct { ClassId string `json:"ClassId"` // 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 schedule start time. A future time is required. When the start time is updated, it is mandatory to specify the corresponding timeZone property as well. + // The schedule start time. A future time is required. StartTime *time.Time `json:"StartTime,omitempty"` // The timezone for the startTime specified. It is a mandatory input property when start time is provided. * `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` - TimeZone *string `json:"TimeZone,omitempty"` @@ -251,7 +251,7 @@ func (o *SchedulerBaseScheduleParams) 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. The enum values provides the list of concrete types that can be instantiated from this abstract type. ObjectType string `json:"ObjectType"` - // The schedule start time. A future time is required. When the start time is updated, it is mandatory to specify the corresponding timeZone property as well. + // The schedule start time. A future time is required. StartTime *time.Time `json:"StartTime,omitempty"` // The timezone for the startTime specified. It is a mandatory input property when start time is provided. * `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` - TimeZone *string `json:"TimeZone,omitempty"` 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 ef8d1a2abe..7fefb22a44 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ @@ -43,6 +43,8 @@ func NewSchedulerDailyCadenceParams(classId string, objectType string) *Schedule this := SchedulerDailyCadenceParams{} this.ClassId = classId this.ObjectType = objectType + var runEvery int64 = 1 + this.RunEvery = &runEvery return &this } @@ -55,6 +57,8 @@ func NewSchedulerDailyCadenceParamsWithDefaults() *SchedulerDailyCadenceParams { this.ClassId = classId var objectType string = "scheduler.DailyCadenceParams" this.ObjectType = objectType + var runEvery int64 = 1 + this.RunEvery = &runEvery return &this } 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 7802f9624f..7b6d1d9fd8 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ @@ -28,7 +28,7 @@ type SchedulerEveryCadenceParams 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"` - // An interval specified as string where valid time units are \"ns\", \"us\", \"ms\", \"s\", \"m\", \"h\". The calender calculations use a gregorian calendar with no leap seconds. The default is 24h. + // An interval specified as string where valid time units are \"s\", \"m\", \"h\". The minimum interval is 15 minutes and the maximum is 24 hours. Interval *string `json:"Interval,omitempty"` AdditionalProperties map[string]interface{} } @@ -232,7 +232,7 @@ func (o *SchedulerEveryCadenceParams) 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"` - // An interval specified as string where valid time units are \"ns\", \"us\", \"ms\", \"s\", \"m\", \"h\". The calender calculations use a gregorian calendar with no leap seconds. The default is 24h. + // An interval specified as string where valid time units are \"s\", \"m\", \"h\". The minimum interval is 15 minutes and the maximum is 24 hours. Interval *string `json:"Interval,omitempty"` } 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 8c36ae9cfd..5f966ced34 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ @@ -87,7 +87,10 @@ func (o *SchedulerMonthlyCadenceParams) UnmarshalJSON(data []byte) (err error) { // defaultValueFuncMap captures the default values for required properties. // These values are used when required properties are missing from the payload. - defaultValueFuncMap := map[string]func() interface{}{} + defaultValueFuncMap := map[string]func() interface{}{ + "ClassId": o.GetDefaultClassId, + "ObjectType": o.GetDefaultObjectType, + } var defaultValueApplied bool allProperties := make(map[string]interface{}) 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 deleted file mode 100644 index dc8c1eacb1..0000000000 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_scheduler_monthly_week_day_format.go +++ /dev/null @@ -1,281 +0,0 @@ -/* -Cisco Intersight - -Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. - -API version: 1.0.11-18012 -Contact: intersight@cisco.com -*/ - -// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. - -package intersight - -import ( - "encoding/json" - "fmt" - "reflect" - "strings" -) - -// checks if the SchedulerMonthlyWeekDayFormat type satisfies the MappedNullable interface at compile time -var _ MappedNullable = &SchedulerMonthlyWeekDayFormat{} - -// SchedulerMonthlyWeekDayFormat An alternative for monthly scheduled task. For e.g. third Tuesday of every month. -type SchedulerMonthlyWeekDayFormat struct { - MoBaseComplexType - DayOfWeek []string `json:"DayOfWeek,omitempty"` - // The week of the month, 1 through 5. - WeekOfMonth *int64 `json:"WeekOfMonth,omitempty"` - AdditionalProperties map[string]interface{} -} - -type _SchedulerMonthlyWeekDayFormat SchedulerMonthlyWeekDayFormat - -// NewSchedulerMonthlyWeekDayFormat instantiates a new SchedulerMonthlyWeekDayFormat object -// This constructor will assign default values to properties that have it defined, -// and makes sure properties required by API are set, but the set of arguments -// will change when the set of required properties is changed -func NewSchedulerMonthlyWeekDayFormat(classId string, objectType string) *SchedulerMonthlyWeekDayFormat { - this := SchedulerMonthlyWeekDayFormat{} - this.ClassId = classId - this.ObjectType = objectType - return &this -} - -// NewSchedulerMonthlyWeekDayFormatWithDefaults instantiates a new SchedulerMonthlyWeekDayFormat object -// This constructor will only assign default values to properties that have it defined, -// but it doesn't guarantee that properties required by API are set -func NewSchedulerMonthlyWeekDayFormatWithDefaults() *SchedulerMonthlyWeekDayFormat { - this := SchedulerMonthlyWeekDayFormat{} - return &this -} - -// GetDayOfWeek returns the DayOfWeek field value if set, zero value otherwise (both if not set or set to explicit null). -func (o *SchedulerMonthlyWeekDayFormat) GetDayOfWeek() []string { - if o == nil { - var ret []string - return ret - } - return o.DayOfWeek -} - -// GetDayOfWeekOk returns a tuple with the DayOfWeek 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 *SchedulerMonthlyWeekDayFormat) GetDayOfWeekOk() ([]string, bool) { - if o == nil || IsNil(o.DayOfWeek) { - return nil, false - } - return o.DayOfWeek, true -} - -// HasDayOfWeek returns a boolean if a field has been set. -func (o *SchedulerMonthlyWeekDayFormat) HasDayOfWeek() bool { - if o != nil && !IsNil(o.DayOfWeek) { - return true - } - - return false -} - -// SetDayOfWeek gets a reference to the given []string and assigns it to the DayOfWeek field. -func (o *SchedulerMonthlyWeekDayFormat) SetDayOfWeek(v []string) { - o.DayOfWeek = v -} - -// GetWeekOfMonth returns the WeekOfMonth field value if set, zero value otherwise. -func (o *SchedulerMonthlyWeekDayFormat) GetWeekOfMonth() int64 { - if o == nil || IsNil(o.WeekOfMonth) { - var ret int64 - return ret - } - return *o.WeekOfMonth -} - -// GetWeekOfMonthOk returns a tuple with the WeekOfMonth field value if set, nil otherwise -// and a boolean to check if the value has been set. -func (o *SchedulerMonthlyWeekDayFormat) GetWeekOfMonthOk() (*int64, bool) { - if o == nil || IsNil(o.WeekOfMonth) { - return nil, false - } - return o.WeekOfMonth, true -} - -// HasWeekOfMonth returns a boolean if a field has been set. -func (o *SchedulerMonthlyWeekDayFormat) HasWeekOfMonth() bool { - if o != nil && !IsNil(o.WeekOfMonth) { - return true - } - - return false -} - -// SetWeekOfMonth gets a reference to the given int64 and assigns it to the WeekOfMonth field. -func (o *SchedulerMonthlyWeekDayFormat) SetWeekOfMonth(v int64) { - o.WeekOfMonth = &v -} - -func (o SchedulerMonthlyWeekDayFormat) MarshalJSON() ([]byte, error) { - toSerialize, err := o.ToMap() - if err != nil { - return []byte{}, err - } - return json.Marshal(toSerialize) -} - -func (o SchedulerMonthlyWeekDayFormat) ToMap() (map[string]interface{}, error) { - toSerialize := map[string]interface{}{} - serializedMoBaseComplexType, errMoBaseComplexType := json.Marshal(o.MoBaseComplexType) - if errMoBaseComplexType != nil { - return map[string]interface{}{}, errMoBaseComplexType - } - errMoBaseComplexType = json.Unmarshal([]byte(serializedMoBaseComplexType), &toSerialize) - if errMoBaseComplexType != nil { - return map[string]interface{}{}, errMoBaseComplexType - } - if o.DayOfWeek != nil { - toSerialize["DayOfWeek"] = o.DayOfWeek - } - if !IsNil(o.WeekOfMonth) { - toSerialize["WeekOfMonth"] = o.WeekOfMonth - } - - for key, value := range o.AdditionalProperties { - toSerialize[key] = value - } - - return toSerialize, nil -} - -func (o *SchedulerMonthlyWeekDayFormat) UnmarshalJSON(data []byte) (err error) { - // This validates that all required properties are included in the JSON object - // by unmarshalling the object into a generic map with string keys and checking - // that every required field exists as a key in the generic map. - requiredProperties := []string{ - "ClassId", - "ObjectType", - } - - // defaultValueFuncMap captures the default values for required properties. - // These values are used when required properties are missing from the payload. - defaultValueFuncMap := map[string]func() interface{}{} - var defaultValueApplied bool - allProperties := make(map[string]interface{}) - - err = json.Unmarshal(data, &allProperties) - - if err != nil { - return err - } - - for _, requiredProperty := range requiredProperties { - if value, exists := allProperties[requiredProperty]; !exists || value == "" { - if _, ok := defaultValueFuncMap[requiredProperty]; ok { - allProperties[requiredProperty] = defaultValueFuncMap[requiredProperty]() - defaultValueApplied = true - } - } - if value, exists := allProperties[requiredProperty]; !exists || value == "" { - return fmt.Errorf("no value given for required property %v", requiredProperty) - } - } - - if defaultValueApplied { - data, err = json.Marshal(allProperties) - if err != nil { - return err - } - } - type SchedulerMonthlyWeekDayFormatWithoutEmbeddedStruct struct { - DayOfWeek []string `json:"DayOfWeek,omitempty"` - // The week of the month, 1 through 5. - WeekOfMonth *int64 `json:"WeekOfMonth,omitempty"` - } - - varSchedulerMonthlyWeekDayFormatWithoutEmbeddedStruct := SchedulerMonthlyWeekDayFormatWithoutEmbeddedStruct{} - - err = json.Unmarshal(data, &varSchedulerMonthlyWeekDayFormatWithoutEmbeddedStruct) - if err == nil { - varSchedulerMonthlyWeekDayFormat := _SchedulerMonthlyWeekDayFormat{} - varSchedulerMonthlyWeekDayFormat.DayOfWeek = varSchedulerMonthlyWeekDayFormatWithoutEmbeddedStruct.DayOfWeek - varSchedulerMonthlyWeekDayFormat.WeekOfMonth = varSchedulerMonthlyWeekDayFormatWithoutEmbeddedStruct.WeekOfMonth - *o = SchedulerMonthlyWeekDayFormat(varSchedulerMonthlyWeekDayFormat) - } else { - return err - } - - varSchedulerMonthlyWeekDayFormat := _SchedulerMonthlyWeekDayFormat{} - - err = json.Unmarshal(data, &varSchedulerMonthlyWeekDayFormat) - if err == nil { - o.MoBaseComplexType = varSchedulerMonthlyWeekDayFormat.MoBaseComplexType - } else { - return err - } - - additionalProperties := make(map[string]interface{}) - - if err = json.Unmarshal(data, &additionalProperties); err == nil { - delete(additionalProperties, "DayOfWeek") - delete(additionalProperties, "WeekOfMonth") - - // remove fields from embedded structs - reflectMoBaseComplexType := reflect.ValueOf(o.MoBaseComplexType) - for i := 0; i < reflectMoBaseComplexType.Type().NumField(); i++ { - t := reflectMoBaseComplexType.Type().Field(i) - - if jsonTag := t.Tag.Get("json"); jsonTag != "" { - fieldName := "" - if commaIdx := strings.Index(jsonTag, ","); commaIdx > 0 { - fieldName = jsonTag[:commaIdx] - } else { - fieldName = jsonTag - } - if fieldName != "AdditionalProperties" { - delete(additionalProperties, fieldName) - } - } - } - - o.AdditionalProperties = additionalProperties - } - - return err -} - -type NullableSchedulerMonthlyWeekDayFormat struct { - value *SchedulerMonthlyWeekDayFormat - isSet bool -} - -func (v NullableSchedulerMonthlyWeekDayFormat) Get() *SchedulerMonthlyWeekDayFormat { - return v.value -} - -func (v *NullableSchedulerMonthlyWeekDayFormat) Set(val *SchedulerMonthlyWeekDayFormat) { - v.value = val - v.isSet = true -} - -func (v NullableSchedulerMonthlyWeekDayFormat) IsSet() bool { - return v.isSet -} - -func (v *NullableSchedulerMonthlyWeekDayFormat) Unset() { - v.value = nil - v.isSet = false -} - -func NewNullableSchedulerMonthlyWeekDayFormat(val *SchedulerMonthlyWeekDayFormat) *NullableSchedulerMonthlyWeekDayFormat { - return &NullableSchedulerMonthlyWeekDayFormat{value: val, isSet: true} -} - -func (v NullableSchedulerMonthlyWeekDayFormat) MarshalJSON() ([]byte, error) { - return json.Marshal(v.value) -} - -func (v *NullableSchedulerMonthlyWeekDayFormat) UnmarshalJSON(src []byte) error { - v.isSet = true - return json.Unmarshal(src, &v.value) -} 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 0134864801..c7823c08f4 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-18012 +API version: 1.0.11-18369 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 bc66ec9a8e..cda56d4757 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ @@ -16,6 +16,7 @@ import ( "fmt" "reflect" "strings" + "time" ) // checks if the SchedulerRecurringScheduleParams type satisfies the MappedNullable interface at compile time @@ -24,6 +25,19 @@ var _ MappedNullable = &SchedulerRecurringScheduleParams{} // SchedulerRecurringScheduleParams The parameters for configuring a recurring schedule. type SchedulerRecurringScheduleParams struct { SchedulerBaseScheduleParams + // 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. + 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"` + // Allowed values for a recurring schedule cadence. * `None` - No value set for the cadence type (Enum value None). * `Every` - Use the 'Every' cadence for tasks that need to be run frequently and are relatively small or quick to execute. This could include tasks such as checking the status of a service every 15 minutes, or updating a counter. * `Daily` - A Daily cadence allows for a scheduled task to be run every day or every n-interval days. * `Weekly` - A Weekly cadence allows for a scheduled task to be run every week or every n-interval weeks on specific days. * `Monthly` - A Montly cadence allows for a scheduled task to be run every month on specific days. + Cadence *string `json:"Cadence,omitempty"` + // Specify the number of occurrences (instead of an end-time) for a recurring schedule. + EndAfterOccurrences *int64 `json:"EndAfterOccurrences,omitempty"` + // End time for the recurring schedule. The schedule will not run beyond this time. If using the endAfterOccurrences parameter instead, this field should be set to zero time, i.e, 0001-01-01T00:00:00Z. + EndTime *time.Time `json:"EndTime,omitempty"` + // The maximum number of consecutive failures until the recurring scheduled task is suspended by the system. The default is 1. + FailureThreshold *int64 `json:"FailureThreshold,omitempty"` + Params NullableSchedulerBaseCadenceParams `json:"Params,omitempty"` AdditionalProperties map[string]interface{} } @@ -39,6 +53,10 @@ func NewSchedulerRecurringScheduleParams(classId string, objectType string) *Sch this.ObjectType = objectType var timeZone string = "Pacific/Niue" this.TimeZone = &timeZone + var cadence string = "None" + this.Cadence = &cadence + var failureThreshold int64 = 1 + this.FailureThreshold = &failureThreshold return &this } @@ -47,9 +65,246 @@ func NewSchedulerRecurringScheduleParams(classId string, objectType string) *Sch // but it doesn't guarantee that properties required by API are set func NewSchedulerRecurringScheduleParamsWithDefaults() *SchedulerRecurringScheduleParams { this := SchedulerRecurringScheduleParams{} + var classId string = "scheduler.RecurringScheduleParams" + this.ClassId = classId + var objectType string = "scheduler.RecurringScheduleParams" + this.ObjectType = objectType + var cadence string = "None" + this.Cadence = &cadence + var failureThreshold int64 = 1 + this.FailureThreshold = &failureThreshold return &this } +// GetClassId returns the ClassId field value +func (o *SchedulerRecurringScheduleParams) GetClassId() string { + if o == nil { + var ret string + return ret + } + + return o.ClassId +} + +// GetClassIdOk returns a tuple with the ClassId field value +// and a boolean to check if the value has been set. +func (o *SchedulerRecurringScheduleParams) GetClassIdOk() (*string, bool) { + if o == nil { + return nil, false + } + return &o.ClassId, true +} + +// SetClassId sets field value +func (o *SchedulerRecurringScheduleParams) SetClassId(v string) { + o.ClassId = v +} + +// GetDefaultClassId returns the default value "scheduler.RecurringScheduleParams" of the ClassId field. +func (o *SchedulerRecurringScheduleParams) GetDefaultClassId() interface{} { + return "scheduler.RecurringScheduleParams" +} + +// GetObjectType returns the ObjectType field value +func (o *SchedulerRecurringScheduleParams) GetObjectType() string { + if o == nil { + var ret string + return ret + } + + return o.ObjectType +} + +// GetObjectTypeOk returns a tuple with the ObjectType field value +// and a boolean to check if the value has been set. +func (o *SchedulerRecurringScheduleParams) GetObjectTypeOk() (*string, bool) { + if o == nil { + return nil, false + } + return &o.ObjectType, true +} + +// SetObjectType sets field value +func (o *SchedulerRecurringScheduleParams) SetObjectType(v string) { + o.ObjectType = v +} + +// GetDefaultObjectType returns the default value "scheduler.RecurringScheduleParams" of the ObjectType field. +func (o *SchedulerRecurringScheduleParams) GetDefaultObjectType() interface{} { + return "scheduler.RecurringScheduleParams" +} + +// GetCadence returns the Cadence field value if set, zero value otherwise. +func (o *SchedulerRecurringScheduleParams) GetCadence() string { + if o == nil || IsNil(o.Cadence) { + var ret string + return ret + } + return *o.Cadence +} + +// GetCadenceOk returns a tuple with the Cadence field value if set, nil otherwise +// and a boolean to check if the value has been set. +func (o *SchedulerRecurringScheduleParams) GetCadenceOk() (*string, bool) { + if o == nil || IsNil(o.Cadence) { + return nil, false + } + return o.Cadence, true +} + +// HasCadence returns a boolean if a field has been set. +func (o *SchedulerRecurringScheduleParams) HasCadence() bool { + if o != nil && !IsNil(o.Cadence) { + return true + } + + return false +} + +// SetCadence gets a reference to the given string and assigns it to the Cadence field. +func (o *SchedulerRecurringScheduleParams) SetCadence(v string) { + o.Cadence = &v +} + +// GetEndAfterOccurrences returns the EndAfterOccurrences field value if set, zero value otherwise. +func (o *SchedulerRecurringScheduleParams) GetEndAfterOccurrences() int64 { + if o == nil || IsNil(o.EndAfterOccurrences) { + var ret int64 + return ret + } + return *o.EndAfterOccurrences +} + +// GetEndAfterOccurrencesOk returns a tuple with the EndAfterOccurrences field value if set, nil otherwise +// and a boolean to check if the value has been set. +func (o *SchedulerRecurringScheduleParams) GetEndAfterOccurrencesOk() (*int64, bool) { + if o == nil || IsNil(o.EndAfterOccurrences) { + return nil, false + } + return o.EndAfterOccurrences, true +} + +// HasEndAfterOccurrences returns a boolean if a field has been set. +func (o *SchedulerRecurringScheduleParams) HasEndAfterOccurrences() bool { + if o != nil && !IsNil(o.EndAfterOccurrences) { + return true + } + + return false +} + +// SetEndAfterOccurrences gets a reference to the given int64 and assigns it to the EndAfterOccurrences field. +func (o *SchedulerRecurringScheduleParams) SetEndAfterOccurrences(v int64) { + o.EndAfterOccurrences = &v +} + +// GetEndTime returns the EndTime field value if set, zero value otherwise. +func (o *SchedulerRecurringScheduleParams) GetEndTime() time.Time { + if o == nil || IsNil(o.EndTime) { + var ret time.Time + return ret + } + return *o.EndTime +} + +// GetEndTimeOk returns a tuple with the EndTime field value if set, nil otherwise +// and a boolean to check if the value has been set. +func (o *SchedulerRecurringScheduleParams) GetEndTimeOk() (*time.Time, bool) { + if o == nil || IsNil(o.EndTime) { + return nil, false + } + return o.EndTime, true +} + +// HasEndTime returns a boolean if a field has been set. +func (o *SchedulerRecurringScheduleParams) HasEndTime() bool { + if o != nil && !IsNil(o.EndTime) { + return true + } + + return false +} + +// SetEndTime gets a reference to the given time.Time and assigns it to the EndTime field. +func (o *SchedulerRecurringScheduleParams) SetEndTime(v time.Time) { + o.EndTime = &v +} + +// GetFailureThreshold returns the FailureThreshold field value if set, zero value otherwise. +func (o *SchedulerRecurringScheduleParams) GetFailureThreshold() int64 { + if o == nil || IsNil(o.FailureThreshold) { + var ret int64 + return ret + } + return *o.FailureThreshold +} + +// GetFailureThresholdOk returns a tuple with the FailureThreshold field value if set, nil otherwise +// and a boolean to check if the value has been set. +func (o *SchedulerRecurringScheduleParams) GetFailureThresholdOk() (*int64, bool) { + if o == nil || IsNil(o.FailureThreshold) { + return nil, false + } + return o.FailureThreshold, true +} + +// HasFailureThreshold returns a boolean if a field has been set. +func (o *SchedulerRecurringScheduleParams) HasFailureThreshold() bool { + if o != nil && !IsNil(o.FailureThreshold) { + return true + } + + return false +} + +// SetFailureThreshold gets a reference to the given int64 and assigns it to the FailureThreshold field. +func (o *SchedulerRecurringScheduleParams) SetFailureThreshold(v int64) { + o.FailureThreshold = &v +} + +// GetParams returns the Params field value if set, zero value otherwise (both if not set or set to explicit null). +func (o *SchedulerRecurringScheduleParams) GetParams() SchedulerBaseCadenceParams { + if o == nil || IsNil(o.Params.Get()) { + var ret SchedulerBaseCadenceParams + return ret + } + return *o.Params.Get() +} + +// GetParamsOk returns a tuple with the Params 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 *SchedulerRecurringScheduleParams) GetParamsOk() (*SchedulerBaseCadenceParams, bool) { + if o == nil { + return nil, false + } + return o.Params.Get(), o.Params.IsSet() +} + +// HasParams returns a boolean if a field has been set. +func (o *SchedulerRecurringScheduleParams) HasParams() bool { + if o != nil && o.Params.IsSet() { + return true + } + + return false +} + +// SetParams gets a reference to the given NullableSchedulerBaseCadenceParams and assigns it to the Params field. +func (o *SchedulerRecurringScheduleParams) SetParams(v SchedulerBaseCadenceParams) { + o.Params.Set(&v) +} + +// SetParamsNil sets the value for Params to be an explicit nil +func (o *SchedulerRecurringScheduleParams) SetParamsNil() { + o.Params.Set(nil) +} + +// UnsetParams ensures that no value is present for Params, not even an explicit nil +func (o *SchedulerRecurringScheduleParams) UnsetParams() { + o.Params.Unset() +} + func (o SchedulerRecurringScheduleParams) MarshalJSON() ([]byte, error) { toSerialize, err := o.ToMap() if err != nil { @@ -68,6 +323,29 @@ func (o SchedulerRecurringScheduleParams) ToMap() (map[string]interface{}, error if errSchedulerBaseScheduleParams != nil { return map[string]interface{}{}, errSchedulerBaseScheduleParams } + if _, exists := toSerialize["ClassId"]; !exists { + toSerialize["ClassId"] = o.GetDefaultClassId() + } + toSerialize["ClassId"] = o.ClassId + if _, exists := toSerialize["ObjectType"]; !exists { + toSerialize["ObjectType"] = o.GetDefaultObjectType() + } + toSerialize["ObjectType"] = o.ObjectType + if !IsNil(o.Cadence) { + toSerialize["Cadence"] = o.Cadence + } + if !IsNil(o.EndAfterOccurrences) { + toSerialize["EndAfterOccurrences"] = o.EndAfterOccurrences + } + if !IsNil(o.EndTime) { + toSerialize["EndTime"] = o.EndTime + } + if !IsNil(o.FailureThreshold) { + toSerialize["FailureThreshold"] = o.FailureThreshold + } + if o.Params.IsSet() { + toSerialize["Params"] = o.Params.Get() + } for key, value := range o.AdditionalProperties { toSerialize[key] = value @@ -87,7 +365,10 @@ func (o *SchedulerRecurringScheduleParams) UnmarshalJSON(data []byte) (err error // defaultValueFuncMap captures the default values for required properties. // These values are used when required properties are missing from the payload. - defaultValueFuncMap := map[string]func() interface{}{} + defaultValueFuncMap := map[string]func() interface{}{ + "ClassId": o.GetDefaultClassId, + "ObjectType": o.GetDefaultObjectType, + } var defaultValueApplied bool allProperties := make(map[string]interface{}) @@ -116,6 +397,19 @@ func (o *SchedulerRecurringScheduleParams) UnmarshalJSON(data []byte) (err error } } type SchedulerRecurringScheduleParamsWithoutEmbeddedStruct struct { + // 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. + 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"` + // Allowed values for a recurring schedule cadence. * `None` - No value set for the cadence type (Enum value None). * `Every` - Use the 'Every' cadence for tasks that need to be run frequently and are relatively small or quick to execute. This could include tasks such as checking the status of a service every 15 minutes, or updating a counter. * `Daily` - A Daily cadence allows for a scheduled task to be run every day or every n-interval days. * `Weekly` - A Weekly cadence allows for a scheduled task to be run every week or every n-interval weeks on specific days. * `Monthly` - A Montly cadence allows for a scheduled task to be run every month on specific days. + Cadence *string `json:"Cadence,omitempty"` + // Specify the number of occurrences (instead of an end-time) for a recurring schedule. + EndAfterOccurrences *int64 `json:"EndAfterOccurrences,omitempty"` + // End time for the recurring schedule. The schedule will not run beyond this time. If using the endAfterOccurrences parameter instead, this field should be set to zero time, i.e, 0001-01-01T00:00:00Z. + EndTime *time.Time `json:"EndTime,omitempty"` + // The maximum number of consecutive failures until the recurring scheduled task is suspended by the system. The default is 1. + FailureThreshold *int64 `json:"FailureThreshold,omitempty"` + Params NullableSchedulerBaseCadenceParams `json:"Params,omitempty"` } varSchedulerRecurringScheduleParamsWithoutEmbeddedStruct := SchedulerRecurringScheduleParamsWithoutEmbeddedStruct{} @@ -123,6 +417,13 @@ func (o *SchedulerRecurringScheduleParams) UnmarshalJSON(data []byte) (err error err = json.Unmarshal(data, &varSchedulerRecurringScheduleParamsWithoutEmbeddedStruct) if err == nil { varSchedulerRecurringScheduleParams := _SchedulerRecurringScheduleParams{} + varSchedulerRecurringScheduleParams.ClassId = varSchedulerRecurringScheduleParamsWithoutEmbeddedStruct.ClassId + varSchedulerRecurringScheduleParams.ObjectType = varSchedulerRecurringScheduleParamsWithoutEmbeddedStruct.ObjectType + varSchedulerRecurringScheduleParams.Cadence = varSchedulerRecurringScheduleParamsWithoutEmbeddedStruct.Cadence + varSchedulerRecurringScheduleParams.EndAfterOccurrences = varSchedulerRecurringScheduleParamsWithoutEmbeddedStruct.EndAfterOccurrences + varSchedulerRecurringScheduleParams.EndTime = varSchedulerRecurringScheduleParamsWithoutEmbeddedStruct.EndTime + varSchedulerRecurringScheduleParams.FailureThreshold = varSchedulerRecurringScheduleParamsWithoutEmbeddedStruct.FailureThreshold + varSchedulerRecurringScheduleParams.Params = varSchedulerRecurringScheduleParamsWithoutEmbeddedStruct.Params *o = SchedulerRecurringScheduleParams(varSchedulerRecurringScheduleParams) } else { return err @@ -140,6 +441,13 @@ func (o *SchedulerRecurringScheduleParams) UnmarshalJSON(data []byte) (err error additionalProperties := make(map[string]interface{}) if err = json.Unmarshal(data, &additionalProperties); err == nil { + delete(additionalProperties, "ClassId") + delete(additionalProperties, "ObjectType") + delete(additionalProperties, "Cadence") + delete(additionalProperties, "EndAfterOccurrences") + delete(additionalProperties, "EndTime") + delete(additionalProperties, "FailureThreshold") + delete(additionalProperties, "Params") // remove fields from embedded structs reflectSchedulerBaseScheduleParams := reflect.ValueOf(o.SchedulerBaseScheduleParams) 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 4a2562f45f..265a313795 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ @@ -37,8 +37,9 @@ type SchedulerRestStimTaskRequest struct { // The accepted web protocol values are http and https. Protocol *string `json:"Protocol,omitempty"` // The response obtained for the scheduled API service. + // Deprecated Response interface{} `json:"Response,omitempty"` - // Upper limit on the execution time of a scheduled task. Helps purge run-away scheduled tasks. + // Upper limit on the execution time of a scheduled task. Helps purge run-away scheduled tasks. Not supported in this release. Timeout *int64 `json:"Timeout,omitempty"` // The URL of the resource in the target to which the API request is made. Url *string `json:"Url,omitempty"` @@ -259,6 +260,7 @@ func (o *SchedulerRestStimTaskRequest) SetProtocol(v string) { } // GetResponse returns the Response field value if set, zero value otherwise (both if not set or set to explicit null). +// Deprecated func (o *SchedulerRestStimTaskRequest) GetResponse() interface{} { if o == nil { var ret interface{} @@ -270,6 +272,7 @@ func (o *SchedulerRestStimTaskRequest) GetResponse() interface{} { // GetResponseOk returns a tuple with the Response 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 +// Deprecated func (o *SchedulerRestStimTaskRequest) GetResponseOk() (*interface{}, bool) { if o == nil || IsNil(o.Response) { return nil, false @@ -287,6 +290,7 @@ func (o *SchedulerRestStimTaskRequest) HasResponse() bool { } // SetResponse gets a reference to the given interface{} and assigns it to the Response field. +// Deprecated func (o *SchedulerRestStimTaskRequest) SetResponse(v interface{}) { o.Response = v } @@ -466,8 +470,9 @@ func (o *SchedulerRestStimTaskRequest) UnmarshalJSON(data []byte) (err error) { // The accepted web protocol values are http and https. Protocol *string `json:"Protocol,omitempty"` // The response obtained for the scheduled API service. + // Deprecated Response interface{} `json:"Response,omitempty"` - // Upper limit on the execution time of a scheduled task. Helps purge run-away scheduled tasks. + // Upper limit on the execution time of a scheduled task. Helps purge run-away scheduled tasks. Not supported in this release. Timeout *int64 `json:"Timeout,omitempty"` // The URL of the resource in the target to which the API request is made. Url *string `json:"Url,omitempty"` 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 aad025f436..9f8e84a17f 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-18012 +API version: 1.0.11-18369 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 b3ac414c2f..62a4dd663c 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-18012 +API version: 1.0.11-18369 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 fd26738efd..cfe7d5a28d 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-18012 +API version: 1.0.11-18369 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 26386d67c1..28dba086e8 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-18012 +API version: 1.0.11-18369 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 0776d65b23..8520422a54 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ @@ -29,11 +29,11 @@ type SchedulerTaskSchedule 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"` - // The action of the scheduled task such as suspend or resume. * `None` - No action is set (default). * `Suspend` - Suspend a scheduled task indefinitely. * `Resume` - Resume a suspended scheduled task. * `SuspendTill` - Suspend the scheduled task until a specified end-date. + // The action of the scheduled task such as suspend or resume. * `None` - No action is set (default). * `Suspend` - Suspend a scheduled task indefinitely. * `Resume` - Resume a suspended scheduled task. * `SuspendTill` - Suspend the scheduled task until a specified end-date. Not supported in this release. Action *string `json:"Action,omitempty"` // A description to describe the schedule for easier identification. Description *string `json:"Description,omitempty"` - // The last action for the scheduled task is saved in this field. Set to none if there was no action. * `None` - No action is set (default). * `Suspend` - Suspend a scheduled task indefinitely. * `Resume` - Resume a suspended scheduled task. * `SuspendTill` - Suspend the scheduled task until a specified end-date. + // The last action for the scheduled task is saved in this field. Set to none if there was no action. * `None` - No action is set (default). * `Suspend` - Suspend a scheduled task indefinitely. * `Resume` - Resume a suspended scheduled task. * `SuspendTill` - Suspend the scheduled task until a specified end-date. Not supported in this release. LastAction *string `json:"LastAction,omitempty"` // A schedule name for easier identification (not required to be unique). Name *string `json:"Name,omitempty"` @@ -42,7 +42,7 @@ type SchedulerTaskSchedule struct { // Suspend a task until an end date. this applies only to the action suspendTill. SuspendEndTime *time.Time `json:"SuspendEndTime,omitempty"` TaskRequest *SchedulerRestStimTaskRequest `json:"TaskRequest,omitempty"` - // An Enum describing the type of scheduler to use. * `None` - No value was set for the schedule type (Enum value None). * `OneTime` - Define a one-time task execution time that will not automatically repeat. * `Recurring` - Specify a recurring task cadence based on a predefined pattern, such as daily, weekly, monthly, yearly, or every pattern. This option is not currently supported. + // An Enum describing the type of scheduler to use. * `None` - No value was set for the schedule type (Enum value None). * `OneTime` - Define a one-time task execution time that will not automatically repeat. * `Recurring` - Specify a recurring task cadence based on a predefined pattern, such as daily, weekly, monthly, or every pattern. Type *string `json:"Type,omitempty"` AssociatedObject NullableMoBaseMoRelationship `json:"AssociatedObject,omitempty"` WorkflowDefinition NullableWorkflowWorkflowDefinitionRelationship `json:"WorkflowDefinition,omitempty"` @@ -639,11 +639,11 @@ func (o *SchedulerTaskSchedule) 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"` - // The action of the scheduled task such as suspend or resume. * `None` - No action is set (default). * `Suspend` - Suspend a scheduled task indefinitely. * `Resume` - Resume a suspended scheduled task. * `SuspendTill` - Suspend the scheduled task until a specified end-date. + // The action of the scheduled task such as suspend or resume. * `None` - No action is set (default). * `Suspend` - Suspend a scheduled task indefinitely. * `Resume` - Resume a suspended scheduled task. * `SuspendTill` - Suspend the scheduled task until a specified end-date. Not supported in this release. Action *string `json:"Action,omitempty"` // A description to describe the schedule for easier identification. Description *string `json:"Description,omitempty"` - // The last action for the scheduled task is saved in this field. Set to none if there was no action. * `None` - No action is set (default). * `Suspend` - Suspend a scheduled task indefinitely. * `Resume` - Resume a suspended scheduled task. * `SuspendTill` - Suspend the scheduled task until a specified end-date. + // The last action for the scheduled task is saved in this field. Set to none if there was no action. * `None` - No action is set (default). * `Suspend` - Suspend a scheduled task indefinitely. * `Resume` - Resume a suspended scheduled task. * `SuspendTill` - Suspend the scheduled task until a specified end-date. Not supported in this release. LastAction *string `json:"LastAction,omitempty"` // A schedule name for easier identification (not required to be unique). Name *string `json:"Name,omitempty"` @@ -652,7 +652,7 @@ func (o *SchedulerTaskSchedule) UnmarshalJSON(data []byte) (err error) { // Suspend a task until an end date. this applies only to the action suspendTill. SuspendEndTime *time.Time `json:"SuspendEndTime,omitempty"` TaskRequest *SchedulerRestStimTaskRequest `json:"TaskRequest,omitempty"` - // An Enum describing the type of scheduler to use. * `None` - No value was set for the schedule type (Enum value None). * `OneTime` - Define a one-time task execution time that will not automatically repeat. * `Recurring` - Specify a recurring task cadence based on a predefined pattern, such as daily, weekly, monthly, yearly, or every pattern. This option is not currently supported. + // An Enum describing the type of scheduler to use. * `None` - No value was set for the schedule type (Enum value None). * `OneTime` - Define a one-time task execution time that will not automatically repeat. * `Recurring` - Specify a recurring task cadence based on a predefined pattern, such as daily, weekly, monthly, or every pattern. Type *string `json:"Type,omitempty"` AssociatedObject NullableMoBaseMoRelationship `json:"AssociatedObject,omitempty"` WorkflowDefinition NullableWorkflowWorkflowDefinitionRelationship `json:"WorkflowDefinition,omitempty"` 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 9f95e28b9a..9d8f7fb5b8 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-18012 +API version: 1.0.11-18369 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 088a36fd25..aa7e0f56bb 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-18012 +API version: 1.0.11-18369 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 2806e1bb32..d140f4ac0a 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-18012 +API version: 1.0.11-18369 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 4a18b37441..7083a100d7 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ @@ -29,12 +29,16 @@ type SchedulerTaskScheduleStatus 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"` + // The number of consecutive times the task has failed. + ConsecutiveFailures *int64 `json:"ConsecutiveFailures,omitempty"` // The task completion count, which includes both successful executions and any failures. Count *int64 `json:"Count,omitempty"` // The status of the current task. * `None` - No status is set (default). * `Scheduled` - The status is set when a task is scheduled. * `Running` - The status is set when a task is running. * `Completed` - The status is set when a task is complete. * `Failed` - The status is set when a task fails. * `Suspended` - The status is set when a task is suspended. * `Skipped` - The status is set when a task is skipped because the previous task is still running. CurrentStatus *string `json:"CurrentStatus,omitempty"` // Indicates if this task was suspended by the system. IsSystemSuspended *bool `json:"IsSystemSuspended,omitempty"` + // The last task completion status, which includes both successful executions and any failures. * `None` - No status is set (default). * `Scheduled` - The status is set when a task is scheduled. * `Running` - The status is set when a task is running. * `Completed` - The status is set when a task is complete. * `Failed` - The status is set when a task fails. * `Suspended` - The status is set when a task is suspended. * `Skipped` - The status is set when a task is skipped because the previous task is still running. + LastRunStatus *string `json:"LastRunStatus,omitempty"` // The next run time for a recurrently scheduled the task. NextRunStartTime *time.Time `json:"NextRunStartTime,omitempty"` // The time when the last occurrence of scheduled task completed. @@ -129,6 +133,38 @@ func (o *SchedulerTaskScheduleStatus) GetDefaultObjectType() interface{} { return "scheduler.TaskScheduleStatus" } +// GetConsecutiveFailures returns the ConsecutiveFailures field value if set, zero value otherwise. +func (o *SchedulerTaskScheduleStatus) GetConsecutiveFailures() int64 { + if o == nil || IsNil(o.ConsecutiveFailures) { + var ret int64 + return ret + } + return *o.ConsecutiveFailures +} + +// GetConsecutiveFailuresOk returns a tuple with the ConsecutiveFailures field value if set, nil otherwise +// and a boolean to check if the value has been set. +func (o *SchedulerTaskScheduleStatus) GetConsecutiveFailuresOk() (*int64, bool) { + if o == nil || IsNil(o.ConsecutiveFailures) { + return nil, false + } + return o.ConsecutiveFailures, true +} + +// HasConsecutiveFailures returns a boolean if a field has been set. +func (o *SchedulerTaskScheduleStatus) HasConsecutiveFailures() bool { + if o != nil && !IsNil(o.ConsecutiveFailures) { + return true + } + + return false +} + +// SetConsecutiveFailures gets a reference to the given int64 and assigns it to the ConsecutiveFailures field. +func (o *SchedulerTaskScheduleStatus) SetConsecutiveFailures(v int64) { + o.ConsecutiveFailures = &v +} + // GetCount returns the Count field value if set, zero value otherwise. func (o *SchedulerTaskScheduleStatus) GetCount() int64 { if o == nil || IsNil(o.Count) { @@ -225,6 +261,38 @@ func (o *SchedulerTaskScheduleStatus) SetIsSystemSuspended(v bool) { o.IsSystemSuspended = &v } +// GetLastRunStatus returns the LastRunStatus field value if set, zero value otherwise. +func (o *SchedulerTaskScheduleStatus) GetLastRunStatus() string { + if o == nil || IsNil(o.LastRunStatus) { + var ret string + return ret + } + return *o.LastRunStatus +} + +// GetLastRunStatusOk returns a tuple with the LastRunStatus field value if set, nil otherwise +// and a boolean to check if the value has been set. +func (o *SchedulerTaskScheduleStatus) GetLastRunStatusOk() (*string, bool) { + if o == nil || IsNil(o.LastRunStatus) { + return nil, false + } + return o.LastRunStatus, true +} + +// HasLastRunStatus returns a boolean if a field has been set. +func (o *SchedulerTaskScheduleStatus) HasLastRunStatus() bool { + if o != nil && !IsNil(o.LastRunStatus) { + return true + } + + return false +} + +// SetLastRunStatus gets a reference to the given string and assigns it to the LastRunStatus field. +func (o *SchedulerTaskScheduleStatus) SetLastRunStatus(v string) { + o.LastRunStatus = &v +} + // GetNextRunStartTime returns the NextRunStartTime field value if set, zero value otherwise. func (o *SchedulerTaskScheduleStatus) GetNextRunStartTime() time.Time { if o == nil || IsNil(o.NextRunStartTime) { @@ -379,6 +447,9 @@ func (o SchedulerTaskScheduleStatus) ToMap() (map[string]interface{}, error) { toSerialize["ObjectType"] = o.GetDefaultObjectType() } toSerialize["ObjectType"] = o.ObjectType + if !IsNil(o.ConsecutiveFailures) { + toSerialize["ConsecutiveFailures"] = o.ConsecutiveFailures + } if !IsNil(o.Count) { toSerialize["Count"] = o.Count } @@ -388,6 +459,9 @@ func (o SchedulerTaskScheduleStatus) ToMap() (map[string]interface{}, error) { if !IsNil(o.IsSystemSuspended) { toSerialize["IsSystemSuspended"] = o.IsSystemSuspended } + if !IsNil(o.LastRunStatus) { + toSerialize["LastRunStatus"] = o.LastRunStatus + } if !IsNil(o.NextRunStartTime) { toSerialize["NextRunStartTime"] = o.NextRunStartTime } @@ -455,12 +529,16 @@ func (o *SchedulerTaskScheduleStatus) 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"` + // The number of consecutive times the task has failed. + ConsecutiveFailures *int64 `json:"ConsecutiveFailures,omitempty"` // The task completion count, which includes both successful executions and any failures. Count *int64 `json:"Count,omitempty"` // The status of the current task. * `None` - No status is set (default). * `Scheduled` - The status is set when a task is scheduled. * `Running` - The status is set when a task is running. * `Completed` - The status is set when a task is complete. * `Failed` - The status is set when a task fails. * `Suspended` - The status is set when a task is suspended. * `Skipped` - The status is set when a task is skipped because the previous task is still running. CurrentStatus *string `json:"CurrentStatus,omitempty"` // Indicates if this task was suspended by the system. IsSystemSuspended *bool `json:"IsSystemSuspended,omitempty"` + // The last task completion status, which includes both successful executions and any failures. * `None` - No status is set (default). * `Scheduled` - The status is set when a task is scheduled. * `Running` - The status is set when a task is running. * `Completed` - The status is set when a task is complete. * `Failed` - The status is set when a task fails. * `Suspended` - The status is set when a task is suspended. * `Skipped` - The status is set when a task is skipped because the previous task is still running. + LastRunStatus *string `json:"LastRunStatus,omitempty"` // The next run time for a recurrently scheduled the task. NextRunStartTime *time.Time `json:"NextRunStartTime,omitempty"` // The time when the last occurrence of scheduled task completed. @@ -478,9 +556,11 @@ func (o *SchedulerTaskScheduleStatus) UnmarshalJSON(data []byte) (err error) { varSchedulerTaskScheduleStatus := _SchedulerTaskScheduleStatus{} varSchedulerTaskScheduleStatus.ClassId = varSchedulerTaskScheduleStatusWithoutEmbeddedStruct.ClassId varSchedulerTaskScheduleStatus.ObjectType = varSchedulerTaskScheduleStatusWithoutEmbeddedStruct.ObjectType + varSchedulerTaskScheduleStatus.ConsecutiveFailures = varSchedulerTaskScheduleStatusWithoutEmbeddedStruct.ConsecutiveFailures varSchedulerTaskScheduleStatus.Count = varSchedulerTaskScheduleStatusWithoutEmbeddedStruct.Count varSchedulerTaskScheduleStatus.CurrentStatus = varSchedulerTaskScheduleStatusWithoutEmbeddedStruct.CurrentStatus varSchedulerTaskScheduleStatus.IsSystemSuspended = varSchedulerTaskScheduleStatusWithoutEmbeddedStruct.IsSystemSuspended + varSchedulerTaskScheduleStatus.LastRunStatus = varSchedulerTaskScheduleStatusWithoutEmbeddedStruct.LastRunStatus varSchedulerTaskScheduleStatus.NextRunStartTime = varSchedulerTaskScheduleStatusWithoutEmbeddedStruct.NextRunStartTime varSchedulerTaskScheduleStatus.PrevRunEndTime = varSchedulerTaskScheduleStatusWithoutEmbeddedStruct.PrevRunEndTime varSchedulerTaskScheduleStatus.PrevRunStartTime = varSchedulerTaskScheduleStatusWithoutEmbeddedStruct.PrevRunStartTime @@ -504,9 +584,11 @@ func (o *SchedulerTaskScheduleStatus) UnmarshalJSON(data []byte) (err error) { if err = json.Unmarshal(data, &additionalProperties); err == nil { delete(additionalProperties, "ClassId") delete(additionalProperties, "ObjectType") + delete(additionalProperties, "ConsecutiveFailures") delete(additionalProperties, "Count") delete(additionalProperties, "CurrentStatus") delete(additionalProperties, "IsSystemSuspended") + delete(additionalProperties, "LastRunStatus") delete(additionalProperties, "NextRunStartTime") delete(additionalProperties, "PrevRunEndTime") delete(additionalProperties, "PrevRunStartTime") 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 e90304125c..58fec19954 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ @@ -27,8 +27,10 @@ type SchedulerWeeklyCadenceParams struct { // 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. 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"` - DayOfWeek []string `json:"DayOfWeek,omitempty"` + ObjectType string `json:"ObjectType"` + DayOfWeek []string `json:"DayOfWeek,omitempty"` + // A weekly interval for a task execution. If an interval is not explicitly specified, the task will be executed once every week by default. + RunEvery *int64 `json:"RunEvery,omitempty"` AdditionalProperties map[string]interface{} } @@ -42,6 +44,8 @@ func NewSchedulerWeeklyCadenceParams(classId string, objectType string) *Schedul this := SchedulerWeeklyCadenceParams{} this.ClassId = classId this.ObjectType = objectType + var runEvery int64 = 1 + this.RunEvery = &runEvery return &this } @@ -54,6 +58,8 @@ func NewSchedulerWeeklyCadenceParamsWithDefaults() *SchedulerWeeklyCadenceParams this.ClassId = classId var objectType string = "scheduler.WeeklyCadenceParams" this.ObjectType = objectType + var runEvery int64 = 1 + this.RunEvery = &runEvery return &this } @@ -148,6 +154,38 @@ func (o *SchedulerWeeklyCadenceParams) SetDayOfWeek(v []string) { o.DayOfWeek = v } +// GetRunEvery returns the RunEvery field value if set, zero value otherwise. +func (o *SchedulerWeeklyCadenceParams) GetRunEvery() int64 { + if o == nil || IsNil(o.RunEvery) { + var ret int64 + return ret + } + return *o.RunEvery +} + +// GetRunEveryOk returns a tuple with the RunEvery field value if set, nil otherwise +// and a boolean to check if the value has been set. +func (o *SchedulerWeeklyCadenceParams) GetRunEveryOk() (*int64, bool) { + if o == nil || IsNil(o.RunEvery) { + return nil, false + } + return o.RunEvery, true +} + +// HasRunEvery returns a boolean if a field has been set. +func (o *SchedulerWeeklyCadenceParams) HasRunEvery() bool { + if o != nil && !IsNil(o.RunEvery) { + return true + } + + return false +} + +// SetRunEvery gets a reference to the given int64 and assigns it to the RunEvery field. +func (o *SchedulerWeeklyCadenceParams) SetRunEvery(v int64) { + o.RunEvery = &v +} + func (o SchedulerWeeklyCadenceParams) MarshalJSON() ([]byte, error) { toSerialize, err := o.ToMap() if err != nil { @@ -177,6 +215,9 @@ func (o SchedulerWeeklyCadenceParams) ToMap() (map[string]interface{}, error) { if o.DayOfWeek != nil { toSerialize["DayOfWeek"] = o.DayOfWeek } + if !IsNil(o.RunEvery) { + toSerialize["RunEvery"] = o.RunEvery + } for key, value := range o.AdditionalProperties { toSerialize[key] = value @@ -233,6 +274,8 @@ func (o *SchedulerWeeklyCadenceParams) 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"` DayOfWeek []string `json:"DayOfWeek,omitempty"` + // A weekly interval for a task execution. If an interval is not explicitly specified, the task will be executed once every week by default. + RunEvery *int64 `json:"RunEvery,omitempty"` } varSchedulerWeeklyCadenceParamsWithoutEmbeddedStruct := SchedulerWeeklyCadenceParamsWithoutEmbeddedStruct{} @@ -243,6 +286,7 @@ func (o *SchedulerWeeklyCadenceParams) UnmarshalJSON(data []byte) (err error) { varSchedulerWeeklyCadenceParams.ClassId = varSchedulerWeeklyCadenceParamsWithoutEmbeddedStruct.ClassId varSchedulerWeeklyCadenceParams.ObjectType = varSchedulerWeeklyCadenceParamsWithoutEmbeddedStruct.ObjectType varSchedulerWeeklyCadenceParams.DayOfWeek = varSchedulerWeeklyCadenceParamsWithoutEmbeddedStruct.DayOfWeek + varSchedulerWeeklyCadenceParams.RunEvery = varSchedulerWeeklyCadenceParamsWithoutEmbeddedStruct.RunEvery *o = SchedulerWeeklyCadenceParams(varSchedulerWeeklyCadenceParams) } else { return err @@ -263,6 +307,7 @@ func (o *SchedulerWeeklyCadenceParams) UnmarshalJSON(data []byte) (err error) { delete(additionalProperties, "ClassId") delete(additionalProperties, "ObjectType") delete(additionalProperties, "DayOfWeek") + delete(additionalProperties, "RunEvery") // remove fields from embedded structs reflectSchedulerBaseCadenceParams := reflect.ValueOf(o.SchedulerBaseCadenceParams) 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 deleted file mode 100644 index 81c08f608b..0000000000 --- a/vendor/github.com/CiscoDevNet/terraform-provider-intersight/intersight_gosdk/model_scheduler_yearly_cadence_params.go +++ /dev/null @@ -1,327 +0,0 @@ -/* -Cisco Intersight - -Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. - -API version: 1.0.11-18012 -Contact: intersight@cisco.com -*/ - -// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. - -package intersight - -import ( - "encoding/json" - "fmt" - "reflect" - "strings" -) - -// checks if the SchedulerYearlyCadenceParams type satisfies the MappedNullable interface at compile time -var _ MappedNullable = &SchedulerYearlyCadenceParams{} - -// SchedulerYearlyCadenceParams Parameters for a yearly cadence. -type SchedulerYearlyCadenceParams struct { - SchedulerBaseMonthlyCadenceParams - // 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. - 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"` - MonthOfYear []string `json:"MonthOfYear,omitempty"` - AdditionalProperties map[string]interface{} -} - -type _SchedulerYearlyCadenceParams SchedulerYearlyCadenceParams - -// NewSchedulerYearlyCadenceParams instantiates a new SchedulerYearlyCadenceParams object -// This constructor will assign default values to properties that have it defined, -// and makes sure properties required by API are set, but the set of arguments -// will change when the set of required properties is changed -func NewSchedulerYearlyCadenceParams(classId string, objectType string) *SchedulerYearlyCadenceParams { - this := SchedulerYearlyCadenceParams{} - this.ClassId = classId - this.ObjectType = objectType - var customDayOfMonth string = "None" - this.CustomDayOfMonth = &customDayOfMonth - return &this -} - -// NewSchedulerYearlyCadenceParamsWithDefaults instantiates a new SchedulerYearlyCadenceParams object -// This constructor will only assign default values to properties that have it defined, -// but it doesn't guarantee that properties required by API are set -func NewSchedulerYearlyCadenceParamsWithDefaults() *SchedulerYearlyCadenceParams { - this := SchedulerYearlyCadenceParams{} - var classId string = "scheduler.YearlyCadenceParams" - this.ClassId = classId - var objectType string = "scheduler.YearlyCadenceParams" - this.ObjectType = objectType - return &this -} - -// GetClassId returns the ClassId field value -func (o *SchedulerYearlyCadenceParams) GetClassId() string { - if o == nil { - var ret string - return ret - } - - return o.ClassId -} - -// GetClassIdOk returns a tuple with the ClassId field value -// and a boolean to check if the value has been set. -func (o *SchedulerYearlyCadenceParams) GetClassIdOk() (*string, bool) { - if o == nil { - return nil, false - } - return &o.ClassId, true -} - -// SetClassId sets field value -func (o *SchedulerYearlyCadenceParams) SetClassId(v string) { - o.ClassId = v -} - -// GetDefaultClassId returns the default value "scheduler.YearlyCadenceParams" of the ClassId field. -func (o *SchedulerYearlyCadenceParams) GetDefaultClassId() interface{} { - return "scheduler.YearlyCadenceParams" -} - -// GetObjectType returns the ObjectType field value -func (o *SchedulerYearlyCadenceParams) GetObjectType() string { - if o == nil { - var ret string - return ret - } - - return o.ObjectType -} - -// GetObjectTypeOk returns a tuple with the ObjectType field value -// and a boolean to check if the value has been set. -func (o *SchedulerYearlyCadenceParams) GetObjectTypeOk() (*string, bool) { - if o == nil { - return nil, false - } - return &o.ObjectType, true -} - -// SetObjectType sets field value -func (o *SchedulerYearlyCadenceParams) SetObjectType(v string) { - o.ObjectType = v -} - -// GetDefaultObjectType returns the default value "scheduler.YearlyCadenceParams" of the ObjectType field. -func (o *SchedulerYearlyCadenceParams) GetDefaultObjectType() interface{} { - return "scheduler.YearlyCadenceParams" -} - -// GetMonthOfYear returns the MonthOfYear field value if set, zero value otherwise (both if not set or set to explicit null). -func (o *SchedulerYearlyCadenceParams) GetMonthOfYear() []string { - if o == nil { - var ret []string - return ret - } - return o.MonthOfYear -} - -// GetMonthOfYearOk returns a tuple with the MonthOfYear 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 *SchedulerYearlyCadenceParams) GetMonthOfYearOk() ([]string, bool) { - if o == nil || IsNil(o.MonthOfYear) { - return nil, false - } - return o.MonthOfYear, true -} - -// HasMonthOfYear returns a boolean if a field has been set. -func (o *SchedulerYearlyCadenceParams) HasMonthOfYear() bool { - if o != nil && !IsNil(o.MonthOfYear) { - return true - } - - return false -} - -// SetMonthOfYear gets a reference to the given []string and assigns it to the MonthOfYear field. -func (o *SchedulerYearlyCadenceParams) SetMonthOfYear(v []string) { - o.MonthOfYear = v -} - -func (o SchedulerYearlyCadenceParams) MarshalJSON() ([]byte, error) { - toSerialize, err := o.ToMap() - if err != nil { - return []byte{}, err - } - return json.Marshal(toSerialize) -} - -func (o SchedulerYearlyCadenceParams) ToMap() (map[string]interface{}, error) { - toSerialize := map[string]interface{}{} - serializedSchedulerBaseMonthlyCadenceParams, errSchedulerBaseMonthlyCadenceParams := json.Marshal(o.SchedulerBaseMonthlyCadenceParams) - if errSchedulerBaseMonthlyCadenceParams != nil { - return map[string]interface{}{}, errSchedulerBaseMonthlyCadenceParams - } - errSchedulerBaseMonthlyCadenceParams = json.Unmarshal([]byte(serializedSchedulerBaseMonthlyCadenceParams), &toSerialize) - if errSchedulerBaseMonthlyCadenceParams != nil { - return map[string]interface{}{}, errSchedulerBaseMonthlyCadenceParams - } - if _, exists := toSerialize["ClassId"]; !exists { - toSerialize["ClassId"] = o.GetDefaultClassId() - } - toSerialize["ClassId"] = o.ClassId - if _, exists := toSerialize["ObjectType"]; !exists { - toSerialize["ObjectType"] = o.GetDefaultObjectType() - } - toSerialize["ObjectType"] = o.ObjectType - if o.MonthOfYear != nil { - toSerialize["MonthOfYear"] = o.MonthOfYear - } - - for key, value := range o.AdditionalProperties { - toSerialize[key] = value - } - - return toSerialize, nil -} - -func (o *SchedulerYearlyCadenceParams) UnmarshalJSON(data []byte) (err error) { - // This validates that all required properties are included in the JSON object - // by unmarshalling the object into a generic map with string keys and checking - // that every required field exists as a key in the generic map. - requiredProperties := []string{ - "ClassId", - "ObjectType", - } - - // defaultValueFuncMap captures the default values for required properties. - // These values are used when required properties are missing from the payload. - defaultValueFuncMap := map[string]func() interface{}{ - "ClassId": o.GetDefaultClassId, - "ObjectType": o.GetDefaultObjectType, - } - var defaultValueApplied bool - allProperties := make(map[string]interface{}) - - err = json.Unmarshal(data, &allProperties) - - if err != nil { - return err - } - - for _, requiredProperty := range requiredProperties { - if value, exists := allProperties[requiredProperty]; !exists || value == "" { - if _, ok := defaultValueFuncMap[requiredProperty]; ok { - allProperties[requiredProperty] = defaultValueFuncMap[requiredProperty]() - defaultValueApplied = true - } - } - if value, exists := allProperties[requiredProperty]; !exists || value == "" { - return fmt.Errorf("no value given for required property %v", requiredProperty) - } - } - - if defaultValueApplied { - data, err = json.Marshal(allProperties) - if err != nil { - return err - } - } - type SchedulerYearlyCadenceParamsWithoutEmbeddedStruct struct { - // 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. - 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"` - MonthOfYear []string `json:"MonthOfYear,omitempty"` - } - - varSchedulerYearlyCadenceParamsWithoutEmbeddedStruct := SchedulerYearlyCadenceParamsWithoutEmbeddedStruct{} - - err = json.Unmarshal(data, &varSchedulerYearlyCadenceParamsWithoutEmbeddedStruct) - if err == nil { - varSchedulerYearlyCadenceParams := _SchedulerYearlyCadenceParams{} - varSchedulerYearlyCadenceParams.ClassId = varSchedulerYearlyCadenceParamsWithoutEmbeddedStruct.ClassId - varSchedulerYearlyCadenceParams.ObjectType = varSchedulerYearlyCadenceParamsWithoutEmbeddedStruct.ObjectType - varSchedulerYearlyCadenceParams.MonthOfYear = varSchedulerYearlyCadenceParamsWithoutEmbeddedStruct.MonthOfYear - *o = SchedulerYearlyCadenceParams(varSchedulerYearlyCadenceParams) - } else { - return err - } - - varSchedulerYearlyCadenceParams := _SchedulerYearlyCadenceParams{} - - err = json.Unmarshal(data, &varSchedulerYearlyCadenceParams) - if err == nil { - o.SchedulerBaseMonthlyCadenceParams = varSchedulerYearlyCadenceParams.SchedulerBaseMonthlyCadenceParams - } else { - return err - } - - additionalProperties := make(map[string]interface{}) - - if err = json.Unmarshal(data, &additionalProperties); err == nil { - delete(additionalProperties, "ClassId") - delete(additionalProperties, "ObjectType") - delete(additionalProperties, "MonthOfYear") - - // remove fields from embedded structs - reflectSchedulerBaseMonthlyCadenceParams := reflect.ValueOf(o.SchedulerBaseMonthlyCadenceParams) - for i := 0; i < reflectSchedulerBaseMonthlyCadenceParams.Type().NumField(); i++ { - t := reflectSchedulerBaseMonthlyCadenceParams.Type().Field(i) - - if jsonTag := t.Tag.Get("json"); jsonTag != "" { - fieldName := "" - if commaIdx := strings.Index(jsonTag, ","); commaIdx > 0 { - fieldName = jsonTag[:commaIdx] - } else { - fieldName = jsonTag - } - if fieldName != "AdditionalProperties" { - delete(additionalProperties, fieldName) - } - } - } - - o.AdditionalProperties = additionalProperties - } - - return err -} - -type NullableSchedulerYearlyCadenceParams struct { - value *SchedulerYearlyCadenceParams - isSet bool -} - -func (v NullableSchedulerYearlyCadenceParams) Get() *SchedulerYearlyCadenceParams { - return v.value -} - -func (v *NullableSchedulerYearlyCadenceParams) Set(val *SchedulerYearlyCadenceParams) { - v.value = val - v.isSet = true -} - -func (v NullableSchedulerYearlyCadenceParams) IsSet() bool { - return v.isSet -} - -func (v *NullableSchedulerYearlyCadenceParams) Unset() { - v.value = nil - v.isSet = false -} - -func NewNullableSchedulerYearlyCadenceParams(val *SchedulerYearlyCadenceParams) *NullableSchedulerYearlyCadenceParams { - return &NullableSchedulerYearlyCadenceParams{value: val, isSet: true} -} - -func (v NullableSchedulerYearlyCadenceParams) MarshalJSON() ([]byte, error) { - return json.Marshal(v.value) -} - -func (v *NullableSchedulerYearlyCadenceParams) UnmarshalJSON(src []byte) error { - v.isSet = true - return json.Unmarshal(src, &v.value) -} 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 7b0ce3fc97..b0440aa604 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 a35a4dcf11..7fb2c03a18 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 c285f08fb3..ef9562d579 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-18012 +API version: 1.0.11-18369 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 bda99fcedc..26e663702b 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-18012 +API version: 1.0.11-18369 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 910c0be91c..32332d13f6 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-18012 +API version: 1.0.11-18369 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 787d8c3b50..6ec56b8cba 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-18012 +API version: 1.0.11-18369 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 bbea4c99a2..ebecf0304e 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-18012 +API version: 1.0.11-18369 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 99d66f96c0..bb051595f5 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-18012 +API version: 1.0.11-18369 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 341a36042c..cde98e4b84 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-18012 +API version: 1.0.11-18369 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 48aed978da..9747fb0ac1 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-18012 +API version: 1.0.11-18369 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 88082541aa..fcf6dc5b26 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-18012 +API version: 1.0.11-18369 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 2ab5b1aed2..2c6cf080cb 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-18012 +API version: 1.0.11-18369 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 4cd076146d..8b96c24242 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-18012 +API version: 1.0.11-18369 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 2039502cc9..af39c285b4 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-18012 +API version: 1.0.11-18369 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 3ef0e449d4..94aba13a6c 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-18012 +API version: 1.0.11-18369 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 7c7efa1346..3e276532ef 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-18012 +API version: 1.0.11-18369 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 f2243a79b5..5a60215dab 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-18012 +API version: 1.0.11-18369 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 294466ca3e..4f4a42647b 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-18012 +API version: 1.0.11-18369 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 0e1f2da1b3..ae801d147d 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-18012 +API version: 1.0.11-18369 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 6063800b51..024c125f0f 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-18012 +API version: 1.0.11-18369 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 b24d11647c..6bd58934e4 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-18012 +API version: 1.0.11-18369 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 32f52f94c8..0f4b514742 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-18012 +API version: 1.0.11-18369 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 80d9e2d3d9..55f8a73daf 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-18012 +API version: 1.0.11-18369 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 70aa8c16ac..0f09137bf2 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-18012 +API version: 1.0.11-18369 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 2482998a7c..bb687dcb86 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-18012 +API version: 1.0.11-18369 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 d91929c7bd..320d847d01 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-18012 +API version: 1.0.11-18369 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 af8f5e322e..780a659b6d 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-18012 +API version: 1.0.11-18369 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 8d977c6920..128a4bc93e 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-18012 +API version: 1.0.11-18369 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 a87c1cf8a3..68e1178773 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-18012 +API version: 1.0.11-18369 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 d296785b97..ab8978ba06 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-18012 +API version: 1.0.11-18369 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 2129beac3f..d5aa4e0d88 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-18012 +API version: 1.0.11-18369 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 454edadabc..658e4a2467 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-18012 +API version: 1.0.11-18369 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 3bbf38942a..b5ac91a044 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-18012 +API version: 1.0.11-18369 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 d6a7b3e319..87f55905da 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-18012 +API version: 1.0.11-18369 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 cf4641ecdb..ad0e40e613 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ @@ -28,6 +28,8 @@ type ServerBaseProfile struct { ClassId string `json:"ClassId"` // 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 management mode of the server. * `IntersightStandalone` - Intersight Standalone mode of operation. * `Intersight` - Intersight managed mode of operation. + ManagementMode *string `json:"ManagementMode,omitempty"` // 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"` // UUID address allocation type selected to assign an UUID address for the server. * `NONE` - The user did not assign any UUID address. * `STATIC` - The user assigns a static UUID address. * `POOL` - The user selects a pool from which the address will be leased. @@ -118,6 +120,38 @@ func (o *ServerBaseProfile) SetObjectType(v string) { o.ObjectType = v } +// GetManagementMode returns the ManagementMode field value if set, zero value otherwise. +func (o *ServerBaseProfile) GetManagementMode() string { + if o == nil || IsNil(o.ManagementMode) { + var ret string + return ret + } + return *o.ManagementMode +} + +// GetManagementModeOk returns a tuple with the ManagementMode field value if set, nil otherwise +// and a boolean to check if the value has been set. +func (o *ServerBaseProfile) GetManagementModeOk() (*string, bool) { + if o == nil || IsNil(o.ManagementMode) { + return nil, false + } + return o.ManagementMode, true +} + +// HasManagementMode returns a boolean if a field has been set. +func (o *ServerBaseProfile) HasManagementMode() bool { + if o != nil && !IsNil(o.ManagementMode) { + return true + } + + return false +} + +// SetManagementMode gets a reference to the given string and assigns it to the ManagementMode field. +func (o *ServerBaseProfile) SetManagementMode(v string) { + o.ManagementMode = &v +} + // GetTargetPlatform returns the TargetPlatform field value if set, zero value otherwise. func (o *ServerBaseProfile) GetTargetPlatform() string { if o == nil || IsNil(o.TargetPlatform) { @@ -288,6 +322,9 @@ func (o ServerBaseProfile) ToMap() (map[string]interface{}, error) { } toSerialize["ClassId"] = o.ClassId toSerialize["ObjectType"] = o.ObjectType + if !IsNil(o.ManagementMode) { + toSerialize["ManagementMode"] = o.ManagementMode + } if !IsNil(o.TargetPlatform) { toSerialize["TargetPlatform"] = o.TargetPlatform } @@ -352,6 +389,8 @@ func (o *ServerBaseProfile) 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. The enum values provides the list of concrete types that can be instantiated from this abstract type. ObjectType string `json:"ObjectType"` + // The management mode of the server. * `IntersightStandalone` - Intersight Standalone mode of operation. * `Intersight` - Intersight managed mode of operation. + ManagementMode *string `json:"ManagementMode,omitempty"` // 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"` // UUID address allocation type selected to assign an UUID address for the server. * `NONE` - The user did not assign any UUID address. * `STATIC` - The user assigns a static UUID address. * `POOL` - The user selects a pool from which the address will be leased. @@ -367,6 +406,7 @@ func (o *ServerBaseProfile) UnmarshalJSON(data []byte) (err error) { varServerBaseProfile := _ServerBaseProfile{} varServerBaseProfile.ClassId = varServerBaseProfileWithoutEmbeddedStruct.ClassId varServerBaseProfile.ObjectType = varServerBaseProfileWithoutEmbeddedStruct.ObjectType + varServerBaseProfile.ManagementMode = varServerBaseProfileWithoutEmbeddedStruct.ManagementMode varServerBaseProfile.TargetPlatform = varServerBaseProfileWithoutEmbeddedStruct.TargetPlatform varServerBaseProfile.UuidAddressType = varServerBaseProfileWithoutEmbeddedStruct.UuidAddressType varServerBaseProfile.ConfigResult = varServerBaseProfileWithoutEmbeddedStruct.ConfigResult @@ -390,6 +430,7 @@ func (o *ServerBaseProfile) UnmarshalJSON(data []byte) (err error) { if err = json.Unmarshal(data, &additionalProperties); err == nil { delete(additionalProperties, "ClassId") delete(additionalProperties, "ObjectType") + delete(additionalProperties, "ManagementMode") delete(additionalProperties, "TargetPlatform") delete(additionalProperties, "UuidAddressType") delete(additionalProperties, "ConfigResult") 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 cef75e8121..b966bd03c9 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-18012 +API version: 1.0.11-18369 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 fcd5e3e86a..5a54f1771a 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-18012 +API version: 1.0.11-18369 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 52c5e07e1a..f6634b5c57 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-18012 +API version: 1.0.11-18369 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 7db9a4ea51..5c410524da 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-18012 +API version: 1.0.11-18369 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 6c41c30c7b..931edbee44 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-18012 +API version: 1.0.11-18369 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 35b17920e6..709ddec111 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 70ce768a09..406f41b7b4 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-18012 +API version: 1.0.11-18369 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 4d9b1ab036..22610dce99 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-18012 +API version: 1.0.11-18369 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 eec66e8455..8845c00579 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-18012 +API version: 1.0.11-18369 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 3794f84f00..27710bd13b 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-18012 +API version: 1.0.11-18369 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 6bed895291..02ee745345 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-18012 +API version: 1.0.11-18369 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 f303954e3a..6fd2652bf3 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-18012 +API version: 1.0.11-18369 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 c56bddd577..022f2bd3f1 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-18012 +API version: 1.0.11-18369 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 f40ed223bc..bc4b33bb01 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-18012 +API version: 1.0.11-18369 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 2ea229df70..428bf15569 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-18012 +API version: 1.0.11-18369 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 029ce2415c..1cbc1909cb 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-18012 +API version: 1.0.11-18369 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 cecc75048d..0fef5f2b87 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-18012 +API version: 1.0.11-18369 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 673fc4f92e..670a2c8a4e 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-18012 +API version: 1.0.11-18369 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 657ab69e0f..83997a9c0b 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-18012 +API version: 1.0.11-18369 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 69c9e3c39f..08d74e31fc 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-18012 +API version: 1.0.11-18369 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 483375e3ac..7c3895cba6 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 02fc751ba3..12d508b7d0 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-18012 +API version: 1.0.11-18369 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 d19e5df4c1..4ed526c604 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-18012 +API version: 1.0.11-18369 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 43222ec843..4a28b33237 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-18012 +API version: 1.0.11-18369 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 753bd15c67..eb3a7ac4b9 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-18012 +API version: 1.0.11-18369 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 7ff168ac96..9ccccf4e36 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-18012 +API version: 1.0.11-18369 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 eaebf8a86b..a1e36b2861 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-18012 +API version: 1.0.11-18369 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 5d6fac6ce1..153e487139 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 f68e1daf64..8a910fd3d0 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-18012 +API version: 1.0.11-18369 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 5640e02ce4..5cd9765551 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-18012 +API version: 1.0.11-18369 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 f3fec8dbe3..8851692856 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-18012 +API version: 1.0.11-18369 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 4066fd68d3..d104e00a43 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-18012 +API version: 1.0.11-18369 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 57872ced7c..6bf2ee5965 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-18012 +API version: 1.0.11-18369 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 3e2ac41400..6887a316d2 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-18012 +API version: 1.0.11-18369 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 726b95fdc3..d65c8b772d 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-18012 +API version: 1.0.11-18369 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 58e74a0c0f..4ea9cd3f2e 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-18012 +API version: 1.0.11-18369 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 9119a6cf1f..f2fc29b99e 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-18012 +API version: 1.0.11-18369 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 77accbbea0..e06e349ce4 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-18012 +API version: 1.0.11-18369 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 954cb02e0b..7ba8fb7d44 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-18012 +API version: 1.0.11-18369 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 30622c1f45..aaae4d06fd 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-18012 +API version: 1.0.11-18369 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 df2070aca7..a4ed4e3f2a 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-18012 +API version: 1.0.11-18369 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 8f412e22af..a2d748a397 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-18012 +API version: 1.0.11-18369 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 f8c9454a55..d96f7b2ad5 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-18012 +API version: 1.0.11-18369 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 364f886aa9..30dc75a505 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 c885aadecd..ebe2983227 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-18012 +API version: 1.0.11-18369 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 bb8b822b24..38b4214b10 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-18012 +API version: 1.0.11-18369 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 e61dca6cb9..335b438eeb 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ @@ -28,7 +28,7 @@ type SnmpPolicy 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"` - // The default SNMPv1, SNMPv2c community name or SNMPv3 username to include on any trap messages sent to the SNMP host. The name can be 18 characters long. + // The default SNMPv1, SNMPv2c community name or SNMPv3 username to include on any trap messages sent to the SNMP host. The name can be 32 characters long. AccessCommunityString *string `json:"AccessCommunityString,omitempty"` // Controls access to the information in the inventory tables. Applicable only for SNMPv1 and SNMPv2c users. * `Disabled` - Blocks access to the information in the inventory tables. * `Limited` - Partial access to read the information in the inventory tables. * `Full` - Full access to read the information in the inventory tables. CommunityAccess *string `json:"CommunityAccess,omitempty"` @@ -744,7 +744,7 @@ func (o *SnmpPolicy) 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"` - // The default SNMPv1, SNMPv2c community name or SNMPv3 username to include on any trap messages sent to the SNMP host. The name can be 18 characters long. + // The default SNMPv1, SNMPv2c community name or SNMPv3 username to include on any trap messages sent to the SNMP host. The name can be 32 characters long. AccessCommunityString *string `json:"AccessCommunityString,omitempty"` // Controls access to the information in the inventory tables. Applicable only for SNMPv1 and SNMPv2c users. * `Disabled` - Blocks access to the information in the inventory tables. * `Limited` - Partial access to read the information in the inventory tables. * `Full` - Full access to read the information in the inventory tables. CommunityAccess *string `json:"CommunityAccess,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 f6c76f9658..827127f425 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ @@ -28,7 +28,7 @@ type SnmpPolicyInventory 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"` - // The default SNMPv1, SNMPv2c community name or SNMPv3 username to include on any trap messages sent to the SNMP host. The name can be 18 characters long. + // The default SNMPv1, SNMPv2c community name or SNMPv3 username to include on any trap messages sent to the SNMP host. The name can be 32 characters long. AccessCommunityString *string `json:"AccessCommunityString,omitempty"` // Controls access to the information in the inventory tables. Applicable only for SNMPv1 and SNMPv2c users. * `Disabled` - Blocks access to the information in the inventory tables. * `Limited` - Partial access to read the information in the inventory tables. * `Full` - Full access to read the information in the inventory tables. CommunityAccess *string `json:"CommunityAccess,omitempty"` @@ -686,7 +686,7 @@ func (o *SnmpPolicyInventory) 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"` - // The default SNMPv1, SNMPv2c community name or SNMPv3 username to include on any trap messages sent to the SNMP host. The name can be 18 characters long. + // The default SNMPv1, SNMPv2c community name or SNMPv3 username to include on any trap messages sent to the SNMP host. The name can be 32 characters long. AccessCommunityString *string `json:"AccessCommunityString,omitempty"` // Controls access to the information in the inventory tables. Applicable only for SNMPv1 and SNMPv2c users. * `Disabled` - Blocks access to the information in the inventory tables. * `Limited` - Partial access to read the information in the inventory tables. * `Full` - Full access to read the information in the inventory tables. CommunityAccess *string `json:"CommunityAccess,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 7b66bfacad..1047efab36 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-18012 +API version: 1.0.11-18369 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 f298bc6e0f..a2d4fa102d 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-18012 +API version: 1.0.11-18369 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 b98933ef3d..32c209ebb3 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-18012 +API version: 1.0.11-18369 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 ffa637eae6..4e863f0800 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-18012 +API version: 1.0.11-18369 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 e7e135af20..afe2404889 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-18012 +API version: 1.0.11-18369 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 266e37d5be..159b2edcdb 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-18012 +API version: 1.0.11-18369 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 767bcda7c5..e9d4a038d2 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-18012 +API version: 1.0.11-18369 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 f26d8ab35c..17a09d6372 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-18012 +API version: 1.0.11-18369 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 ee43eb0d7f..7e6beee6e5 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-18012 +API version: 1.0.11-18369 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 c58d90cf0c..6ccb8c117d 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-18012 +API version: 1.0.11-18369 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 ce9adabe01..46f87b4796 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-18012 +API version: 1.0.11-18369 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 6043755f9d..0e6006ea89 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-18012 +API version: 1.0.11-18369 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 12af7097d6..35d8007624 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-18012 +API version: 1.0.11-18369 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 d1ad2ef227..69ddedde98 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-18012 +API version: 1.0.11-18369 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 f7a79fe5e9..5c3f614545 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-18012 +API version: 1.0.11-18369 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 588a8da118..56dcf8db4d 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-18012 +API version: 1.0.11-18369 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 19da8d680d..da66b15141 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-18012 +API version: 1.0.11-18369 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 e83077563f..aa7e32db9e 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-18012 +API version: 1.0.11-18369 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 caa8501e78..425502e0c3 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-18012 +API version: 1.0.11-18369 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 aa14f1be48..b45435eca3 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-18012 +API version: 1.0.11-18369 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 28bbe12e24..aa70e4e691 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-18012 +API version: 1.0.11-18369 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 d6a75c6eda..7a44a3b12e 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-18012 +API version: 1.0.11-18369 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 0f2443b54b..0d4aadeca7 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-18012 +API version: 1.0.11-18369 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 dcc8f583d2..935a7a1dca 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-18012 +API version: 1.0.11-18369 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 8d968dc7f2..0ad311903b 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-18012 +API version: 1.0.11-18369 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 6bd5a09093..22202ffa1e 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-18012 +API version: 1.0.11-18369 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 084243aec3..3d9221ca20 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-18012 +API version: 1.0.11-18369 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 736e90dd66..9e63e5b60c 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-18012 +API version: 1.0.11-18369 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 a909584bef..d89948e07b 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-18012 +API version: 1.0.11-18369 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 9e46007b1e..c6f2980519 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-18012 +API version: 1.0.11-18369 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 73cd7968b1..79b48d9330 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-18012 +API version: 1.0.11-18369 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 9f6b44d5f5..672254b522 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-18012 +API version: 1.0.11-18369 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 58ba6e3b6e..6dbbf62a1c 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-18012 +API version: 1.0.11-18369 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 ff181e530b..5ac105d231 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-18012 +API version: 1.0.11-18369 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 1570180320..cd4594c614 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-18012 +API version: 1.0.11-18369 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 aa95de0032..5a0ab3d7f3 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-18012 +API version: 1.0.11-18369 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 10be281666..d5f976022a 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-18012 +API version: 1.0.11-18369 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 ed46a70f0a..3a18bc7b8c 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-18012 +API version: 1.0.11-18369 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 9afc1dab45..90d7513b37 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-18012 +API version: 1.0.11-18369 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 15ff52fccf..01676c1b52 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-18012 +API version: 1.0.11-18369 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 b73bfc3c58..988283e07c 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-18012 +API version: 1.0.11-18369 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 46fe5ea4a7..304adec63f 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-18012 +API version: 1.0.11-18369 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 9a6e0ee1a2..6b3c3f5579 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-18012 +API version: 1.0.11-18369 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 52493985ad..398ff27300 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-18012 +API version: 1.0.11-18369 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 a226a66e89..2d74e241c8 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-18012 +API version: 1.0.11-18369 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 c4e02ac2ff..e45efd2317 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-18012 +API version: 1.0.11-18369 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 4cf06c5c03..76c0752a8e 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-18012 +API version: 1.0.11-18369 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 df5153afb6..ddc2f0659f 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-18012 +API version: 1.0.11-18369 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 c9f4b71682..32a1c8e0b2 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-18012 +API version: 1.0.11-18369 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 5aa7c95300..bde8cc6692 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-18012 +API version: 1.0.11-18369 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 0dfc352d46..180fe38051 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-18012 +API version: 1.0.11-18369 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 9ab69fce64..dee9166eac 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-18012 +API version: 1.0.11-18369 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 d04c43bfe3..cf177d7038 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-18012 +API version: 1.0.11-18369 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 7ecf985b42..fa70eba4c2 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-18012 +API version: 1.0.11-18369 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 8ab65415bd..8f3097964f 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-18012 +API version: 1.0.11-18369 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 89fb212ff3..69edd4d323 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-18012 +API version: 1.0.11-18369 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 e911d1a995..8665980426 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-18012 +API version: 1.0.11-18369 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 4af5435683..0330ae87ef 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-18012 +API version: 1.0.11-18369 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 c7e1157a10..baac4ac193 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-18012 +API version: 1.0.11-18369 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 22281cc7b3..e18a9304f0 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-18012 +API version: 1.0.11-18369 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 029e947d99..eb6bac9ce6 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-18012 +API version: 1.0.11-18369 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 64473670e4..22bf959b77 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-18012 +API version: 1.0.11-18369 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 881443b5b1..0a7e343b51 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-18012 +API version: 1.0.11-18369 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 57b2506799..e58b5249f6 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-18012 +API version: 1.0.11-18369 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 37a4b23614..014cdfceba 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-18012 +API version: 1.0.11-18369 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 6c80962a23..2113976dfa 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-18012 +API version: 1.0.11-18369 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 925d634be7..dad1178120 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-18012 +API version: 1.0.11-18369 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 eadd04dada..ce6a799603 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-18012 +API version: 1.0.11-18369 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 3665c68b99..046b9d1d3e 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-18012 +API version: 1.0.11-18369 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 c1be8777a6..420cba7863 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-18012 +API version: 1.0.11-18369 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 bbb3e512b3..cebe22711a 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-18012 +API version: 1.0.11-18369 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 a1d3caeb4e..9db1de1aa3 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-18012 +API version: 1.0.11-18369 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 55ea6de399..b8f72b35d1 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-18012 +API version: 1.0.11-18369 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 c2f5be82c2..7457cfcca7 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-18012 +API version: 1.0.11-18369 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 c160e0fedc..0c803b154d 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-18012 +API version: 1.0.11-18369 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 7581bd46c4..5c5a38c546 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-18012 +API version: 1.0.11-18369 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 137385a060..7fce469721 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-18012 +API version: 1.0.11-18369 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 28b8b5dce5..52bb0e14d2 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-18012 +API version: 1.0.11-18369 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 950e53ee27..904e7061c2 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-18012 +API version: 1.0.11-18369 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 fb61fbc6fd..ed1cfaf5c0 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-18012 +API version: 1.0.11-18369 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 4a26d7a54b..0dc72c9ec9 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-18012 +API version: 1.0.11-18369 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 c60a156432..5a1a93aef0 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-18012 +API version: 1.0.11-18369 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 56b66d90e9..66b9653315 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-18012 +API version: 1.0.11-18369 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 5e5cd4e1cf..4ccc937ae6 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-18012 +API version: 1.0.11-18369 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 05fff7bc05..38425737d5 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-18012 +API version: 1.0.11-18369 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 938b06ce43..10e9e16362 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-18012 +API version: 1.0.11-18369 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 6527d58501..ca0bf6f3e9 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-18012 +API version: 1.0.11-18369 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 b3e3e41491..289a0a1d6b 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-18012 +API version: 1.0.11-18369 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 45ce7cb139..ddaf983937 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-18012 +API version: 1.0.11-18369 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 d0480551bc..3c62a7d00c 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-18012 +API version: 1.0.11-18369 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 1910b4ea67..efc992b722 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-18012 +API version: 1.0.11-18369 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 1f5b9dc0a7..0b7d189f87 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-18012 +API version: 1.0.11-18369 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 45ad4a9dd2..4fa438faee 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-18012 +API version: 1.0.11-18369 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 4af710b6ea..d47db042fd 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-18012 +API version: 1.0.11-18369 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 36785f59a0..f3cb3b4188 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-18012 +API version: 1.0.11-18369 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 868f71ba95..14ae30e155 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-18012 +API version: 1.0.11-18369 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 95d58f2130..6e52960f97 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-18012 +API version: 1.0.11-18369 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 d50bcc9f79..eb7c81c7dd 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-18012 +API version: 1.0.11-18369 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 c322da1726..b10137b341 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-18012 +API version: 1.0.11-18369 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 b04bec89be..07d8cef46c 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-18012 +API version: 1.0.11-18369 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 8831f213a6..c2bcfa6f76 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-18012 +API version: 1.0.11-18369 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 a6ce6ccc8f..e1ae8d75df 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-18012 +API version: 1.0.11-18369 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 50e2412edc..bade8dc20f 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 62bf4b6b9a..5d87099ca7 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-18012 +API version: 1.0.11-18369 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 dee1e18475..38e49dc7d4 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-18012 +API version: 1.0.11-18369 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 ce623481cf..2fb472c702 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-18012 +API version: 1.0.11-18369 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 cc7a2a9155..a438a047a1 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-18012 +API version: 1.0.11-18369 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 ac36750266..06cd2e58cb 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-18012 +API version: 1.0.11-18369 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 445e7b8b4d..39e47b8549 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-18012 +API version: 1.0.11-18369 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 46708ebee7..e16d2ef716 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-18012 +API version: 1.0.11-18369 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 637e0a841c..a1f7532f6b 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-18012 +API version: 1.0.11-18369 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 22f1f0480d..d0d8583f66 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-18012 +API version: 1.0.11-18369 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 f401105f74..a2935b5151 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-18012 +API version: 1.0.11-18369 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 da15c9aa90..0280e47b01 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-18012 +API version: 1.0.11-18369 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 054dca45eb..cafe34d95f 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-18012 +API version: 1.0.11-18369 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 fce7058202..2414ea5b09 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 028af9beb1..9a6489cf9d 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-18012 +API version: 1.0.11-18369 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 298d763b9d..b2c9114cb2 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-18012 +API version: 1.0.11-18369 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 c8801aade5..f992100b09 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-18012 +API version: 1.0.11-18369 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 4154399da7..cfade440d1 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-18012 +API version: 1.0.11-18369 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 e0296604f6..c1129f8168 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-18012 +API version: 1.0.11-18369 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 74191bf11b..c866182e3f 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-18012 +API version: 1.0.11-18369 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 93d642765a..639c1a2107 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-18012 +API version: 1.0.11-18369 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 407ad55178..0be23f0ab0 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-18012 +API version: 1.0.11-18369 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 f51c33bf5d..dbf2867bcb 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-18012 +API version: 1.0.11-18369 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 5fd909e87e..90c32b8ed6 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-18012 +API version: 1.0.11-18369 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 31199f18ce..dee0ca974a 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-18012 +API version: 1.0.11-18369 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 5f3e8a1087..a3d9651a54 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 21b9d5cc38..623aef12ff 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-18012 +API version: 1.0.11-18369 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 089cf9d42c..201397f006 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-18012 +API version: 1.0.11-18369 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 a21ffacbc9..32f28404e3 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-18012 +API version: 1.0.11-18369 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 868aa354c2..5f52954afc 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-18012 +API version: 1.0.11-18369 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 1a1eb4fc9b..f39c0815ac 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-18012 +API version: 1.0.11-18369 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 4f1c1d800a..d2ef5f4414 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-18012 +API version: 1.0.11-18369 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 e7bdebd16b..016cf99834 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-18012 +API version: 1.0.11-18369 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 b089f46bc5..820f744944 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-18012 +API version: 1.0.11-18369 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 adc5e49235..c363e442f8 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-18012 +API version: 1.0.11-18369 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 d32284282f..104629acc6 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-18012 +API version: 1.0.11-18369 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 b4c0017748..1afb42d6f0 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-18012 +API version: 1.0.11-18369 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 eeaeb611b5..ae50768f7b 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-18012 +API version: 1.0.11-18369 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 09b96094ac..f0963537ea 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-18012 +API version: 1.0.11-18369 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 ee8b5c9d3e..7cac681731 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-18012 +API version: 1.0.11-18369 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 7dd753cfb5..836b66504e 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-18012 +API version: 1.0.11-18369 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 f4594eefc4..88e3af7afe 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-18012 +API version: 1.0.11-18369 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 f28c4e57ba..d7b6a8a1c7 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-18012 +API version: 1.0.11-18369 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 df1981cac6..6b8a712b6d 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-18012 +API version: 1.0.11-18369 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 97c6fd89c0..c1022b7472 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-18012 +API version: 1.0.11-18369 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 dbb73a0cde..f510d15b77 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-18012 +API version: 1.0.11-18369 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 35f731fd76..1ea91dd01e 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-18012 +API version: 1.0.11-18369 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 8a7075ea48..7237435b73 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ @@ -34,7 +34,7 @@ type StorageDriveGroup struct { 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. + // Enables/disables the drive security on all the drives used in this policy. This flag just enables the drive security and only after Remote/Manual key setting configured, the actual security will be applied. SecureDriveGroup *bool `json:"SecureDriveGroup,omitempty"` // Type of drive selection to be used for this drive group. * `0` - Drives are selected manually by the user. * `1` - Drives are selected automatically based on the RAID and virtual drive configuration. Type *int32 `json:"Type,omitempty"` @@ -531,7 +531,7 @@ func (o *StorageDriveGroup) UnmarshalJSON(data []byte) (err error) { 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. + // Enables/disables the drive security on all the drives used in this policy. This flag just enables the drive security and only after Remote/Manual key setting configured, the actual security will be applied. SecureDriveGroup *bool `json:"SecureDriveGroup,omitempty"` // Type of drive selection to be used for this drive group. * `0` - Drives are selected manually by the user. * `1` - Drives are selected automatically based on the RAID and virtual drive configuration. Type *int32 `json:"Type,omitempty"` 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 ed0e8b1b31..4860a3e9ec 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-18012 +API version: 1.0.11-18369 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 94e8a452e0..c75f2ffcf2 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-18012 +API version: 1.0.11-18369 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 214c3cd63f..04e30a9411 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-18012 +API version: 1.0.11-18369 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 8ef9b82e3a..9806975f78 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ @@ -21,7 +21,7 @@ import ( // checks if the StorageDriveSecurityPolicy type satisfies the MappedNullable interface at compile time var _ MappedNullable = &StorageDriveSecurityPolicy{} -// StorageDriveSecurityPolicy The drive security policy models the KMIP server related configuration that can be applied on multiple servers. Storage controller encryption can be enabled through this policy using remote keys from a KMIP server. +// StorageDriveSecurityPolicy The drive security policy defines the configuration for a manual key or a KMIP server, which can be applied to multiple servers. You can enable drive security on the servers using either configuration.. type StorageDriveSecurityPolicy struct { PolicyAbstractPolicy // 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. 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 798feccfe9..6053a50b7c 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-18012 +API version: 1.0.11-18369 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 f47b34eecc..671002b0cf 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-18012 +API version: 1.0.11-18369 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 ae9c9bf4dd..0927dd40d2 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-18012 +API version: 1.0.11-18369 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 7ca1265c89..d51591df0e 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-18012 +API version: 1.0.11-18369 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 c63100913b..7af964f8b2 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-18012 +API version: 1.0.11-18369 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 ea1376b3ba..7c0864bb6d 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-18012 +API version: 1.0.11-18369 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 d4f8fcc8e2..fcf266e360 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-18012 +API version: 1.0.11-18369 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 f20ec953a6..c781ebdb7d 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-18012 +API version: 1.0.11-18369 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 74fd613e16..d9b36e5806 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-18012 +API version: 1.0.11-18369 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 8f54dbea07..444373df2e 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-18012 +API version: 1.0.11-18369 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 ced3b9635c..ad497b4bd0 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-18012 +API version: 1.0.11-18369 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 9ceb074021..ce9af9543c 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-18012 +API version: 1.0.11-18369 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 e83a537038..16f132ecbf 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-18012 +API version: 1.0.11-18369 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 71e1daca15..cf060ab4fa 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-18012 +API version: 1.0.11-18369 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 b14a2c48f6..765b6bec38 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-18012 +API version: 1.0.11-18369 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 1af812e3a6..ac7349bab7 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-18012 +API version: 1.0.11-18369 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 d5fa2d1101..41edb449fd 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-18012 +API version: 1.0.11-18369 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 36cae9bfe7..efd236388c 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-18012 +API version: 1.0.11-18369 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 c7748e64fe..f637ebe548 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-18012 +API version: 1.0.11-18369 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 dce350ba2c..0de9b59d9c 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-18012 +API version: 1.0.11-18369 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 8508faf1bf..519075f100 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-18012 +API version: 1.0.11-18369 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 9f287fbe24..744f57d886 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-18012 +API version: 1.0.11-18369 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 8b8e76edbb..11f8f3f396 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-18012 +API version: 1.0.11-18369 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 4aebb10451..3ff7e1b87a 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-18012 +API version: 1.0.11-18369 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 669ce330b3..b95e95c8c4 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-18012 +API version: 1.0.11-18369 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 11a159006d..1ac0cdbc21 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-18012 +API version: 1.0.11-18369 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 c496053c42..f159908e27 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-18012 +API version: 1.0.11-18369 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 7a118e2a42..3270e994f4 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-18012 +API version: 1.0.11-18369 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 f3093315b3..29bdfff09a 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-18012 +API version: 1.0.11-18369 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 557711d26a..7c8ca4478f 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-18012 +API version: 1.0.11-18369 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 1f7025023c..9ed087392a 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-18012 +API version: 1.0.11-18369 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 d0df7d4467..f1177afd7d 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-18012 +API version: 1.0.11-18369 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 6bdc16c6b0..f9d419b44f 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-18012 +API version: 1.0.11-18369 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 85140e6e9b..dba6c15016 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-18012 +API version: 1.0.11-18369 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 8a6d8a1b4b..5e90ef09ec 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-18012 +API version: 1.0.11-18369 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 e292aa5520..25fc0d2ac5 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-18012 +API version: 1.0.11-18369 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 184917aa49..f28339d1f0 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-18012 +API version: 1.0.11-18369 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 603d0d49b1..913dd77ab6 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-18012 +API version: 1.0.11-18369 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 536a31a025..9aba0ffcc3 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-18012 +API version: 1.0.11-18369 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 871495111d..fc77e9471a 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-18012 +API version: 1.0.11-18369 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 8ce5e0e544..eab3680e77 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-18012 +API version: 1.0.11-18369 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 f8612f2271..fb2206d0f1 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-18012 +API version: 1.0.11-18369 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 a31763b296..d2b8271c8d 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-18012 +API version: 1.0.11-18369 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 002139957b..8a82546603 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-18012 +API version: 1.0.11-18369 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 1a7f248e34..922fef6c49 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-18012 +API version: 1.0.11-18369 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 71b6a9234c..0a331ef139 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-18012 +API version: 1.0.11-18369 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 cfe2ec3fc5..7d0d83b249 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-18012 +API version: 1.0.11-18369 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 0f203ed357..6ae35f4690 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-18012 +API version: 1.0.11-18369 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 8caa779b0a..8e63621b1e 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-18012 +API version: 1.0.11-18369 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 250d531c6b..e288730b1b 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-18012 +API version: 1.0.11-18369 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 b600f46d6a..6962bc1bec 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-18012 +API version: 1.0.11-18369 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 23bf782860..bfa7f11410 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-18012 +API version: 1.0.11-18369 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 d64fd9aca7..443ea76bf0 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-18012 +API version: 1.0.11-18369 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 d2b34925e3..61daaa8da5 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-18012 +API version: 1.0.11-18369 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 68b9190268..dc9b0b21a0 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-18012 +API version: 1.0.11-18369 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 2849d40dcd..251b741a8b 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-18012 +API version: 1.0.11-18369 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 d8d10a6e08..265f735707 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-18012 +API version: 1.0.11-18369 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 c39276803f..102bef5729 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-18012 +API version: 1.0.11-18369 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 44a6f17b52..becb2abcf7 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-18012 +API version: 1.0.11-18369 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 1f17f70515..bdc3558de0 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-18012 +API version: 1.0.11-18369 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 052de8cae4..4542aa04bc 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-18012 +API version: 1.0.11-18369 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 49a40bfea8..b9bea80357 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-18012 +API version: 1.0.11-18369 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 08f21cd906..9ef287488e 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-18012 +API version: 1.0.11-18369 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 bc3010798e..9d10c66b08 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-18012 +API version: 1.0.11-18369 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 143cc7b84d..25a42d8cb4 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-18012 +API version: 1.0.11-18369 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 df127cc47c..25324b33ca 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-18012 +API version: 1.0.11-18369 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 75e616ffc5..e336d4d17c 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-18012 +API version: 1.0.11-18369 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 2aecd86887..acb271185f 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-18012 +API version: 1.0.11-18369 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 29f4f5a48e..42236b042b 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-18012 +API version: 1.0.11-18369 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 b903acdb52..349e9d2a3f 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-18012 +API version: 1.0.11-18369 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 9db760950a..d0afca2161 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-18012 +API version: 1.0.11-18369 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 8633e48435..965502a75d 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-18012 +API version: 1.0.11-18369 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 76beb8dcd4..76343d97d0 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-18012 +API version: 1.0.11-18369 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 da44506a68..70b0c021e8 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-18012 +API version: 1.0.11-18369 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 9b3fa2850d..eb8c47e898 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-18012 +API version: 1.0.11-18369 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 29234173b9..c62ba5c7e3 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-18012 +API version: 1.0.11-18369 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 717937d1ed..2e955d576e 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-18012 +API version: 1.0.11-18369 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 dbc2b6155d..a0016427d3 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-18012 +API version: 1.0.11-18369 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 b31c919942..7c580fca74 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-18012 +API version: 1.0.11-18369 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 c297170cfa..9e2a93ebd0 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-18012 +API version: 1.0.11-18369 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 4183944a49..e5c2b6ebe5 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-18012 +API version: 1.0.11-18369 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 d624248a1d..c45ede6dc9 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-18012 +API version: 1.0.11-18369 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 e9e1624fbd..1cc3415c18 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-18012 +API version: 1.0.11-18369 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 a50b1f62be..d5495dcf60 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-18012 +API version: 1.0.11-18369 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 c41c87e8e6..652fb2fb0b 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-18012 +API version: 1.0.11-18369 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 1bc9259946..3d40c84047 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-18012 +API version: 1.0.11-18369 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 5b451d32ed..02f001d482 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-18012 +API version: 1.0.11-18369 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 42dba6df7d..b8c77ffa30 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-18012 +API version: 1.0.11-18369 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 7c59dea338..bd64c73ced 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-18012 +API version: 1.0.11-18369 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 f2159e7c3f..1a28e2068e 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-18012 +API version: 1.0.11-18369 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 e4d7db2842..6abe1b5c45 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 c3855e3991..8038fd9f40 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-18012 +API version: 1.0.11-18369 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 023fb01531..04233658c2 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-18012 +API version: 1.0.11-18369 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 8b77e91ee7..c966c18c7e 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-18012 +API version: 1.0.11-18369 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 50bd449833..e447862370 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-18012 +API version: 1.0.11-18369 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 e393da9c31..33d7d37cd8 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-18012 +API version: 1.0.11-18369 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 1926c31da0..134908cb5c 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-18012 +API version: 1.0.11-18369 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 29665d82e5..7a8dde8816 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-18012 +API version: 1.0.11-18369 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 28e910febf..12a6045181 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-18012 +API version: 1.0.11-18369 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 478b58378b..5ff693d056 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-18012 +API version: 1.0.11-18369 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 a99733d5f9..6eea53a560 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-18012 +API version: 1.0.11-18369 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 c9fc8a5485..4ec14f569a 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-18012 +API version: 1.0.11-18369 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 c68cd87be4..837ff3f006 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-18012 +API version: 1.0.11-18369 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 0a9c835c56..6b3d9da898 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-18012 +API version: 1.0.11-18369 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 6a434c11cc..87ee194bb2 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-18012 +API version: 1.0.11-18369 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 7ae519b2e4..8bb5fca22c 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-18012 +API version: 1.0.11-18369 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 be20aeea9d..d3b92ed254 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-18012 +API version: 1.0.11-18369 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 b010540076..26c7f38e37 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-18012 +API version: 1.0.11-18369 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 687b2ad4db..3bb16f0e34 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-18012 +API version: 1.0.11-18369 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 d4bdb2c253..bee95a5635 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-18012 +API version: 1.0.11-18369 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 ca519932fc..5d06c5c9ba 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-18012 +API version: 1.0.11-18369 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 36be80d253..12f1c97fd5 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-18012 +API version: 1.0.11-18369 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 03517b250b..be3ba09448 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-18012 +API version: 1.0.11-18369 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 aba6f52b7b..3c78b6b4cb 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-18012 +API version: 1.0.11-18369 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 6e3e04f5a6..68676cf6a2 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-18012 +API version: 1.0.11-18369 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 c822992858..88b6df3b90 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-18012 +API version: 1.0.11-18369 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 333ea31d44..463a8b5662 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-18012 +API version: 1.0.11-18369 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 fdd0322bbb..71c53bf2ff 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-18012 +API version: 1.0.11-18369 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 5d9fd78541..006e824276 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-18012 +API version: 1.0.11-18369 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 deecdad636..1cc7d598f2 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-18012 +API version: 1.0.11-18369 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 63769d50cb..c1f12ee83c 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-18012 +API version: 1.0.11-18369 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 6bf7e1f898..7a58daa9ab 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-18012 +API version: 1.0.11-18369 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 f710cb227f..c44b74248f 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-18012 +API version: 1.0.11-18369 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 bc0d0d25c9..acac312775 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-18012 +API version: 1.0.11-18369 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 2c70bee688..8f9186e2db 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-18012 +API version: 1.0.11-18369 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 ce7c9f29cf..16483bab82 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-18012 +API version: 1.0.11-18369 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 a15d37be7e..feb0f475da 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-18012 +API version: 1.0.11-18369 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 e62e5db209..f0f344c435 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-18012 +API version: 1.0.11-18369 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 b6793395ad..ba690f8bd6 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-18012 +API version: 1.0.11-18369 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 9aa4e24190..8293de322d 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ @@ -21,14 +21,14 @@ import ( // checks if the StorageKeySetting type satisfies the MappedNullable interface at compile time var _ MappedNullable = &StorageKeySetting{} -// StorageKeySetting Models the security key configuration required for the disk encryption. +// StorageKeySetting Models the security key configuration required for the drive security. type StorageKeySetting struct { MoBaseComplexType // 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. 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"` - // Method to be used for fetching the encryption key. * `Kmip` - Remote encryption using KMIP. * `Manual` - Drive encryption using manual key. + // Method to be used for fetching the security key. * `Kmip` - Remote security using KMIP. * `Manual` - Drive security using manual key. KeyType *string `json:"KeyType,omitempty"` ManualKey NullableStorageLocalKeySetting `json:"ManualKey,omitempty"` RemoteKey NullableStorageRemoteKeySetting `json:"RemoteKey,omitempty"` @@ -330,7 +330,7 @@ func (o *StorageKeySetting) 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"` - // Method to be used for fetching the encryption key. * `Kmip` - Remote encryption using KMIP. * `Manual` - Drive encryption using manual key. + // Method to be used for fetching the security key. * `Kmip` - Remote security using KMIP. * `Manual` - Drive security using manual key. KeyType *string `json:"KeyType,omitempty"` ManualKey NullableStorageLocalKeySetting `json:"ManualKey,omitempty"` RemoteKey NullableStorageRemoteKeySetting `json:"RemoteKey,omitempty"` 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 188325b04e..f82e1c9ea9 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 287deafb27..6e55ad70c0 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ @@ -21,14 +21,14 @@ import ( // checks if the StorageKmipServer type satisfies the MappedNullable interface at compile time var _ MappedNullable = &StorageKmipServer{} -// StorageKmipServer Models the KMIP Server configuration used to fetch the encryption key. +// StorageKmipServer Models the KMIP Server configuration used to fetch the drive security key. type StorageKmipServer struct { MoBaseComplexType // 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. 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"` - // Enable the selected KMIP Server configuration for encryption. This flag just enables the drive security and only after remote key setting configured, the actual encryption will be done. + // Enable the selected KMIP Server configuration for security. This flag just enables the drive security and only after remote key setting configured, the actual security will be applied. EnableDriveSecurity *bool `json:"EnableDriveSecurity,omitempty"` // The IP address of the KMIP server. It could be an IPv4 address, an IPv6 address, or a hostname. Hostnames are valid only when Inband is configured for the CIMC address. IpAddress *string `json:"IpAddress,omitempty"` @@ -351,7 +351,7 @@ func (o *StorageKmipServer) 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"` - // Enable the selected KMIP Server configuration for encryption. This flag just enables the drive security and only after remote key setting configured, the actual encryption will be done. + // Enable the selected KMIP Server configuration for security. This flag just enables the drive security and only after remote key setting configured, the actual security will be applied. EnableDriveSecurity *bool `json:"EnableDriveSecurity,omitempty"` // The IP address of the KMIP server. It could be an IPv4 address, an IPv6 address, or a hostname. Hostnames are valid only when Inband is configured for the CIMC address. IpAddress *string `json:"IpAddress,omitempty"` 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 6c5227481a..43a3be7131 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ @@ -21,20 +21,20 @@ import ( // checks if the StorageLocalKeySetting type satisfies the MappedNullable interface at compile time var _ MappedNullable = &StorageLocalKeySetting{} -// StorageLocalKeySetting Models the local key configuration required for disk encryption. +// StorageLocalKeySetting Models the local key configuration required for the drive security. type StorageLocalKeySetting struct { MoBaseComplexType // 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. 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"` - // Current Security Key Passphrase which is already configured on the server. - ExistingKey *string `json:"ExistingKey,omitempty" validate:"regexp=^$|^[a-zA-Z0-9=!&#$%+^@_*-]+$"` + // Current Security Key Passphrase which is already configured on the server. From the security context, the passphrase should be at least 8 characters long and should include at least one uppercase letter, one lowercase letter, one number, and one special character. + ExistingKey *string `json:"ExistingKey,omitempty"` // 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. + // New Security Key Passphrase to be configured on the server. From the security context, the passphrase should be at least 8 characters long and should include at least one uppercase letter, one lowercase letter, one number, and one special character. NewKey *string `json:"NewKey,omitempty" validate:"regexp=^$|^[a-zA-Z0-9=!&#$%+^@_*-]+$"` AdditionalProperties map[string]interface{} } @@ -343,13 +343,13 @@ func (o *StorageLocalKeySetting) 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"` - // Current Security Key Passphrase which is already configured on the server. - ExistingKey *string `json:"ExistingKey,omitempty" validate:"regexp=^$|^[a-zA-Z0-9=!&#$%+^@_*-]+$"` + // Current Security Key Passphrase which is already configured on the server. From the security context, the passphrase should be at least 8 characters long and should include at least one uppercase letter, one lowercase letter, one number, and one special character. + ExistingKey *string `json:"ExistingKey,omitempty"` // 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. + // New Security Key Passphrase to be configured on the server. From the security context, the passphrase should be at least 8 characters long and should include at least one uppercase letter, one lowercase letter, one number, and one special character. NewKey *string `json:"NewKey,omitempty" validate:"regexp=^$|^[a-zA-Z0-9=!&#$%+^@_*-]+$"` } 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 59f2ff56ce..25bc6648de 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 32c5a7f057..ff58354338 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 a5afa4b3c6..1297c4b49a 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 5c3f84a1a1..a3823ebf2f 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-18012 +API version: 1.0.11-18369 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 5b83a1d412..5424638c85 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-18012 +API version: 1.0.11-18369 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 e0f2e08346..0680a96948 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-18012 +API version: 1.0.11-18369 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 d7ad3dc987..473ae57dd4 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-18012 +API version: 1.0.11-18369 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 4738a38f64..081b091b2f 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-18012 +API version: 1.0.11-18369 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 4ff9b08464..c5c43820ec 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-18012 +API version: 1.0.11-18369 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 e03c081cf4..41cbe7b20b 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-18012 +API version: 1.0.11-18369 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 6c4ad4876f..57b47eacee 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-18012 +API version: 1.0.11-18369 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 b40e1b6a04..00b27089ac 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 1e23c0a0fa..0d941d9943 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-18012 +API version: 1.0.11-18369 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 ea26935455..5352a6df66 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-18012 +API version: 1.0.11-18369 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 bd61a2e659..775ec7b9d7 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-18012 +API version: 1.0.11-18369 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 177825a379..d689510425 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 8088ddbcff..ac344e6371 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 a74fd64242..5fb4678e60 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 d04fddf275..36dd2b32e8 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-18012 +API version: 1.0.11-18369 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 91dc2a2501..b2d6a41761 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 12925f84f1..3e984407d6 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-18012 +API version: 1.0.11-18369 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 16a9dddcce..f8b5a683b4 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 00e7abcecf..e735b46b1f 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-18012 +API version: 1.0.11-18369 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 780d348473..36ea8b3fa7 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-18012 +API version: 1.0.11-18369 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 57c06920b7..5c9e07ab5e 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 1b731a73b2..c99354e337 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-18012 +API version: 1.0.11-18369 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 1431cae2ca..28fa4452e6 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-18012 +API version: 1.0.11-18369 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 d21c20763e..d40c33b7b8 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 3d18b3f0a0..fc1f193bd5 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-18012 +API version: 1.0.11-18369 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 069a73c6df..54e4e54637 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-18012 +API version: 1.0.11-18369 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 743309063b..9f22b52de3 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-18012 +API version: 1.0.11-18369 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 129555f8ed..e81efba217 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-18012 +API version: 1.0.11-18369 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 787a2a373c..0cb87342fc 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-18012 +API version: 1.0.11-18369 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 af3c130209..f459c89f4c 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-18012 +API version: 1.0.11-18369 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 d670b92b92..2f6a9c821e 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-18012 +API version: 1.0.11-18369 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 5322c3b58c..d43b361c64 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-18012 +API version: 1.0.11-18369 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 71ceb36ca2..530aa4a862 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-18012 +API version: 1.0.11-18369 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 fbc032529a..40dfa65f71 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-18012 +API version: 1.0.11-18369 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 0d1dd555b4..01cc58b7af 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-18012 +API version: 1.0.11-18369 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 5fe20ac836..9d85f1465a 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-18012 +API version: 1.0.11-18369 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 b8be77b009..c5fcf10c50 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-18012 +API version: 1.0.11-18369 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 abe6b37578..efffe542a3 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-18012 +API version: 1.0.11-18369 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 0941560af4..27c531a8a5 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-18012 +API version: 1.0.11-18369 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 d3a255185c..4e1f723098 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-18012 +API version: 1.0.11-18369 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 292e618931..508a99611f 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-18012 +API version: 1.0.11-18369 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 46c6dcf3c5..627cfd09dc 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-18012 +API version: 1.0.11-18369 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 83396cbaef..3fffbb443c 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-18012 +API version: 1.0.11-18369 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 bbfdb8ea98..8eccb0dc79 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-18012 +API version: 1.0.11-18369 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 903cd220fb..290f385e46 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-18012 +API version: 1.0.11-18369 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 8356be6cea..195dda28d9 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-18012 +API version: 1.0.11-18369 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 bcae4d1f8f..0d1e2a7245 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-18012 +API version: 1.0.11-18369 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 cc495e301b..0f06db3096 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-18012 +API version: 1.0.11-18369 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 7977722639..bda34f5f58 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-18012 +API version: 1.0.11-18369 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 86fa57196c..01616948e0 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-18012 +API version: 1.0.11-18369 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 f8700d3e5b..11bc6b31ab 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-18012 +API version: 1.0.11-18369 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 ac73d71b52..1b6e1b5a99 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-18012 +API version: 1.0.11-18369 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 b68056fa51..ea53f41e62 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 09ef5a3b48..755f10f35e 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-18012 +API version: 1.0.11-18369 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 07a0fc39c3..f2f151e9e9 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-18012 +API version: 1.0.11-18369 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 4c4daac4e2..2aa669c58d 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-18012 +API version: 1.0.11-18369 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 49ac59c116..42b084747e 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-18012 +API version: 1.0.11-18369 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 3f8de4f7af..50a0cecf07 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-18012 +API version: 1.0.11-18369 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 72cfa83de5..12e933596d 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-18012 +API version: 1.0.11-18369 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 1ff1fa2e5f..4db0f837bf 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-18012 +API version: 1.0.11-18369 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 7a8968329e..e2f6b55f35 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-18012 +API version: 1.0.11-18369 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 c5037657f6..373a6efc2f 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-18012 +API version: 1.0.11-18369 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 eb406f3c9c..2716012f7c 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 142510e4a2..12c86c6476 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-18012 +API version: 1.0.11-18369 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 f8682db466..3a8c7cddec 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-18012 +API version: 1.0.11-18369 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 6e14286458..c5ef17eac8 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-18012 +API version: 1.0.11-18369 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 05b362c189..b2b13a6a1d 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 9294b95575..637e90f4c0 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-18012 +API version: 1.0.11-18369 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 8122862dd1..9f31663747 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-18012 +API version: 1.0.11-18369 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 d1539c6591..392fda7d69 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-18012 +API version: 1.0.11-18369 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 2b6198893e..0ed6da74ae 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-18012 +API version: 1.0.11-18369 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 885024adca..7247ebba6f 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-18012 +API version: 1.0.11-18369 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 a056da9309..6cca10a063 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-18012 +API version: 1.0.11-18369 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 45e640c540..ebfd744aca 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-18012 +API version: 1.0.11-18369 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 3023ba0eb0..65c2a369c1 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 cf36d36f3c..14f40e2ae8 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-18012 +API version: 1.0.11-18369 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 19771689f9..7a32703e52 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-18012 +API version: 1.0.11-18369 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 1c94d09928..8fed327ce0 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-18012 +API version: 1.0.11-18369 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 c76b9e9e38..973ad7bf8d 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-18012 +API version: 1.0.11-18369 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 318863b94d..e185df67ba 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-18012 +API version: 1.0.11-18369 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 71e9d84a70..6694af7033 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-18012 +API version: 1.0.11-18369 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 ba2b022c2c..0a37d15bc1 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-18012 +API version: 1.0.11-18369 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 a2dadf2bd1..68a6aab761 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-18012 +API version: 1.0.11-18369 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 2acbea35a2..77709937a7 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 b7f8e25e69..59423104ad 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-18012 +API version: 1.0.11-18369 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 0a9bcb9ea0..40fcfbf862 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-18012 +API version: 1.0.11-18369 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 d04a086393..86c046a6bf 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-18012 +API version: 1.0.11-18369 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 3a3e6149ac..dcbd605dcd 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 c01710daf0..72a0979a42 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-18012 +API version: 1.0.11-18369 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 698972737d..6046177fd9 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-18012 +API version: 1.0.11-18369 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 eae95dd7e7..d0f6d50a06 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-18012 +API version: 1.0.11-18369 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 44ea438e7f..7163cb0b78 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-18012 +API version: 1.0.11-18369 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 3f7a4fd7e0..0cec34f3c2 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-18012 +API version: 1.0.11-18369 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 dec1525d54..9d83b0355e 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-18012 +API version: 1.0.11-18369 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 60e11df35b..c6fff8fa21 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-18012 +API version: 1.0.11-18369 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 b1626719d8..cefed1f248 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 40dff5340c..751a5585be 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-18012 +API version: 1.0.11-18369 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 e753d0d901..e6846c3ed5 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-18012 +API version: 1.0.11-18369 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 d748fdf90f..c959be3333 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 dd08192239..21f43a6125 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-18012 +API version: 1.0.11-18369 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 c27c2d2bb3..f3eb992ab6 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-18012 +API version: 1.0.11-18369 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 024f26b69b..d34f754cb7 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 1e3e5bc8f8..cdfb64eaff 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-18012 +API version: 1.0.11-18369 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 dff13b5bf3..60b75ae415 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-18012 +API version: 1.0.11-18369 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 094fc04caf..ab9d705e8f 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-18012 +API version: 1.0.11-18369 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 2bac8f9d44..2f7c2e708f 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-18012 +API version: 1.0.11-18369 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 00525cb7cc..a41b4429d9 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-18012 +API version: 1.0.11-18369 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 abbf1c394c..612847471d 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 a948ccccc4..a6b189492a 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-18012 +API version: 1.0.11-18369 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 c849f0948b..e22ab65ebb 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-18012 +API version: 1.0.11-18369 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 8e1dad5a85..3761fa7424 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-18012 +API version: 1.0.11-18369 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 661bcdb7e0..809b045bfc 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-18012 +API version: 1.0.11-18369 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 a54332151b..df5717eab5 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 5df9b01644..634356a9ac 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-18012 +API version: 1.0.11-18369 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 3f530802fa..26dcd02d90 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-18012 +API version: 1.0.11-18369 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 c24a651128..58db9a4e46 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 5abdbd5a7e..6e030f8a5b 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-18012 +API version: 1.0.11-18369 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 ae53fd0d43..3df361de51 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-18012 +API version: 1.0.11-18369 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 22377b60df..f8afb503a3 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 614a1d9f45..189604a332 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-18012 +API version: 1.0.11-18369 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 bc4dd63f65..6f9ccf5f14 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-18012 +API version: 1.0.11-18369 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 909bb2c81a..c0311d2537 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 a2e8f50218..a387d981b2 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-18012 +API version: 1.0.11-18369 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 bebf1567d8..6c201e9ede 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-18012 +API version: 1.0.11-18369 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 bfab9dfb8f..97a5b6d77e 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-18012 +API version: 1.0.11-18369 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 ce9c3a22cc..dd44850057 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-18012 +API version: 1.0.11-18369 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 133bc92453..8bb7ecb60e 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-18012 +API version: 1.0.11-18369 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 286e8bfc3a..78587074ba 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-18012 +API version: 1.0.11-18369 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 e926048892..2b301f5cc1 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-18012 +API version: 1.0.11-18369 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 ff631d0edc..40b5ade33f 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-18012 +API version: 1.0.11-18369 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 cbec3a21eb..b869432d7a 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-18012 +API version: 1.0.11-18369 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 085ea48762..e104b0058a 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-18012 +API version: 1.0.11-18369 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 b450444060..ac7eb6d1d3 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-18012 +API version: 1.0.11-18369 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 1c152f49d7..5c7589815f 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-18012 +API version: 1.0.11-18369 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 0ce9897bcc..3df5630646 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-18012 +API version: 1.0.11-18369 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 2134f8baee..4bf8ec3d17 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-18012 +API version: 1.0.11-18369 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 a91afb632b..55dfd79348 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-18012 +API version: 1.0.11-18369 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 56cad830ad..18c8fe9b64 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-18012 +API version: 1.0.11-18369 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 151904e1d6..0729a81a82 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-18012 +API version: 1.0.11-18369 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 37630b9deb..8a4c673d99 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-18012 +API version: 1.0.11-18369 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 eaab687f89..fa323b7a64 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 9294378971..6fdeb08b6e 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-18012 +API version: 1.0.11-18369 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 62fd53ca4c..fa92d903cb 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-18012 +API version: 1.0.11-18369 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 b72cb116a0..aea07f853f 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-18012 +API version: 1.0.11-18369 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 339f81dc61..193279012f 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-18012 +API version: 1.0.11-18369 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 5f27af78de..ad1305b732 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 5782156217..fe462fd952 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-18012 +API version: 1.0.11-18369 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 e01607c9be..3504239bee 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-18012 +API version: 1.0.11-18369 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 be488b5f98..4cb29b089c 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 58ca20558a..9619915e6d 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-18012 +API version: 1.0.11-18369 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 b20e73f75e..15870b4efd 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-18012 +API version: 1.0.11-18369 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 f3a8507555..e20eaea0ec 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-18012 +API version: 1.0.11-18369 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 71983f6509..27f3f64fca 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-18012 +API version: 1.0.11-18369 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 9c939f5e01..2e2c15f4f1 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-18012 +API version: 1.0.11-18369 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 35ac218d4b..b6ff51b5a2 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 3234cc0e9a..601aa9de02 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-18012 +API version: 1.0.11-18369 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 a1d7f3b814..6febfa3284 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-18012 +API version: 1.0.11-18369 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 be40f0babd..445f0fe404 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-18012 +API version: 1.0.11-18369 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 170942b0cd..36b53efdec 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-18012 +API version: 1.0.11-18369 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 f63d4059d4..1ba760d19b 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-18012 +API version: 1.0.11-18369 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 e9bcb556ca..75c1e15530 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-18012 +API version: 1.0.11-18369 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 b36d343d84..b10b76969b 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-18012 +API version: 1.0.11-18369 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 0aefbae996..f998333a6f 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-18012 +API version: 1.0.11-18369 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 f2f16c4d72..1469f39f40 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-18012 +API version: 1.0.11-18369 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 185ef02b94..2cde6cb561 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-18012 +API version: 1.0.11-18369 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 07ae0c968f..920926409c 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-18012 +API version: 1.0.11-18369 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 6e582f7145..7f07c8da7c 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-18012 +API version: 1.0.11-18369 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 1affc4a242..293d31f646 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-18012 +API version: 1.0.11-18369 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 2d3d2b3990..d93402cdc9 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-18012 +API version: 1.0.11-18369 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 4083385222..587a45448a 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-18012 +API version: 1.0.11-18369 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 b13b83cb06..f3624ca2f1 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-18012 +API version: 1.0.11-18369 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 292904bc55..58c5db196f 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-18012 +API version: 1.0.11-18369 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 484a81defa..ef7e89e72d 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-18012 +API version: 1.0.11-18369 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 ac9895fe93..9576a5c1e5 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-18012 +API version: 1.0.11-18369 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 31c14d64c6..6ccf3c7c29 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 b56205b5ce..3cd48b8f37 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-18012 +API version: 1.0.11-18369 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 2442015523..742d6f1ec7 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-18012 +API version: 1.0.11-18369 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 9e9450fbab..0630e19e72 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-18012 +API version: 1.0.11-18369 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 2ecf622079..e3a86e5568 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-18012 +API version: 1.0.11-18369 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 5e12bdf5ef..24a5c92b60 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-18012 +API version: 1.0.11-18369 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 4174054434..a6d4941fd3 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-18012 +API version: 1.0.11-18369 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 3a41f0ebd4..d09b03cbb7 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-18012 +API version: 1.0.11-18369 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 2b20cf8d09..9b51010ddc 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 0481c226ef..db2ef17210 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-18012 +API version: 1.0.11-18369 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 4d215efa09..6434b7fd78 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-18012 +API version: 1.0.11-18369 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 19e8cfd1af..1181955659 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-18012 +API version: 1.0.11-18369 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 de0155de4e..88d47d87c8 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-18012 +API version: 1.0.11-18369 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 54c22acad3..4d4148a7c3 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-18012 +API version: 1.0.11-18369 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 92514a81e4..80b4650eee 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-18012 +API version: 1.0.11-18369 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 46d3d1a375..626a0db1e5 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-18012 +API version: 1.0.11-18369 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 eb55f831f5..757b898ef6 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-18012 +API version: 1.0.11-18369 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 ad04ea42cf..b26b056720 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-18012 +API version: 1.0.11-18369 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 ae77f7f2f2..e7e14459f9 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-18012 +API version: 1.0.11-18369 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 5b871891a1..5f52ac0a73 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-18012 +API version: 1.0.11-18369 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 386c55f3d8..36f3710c3b 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-18012 +API version: 1.0.11-18369 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 acf67a67b3..d8d2639d19 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-18012 +API version: 1.0.11-18369 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 16cf1a1495..f36e759ef8 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-18012 +API version: 1.0.11-18369 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 e233c9bcbc..e2580cf5e0 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-18012 +API version: 1.0.11-18369 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 2a94788bae..d4ec2622e3 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-18012 +API version: 1.0.11-18369 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 d6e4f586aa..fcb7f727d5 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-18012 +API version: 1.0.11-18369 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 cc894b9768..f0134f28aa 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-18012 +API version: 1.0.11-18369 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 73a998f629..95b1c400ff 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-18012 +API version: 1.0.11-18369 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 13da295890..c621cecac4 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-18012 +API version: 1.0.11-18369 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 3c99624408..6d207b2b5d 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-18012 +API version: 1.0.11-18369 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 eaf9dca397..369259a4b9 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-18012 +API version: 1.0.11-18369 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 ca39b849a8..b8f71e16b4 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-18012 +API version: 1.0.11-18369 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 6d6971e642..852a958e1a 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-18012 +API version: 1.0.11-18369 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 55d2b38c6a..527e62e474 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-18012 +API version: 1.0.11-18369 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 e9fb7286c2..cc20d094a0 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-18012 +API version: 1.0.11-18369 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 581f6be74d..9ca8b07908 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-18012 +API version: 1.0.11-18369 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 e11e903c5e..eadd9c0e25 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-18012 +API version: 1.0.11-18369 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 010eb89709..2ec03d9a37 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-18012 +API version: 1.0.11-18369 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 444535b688..9d8a39bbaf 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-18012 +API version: 1.0.11-18369 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 7fc60e2e22..79f35779dc 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-18012 +API version: 1.0.11-18369 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 499160c422..66a6627188 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-18012 +API version: 1.0.11-18369 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 46dedf69bd..c4a91cc87b 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-18012 +API version: 1.0.11-18369 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 c7488d2bcc..8a5b9e5c32 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-18012 +API version: 1.0.11-18369 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 7c1d28062d..9d8f4e3d57 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-18012 +API version: 1.0.11-18369 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 d05b191035..f2c754ee24 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-18012 +API version: 1.0.11-18369 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 8854e045dd..e4158bc0fc 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-18012 +API version: 1.0.11-18369 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 0770918904..1b85a9fed6 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-18012 +API version: 1.0.11-18369 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 0562e54e63..1542f94f0c 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-18012 +API version: 1.0.11-18369 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 b1055da022..70997b67f6 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-18012 +API version: 1.0.11-18369 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 b2bdbc40c1..4a62acefc3 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-18012 +API version: 1.0.11-18369 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 72e442d6d7..7239885619 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-18012 +API version: 1.0.11-18369 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 83fc913205..571d002777 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-18012 +API version: 1.0.11-18369 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 418baf698c..e3cefa01a6 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-18012 +API version: 1.0.11-18369 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 2e500ff51a..2882c5e839 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-18012 +API version: 1.0.11-18369 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 dbf8b5ada9..99012d5ef0 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-18012 +API version: 1.0.11-18369 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 5b88b8670c..bfc8f72cc4 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-18012 +API version: 1.0.11-18369 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 0e79b0da81..d5dc9d665d 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-18012 +API version: 1.0.11-18369 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 b7659ddcbd..284a031270 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-18012 +API version: 1.0.11-18369 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 68032ea504..e634489e90 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-18012 +API version: 1.0.11-18369 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 6737188b6a..c1c231ee09 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-18012 +API version: 1.0.11-18369 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 afa56b34b3..743ca58ca8 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-18012 +API version: 1.0.11-18369 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 2b7da4edcd..2a3c65603f 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-18012 +API version: 1.0.11-18369 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 7d97ae92f3..0ab485c879 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-18012 +API version: 1.0.11-18369 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 d218be5cc0..b540439bd8 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-18012 +API version: 1.0.11-18369 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 13e86118dd..d62cc899e6 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-18012 +API version: 1.0.11-18369 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 7a1dc54bad..b2a739f704 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-18012 +API version: 1.0.11-18369 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 bfe278827b..ebf26738d0 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-18012 +API version: 1.0.11-18369 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 c8580b4476..887657adc4 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-18012 +API version: 1.0.11-18369 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 500a3dfb90..b81ecb9cbf 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-18012 +API version: 1.0.11-18369 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 8a09148e80..4474df5939 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-18012 +API version: 1.0.11-18369 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 6c6144167c..8ff96ca3b9 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-18012 +API version: 1.0.11-18369 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 2097e0fc21..0ef243782f 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-18012 +API version: 1.0.11-18369 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 751b9c2a8a..a37a67582d 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-18012 +API version: 1.0.11-18369 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 2aac8c2b01..d02162fbb5 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-18012 +API version: 1.0.11-18369 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 3452c0c994..7ed0a42a6a 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-18012 +API version: 1.0.11-18369 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 1fce45a43a..33377b2202 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-18012 +API version: 1.0.11-18369 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 843bbce41a..1e3e8bd286 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-18012 +API version: 1.0.11-18369 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 acb9922999..260364dc5e 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-18012 +API version: 1.0.11-18369 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 976391105e..0e1770f442 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-18012 +API version: 1.0.11-18369 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 5c51833700..93e95926c6 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-18012 +API version: 1.0.11-18369 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 c9a65d2ec1..0a25d9acc9 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-18012 +API version: 1.0.11-18369 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 02775ca69b..b4db1427f8 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-18012 +API version: 1.0.11-18369 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 64b0f78ac8..5f42328c3f 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-18012 +API version: 1.0.11-18369 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 bff694f631..fd1496552c 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-18012 +API version: 1.0.11-18369 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 6bc59ecfed..ddb7c50bf1 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-18012 +API version: 1.0.11-18369 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 3f5d3d39f6..63775f2129 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-18012 +API version: 1.0.11-18369 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 38061f6e0c..6f41aaf1df 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-18012 +API version: 1.0.11-18369 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 471aaad315..0511a094ba 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 c96f576af9..5ba9fa0d56 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ @@ -21,7 +21,7 @@ import ( // checks if the StorageRemoteKeySetting type satisfies the MappedNullable interface at compile time var _ MappedNullable = &StorageRemoteKeySetting{} -// StorageRemoteKeySetting Models the remote key configuration required for disk encryption. +// StorageRemoteKeySetting Models the remote key configuration required for the drive security. type StorageRemoteKeySetting struct { MoBaseComplexType // 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. @@ -29,8 +29,8 @@ type StorageRemoteKeySetting struct { // The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. 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" validate:"regexp=^$|^[a-zA-Z0-9=!&#$%+^@_*-]+$"` + // Current Security Key Passphrase which is already configured on the server. From the security context, the passphrase should be at least 8 characters long and should include at least one uppercase letter, one lowercase letter, one number, and one special character. + ExistingKey *string `json:"ExistingKey,omitempty"` // Indicates whether the value of the 'existingKey' property has been set. IsExistingKeySet *bool `json:"IsExistingKeySet,omitempty"` PrimaryServer NullableStorageKmipServer `json:"PrimaryServer,omitempty"` @@ -448,8 +448,8 @@ func (o *StorageRemoteKeySetting) 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"` AuthCredentials NullableStorageKmipAuthCredentials `json:"AuthCredentials,omitempty"` - // Current Security Key Passphrase which is already configured on the server. - ExistingKey *string `json:"ExistingKey,omitempty" validate:"regexp=^$|^[a-zA-Z0-9=!&#$%+^@_*-]+$"` + // Current Security Key Passphrase which is already configured on the server. From the security context, the passphrase should be at least 8 characters long and should include at least one uppercase letter, one lowercase letter, one number, and one special character. + ExistingKey *string `json:"ExistingKey,omitempty"` // 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 0bcbbe7c2a..5a2ababf25 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-18012 +API version: 1.0.11-18369 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 9387d1393f..524d1ebc2b 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-18012 +API version: 1.0.11-18369 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 8926e1308d..2f49dac84b 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-18012 +API version: 1.0.11-18369 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 9f0b217354..0500a68cca 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-18012 +API version: 1.0.11-18369 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 aed6f95782..1599acebc5 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-18012 +API version: 1.0.11-18369 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 e4060d82c3..4a54ec2fa3 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-18012 +API version: 1.0.11-18369 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 00c6c1dc8a..85d57af01e 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-18012 +API version: 1.0.11-18369 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 a9857c61f9..d1fd267195 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-18012 +API version: 1.0.11-18369 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 354c41eb1b..2d13950041 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-18012 +API version: 1.0.11-18369 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 172854d996..49ff48daf1 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-18012 +API version: 1.0.11-18369 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 8a89543db3..cb063d49b1 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 4c27284f4a..f121cf967f 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-18012 +API version: 1.0.11-18369 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 c523f27c27..8182e6a8b2 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-18012 +API version: 1.0.11-18369 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 2046399f7a..32fa0c5fdf 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-18012 +API version: 1.0.11-18369 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 378fc8482b..aaa5fddcc5 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-18012 +API version: 1.0.11-18369 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 7f90d11302..ca3be9ac72 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-18012 +API version: 1.0.11-18369 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 7c956f1306..e6f364c394 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ @@ -21,7 +21,7 @@ import ( // checks if the StorageStoragePolicy type satisfies the MappedNullable interface at compile time var _ MappedNullable = &StorageStoragePolicy{} -// StorageStoragePolicy The storage policy models the reusable storage related configuration that can be applied on many servers. This policy allows creation of RAID groups using existing disk group policies and virtual drives on the drive groups. The user has options to move all unused disks to JBOD or Unconfigured good state. The encryption of drives can be enabled through this policy using remote keys from a KMIP server. +// StorageStoragePolicy The storage policy models the reusable storage related configuration that can be applied on many servers. This policy allows creation of RAID groups using existing disk group policies and virtual drives on the drive groups. The user has options to move all unused disks to JBOD or Unconfigured good state. The security of drives can be enabled through this policy using remote keys from a KMIP server or Manually configured keys. type StorageStoragePolicy struct { PolicyAbstractPolicy // 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. 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 db98c6ece3..df7ef5b3a4 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-18012 +API version: 1.0.11-18369 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 d3c6a82769..1fe1e120eb 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-18012 +API version: 1.0.11-18369 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 f8d57f8a39..232995cb5d 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-18012 +API version: 1.0.11-18369 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 72cf9bb262..93eb7ea348 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-18012 +API version: 1.0.11-18369 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 6cece3c4c3..7b03b6000a 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-18012 +API version: 1.0.11-18369 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 2fec6ed43e..f2907c39e4 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-18012 +API version: 1.0.11-18369 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 30e051ea8c..334f9986b8 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-18012 +API version: 1.0.11-18369 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 4bae87d444..84e4a85f41 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-18012 +API version: 1.0.11-18369 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 8cc6050e77..716f9d9ae4 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-18012 +API version: 1.0.11-18369 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 94ef341f03..1ac8b44760 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 fa5a7780aa..b5bda9c947 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-18012 +API version: 1.0.11-18369 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 e6328c65a6..b14c09e636 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-18012 +API version: 1.0.11-18369 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 8d1cc4ee87..d60879a6e7 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-18012 +API version: 1.0.11-18369 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 f37da70138..26941369ab 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-18012 +API version: 1.0.11-18369 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 811981f8d2..9e1e11392d 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-18012 +API version: 1.0.11-18369 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 7a72c85b6f..ef9fb5dc04 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-18012 +API version: 1.0.11-18369 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 6f99e41b3c..b53b57b738 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-18012 +API version: 1.0.11-18369 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 b2c84b2220..a80eca6c4a 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-18012 +API version: 1.0.11-18369 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 1d8edfaeb3..335a12eb85 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-18012 +API version: 1.0.11-18369 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 9e8f9d3b0e..069c088657 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-18012 +API version: 1.0.11-18369 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 5e48572f40..ab9985ab9d 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-18012 +API version: 1.0.11-18369 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 fe803f2489..258682dea9 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-18012 +API version: 1.0.11-18369 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 3f50592bd4..98b52c1fd7 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-18012 +API version: 1.0.11-18369 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 2024ef2d46..c6e26d2552 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-18012 +API version: 1.0.11-18369 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 77de79ec15..53bfa5bcee 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-18012 +API version: 1.0.11-18369 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 1a3ed8685f..adf7307cb8 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-18012 +API version: 1.0.11-18369 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 e174e27874..93db1bbc16 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-18012 +API version: 1.0.11-18369 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 41db011f39..de440601c6 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-18012 +API version: 1.0.11-18369 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 d21058db18..fed53a84d8 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-18012 +API version: 1.0.11-18369 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 8414aba16a..3b3cdaaf2c 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-18012 +API version: 1.0.11-18369 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 37b30815ca..ad732ab655 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-18012 +API version: 1.0.11-18369 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 0050515b34..85fd6d93ce 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-18012 +API version: 1.0.11-18369 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 9cf57cc1a5..9434ce4cca 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-18012 +API version: 1.0.11-18369 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 05813a3b17..ad57ea06e7 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-18012 +API version: 1.0.11-18369 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 ccf2cc2022..6b90311e63 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-18012 +API version: 1.0.11-18369 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 cafccd4f02..18ff8a04c1 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-18012 +API version: 1.0.11-18369 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 b2087afb3f..9a96da13c8 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-18012 +API version: 1.0.11-18369 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 cc5584be61..c1acef7968 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-18012 +API version: 1.0.11-18369 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 d06271ba4a..283da15f56 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-18012 +API version: 1.0.11-18369 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 e53f0486c8..4460fa4123 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-18012 +API version: 1.0.11-18369 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 dd95cbc6e3..8785007377 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-18012 +API version: 1.0.11-18369 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 04074a5ecd..a5706b9111 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 455c54bcbf..218d0154af 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-18012 +API version: 1.0.11-18369 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 6d632f9117..eae9bbd21f 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-18012 +API version: 1.0.11-18369 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 5ce2a054ac..c992c3dd87 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-18012 +API version: 1.0.11-18369 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 13d389c2c8..b23863e332 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-18012 +API version: 1.0.11-18369 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 b3e32f6eb6..859ae38e4f 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-18012 +API version: 1.0.11-18369 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 5cc1553491..0f9c30c678 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-18012 +API version: 1.0.11-18369 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 a04aa76a85..a3f749f58f 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-18012 +API version: 1.0.11-18369 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 b7fc4f815e..cd7a4a21f9 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-18012 +API version: 1.0.11-18369 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 73f053a872..562829cc00 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-18012 +API version: 1.0.11-18369 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 f8f9457718..55814a6c38 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-18012 +API version: 1.0.11-18369 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 555669b667..feed09301a 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-18012 +API version: 1.0.11-18369 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 c2eb8135ea..b92e5e0a32 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-18012 +API version: 1.0.11-18369 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 31267594e3..99eb93aaa6 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-18012 +API version: 1.0.11-18369 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 8189d5b246..ba492c0524 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-18012 +API version: 1.0.11-18369 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 c4bca435c5..235fcfc2d6 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-18012 +API version: 1.0.11-18369 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 8f36165da8..be2cf485fd 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-18012 +API version: 1.0.11-18369 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 b8dfeafa1c..f13e45270e 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-18012 +API version: 1.0.11-18369 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 254a37de0b..7d220ae20c 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-18012 +API version: 1.0.11-18369 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 506c6ebebe..ffee76051a 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-18012 +API version: 1.0.11-18369 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 d7c9cd3e7e..14f4e4163d 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-18012 +API version: 1.0.11-18369 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 3071cafec8..54b921d79d 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 5df393ed95..7707f40223 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-18012 +API version: 1.0.11-18369 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 d760d7bfef..61a90b9470 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-18012 +API version: 1.0.11-18369 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 47801ab5ee..f625b6adff 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-18012 +API version: 1.0.11-18369 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 ce10a23a23..760d023b68 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-18012 +API version: 1.0.11-18369 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 667a812339..13a85ca94b 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-18012 +API version: 1.0.11-18369 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 4661beaa1e..f2a4324be5 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-18012 +API version: 1.0.11-18369 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 0223dab4a3..43fbf70a77 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-18012 +API version: 1.0.11-18369 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 ca1cbf5e07..ade4db9a03 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-18012 +API version: 1.0.11-18369 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 5e488f8cd6..2d9c6679d5 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-18012 +API version: 1.0.11-18369 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 520a775cc0..123902cda8 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-18012 +API version: 1.0.11-18369 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 4e74a8384d..fcd2518c2d 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-18012 +API version: 1.0.11-18369 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 0d7bfed092..eabff0d595 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-18012 +API version: 1.0.11-18369 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 1f46124206..67fc009e2f 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-18012 +API version: 1.0.11-18369 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 92f971d956..906fd607cb 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-18012 +API version: 1.0.11-18369 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 d3ee4f9b54..bad5fac6f5 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-18012 +API version: 1.0.11-18369 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 10f7304a34..96e729fd9a 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-18012 +API version: 1.0.11-18369 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 d36937f97b..e8e573f3fe 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-18012 +API version: 1.0.11-18369 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 15fae16940..becd09d3c1 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-18012 +API version: 1.0.11-18369 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 7232e0f5fe..4167959333 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-18012 +API version: 1.0.11-18369 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 df41ff6ebe..cdadc63e2c 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-18012 +API version: 1.0.11-18369 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 45a2d1fc1d..268310de71 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-18012 +API version: 1.0.11-18369 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 d7ba583774..2fe5400810 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-18012 +API version: 1.0.11-18369 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 56683ffcf7..a957ce5ccb 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-18012 +API version: 1.0.11-18369 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 324e243a9d..d158c9d456 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-18012 +API version: 1.0.11-18369 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 23e635334a..f00ac92c95 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-18012 +API version: 1.0.11-18369 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 2888048aca..6e543f8cba 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-18012 +API version: 1.0.11-18369 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 9756f782cf..bc2becad40 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-18012 +API version: 1.0.11-18369 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 e1870c3482..f11e5c00ac 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-18012 +API version: 1.0.11-18369 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 f0e2361283..596abec1e4 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-18012 +API version: 1.0.11-18369 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 06875cd711..e2a11a8f90 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-18012 +API version: 1.0.11-18369 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 e564875d96..592b1c890c 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-18012 +API version: 1.0.11-18369 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 d3a2b798eb..6557f83f88 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-18012 +API version: 1.0.11-18369 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 520d2a43f7..df1de4e7e8 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-18012 +API version: 1.0.11-18369 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 df390307f8..b5c74329ae 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-18012 +API version: 1.0.11-18369 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 451cd14df6..6e30bb3f3b 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-18012 +API version: 1.0.11-18369 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 0c90d5b9ae..f536e3d989 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-18012 +API version: 1.0.11-18369 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 2598ef610e..e21a631c10 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-18012 +API version: 1.0.11-18369 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 cf1e29a701..4d95290071 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-18012 +API version: 1.0.11-18369 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 e2bdb161f0..ba359a5d16 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-18012 +API version: 1.0.11-18369 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 574903267a..5e5f3f9d7e 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-18012 +API version: 1.0.11-18369 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 affba4555a..2865fff5f1 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-18012 +API version: 1.0.11-18369 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 dcfd0c85d4..74fa848071 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-18012 +API version: 1.0.11-18369 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 f91fe7dde7..05785f0858 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-18012 +API version: 1.0.11-18369 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 8bfc6a920e..b6d5735373 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-18012 +API version: 1.0.11-18369 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 95a2d39b76..b963a1e153 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-18012 +API version: 1.0.11-18369 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 977da5df2b..cd99d3fa73 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-18012 +API version: 1.0.11-18369 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 53cd1dd87b..f0270047bf 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-18012 +API version: 1.0.11-18369 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 5d8f1d22a2..b59263f529 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-18012 +API version: 1.0.11-18369 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 2b72f24f60..f829cac3f3 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-18012 +API version: 1.0.11-18369 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 0c1fb4349c..9a532749b6 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-18012 +API version: 1.0.11-18369 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 b97a979034..4d96903419 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-18012 +API version: 1.0.11-18369 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 ae29c1cea3..e0321e673c 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-18012 +API version: 1.0.11-18369 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 14caf1c933..c0ed3cfce1 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-18012 +API version: 1.0.11-18369 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 286d75d2f0..f9a1eb7279 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-18012 +API version: 1.0.11-18369 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 218ae5bf45..95d699fa20 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-18012 +API version: 1.0.11-18369 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 683a0cb4f5..912405fc03 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-18012 +API version: 1.0.11-18369 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 be9fd058ae..60cc3af757 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-18012 +API version: 1.0.11-18369 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 7834da9207..6e60fdf971 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-18012 +API version: 1.0.11-18369 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 a441a35c01..77b2960424 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-18012 +API version: 1.0.11-18369 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 00c4d87883..8194261c85 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-18012 +API version: 1.0.11-18369 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 dd579024eb..5bda912255 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-18012 +API version: 1.0.11-18369 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 bf147f87ec..2afc867e4a 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-18012 +API version: 1.0.11-18369 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 c5344589e9..b39a7d81f4 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-18012 +API version: 1.0.11-18369 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 fe2855c855..e596d7d730 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-18012 +API version: 1.0.11-18369 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 5d3ab742e0..f65ab023ee 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-18012 +API version: 1.0.11-18369 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 c895e31d4e..1e7d643358 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-18012 +API version: 1.0.11-18369 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 6a4c25cf52..5659d9b4e1 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-18012 +API version: 1.0.11-18369 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 53495a199a..7676c81a69 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-18012 +API version: 1.0.11-18369 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 cde6d1f1a2..407172c49c 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-18012 +API version: 1.0.11-18369 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 5b874828e7..68c98376f4 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-18012 +API version: 1.0.11-18369 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 7f405e33b0..0f5afcf759 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-18012 +API version: 1.0.11-18369 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 e74835412a..e24966dc5d 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-18012 +API version: 1.0.11-18369 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 178b248ba4..4b80801697 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-18012 +API version: 1.0.11-18369 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 7a7afe873b..e47afebe65 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-18012 +API version: 1.0.11-18369 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 883bb7b589..ea9cfa9017 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-18012 +API version: 1.0.11-18369 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 1edcddd6f6..acc2a7607f 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-18012 +API version: 1.0.11-18369 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 8422b62740..126f350c87 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-18012 +API version: 1.0.11-18369 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 cfffa0a8d8..4b1b5b83bc 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-18012 +API version: 1.0.11-18369 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 d4f7211782..ccb3e8d011 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-18012 +API version: 1.0.11-18369 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 fbf46afb18..dc12a14901 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-18012 +API version: 1.0.11-18369 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 0071e35a7d..cf9a2d43bf 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-18012 +API version: 1.0.11-18369 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 93fa2e2a35..39b82adfa3 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-18012 +API version: 1.0.11-18369 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 bea304ae94..8c9985f4ce 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-18012 +API version: 1.0.11-18369 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 98e79a999e..ab4dd4fb43 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-18012 +API version: 1.0.11-18369 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 b754d0a0eb..2cfc071d1a 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-18012 +API version: 1.0.11-18369 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 3f9b6c4dc7..e4126428f3 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-18012 +API version: 1.0.11-18369 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 02366a8bb0..db5f940493 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-18012 +API version: 1.0.11-18369 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 f5f05c6a25..ee3a2c0191 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-18012 +API version: 1.0.11-18369 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 5a710d2292..3e2cdae71a 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-18012 +API version: 1.0.11-18369 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 459b2867b7..a655124b20 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-18012 +API version: 1.0.11-18369 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 36f09f7ddc..c3e8611087 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-18012 +API version: 1.0.11-18369 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 b2dea6fa30..a9eddad3f0 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-18012 +API version: 1.0.11-18369 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 e641a9cda8..a25e68599b 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-18012 +API version: 1.0.11-18369 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 32922fcfba..806cbf1114 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-18012 +API version: 1.0.11-18369 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 240b3cee98..dd8d8e7a48 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-18012 +API version: 1.0.11-18369 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 f84942bada..f1cd4e6ed6 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-18012 +API version: 1.0.11-18369 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 f93a4f2dc7..66c0f184b3 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-18012 +API version: 1.0.11-18369 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 65995b4e60..726652b086 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-18012 +API version: 1.0.11-18369 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 c60b98114d..6400ded674 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-18012 +API version: 1.0.11-18369 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 f3ccec3c14..3f4945b12b 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-18012 +API version: 1.0.11-18369 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 64efc5a8b8..22dbc4a1fa 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-18012 +API version: 1.0.11-18369 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 7ce813552d..1a486550fc 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-18012 +API version: 1.0.11-18369 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 a32f8adb29..c18c6437fd 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-18012 +API version: 1.0.11-18369 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 8834c21c12..d10e888d14 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-18012 +API version: 1.0.11-18369 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 a60409b977..97265d5eb0 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-18012 +API version: 1.0.11-18369 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 c210e59f84..f617dab168 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-18012 +API version: 1.0.11-18369 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 4a3c618045..bce90d4d2e 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-18012 +API version: 1.0.11-18369 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 f500dd6f30..5ee633abe8 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-18012 +API version: 1.0.11-18369 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 e565fc5660..3cea4ec34a 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-18012 +API version: 1.0.11-18369 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 d122cedf37..cf1a1208f5 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-18012 +API version: 1.0.11-18369 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 5191462f9a..77edf7e268 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-18012 +API version: 1.0.11-18369 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 c3681abec5..7a39c98822 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-18012 +API version: 1.0.11-18369 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 e76061df7e..93032d50ae 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-18012 +API version: 1.0.11-18369 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 a899fb929e..a66cfad606 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-18012 +API version: 1.0.11-18369 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 82aeb6f14d..419bcbf75f 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-18012 +API version: 1.0.11-18369 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 82904bbcdd..560c6d0a2f 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-18012 +API version: 1.0.11-18369 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 f793f1268f..bb827b0df7 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-18012 +API version: 1.0.11-18369 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 d2283cf964..861e29e24a 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-18012 +API version: 1.0.11-18369 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 ca141e49af..a8193a367d 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-18012 +API version: 1.0.11-18369 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 f34a933152..2e91063e1d 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-18012 +API version: 1.0.11-18369 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 ab9aa9dc53..223376b5a9 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-18012 +API version: 1.0.11-18369 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 78de9357ee..9474e2d2e2 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-18012 +API version: 1.0.11-18369 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 d99b576d9b..e34c2d6f5b 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-18012 +API version: 1.0.11-18369 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 e680f5c715..bd9efbad4e 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-18012 +API version: 1.0.11-18369 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 7f202e1afb..b6d39b2439 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-18012 +API version: 1.0.11-18369 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 53b41cabb1..ef3ebc5754 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-18012 +API version: 1.0.11-18369 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 8d97ac586c..1c0fcfee46 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-18012 +API version: 1.0.11-18369 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 723046191a..91421495b0 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-18012 +API version: 1.0.11-18369 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 fc28eac884..e8e9679ac5 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-18012 +API version: 1.0.11-18369 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 365246c7c3..f732e197fd 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-18012 +API version: 1.0.11-18369 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 10e07afbe3..6ebd63bb71 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-18012 +API version: 1.0.11-18369 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 f3ae0ff2d7..12a6c98b85 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-18012 +API version: 1.0.11-18369 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 b842bb4ef9..c0a3126f00 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-18012 +API version: 1.0.11-18369 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 86327bc82f..40b51a667f 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-18012 +API version: 1.0.11-18369 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 874a5e4e14..27071802e2 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-18012 +API version: 1.0.11-18369 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 88b0f38f6c..8fbc5882cc 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-18012 +API version: 1.0.11-18369 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 aac1c80f56..1d1336231d 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-18012 +API version: 1.0.11-18369 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 969e35d048..94e1a070cf 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-18012 +API version: 1.0.11-18369 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 49683ebc56..1fd7ee4289 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-18012 +API version: 1.0.11-18369 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 f634d6deef..652eb249b4 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-18012 +API version: 1.0.11-18369 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 4494321a37..e7f27b1000 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-18012 +API version: 1.0.11-18369 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 452eb2e1d3..fce6a77a77 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-18012 +API version: 1.0.11-18369 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 a7a0f27d08..3739a3b094 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-18012 +API version: 1.0.11-18369 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 f81877cfb7..1186a17e0a 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-18012 +API version: 1.0.11-18369 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 a8e00d7d5a..71191aabce 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-18012 +API version: 1.0.11-18369 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 ee269dce1f..9da21f0ff1 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-18012 +API version: 1.0.11-18369 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 1498c08ad2..d79346f019 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-18012 +API version: 1.0.11-18369 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 47b6595106..d6d8d8ed2d 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-18012 +API version: 1.0.11-18369 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 2e471ea3bb..cac194b0a4 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-18012 +API version: 1.0.11-18369 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 78dea56df8..b26a0368cc 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-18012 +API version: 1.0.11-18369 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 2c0198f213..c0ed6cd54e 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-18012 +API version: 1.0.11-18369 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 3427248ce4..1d6bbb808e 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-18012 +API version: 1.0.11-18369 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 a4a328898c..4ea955fcb3 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-18012 +API version: 1.0.11-18369 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 331dc60d85..dfe667c6ed 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-18012 +API version: 1.0.11-18369 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 4392eb490c..7f852fc066 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-18012 +API version: 1.0.11-18369 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 ee89d2405a..d1526be3de 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 cffa3409cf..9de458d76b 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-18012 +API version: 1.0.11-18369 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 ddcaa76138..cce6862e7e 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-18012 +API version: 1.0.11-18369 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 0f7edea881..4c05b675fa 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-18012 +API version: 1.0.11-18369 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 92868d117d..f17638e308 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-18012 +API version: 1.0.11-18369 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 0d50cd1155..d040ee3f4b 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-18012 +API version: 1.0.11-18369 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 a8266dbdd5..25351dc708 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-18012 +API version: 1.0.11-18369 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 1802984a91..f064056aee 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-18012 +API version: 1.0.11-18369 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 9fa09e7c5b..e51d0abd59 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-18012 +API version: 1.0.11-18369 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 26fa54398e..b736f293d4 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-18012 +API version: 1.0.11-18369 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 6a7ca769d0..b4f4774460 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-18012 +API version: 1.0.11-18369 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 212de92bc6..03b0a80474 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-18012 +API version: 1.0.11-18369 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 53c0d79db4..c0b6c47445 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-18012 +API version: 1.0.11-18369 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 88ad159f58..99bdea21b1 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-18012 +API version: 1.0.11-18369 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 e82ed04bf2..2be3e20931 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-18012 +API version: 1.0.11-18369 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 1ed8bc0011..2191044e02 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-18012 +API version: 1.0.11-18369 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 d2337ed082..d5d52cbf29 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-18012 +API version: 1.0.11-18369 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 0d1988cc23..97f6405024 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-18012 +API version: 1.0.11-18369 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 e446076b0d..1ec957b617 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-18012 +API version: 1.0.11-18369 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 f370c53fb2..91422e1ddf 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-18012 +API version: 1.0.11-18369 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 729a174e11..d854615b0e 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-18012 +API version: 1.0.11-18369 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 7a70ea41ed..8c7ff6e314 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-18012 +API version: 1.0.11-18369 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 e1ea54a377..ab5c26d6dd 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-18012 +API version: 1.0.11-18369 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 18a69c09e1..68a2a79d60 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-18012 +API version: 1.0.11-18369 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 3cab5a7c5e..d46b7ea8b9 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-18012 +API version: 1.0.11-18369 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 1d7ac1a161..1408664687 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-18012 +API version: 1.0.11-18369 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 054b537509..f7f160c14c 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-18012 +API version: 1.0.11-18369 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 d8cf28cf1c..7e5a58cdeb 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-18012 +API version: 1.0.11-18369 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 4fe781ffaf..78bee1bbd4 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-18012 +API version: 1.0.11-18369 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 372512ab9f..9b8cb21ab3 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-18012 +API version: 1.0.11-18369 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 530d10782a..d603d3aff8 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 a1ea4955a7..f009984197 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-18012 +API version: 1.0.11-18369 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 5821ab8a5f..f671a6b316 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-18012 +API version: 1.0.11-18369 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 ec64fbffee..e014aea494 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-18012 +API version: 1.0.11-18369 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 68215647c1..78a688b6ed 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-18012 +API version: 1.0.11-18369 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 10e8a25f2f..94f0858e4c 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-18012 +API version: 1.0.11-18369 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 8022cec363..7a568fae98 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-18012 +API version: 1.0.11-18369 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 c26a9c9af5..36fc52e1e7 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-18012 +API version: 1.0.11-18369 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 2587beac05..9d7c6f7149 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 badd7f235a..e0d7229507 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-18012 +API version: 1.0.11-18369 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 332bdcb232..c2db4897e1 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-18012 +API version: 1.0.11-18369 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 49c4fe2440..1058124882 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-18012 +API version: 1.0.11-18369 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 328cdcd121..cd56a99ef3 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-18012 +API version: 1.0.11-18369 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 bb1cc87a13..ea6176cbdd 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-18012 +API version: 1.0.11-18369 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 2a15c227e5..5f81ffbfd2 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-18012 +API version: 1.0.11-18369 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 359c020f00..3177e94703 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-18012 +API version: 1.0.11-18369 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 41872097c7..218495771d 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-18012 +API version: 1.0.11-18369 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 4634dd6bd3..7d3a3bc4c2 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 461b46dafd..7378d2b113 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 731c460688..7c504637f8 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-18012 +API version: 1.0.11-18369 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 a2b07e2041..1ce58f750d 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-18012 +API version: 1.0.11-18369 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 c8a41a3cf6..1afe82fe6f 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-18012 +API version: 1.0.11-18369 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 85ddfd7788..8f2e2bc73e 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-18012 +API version: 1.0.11-18369 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 431e16172c..0e473e84a8 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-18012 +API version: 1.0.11-18369 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 137f42df7c..39c3d2aa9b 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-18012 +API version: 1.0.11-18369 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 9d51b3517b..4310e31f19 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-18012 +API version: 1.0.11-18369 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 30c3103f36..61b9869622 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-18012 +API version: 1.0.11-18369 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 8d724f0cfa..b8fd9ea493 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-18012 +API version: 1.0.11-18369 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 e6fc82211d..8b7fc1a813 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-18012 +API version: 1.0.11-18369 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 3e08d64de5..1651d3390f 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-18012 +API version: 1.0.11-18369 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 dd5e87c2ce..60c3d4dc39 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-18012 +API version: 1.0.11-18369 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 f3a656c42d..f3e2652489 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-18012 +API version: 1.0.11-18369 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 d531f3622a..fd81370748 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-18012 +API version: 1.0.11-18369 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 f9c3c4f085..df247198a7 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-18012 +API version: 1.0.11-18369 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 93a36c6394..5b7f8bb3a7 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-18012 +API version: 1.0.11-18369 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 33ab610a52..e2513547a1 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-18012 +API version: 1.0.11-18369 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 847bd20b06..24e7f97341 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-18012 +API version: 1.0.11-18369 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 ca61323540..bb02c3c0c5 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-18012 +API version: 1.0.11-18369 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 02825ef48d..59cb3816b9 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-18012 +API version: 1.0.11-18369 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 4300fbacc6..eae8b178da 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-18012 +API version: 1.0.11-18369 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 9f77d4499d..3aff931685 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-18012 +API version: 1.0.11-18369 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 3ecda098ea..4ab42798b2 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-18012 +API version: 1.0.11-18369 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 62ca758e11..d087ab021f 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 7b589820e9..8f0e98f3ef 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-18012 +API version: 1.0.11-18369 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 a72835911a..aeaf2c55f7 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-18012 +API version: 1.0.11-18369 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 c39915e228..493192b430 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-18012 +API version: 1.0.11-18369 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 718deb870a..28112715c9 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-18012 +API version: 1.0.11-18369 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 b5855e1884..6ff6557910 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-18012 +API version: 1.0.11-18369 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 62f585b499..8633e866a9 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 cf255f1ff4..68cc480002 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-18012 +API version: 1.0.11-18369 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 6280ad1174..e675dec10a 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-18012 +API version: 1.0.11-18369 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 e8433fb0b8..0aff36a851 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-18012 +API version: 1.0.11-18369 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 36c7b7930f..74cd8706f6 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-18012 +API version: 1.0.11-18369 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 2436635b5a..94c8d41469 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 0cace599cd..b05ea50022 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-18012 +API version: 1.0.11-18369 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 be3dd982cb..8d98f5ee35 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-18012 +API version: 1.0.11-18369 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 c9df3736e8..f523ad2a68 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-18012 +API version: 1.0.11-18369 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 d0048b259c..95aad4f1fe 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 235018da5b..dae4829d2b 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-18012 +API version: 1.0.11-18369 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 d75b3cb295..211d0dc4ff 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-18012 +API version: 1.0.11-18369 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 ef0e836a75..d545aeddcb 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-18012 +API version: 1.0.11-18369 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 66f3cbf79d..d7790a33e7 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-18012 +API version: 1.0.11-18369 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 b222afcbab..56399cc338 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-18012 +API version: 1.0.11-18369 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 a5c89066a9..5bfce1e5a7 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-18012 +API version: 1.0.11-18369 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 1f3158dceb..1c10a71204 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 4e0f98b698..fc01cb888c 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-18012 +API version: 1.0.11-18369 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 b28365c449..1d35a17cf8 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-18012 +API version: 1.0.11-18369 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 195c0f653e..6bb5358ab6 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-18012 +API version: 1.0.11-18369 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 ab33d89633..c2adb149e8 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-18012 +API version: 1.0.11-18369 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 c5b84bf776..61267912e0 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-18012 +API version: 1.0.11-18369 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 264f7a20da..5d6b207de8 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-18012 +API version: 1.0.11-18369 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 4e14f764dc..62027bc3c6 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-18012 +API version: 1.0.11-18369 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 2ce1f88507..d2d8918f05 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-18012 +API version: 1.0.11-18369 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 0011b2b52b..2bef38caeb 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-18012 +API version: 1.0.11-18369 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 225611bca0..7863012579 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-18012 +API version: 1.0.11-18369 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 c2b3a111cb..fe9f78f080 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-18012 +API version: 1.0.11-18369 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 3e06f81a55..b250f843c8 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-18012 +API version: 1.0.11-18369 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 f7abb48efc..c1748060df 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-18012 +API version: 1.0.11-18369 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 c88f83e8c1..be7df263a7 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-18012 +API version: 1.0.11-18369 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 7be128a488..260c2cef0b 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-18012 +API version: 1.0.11-18369 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 85d948083f..5c3d87d625 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-18012 +API version: 1.0.11-18369 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 106360f212..f759b1ce5d 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-18012 +API version: 1.0.11-18369 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 5d79d18ad0..fd65c274a6 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-18012 +API version: 1.0.11-18369 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 4b8da8cf18..f62832fed2 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-18012 +API version: 1.0.11-18369 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 af51abe0c9..b146ad788d 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-18012 +API version: 1.0.11-18369 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 a7dd189a83..ce96767ba1 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-18012 +API version: 1.0.11-18369 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 bd9bb2dfdd..00acb8b126 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-18012 +API version: 1.0.11-18369 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 09bf217a04..6220fbb233 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-18012 +API version: 1.0.11-18369 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 4b33385d31..bd438bd44c 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-18012 +API version: 1.0.11-18369 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 ee9e4bf293..18ed46b87c 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-18012 +API version: 1.0.11-18369 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 783e055fae..930da1de54 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 18ed87a743..0a831edd06 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-18012 +API version: 1.0.11-18369 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 7818a3e63e..112be97528 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-18012 +API version: 1.0.11-18369 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 ab449c9c1e..926e62dfd6 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-18012 +API version: 1.0.11-18369 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 becd90db5d..8a194e3d85 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-18012 +API version: 1.0.11-18369 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 8fde8551c1..254579ba7e 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-18012 +API version: 1.0.11-18369 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 cc16615e9b..30333d672a 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-18012 +API version: 1.0.11-18369 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 7e20f7d1a6..a3fdf2173c 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-18012 +API version: 1.0.11-18369 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 af33cbff8d..fcc758ad22 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-18012 +API version: 1.0.11-18369 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 4c1749eeab..8762cd22e4 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-18012 +API version: 1.0.11-18369 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 6cf5866e56..35d1187325 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-18012 +API version: 1.0.11-18369 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 3b9e9f1b35..f894be83eb 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-18012 +API version: 1.0.11-18369 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 325b39e622..b2e9caf199 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-18012 +API version: 1.0.11-18369 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 97d2337880..37291e1579 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-18012 +API version: 1.0.11-18369 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 ca35542618..3ac2f0d86e 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-18012 +API version: 1.0.11-18369 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 16cccbeda1..009130e522 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-18012 +API version: 1.0.11-18369 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 f16d75743d..223e2c3216 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-18012 +API version: 1.0.11-18369 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 1aac3cf96b..c2626c66f4 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-18012 +API version: 1.0.11-18369 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 0f869d4c76..d521f54af6 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-18012 +API version: 1.0.11-18369 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 8b082e6295..4fa9092770 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-18012 +API version: 1.0.11-18369 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 c4d96371ff..d33b4329bc 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-18012 +API version: 1.0.11-18369 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 3d15a64163..2b91fe156d 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-18012 +API version: 1.0.11-18369 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 0a9e2fcd1a..210256c71a 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-18012 +API version: 1.0.11-18369 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 f8ff424efd..98d5c0008e 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-18012 +API version: 1.0.11-18369 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 174e080e00..0dfd600278 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-18012 +API version: 1.0.11-18369 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 1d38bfec0e..563fc1ae97 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-18012 +API version: 1.0.11-18369 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 598f6244ec..f73612ee92 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-18012 +API version: 1.0.11-18369 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 1716e6b6ee..917ee4c434 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-18012 +API version: 1.0.11-18369 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 f2558c0171..3da34041c9 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-18012 +API version: 1.0.11-18369 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 8b5cd16e25..a6f999152e 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-18012 +API version: 1.0.11-18369 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 a19747d90f..1364bc0adb 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 579e150975..51d7af7a1f 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-18012 +API version: 1.0.11-18369 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 a4f682c84c..194c109282 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-18012 +API version: 1.0.11-18369 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 ec029dd47e..9833686f27 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-18012 +API version: 1.0.11-18369 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 deda6b5ff0..cc2389ea24 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-18012 +API version: 1.0.11-18369 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 6e022f9bc5..68a340cb40 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-18012 +API version: 1.0.11-18369 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 e13d9f3223..9f6a4205df 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-18012 +API version: 1.0.11-18369 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 63d9b4c1f7..36b1217f0f 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-18012 +API version: 1.0.11-18369 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 632157ae87..c3d9c1f946 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-18012 +API version: 1.0.11-18369 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 d2f88d2434..4be1374ce2 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-18012 +API version: 1.0.11-18369 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 98f097ecc1..bbb4d41e3c 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-18012 +API version: 1.0.11-18369 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 a70adcdd04..c96782c871 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-18012 +API version: 1.0.11-18369 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 bd3c45f354..f176ab88ca 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-18012 +API version: 1.0.11-18369 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 f8a9466e12..0ef69ef1e3 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-18012 +API version: 1.0.11-18369 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 4d87d13001..f4d5143a4b 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-18012 +API version: 1.0.11-18369 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 bb095b2341..8f79668623 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 fa19a87393..d8f6fb1b5b 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-18012 +API version: 1.0.11-18369 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 7d4cf6fa43..9bd11586e5 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-18012 +API version: 1.0.11-18369 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 84025bda37..4bd5e5cc36 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-18012 +API version: 1.0.11-18369 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 ae14efe9eb..11afea5655 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-18012 +API version: 1.0.11-18369 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 d35ac959f1..a46e082170 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-18012 +API version: 1.0.11-18369 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 0725f1feac..9490c0f2f0 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-18012 +API version: 1.0.11-18369 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 1a0c799240..6755b6a1c8 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 043c0478cf..595ee06713 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-18012 +API version: 1.0.11-18369 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 d0b2bce9f6..65e6a4093a 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-18012 +API version: 1.0.11-18369 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 391c152d9a..77c707f761 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-18012 +API version: 1.0.11-18369 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 570a718b35..e85acd8bd1 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-18012 +API version: 1.0.11-18369 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 400071939e..c8a1563af4 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-18012 +API version: 1.0.11-18369 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 0c2c41b461..5f0f82831a 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-18012 +API version: 1.0.11-18369 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 791ff4794a..04a0569c0d 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-18012 +API version: 1.0.11-18369 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 33c0b7edc9..1b00766151 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-18012 +API version: 1.0.11-18369 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 52b744aac1..04503b5e58 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-18012 +API version: 1.0.11-18369 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 d152bed0c3..d9e325bbf0 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-18012 +API version: 1.0.11-18369 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 df8bf2839b..56aa9d157f 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-18012 +API version: 1.0.11-18369 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 7fa0fa78b8..81ccb3755c 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-18012 +API version: 1.0.11-18369 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 997c633348..cdc07fa538 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-18012 +API version: 1.0.11-18369 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 56b4aad86e..b7e3097b68 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-18012 +API version: 1.0.11-18369 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 0246be9bda..f7de205f0e 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-18012 +API version: 1.0.11-18369 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 b33e98d6c8..3acbd1d375 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-18012 +API version: 1.0.11-18369 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 796a1379a7..d127154bd0 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-18012 +API version: 1.0.11-18369 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 13164cd92d..2dc0e0285b 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-18012 +API version: 1.0.11-18369 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 3a460829b9..63f9ce70c7 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 5d914a10b4..984c3b9907 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-18012 +API version: 1.0.11-18369 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 2e06e1a323..a148df27db 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-18012 +API version: 1.0.11-18369 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 a0cf42df4a..94080dac44 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 ad590253eb..2974f74b97 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-18012 +API version: 1.0.11-18369 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 51985e6b0a..2c95dcd381 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-18012 +API version: 1.0.11-18369 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 1d7aac9d45..aa7b38cfb4 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-18012 +API version: 1.0.11-18369 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 0417159abb..cc99cbd891 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-18012 +API version: 1.0.11-18369 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 d29b5cfc94..a01cb7d4d5 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-18012 +API version: 1.0.11-18369 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 2b9e401499..ca4676c767 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-18012 +API version: 1.0.11-18369 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 ebda8579df..18cfd06171 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-18012 +API version: 1.0.11-18369 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 039880fbd4..f13b46d995 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-18012 +API version: 1.0.11-18369 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 283d3d0248..8c99758555 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-18012 +API version: 1.0.11-18369 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 0c1276b6eb..8b1ae0f1c1 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 837e45f960..9ca5c8a6b2 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-18012 +API version: 1.0.11-18369 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 ac39e1eec7..6c2965a797 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-18012 +API version: 1.0.11-18369 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 7aa791df68..28d254847c 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-18012 +API version: 1.0.11-18369 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 63b94f3013..b3f368baa3 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-18012 +API version: 1.0.11-18369 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 df4c3e2d7d..d489e48e05 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-18012 +API version: 1.0.11-18369 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 3c5266b790..982eeb857a 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-18012 +API version: 1.0.11-18369 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 14bf500d4b..6ae9be8ca4 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-18012 +API version: 1.0.11-18369 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 8323723eff..9f587a4576 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-18012 +API version: 1.0.11-18369 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 9e7487232d..fcd7bec652 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-18012 +API version: 1.0.11-18369 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 d016e9b8ac..ed41b4222f 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-18012 +API version: 1.0.11-18369 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 31af8dd8cc..fca9081f6a 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-18012 +API version: 1.0.11-18369 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 d6184f86a9..58a545c135 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-18012 +API version: 1.0.11-18369 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 d337132dfd..20bfef74c7 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 2de62a5c55..65ddcdf8b7 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-18012 +API version: 1.0.11-18369 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 89e5173ff6..0e09211372 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-18012 +API version: 1.0.11-18369 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 0717b0c126..6f1b5803f5 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-18012 +API version: 1.0.11-18369 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 12f41e6f70..33369e3138 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-18012 +API version: 1.0.11-18369 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 4d75bbd7fb..96d76d02f9 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-18012 +API version: 1.0.11-18369 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 f1412e27c9..b6eb617df6 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-18012 +API version: 1.0.11-18369 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 82c91d35c7..ec8db6c6fd 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-18012 +API version: 1.0.11-18369 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 1d9e3cd40a..70a84e76f5 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-18012 +API version: 1.0.11-18369 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 28f98a8274..9cdbce9c2c 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-18012 +API version: 1.0.11-18369 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 a165259440..99c4fc672b 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-18012 +API version: 1.0.11-18369 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 b2b0725651..b2dd5157e5 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 cee04be34b..1318c02dec 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 fd23b7be64..96292e66d8 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 dd7fd408d2..1b8f016379 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-18012 +API version: 1.0.11-18369 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 afb3445c7d..a19f7b987e 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-18012 +API version: 1.0.11-18369 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 30cac1efb7..05ffe75c48 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-18012 +API version: 1.0.11-18369 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 e3034312f0..1794bd25a1 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-18012 +API version: 1.0.11-18369 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 98e871ed47..93a0d45698 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-18012 +API version: 1.0.11-18369 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 4423fb2ae0..86d871d564 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-18012 +API version: 1.0.11-18369 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 44e7dea366..68716e624b 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-18012 +API version: 1.0.11-18369 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 de60062881..4e0bca1073 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-18012 +API version: 1.0.11-18369 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 9b1dbdce5f..5487cb21b0 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-18012 +API version: 1.0.11-18369 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 6ee485fa88..b9c3e97db1 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 c1f867666c..3bb65ca444 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 b38612cf7e..a9e9e674e3 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-18012 +API version: 1.0.11-18369 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 4550814608..c7fc2a9298 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-18012 +API version: 1.0.11-18369 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 f3f8b1e186..dfd9f3dbb0 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-18012 +API version: 1.0.11-18369 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 794ef79091..7ed1d72d31 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-18012 +API version: 1.0.11-18369 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 dfdd5baaba..ab34b75250 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-18012 +API version: 1.0.11-18369 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 14607b9085..cdb8b9643b 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-18012 +API version: 1.0.11-18369 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 cb9771c960..0c594c1937 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-18012 +API version: 1.0.11-18369 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 efb2216061..1e30a4d8f0 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-18012 +API version: 1.0.11-18369 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 868cef1771..60957d90b2 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-18012 +API version: 1.0.11-18369 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 810c877096..c9468a8bb8 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-18012 +API version: 1.0.11-18369 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 0e6e430cda..3afb3c20bd 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-18012 +API version: 1.0.11-18369 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 5df0cec894..ea7c426729 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-18012 +API version: 1.0.11-18369 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 1881fbad47..82ddef95ff 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-18012 +API version: 1.0.11-18369 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 ec98f3e7cb..05c051aad0 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-18012 +API version: 1.0.11-18369 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 14614f908f..9f7c64281a 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-18012 +API version: 1.0.11-18369 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 ad60e497d8..21c305495f 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-18012 +API version: 1.0.11-18369 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 2e888efd8a..d2b9ee516a 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-18012 +API version: 1.0.11-18369 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 a6a5b5ee7d..954eb696f4 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-18012 +API version: 1.0.11-18369 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 94d8a9a32a..60c23a11b5 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-18012 +API version: 1.0.11-18369 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 4fefc7a361..a705e53283 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-18012 +API version: 1.0.11-18369 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 d61bb2e1a9..e2cfc0a97f 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-18012 +API version: 1.0.11-18369 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 76b4ef4df1..23a2a70c3c 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-18012 +API version: 1.0.11-18369 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 e6892f3b7f..a9433e6579 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-18012 +API version: 1.0.11-18369 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 4ecc1bef6b..9b8e91bb27 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-18012 +API version: 1.0.11-18369 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 5c846a417b..4f00dcb359 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-18012 +API version: 1.0.11-18369 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 649b86a8a6..a28c8c5bef 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-18012 +API version: 1.0.11-18369 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 432b3d8627..a12feaa3cd 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-18012 +API version: 1.0.11-18369 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 d89b3abb11..841c5c2c6c 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-18012 +API version: 1.0.11-18369 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 42d11f2213..7f927d1d69 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-18012 +API version: 1.0.11-18369 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 b81f66a3fa..b0ad8911c9 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-18012 +API version: 1.0.11-18369 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 0c93e5030f..0b39d774eb 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-18012 +API version: 1.0.11-18369 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 75f2e9d3e0..0ace46a0d3 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-18012 +API version: 1.0.11-18369 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 247b685fc4..00bf5565a2 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-18012 +API version: 1.0.11-18369 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 bd04ae7a0d..c8b0115deb 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-18012 +API version: 1.0.11-18369 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 866b478b16..4c07093586 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-18012 +API version: 1.0.11-18369 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 4177a111ab..ab66c09a97 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-18012 +API version: 1.0.11-18369 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 73d15dfd98..d10b64cf3f 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-18012 +API version: 1.0.11-18369 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 20a8e9e131..75a27bdc14 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-18012 +API version: 1.0.11-18369 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 874f39dfd1..35cc5b6d2e 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-18012 +API version: 1.0.11-18369 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 06ee7e4874..e95fad1e33 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-18012 +API version: 1.0.11-18369 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 ccf4924387..ba10a294e6 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 97ab5a9669..a35d7fb426 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 8bcd167077..8dc28a03d2 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-18012 +API version: 1.0.11-18369 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 8872e8f255..b86aea684d 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-18012 +API version: 1.0.11-18369 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 2b1fa90bf4..5b4059af51 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-18012 +API version: 1.0.11-18369 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 f78c640670..e269acab43 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-18012 +API version: 1.0.11-18369 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 4d65fdded0..1f52770d50 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-18012 +API version: 1.0.11-18369 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 5dec8f0dad..27ca81a14b 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-18012 +API version: 1.0.11-18369 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 6f25e3d12b..36f8045a1b 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-18012 +API version: 1.0.11-18369 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 02cbff859d..fd058ca6bc 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-18012 +API version: 1.0.11-18369 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 43cb4b280c..4e6027c24c 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-18012 +API version: 1.0.11-18369 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 a1bcde3772..4b475c949e 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-18012 +API version: 1.0.11-18369 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 98fd1ab1cb..5a6ba1a23b 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-18012 +API version: 1.0.11-18369 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 bca49e452f..bd9582c8ae 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-18012 +API version: 1.0.11-18369 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 b908bbfcdf..466fea6abd 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-18012 +API version: 1.0.11-18369 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 a6f6db2adc..77667a3c20 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-18012 +API version: 1.0.11-18369 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 016f41285d..bafa5c724b 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-18012 +API version: 1.0.11-18369 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 ebeb57d65f..7b340c4367 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-18012 +API version: 1.0.11-18369 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 67b7bab4b2..383da9daae 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-18012 +API version: 1.0.11-18369 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 5f1e97d0d9..b53babeaa5 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-18012 +API version: 1.0.11-18369 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 c5010eaf8e..aa403ccbfc 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-18012 +API version: 1.0.11-18369 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 a376ba9102..2a7191c264 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-18012 +API version: 1.0.11-18369 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 ee3a21775b..72ebdce8d0 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-18012 +API version: 1.0.11-18369 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 f40da58a35..a4154f35b2 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-18012 +API version: 1.0.11-18369 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 cd6500660d..06eeb504f1 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-18012 +API version: 1.0.11-18369 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 9d29205267..4a12e1f2ed 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-18012 +API version: 1.0.11-18369 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 534be35d8c..b38ddee5a5 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-18012 +API version: 1.0.11-18369 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 a10aa5a82f..70eae2268c 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-18012 +API version: 1.0.11-18369 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 3a099cf296..da8a770adb 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-18012 +API version: 1.0.11-18369 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 8f83ee4aef..ab0aaa63f2 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-18012 +API version: 1.0.11-18369 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 1cb9941400..281d56e213 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-18012 +API version: 1.0.11-18369 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 5fa1a8b9be..90c838144d 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-18012 +API version: 1.0.11-18369 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 b0b987b00d..b4de2d9b36 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-18012 +API version: 1.0.11-18369 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 5096957d29..8248a62d19 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-18012 +API version: 1.0.11-18369 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 684d16b4e8..e18a734879 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-18012 +API version: 1.0.11-18369 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 528ec68621..3bac6f2b31 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-18012 +API version: 1.0.11-18369 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 b4cfe79c41..d5b46e32b3 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-18012 +API version: 1.0.11-18369 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 d8d97186e8..7cb6b8f51c 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-18012 +API version: 1.0.11-18369 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 ad703a154f..fb62a1ad6f 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-18012 +API version: 1.0.11-18369 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 c0f83df336..f88d31aeb2 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-18012 +API version: 1.0.11-18369 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 ba9c6fd84e..47138bf9a6 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-18012 +API version: 1.0.11-18369 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 328bf48df9..6a228be2c1 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 451d1c9db1..5207da7444 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 025670cf86..6cc9fea4c9 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 a3e8278a1d..859bf1ab28 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-18012 +API version: 1.0.11-18369 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 7e3c387fa9..86c98c8dfa 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-18012 +API version: 1.0.11-18369 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 428de5d6be..deb3a944f7 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-18012 +API version: 1.0.11-18369 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 bb66478edb..d9f67036be 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-18012 +API version: 1.0.11-18369 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 e83759cf01..629118d728 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-18012 +API version: 1.0.11-18369 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 85d2a6cd9a..66f870b476 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-18012 +API version: 1.0.11-18369 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 aa711a701a..d3aa9e6986 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 b81d765c6e..3d3c791493 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 ef0989c9d5..a1a33917fa 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-18012 +API version: 1.0.11-18369 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 1908c41915..6e37af1ac7 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-18012 +API version: 1.0.11-18369 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 c444b5e799..a52d4a0ce5 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-18012 +API version: 1.0.11-18369 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 354f0f0584..e46c222bd9 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-18012 +API version: 1.0.11-18369 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 a80af912d5..d939d0ec12 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-18012 +API version: 1.0.11-18369 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 b929824e72..4c894b12c2 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-18012 +API version: 1.0.11-18369 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 714fd4a9cf..5cfe2af696 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 d89bcac874..bc0f9eab6a 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 5c27e27388..be18f5cff9 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-18012 +API version: 1.0.11-18369 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 b0163e42cc..3dfd9d6098 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-18012 +API version: 1.0.11-18369 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 20929dfba6..51c1985391 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-18012 +API version: 1.0.11-18369 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 09e5015792..08efa4750c 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-18012 +API version: 1.0.11-18369 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 49037a37e9..d9ef9d36fd 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-18012 +API version: 1.0.11-18369 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 7b237549db..52a552ac94 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-18012 +API version: 1.0.11-18369 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 23bf54984c..f303e6fb9d 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-18012 +API version: 1.0.11-18369 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 5381b118b5..c1bf26db37 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-18012 +API version: 1.0.11-18369 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 b253435279..0b997a90f8 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-18012 +API version: 1.0.11-18369 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 219b67ddc4..a33d37cc11 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-18012 +API version: 1.0.11-18369 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 ed9a4b1633..50496e15f8 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-18012 +API version: 1.0.11-18369 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 083aa1ee84..9acc834a00 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 4ce72c9e8c..9bcf9dbdc4 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-18012 +API version: 1.0.11-18369 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 0ed8dd1a23..ce855aa797 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-18012 +API version: 1.0.11-18369 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 075b8f6b70..76884611ec 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-18012 +API version: 1.0.11-18369 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 2e34eee577..1df91508cf 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-18012 +API version: 1.0.11-18369 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 7ec886daac..2303261fc0 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 1cae337664..ca1ab67d26 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 d6ebfe8a3e..d0f16a9ccc 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-18012 +API version: 1.0.11-18369 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 2d283dcb5d..61c04f8303 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-18012 +API version: 1.0.11-18369 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 9f96bf0f97..27a90ee252 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-18012 +API version: 1.0.11-18369 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 d4cd5fe174..88bfb19d47 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-18012 +API version: 1.0.11-18369 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 327e26a499..c37f2a4391 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-18012 +API version: 1.0.11-18369 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 34c89a86cb..d21344bba5 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-18012 +API version: 1.0.11-18369 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 865cc87e9e..9a00b6d3a2 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-18012 +API version: 1.0.11-18369 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 ebce6dc694..dd1332446f 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-18012 +API version: 1.0.11-18369 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 24a6968371..ec7b56e633 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-18012 +API version: 1.0.11-18369 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 836c1bd6f1..c8db2ddfa7 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-18012 +API version: 1.0.11-18369 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 8aaba10afa..f005778188 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-18012 +API version: 1.0.11-18369 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 1deef4a4fb..bc559af00d 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-18012 +API version: 1.0.11-18369 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 463ca8d2de..b16d9fd1d5 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-18012 +API version: 1.0.11-18369 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 7c7ca817da..f708091fc3 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 476b899a6a..c835759120 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-18012 +API version: 1.0.11-18369 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 dd87450b30..74389e7248 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-18012 +API version: 1.0.11-18369 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 d5de774b19..16ea78ce39 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-18012 +API version: 1.0.11-18369 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 1d4bae458b..0f90211d84 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-18012 +API version: 1.0.11-18369 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 c64e7c019c..7ef05b4c1d 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 762f72949f..c2ba54ddb4 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-18012 +API version: 1.0.11-18369 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 3c2980cf54..f5d422406c 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 9c17c662ef..cfe53f006d 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-18012 +API version: 1.0.11-18369 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 bc9f03c12d..47907686b0 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-18012 +API version: 1.0.11-18369 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 f54a7d30fe..747d5fe60d 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-18012 +API version: 1.0.11-18369 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 53d04b0c91..d2f33238d2 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-18012 +API version: 1.0.11-18369 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 51e594d324..aef74bf051 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-18012 +API version: 1.0.11-18369 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 2a428048dc..77f0e4b69a 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-18012 +API version: 1.0.11-18369 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 14042a5593..c11d6642bd 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-18012 +API version: 1.0.11-18369 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 ca7bb7a0ce..ea0db66402 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-18012 +API version: 1.0.11-18369 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 b31da88ed4..3bc7585400 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-18012 +API version: 1.0.11-18369 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 7e40fb40a3..6e07c7d1f2 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-18012 +API version: 1.0.11-18369 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 fb47578c4a..2f17df9a4c 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-18012 +API version: 1.0.11-18369 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 19ba78aefe..9cf6f9f952 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-18012 +API version: 1.0.11-18369 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 c2b756c5a4..4532e257d0 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-18012 +API version: 1.0.11-18369 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 43203fc539..7a4d1e39a8 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-18012 +API version: 1.0.11-18369 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 f668a8aa50..5188ad6c9e 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-18012 +API version: 1.0.11-18369 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 a4275f3335..4b4f389fe6 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-18012 +API version: 1.0.11-18369 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 e8cc072760..d0b34a1629 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-18012 +API version: 1.0.11-18369 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 7f20ed8a03..a907ef1341 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-18012 +API version: 1.0.11-18369 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 7033502954..014ffaac91 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-18012 +API version: 1.0.11-18369 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 bf4d14bedc..3ef55e0c45 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-18012 +API version: 1.0.11-18369 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 449fca86c7..5b1998d38c 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 ab462a44a2..6f4f70f323 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-18012 +API version: 1.0.11-18369 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 6380b4dab2..9cd9c75b81 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-18012 +API version: 1.0.11-18369 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 c4f8a6fc4e..16e24f113b 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-18012 +API version: 1.0.11-18369 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 7e752b4d77..8ad5c12dca 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-18012 +API version: 1.0.11-18369 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 0ca403afc4..fa8b069887 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-18012 +API version: 1.0.11-18369 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 c1931b8946..c6e23eeb34 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-18012 +API version: 1.0.11-18369 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 8b4d1ecd98..0973787ed6 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-18012 +API version: 1.0.11-18369 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 46f25507b1..a75c0dfaec 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 42c48ff558..880482666b 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-18012 +API version: 1.0.11-18369 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 9d6d78afc3..26d0498e75 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-18012 +API version: 1.0.11-18369 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 ba4700a331..313c3e1b2c 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-18012 +API version: 1.0.11-18369 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 18cf0ee5dc..1c7880a207 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-18012 +API version: 1.0.11-18369 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 69fd194350..2d47310d00 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-18012 +API version: 1.0.11-18369 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 7556ba5f78..f12694db40 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-18012 +API version: 1.0.11-18369 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 4b1ae800d9..cb038fae72 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 fabf7a02a4..9de2e34cc1 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-18012 +API version: 1.0.11-18369 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 d0f9553b6b..d053588ee1 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-18012 +API version: 1.0.11-18369 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 e5d512e545..8c83708c1a 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-18012 +API version: 1.0.11-18369 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 2774d95096..064a31a1ac 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-18012 +API version: 1.0.11-18369 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 a0bd353cd9..fefdeda684 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-18012 +API version: 1.0.11-18369 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 e1dd3c1554..2c10dee5d2 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-18012 +API version: 1.0.11-18369 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 94e848c774..d0b0ab5d57 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-18012 +API version: 1.0.11-18369 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 ffd42578a8..18db916f07 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-18012 +API version: 1.0.11-18369 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 d18b79e814..b61411643f 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-18012 +API version: 1.0.11-18369 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 29bede7e9b..205e3ed6e8 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-18012 +API version: 1.0.11-18369 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 082e2198c8..ab7cd11faa 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 870be38124..a3263921b0 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-18012 +API version: 1.0.11-18369 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 5e1f1a3cb9..978155e688 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-18012 +API version: 1.0.11-18369 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 3474e7bb93..5f4ad8adb0 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-18012 +API version: 1.0.11-18369 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 bbddb853ae..0441f79c53 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-18012 +API version: 1.0.11-18369 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 a1005d1a93..8a85a53895 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-18012 +API version: 1.0.11-18369 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 9380a29f5d..04d2e70f40 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-18012 +API version: 1.0.11-18369 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 74cf7fa96a..c98ee80111 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-18012 +API version: 1.0.11-18369 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 00be5f2ff5..104797890b 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-18012 +API version: 1.0.11-18369 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 f755f04f72..e194c9982c 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-18012 +API version: 1.0.11-18369 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 431c173694..73e6f8b5f4 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-18012 +API version: 1.0.11-18369 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 ac7bae961e..1ec9179087 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 65cd1199a2..ea5c427dc4 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 77aee80b78..1634d4e0c1 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-18012 +API version: 1.0.11-18369 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 8769e7fdc7..27eaa1443d 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-18012 +API version: 1.0.11-18369 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 b1de3a1462..0a792c9517 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-18012 +API version: 1.0.11-18369 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 767d312cac..72bd99695f 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-18012 +API version: 1.0.11-18369 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 4f7f85762a..77485e214b 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-18012 +API version: 1.0.11-18369 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 78cd36fab6..c617408baa 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-18012 +API version: 1.0.11-18369 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 cadac16430..c45868bb34 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-18012 +API version: 1.0.11-18369 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 cde439810e..2a92e06980 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-18012 +API version: 1.0.11-18369 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 76b7df0f46..367401ca78 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-18012 +API version: 1.0.11-18369 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 bd0df8278b..7ab0a054fd 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-18012 +API version: 1.0.11-18369 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 7e6e8505f1..353e4816b8 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-18012 +API version: 1.0.11-18369 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 915d707904..bf068cbd6c 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-18012 +API version: 1.0.11-18369 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 f9e1615ae0..7f877ef40f 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-18012 +API version: 1.0.11-18369 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 195b0aa590..d2aadc0306 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-18012 +API version: 1.0.11-18369 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 93ed515e2d..89df51a844 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-18012 +API version: 1.0.11-18369 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 05912efe5e..57f222ea7f 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-18012 +API version: 1.0.11-18369 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 395a7b68df..dd6bf0b60f 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-18012 +API version: 1.0.11-18369 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 b307c7624a..e285f6f9ac 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-18012 +API version: 1.0.11-18369 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 b1d33a746d..896d1cb5ab 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-18012 +API version: 1.0.11-18369 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 5e4a85fe81..b7afcbf936 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-18012 +API version: 1.0.11-18369 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 6249b9d5b4..5cf369f3f3 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-18012 +API version: 1.0.11-18369 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 428382d9dd..3b6a02f1cb 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-18012 +API version: 1.0.11-18369 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 0240fe475b..59eac2cc70 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 6b7345c340..6a657afc5d 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-18012 +API version: 1.0.11-18369 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 1c3d0b7d35..a7a7891128 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-18012 +API version: 1.0.11-18369 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 f6d8f31ec9..978508b7ad 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-18012 +API version: 1.0.11-18369 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 92e79ead49..bb03023539 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 9a7acb548b..3546cb0296 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-18012 +API version: 1.0.11-18369 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 c12de58a93..8c7b4b4365 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-18012 +API version: 1.0.11-18369 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 a7503bf922..440dface3b 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-18012 +API version: 1.0.11-18369 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 8185ad3b6b..cf08931ab4 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-18012 +API version: 1.0.11-18369 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 5d13e7f78d..79bf4f503f 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-18012 +API version: 1.0.11-18369 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 2a8d50ab9e..df009e25fc 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-18012 +API version: 1.0.11-18369 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 6499010700..c516708251 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-18012 +API version: 1.0.11-18369 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 d17b457094..4ab0d91b38 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-18012 +API version: 1.0.11-18369 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 82722410ba..abb87e411c 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 abaad36825..fcd6f71551 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-18012 +API version: 1.0.11-18369 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 fa16a5c2dc..2ea910f63c 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-18012 +API version: 1.0.11-18369 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 c97e5dad31..25dfc6338e 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-18012 +API version: 1.0.11-18369 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 7391d562bc..ba42bfd787 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-18012 +API version: 1.0.11-18369 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 ccf2c59285..5c8f9db20f 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-18012 +API version: 1.0.11-18369 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 8c0016264c..746ebf6933 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-18012 +API version: 1.0.11-18369 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 87358ccb23..98af08e626 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-18012 +API version: 1.0.11-18369 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 eb47080808..cc2970051e 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-18012 +API version: 1.0.11-18369 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 5e92dec2f8..4fecfc8505 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-18012 +API version: 1.0.11-18369 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 2634ae57fe..3f0a06dedc 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-18012 +API version: 1.0.11-18369 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 8544bf0db1..fd74003e25 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 12dfad975d..e339197d8a 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-18012 +API version: 1.0.11-18369 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 4d5603b550..d69d030150 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-18012 +API version: 1.0.11-18369 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 4ad38ff534..d69c77041a 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-18012 +API version: 1.0.11-18369 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 c3ea15d832..35baddf153 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-18012 +API version: 1.0.11-18369 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 cd031bb254..c27e113891 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-18012 +API version: 1.0.11-18369 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 7d6b8c4927..610bfdef7c 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-18012 +API version: 1.0.11-18369 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 4de47e6649..f1d8a1bd76 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-18012 +API version: 1.0.11-18369 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 3cfee7d449..0ee0c03b39 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-18012 +API version: 1.0.11-18369 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 3c7e0c1e19..9d1dc6616b 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 d008d2e7bd..b40569f0f0 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-18012 +API version: 1.0.11-18369 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 7bbb74b01f..3a1c0557f6 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-18012 +API version: 1.0.11-18369 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 5504352c70..6afd1da434 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-18012 +API version: 1.0.11-18369 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 aabc83bc4b..ceba5fe013 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 0b83020ad6..956745237b 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-18012 +API version: 1.0.11-18369 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 320eeba888..3d2993729f 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-18012 +API version: 1.0.11-18369 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 2ef34bdf04..2b050bf499 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-18012 +API version: 1.0.11-18369 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 14ded580c0..8b724f3ed2 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-18012 +API version: 1.0.11-18369 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 c4970075e5..e197a6d7de 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-18012 +API version: 1.0.11-18369 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 63ef465d07..946456eddc 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-18012 +API version: 1.0.11-18369 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 256fc9ebf5..9e5e288aa3 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-18012 +API version: 1.0.11-18369 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 55ac6fc6a6..3aadc68a3e 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-18012 +API version: 1.0.11-18369 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 e20b72fce9..4d4a3e3f4f 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-18012 +API version: 1.0.11-18369 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 6015412c3f..f2d84b0812 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-18012 +API version: 1.0.11-18369 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 bf958e8380..42559e7df0 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-18012 +API version: 1.0.11-18369 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 8686c42796..b48290c0df 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 e3465d05ab..3ddc4beaef 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-18012 +API version: 1.0.11-18369 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 af45119fd2..5bceb9c25b 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-18012 +API version: 1.0.11-18369 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 5cd337844f..6bb92c3897 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-18012 +API version: 1.0.11-18369 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 5684555f96..9ae342bf7e 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-18012 +API version: 1.0.11-18369 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 9884367a48..24c446741a 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-18012 +API version: 1.0.11-18369 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 16baf22f2e..9ed9a3da2b 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-18012 +API version: 1.0.11-18369 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 99334f87fe..29fef30b11 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 6701a1ca39..477ad2e204 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-18012 +API version: 1.0.11-18369 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 9448193a76..b8a15737d1 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-18012 +API version: 1.0.11-18369 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 8819c7740b..2d29c38e9e 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-18012 +API version: 1.0.11-18369 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 1df4738f0f..97bbdc355b 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-18012 +API version: 1.0.11-18369 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 0b2890dde6..9534487b3d 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-18012 +API version: 1.0.11-18369 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 100f6a502f..4b5ecb4ced 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-18012 +API version: 1.0.11-18369 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 ee49a7ea0c..44bf027e72 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-18012 +API version: 1.0.11-18369 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 906f4c92c1..93422685d9 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-18012 +API version: 1.0.11-18369 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 79b2707f6b..14d7731628 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-18012 +API version: 1.0.11-18369 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 256781d2b0..19dc043421 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-18012 +API version: 1.0.11-18369 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 563ce113c5..3b9542d292 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-18012 +API version: 1.0.11-18369 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 eb41197c7b..abeb4f6495 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 9645055ac9..dc1dea0825 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-18012 +API version: 1.0.11-18369 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 e8203cca38..c4c7f5c6e8 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-18012 +API version: 1.0.11-18369 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 88e656457b..0ab6c7b096 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-18012 +API version: 1.0.11-18369 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 7dc6bd542a..f9af1f946c 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-18012 +API version: 1.0.11-18369 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 39ee834a48..500d2061fb 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 2cc0e10064..88db625a17 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-18012 +API version: 1.0.11-18369 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 7f24fb9e72..c72f9b7640 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-18012 +API version: 1.0.11-18369 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 6343608976..2a5df49068 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-18012 +API version: 1.0.11-18369 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 29dcbadb8b..3aa5571d82 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-18012 +API version: 1.0.11-18369 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 08016ab933..741fe543c7 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-18012 +API version: 1.0.11-18369 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 17f7300899..d33b5bb1c7 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-18012 +API version: 1.0.11-18369 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 9f53fa32c7..11d13c154e 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-18012 +API version: 1.0.11-18369 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 cf68c78ae5..93c8836b4d 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-18012 +API version: 1.0.11-18369 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 5dfca47e53..af50a5e498 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-18012 +API version: 1.0.11-18369 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 14cd8105ef..492b84046e 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 5969030968..d31067a0f3 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-18012 +API version: 1.0.11-18369 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 e76cd7465e..fc6879487a 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-18012 +API version: 1.0.11-18369 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 8da9a025ce..3513549689 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-18012 +API version: 1.0.11-18369 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 0d595d7ea2..3c9c3dcc4c 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-18012 +API version: 1.0.11-18369 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 2efd463906..062abf93db 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-18012 +API version: 1.0.11-18369 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 2241316af3..441c63412f 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-18012 +API version: 1.0.11-18369 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 2908e0d022..f1d271eabb 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-18012 +API version: 1.0.11-18369 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 31087d247a..30edc1eba2 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-18012 +API version: 1.0.11-18369 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 3d492b4e38..80cc4e2bd7 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-18012 +API version: 1.0.11-18369 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 e8a25fcde6..50887f3326 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-18012 +API version: 1.0.11-18369 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 a572a4406c..d2198fa818 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-18012 +API version: 1.0.11-18369 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 75b6f95b67..446a650073 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-18012 +API version: 1.0.11-18369 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 b9b9086c04..e0a75d52c3 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-18012 +API version: 1.0.11-18369 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 c2fe6c4e84..12fdb12f67 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 693291d942..045c319a00 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-18012 +API version: 1.0.11-18369 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 6b68b9390e..c61433d6fc 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-18012 +API version: 1.0.11-18369 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 30407e723f..1f31c522e2 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-18012 +API version: 1.0.11-18369 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 7cf6257d01..e51ed4e3b5 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-18012 +API version: 1.0.11-18369 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 d1be2daf5d..6ed8b03729 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-18012 +API version: 1.0.11-18369 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 05f6a4d109..7900d378be 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-18012 +API version: 1.0.11-18369 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 d805d88233..3ad577c83e 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-18012 +API version: 1.0.11-18369 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 bbcb6d3950..6fdd1de04a 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-18012 +API version: 1.0.11-18369 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 8a390302f7..2813eca379 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 64ad6ea49b..661a0f2228 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-18012 +API version: 1.0.11-18369 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 9d6b5dcc6d..2292d7baf2 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-18012 +API version: 1.0.11-18369 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 7d09279f69..5549166a7e 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-18012 +API version: 1.0.11-18369 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 f1af3e60a9..74d6da98a3 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-18012 +API version: 1.0.11-18369 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 7b001cfa0b..1a5d484616 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 d396e80bfc..e6086ffe19 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-18012 +API version: 1.0.11-18369 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 cb3eacc6fc..bd022cca93 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-18012 +API version: 1.0.11-18369 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 29e51ee961..ce9bebfdfa 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-18012 +API version: 1.0.11-18369 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 f064f272c5..e9167e37f1 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-18012 +API version: 1.0.11-18369 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 fea514fd94..db3704dadd 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-18012 +API version: 1.0.11-18369 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 6b90bd528d..585810b212 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 a08f286bac..4b82550d90 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-18012 +API version: 1.0.11-18369 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 5699a18dbb..814bd9c11e 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-18012 +API version: 1.0.11-18369 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 8798e9bdc1..8feaf8071d 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-18012 +API version: 1.0.11-18369 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 30619849dd..ff55169a5c 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-18012 +API version: 1.0.11-18369 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 31d077e5be..158f0b5e1c 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 0c23b21dba..4c8c7524d9 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-18012 +API version: 1.0.11-18369 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 db5b0c229f..56301d5119 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ 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 094962da0b..362bdf1449 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-18012 +API version: 1.0.11-18369 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 18e0f58d51..1c34b00892 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-18012 +API version: 1.0.11-18369 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 270242e0b1..02a416478d 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-18012 +API version: 1.0.11-18369 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 1171e078cf..6947a2d529 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-18012 +API version: 1.0.11-18369 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 d97aaef7af..66c57b7863 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-18012 +API version: 1.0.11-18369 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 1f10fcfc46..b96baa8c5a 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-18012 +API version: 1.0.11-18369 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 76610094a6..9ee879df60 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-18012 +API version: 1.0.11-18369 Contact: intersight@cisco.com */ diff --git a/website/docs/d/capability_adapter_update_constraint_meta.html.markdown b/website/docs/d/capability_adapter_update_constraint_meta.html.markdown index 1b9c280b66..d3cc241e06 100644 --- a/website/docs/d/capability_adapter_update_constraint_meta.html.markdown +++ b/website/docs/d/capability_adapter_update_constraint_meta.html.markdown @@ -25,5 +25,4 @@ The following arguments can be used to get data of already created objects in In * `name`:(string) An unique identifer for a capability descriptor. * `platform_type`:(string) Platform type for which the constraint is to be enforced. * `shared_scope`:(string) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs. -* `supported_platform`:(string) Platform for which the constraint is to be enforced. diff --git a/website/docs/d/catalystsdwan_vedge_device.html.markdown b/website/docs/d/catalystsdwan_vedge_device.html.markdown index df4ea1561e..57b0274989 100644 --- a/website/docs/d/catalystsdwan_vedge_device.html.markdown +++ b/website/docs/d/catalystsdwan_vedge_device.html.markdown @@ -17,6 +17,7 @@ The following arguments can be used to get data of already created objects in In * `account_moid`:(string) The Account ID for this managed object. * `config_status_message`:(string) The Catalyst SDWAN device config status message. * `create_time`:(string) The time when this managed object was created. +* `device_id`:(string) The Catalyst SDWAN device id. * `device_mo_id`:(string) The database identifier of the registered device of an object. * `device_state`:(string) The Catalyst SDWAN device state. * `device_type`:(string) The categorization of the device type. Optional parameter to categorize devices by product type. For example, Meraki device types are wireless, appliance, switch, systemsManager, camera, cellularGateway, sensor, and secureConnect. diff --git a/website/docs/d/compute_server_setting.html.markdown b/website/docs/d/compute_server_setting.html.markdown index 13f2099549..f60028c5d1 100644 --- a/website/docs/d/compute_server_setting.html.markdown +++ b/website/docs/d/compute_server_setting.html.markdown @@ -32,6 +32,7 @@ The following arguments can be used to get data of already created objects in In * `moid`:(string) The unique identifier of this Managed Object instance. * `name`:(string) The property used to identify the name of the server it is associated with. * `one_time_boot_device`:(string) The name of the device chosen by user for configuring One-Time Boot device. +* `reset_memory_errors`:(string) Reset Correctable and Uncorrectable ECC errors on all the DIMMs present in the server.* `Ready` - Reset memory errors operation is allowed on the server in this state.* `Reset` - Trigger reset memory errors operation on a server. * `rn`:(string) The Relative Name uniquely identifies an object within a given context. * `shared_scope`:(string) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs. * `tpm_reset`:(string) Clear the configuration of TPM chip in the server.* `None` - Perform no action on the TPM.* `ClearTpm` - Clear the configuration and restore factory defaults of TPM chip in the server. diff --git a/website/docs/d/ipmioverlan_policy.html.markdown b/website/docs/d/ipmioverlan_policy.html.markdown index 24f5747ab7..d52aae4c6a 100644 --- a/website/docs/d/ipmioverlan_policy.html.markdown +++ b/website/docs/d/ipmioverlan_policy.html.markdown @@ -19,11 +19,11 @@ The following arguments can be used to get data of already created objects in In * `description`:(string) Description of the policy. * `domain_group_moid`:(string) The DomainGroup ID for this managed object. * `enabled`:(bool) State of the IPMI Over LAN service on the endpoint. -* `encryption_key`:(string) 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. +* `encryption_key`:(string) 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 C-Series servers. FI-attached C-Series servers with firmware at minimum of 4.2.3a support this configuration. B/X-Series 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. * `is_encryption_key_set`:(bool) Indicates whether the value of the 'encryptionKey' property has been set. * `mod_time`:(string) The time when this managed object was last modified. * `moid`:(string) The unique identifier of this Managed Object instance. * `name`:(string) Name of the concrete policy. -* `privilege`:(string) 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. +* `privilege`:(string) The highest privilege level that can be assigned to an IPMI session on a server. This configuration is supported by all Standalone C-Series servers. FI-attached C-Series servers with firmware at minimum of 4.2.3a support this configuration. B/X-Series servers with firmware at minimum of 5.1.0.x support this configuration. Privilege level user is not supported for B/X-Series 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. * `shared_scope`:(string) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs. diff --git a/website/docs/d/ipmioverlan_policy_inventory.html.markdown b/website/docs/d/ipmioverlan_policy_inventory.html.markdown index 61253d91b1..e95b1a8168 100644 --- a/website/docs/d/ipmioverlan_policy_inventory.html.markdown +++ b/website/docs/d/ipmioverlan_policy_inventory.html.markdown @@ -20,11 +20,11 @@ The following arguments can be used to get data of already created objects in In * `device_mo_id`:(string) Device ID of the entity from where inventory is reported. * `domain_group_moid`:(string) The DomainGroup ID for this managed object. * `enabled`:(bool) State of the IPMI Over LAN service on the endpoint. -* `encryption_key`:(string) 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. +* `encryption_key`:(string) 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 C-Series servers. FI-attached C-Series servers with firmware at minimum of 4.2.3a support this configuration. B/X-Series 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. * `is_encryption_key_set`:(bool) Indicates whether the value of the 'encryptionKey' property has been set. * `mod_time`:(string) The time when this managed object was last modified. * `moid`:(string) The unique identifier of this Managed Object instance. * `name`:(string) Name of the inventoried policy object. -* `privilege`:(string) 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. +* `privilege`:(string) The highest privilege level that can be assigned to an IPMI session on a server. This configuration is supported by all Standalone C-Series servers. FI-attached C-Series servers with firmware at minimum of 4.2.3a support this configuration. B/X-Series servers with firmware at minimum of 5.1.0.x support this configuration. Privilege level user is not supported for B/X-Series 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. * `shared_scope`:(string) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs. diff --git a/website/docs/d/scheduler_task_schedule.html.markdown b/website/docs/d/scheduler_task_schedule.html.markdown index 6d16b6f755..acdd9a9db2 100644 --- a/website/docs/d/scheduler_task_schedule.html.markdown +++ b/website/docs/d/scheduler_task_schedule.html.markdown @@ -15,15 +15,15 @@ All objects matching the filter criteria are fetched through pagination. To access the ith object of the results obtained, use `data.intersight_scheduler_task_schedule..results[i].`. The following arguments can be used to get data of already created objects in Intersight appliance: * `account_moid`:(string) The Account ID for this managed object. -* `action`:(string) The action of the scheduled task such as suspend or resume.* `None` - No action is set (default).* `Suspend` - Suspend a scheduled task indefinitely.* `Resume` - Resume a suspended scheduled task.* `SuspendTill` - Suspend the scheduled task until a specified end-date. +* `action`:(string) The action of the scheduled task such as suspend or resume.* `None` - No action is set (default).* `Suspend` - Suspend a scheduled task indefinitely.* `Resume` - Resume a suspended scheduled task.* `SuspendTill` - Suspend the scheduled task until a specified end-date. Not supported in this release. * `create_time`:(string) The time when this managed object was created. * `description`:(string) A description to describe the schedule for easier identification. * `domain_group_moid`:(string) The DomainGroup ID for this managed object. -* `last_action`:(string) The last action for the scheduled task is saved in this field. Set to none if there was no action.* `None` - No action is set (default).* `Suspend` - Suspend a scheduled task indefinitely.* `Resume` - Resume a suspended scheduled task.* `SuspendTill` - Suspend the scheduled task until a specified end-date. +* `last_action`:(string) The last action for the scheduled task is saved in this field. Set to none if there was no action.* `None` - No action is set (default).* `Suspend` - Suspend a scheduled task indefinitely.* `Resume` - Resume a suspended scheduled task.* `SuspendTill` - Suspend the scheduled task until a specified end-date. Not supported in this release. * `mod_time`:(string) The time when this managed object was last modified. * `moid`:(string) The unique identifier of this Managed Object instance. * `name`:(string) A schedule name for easier identification (not required to be unique). * `shared_scope`:(string) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs. * `suspend_end_time`:(string) Suspend a task until an end date. this applies only to the action suspendTill. -* `type`:(string) An Enum describing the type of scheduler to use.* `None` - No value was set for the schedule type (Enum value None).* `OneTime` - Define a one-time task execution time that will not automatically repeat.* `Recurring` - Specify a recurring task cadence based on a predefined pattern, such as daily, weekly, monthly, yearly, or every pattern. This option is not currently supported. +* `type`:(string) An Enum describing the type of scheduler to use.* `None` - No value was set for the schedule type (Enum value None).* `OneTime` - Define a one-time task execution time that will not automatically repeat.* `Recurring` - Specify a recurring task cadence based on a predefined pattern, such as daily, weekly, monthly, or every pattern. diff --git a/website/docs/d/server_profile.html.markdown b/website/docs/d/server_profile.html.markdown index 3afa929416..bd1fe86654 100644 --- a/website/docs/d/server_profile.html.markdown +++ b/website/docs/d/server_profile.html.markdown @@ -22,6 +22,7 @@ The following arguments can be used to get data of already created objects in In * `description`:(string) Description of the profile. * `domain_group_moid`:(string) The DomainGroup ID for this managed object. * `is_pmc_deployed_secure_passphrase_set`:(bool) Indicates whether the value of the 'pmcDeployedSecurePassphrase' property has been set. +* `management_mode`:(string) The management mode of the server.* `IntersightStandalone` - Intersight Standalone mode of operation.* `Intersight` - Intersight managed mode of operation. * `mod_time`:(string) The time when this managed object was last modified. * `moid`:(string) The unique identifier of this Managed Object instance. * `name`:(string) Name of the profile instance or profile template. diff --git a/website/docs/d/server_profile_template.html.markdown b/website/docs/d/server_profile_template.html.markdown index 74e0d26838..0f779335bd 100644 --- a/website/docs/d/server_profile_template.html.markdown +++ b/website/docs/d/server_profile_template.html.markdown @@ -19,6 +19,7 @@ The following arguments can be used to get data of already created objects in In * `create_time`:(string) The time when this managed object was created. * `description`:(string) Description of the profile. * `domain_group_moid`:(string) The DomainGroup ID for this managed object. +* `management_mode`:(string) The management mode of the server.* `IntersightStandalone` - Intersight Standalone mode of operation.* `Intersight` - Intersight managed mode of operation. * `mod_time`:(string) The time when this managed object was last modified. * `moid`:(string) The unique identifier of this Managed Object instance. * `name`:(string) Name of the profile instance or profile template. diff --git a/website/docs/d/snmp_policy.html.markdown b/website/docs/d/snmp_policy.html.markdown index 7d582ed85b..792421fe8f 100644 --- a/website/docs/d/snmp_policy.html.markdown +++ b/website/docs/d/snmp_policy.html.markdown @@ -14,7 +14,7 @@ The results of this data source are stored in `results` property. All objects matching the filter criteria are fetched through pagination. To access the ith object of the results obtained, use `data.intersight_snmp_policy..results[i].`. The following arguments can be used to get data of already created objects in Intersight appliance: -* `access_community_string`:(string) The default SNMPv1, SNMPv2c community name or SNMPv3 username to include on any trap messages sent to the SNMP host. The name can be 18 characters long. +* `access_community_string`:(string) The default SNMPv1, SNMPv2c community name or SNMPv3 username to include on any trap messages sent to the SNMP host. The name can be 32 characters long. * `account_moid`:(string) The Account ID for this managed object. * `community_access`:(string) Controls access to the information in the inventory tables. Applicable only for SNMPv1 and SNMPv2c users.* `Disabled` - Blocks access to the information in the inventory tables.* `Limited` - Partial access to read the information in the inventory tables.* `Full` - Full access to read the information in the inventory tables. * `create_time`:(string) The time when this managed object was created. diff --git a/website/docs/d/snmp_policy_inventory.html.markdown b/website/docs/d/snmp_policy_inventory.html.markdown index 45a72645f9..8bea86d83b 100644 --- a/website/docs/d/snmp_policy_inventory.html.markdown +++ b/website/docs/d/snmp_policy_inventory.html.markdown @@ -14,7 +14,7 @@ The results of this data source are stored in `results` property. All objects matching the filter criteria are fetched through pagination. To access the ith object of the results obtained, use `data.intersight_snmp_policy_inventory..results[i].`. The following arguments can be used to get data of already created objects in Intersight appliance: -* `access_community_string`:(string) The default SNMPv1, SNMPv2c community name or SNMPv3 username to include on any trap messages sent to the SNMP host. The name can be 18 characters long. +* `access_community_string`:(string) The default SNMPv1, SNMPv2c community name or SNMPv3 username to include on any trap messages sent to the SNMP host. The name can be 32 characters long. * `account_moid`:(string) The Account ID for this managed object. * `community_access`:(string) Controls access to the information in the inventory tables. Applicable only for SNMPv1 and SNMPv2c users.* `Disabled` - Blocks access to the information in the inventory tables.* `Limited` - Partial access to read the information in the inventory tables.* `Full` - Full access to read the information in the inventory tables. * `create_time`:(string) The time when this managed object was created. diff --git a/website/docs/d/storage_drive_group.html.markdown b/website/docs/d/storage_drive_group.html.markdown index e94235c500..92555ae508 100644 --- a/website/docs/d/storage_drive_group.html.markdown +++ b/website/docs/d/storage_drive_group.html.markdown @@ -21,7 +21,7 @@ The following arguments can be used to get data of already created objects in In * `moid`:(string) The unique identifier of this Managed Object instance. * `name`:(string) 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. * `raid_level`:(string) 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. -* `secure_drive_group`:(bool) 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. +* `secure_drive_group`:(bool) Enables/disables the drive security on all the drives used in this policy. This flag just enables the drive security and only after Remote/Manual key setting configured, the actual security will be applied. * `shared_scope`:(string) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs. * `type`:(int) Type of drive selection to be used for this drive group.* `0` - Drives are selected manually by the user.* `1` - Drives are selected automatically based on the RAID and virtual drive configuration. diff --git a/website/docs/d/storage_drive_security_policy.html.markdown b/website/docs/d/storage_drive_security_policy.html.markdown index 236e41c953..be050151ce 100644 --- a/website/docs/d/storage_drive_security_policy.html.markdown +++ b/website/docs/d/storage_drive_security_policy.html.markdown @@ -3,12 +3,12 @@ subcategory: "storage" layout: "intersight" page_title: "Intersight: intersight_storage_drive_security_policy" description: |- - The drive security policy models the KMIP server related configuration that can be applied on multiple servers. Storage controller encryption can be enabled through this policy using remote keys from a KMIP server. + The drive security policy defines the configuration for a manual key or a KMIP server, which can be applied to multiple servers. You can enable drive security on the servers using either configuration.. --- # Data Source: intersight_storage_drive_security_policy -The drive security policy models the KMIP server related configuration that can be applied on multiple servers. Storage controller encryption can be enabled through this policy using remote keys from a KMIP server. +The drive security policy defines the configuration for a manual key or a KMIP server, which can be applied to multiple servers. You can enable drive security on the servers using either configuration.. ## Argument Reference The results of this data source are stored in `results` property. All objects matching the filter criteria are fetched through pagination. diff --git a/website/docs/d/storage_storage_policy.html.markdown b/website/docs/d/storage_storage_policy.html.markdown index af9112c84a..9913834362 100644 --- a/website/docs/d/storage_storage_policy.html.markdown +++ b/website/docs/d/storage_storage_policy.html.markdown @@ -3,12 +3,12 @@ subcategory: "storage" layout: "intersight" page_title: "Intersight: intersight_storage_storage_policy" description: |- - The storage policy models the reusable storage related configuration that can be applied on many servers. This policy allows creation of RAID groups using existing disk group policies and virtual drives on the drive groups. The user has options to move all unused disks to JBOD or Unconfigured good state. The encryption of drives can be enabled through this policy using remote keys from a KMIP server. + The storage policy models the reusable storage related configuration that can be applied on many servers. This policy allows creation of RAID groups using existing disk group policies and virtual drives on the drive groups. The user has options to move all unused disks to JBOD or Unconfigured good state. The security of drives can be enabled through this policy using remote keys from a KMIP server or Manually configured keys. --- # Data Source: intersight_storage_storage_policy -The storage policy models the reusable storage related configuration that can be applied on many servers. This policy allows creation of RAID groups using existing disk group policies and virtual drives on the drive groups. The user has options to move all unused disks to JBOD or Unconfigured good state. The encryption of drives can be enabled through this policy using remote keys from a KMIP server. +The storage policy models the reusable storage related configuration that can be applied on many servers. This policy allows creation of RAID groups using existing disk group policies and virtual drives on the drive groups. The user has options to move all unused disks to JBOD or Unconfigured good state. The security of drives can be enabled through this policy using remote keys from a KMIP server or Manually configured keys. ## Argument Reference The results of this data source are stored in `results` property. All objects matching the filter criteria are fetched through pagination. diff --git a/website/docs/r/energy_metrics.html.markdown b/website/docs/r/energy_metrics.html.markdown new file mode 100644 index 0000000000..1ede6f1d45 --- /dev/null +++ b/website/docs/r/energy_metrics.html.markdown @@ -0,0 +1,64 @@ +--- +subcategory: "energy" +layout: "intersight" +page_title: "Intersight: intersight_energy_metrics" +description: |- + Returns carbon intensity, power breakdown, and electricity rate power metrics for a set of locations and a time span. + +--- + +# Resource: intersight_energy_metrics +Returns carbon intensity, power breakdown, and electricity rate power metrics for a set of locations and a time span. +## Argument Reference +The following arguments are supported: +* `account_moid`:(string)(ReadOnly) The Account ID for this managed object. +* `ancestors`:(Array)(ReadOnly) An array of relationships to moBaseMo resources. +This complex property has following sub-properties: + + `moid`:(string) The Moid of the referenced REST resource. + + `object_type`:(string) The fully-qualified name of the remote type referred by this relationship. + + `selector`:(string) An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'. +* `create_time`:(string)(ReadOnly) The time when this managed object was created. +* `domain_group_moid`:(string)(ReadOnly) The DomainGroup ID for this managed object. +* `mod_time`:(string)(ReadOnly) The time when this managed object was last modified. +* `moid`:(string) The unique identifier of this Managed Object instance. +* `owners`: + (Array of schema.TypeString) -(ReadOnly) +* `parent`:(HashMap) -(ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. +This complex property has following sub-properties: + + `moid`:(string) The Moid of the referenced REST resource. + + `object_type`:(string) The fully-qualified name of the remote type referred by this relationship. + + `selector`:(string) An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'. +* `permission_resources`:(Array)(ReadOnly) An array of relationships to moBaseMo resources. +This complex property has following sub-properties: + + `moid`:(string) The Moid of the referenced REST resource. + + `object_type`:(string) The fully-qualified name of the remote type referred by this relationship. + + `selector`:(string) An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'. +* `shared_scope`:(string)(ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs. +* `tags`:(Array) +This complex property has following sub-properties: + + `key`:(string) The string representation of a tag key. + + `value`:(string) The string representation of a tag value. +* `version_context`:(HashMap) -(ReadOnly) The versioning info for this managed object. +This complex property has following sub-properties: + + `interested_mos`:(Array) +This complex property has following sub-properties: + + `moid`:(string) The Moid of the referenced REST resource. + + `object_type`:(string) The fully-qualified name of the remote type referred by this relationship. + + `selector`:(string) An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'. + + `marked_for_deletion`:(bool)(ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy. + + `object_type`:(string) The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property. + + `ref_mo`:(HashMap) -(ReadOnly) A reference to the original Managed Object. +This complex property has following sub-properties: + + `moid`:(string) The Moid of the referenced REST resource. + + `object_type`:(string) The fully-qualified name of the remote type referred by this relationship. + + `selector`:(string) An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'. + + `timestamp`:(string)(ReadOnly) The time this versioned Managed Object was created. + + `nr_version`:(string)(ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id. + + `version_type`:(string)(ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.* `Modified` - Version created every time an object is modified.* `Configured` - Version created every time an object is configured to the service profile.* `Deployed` - Version created for objects related to a service profile when it is deployed. + + +## Import +`intersight_energy_metrics` can be imported using the Moid of the object, e.g. +``` +$ terraform import intersight_energy_metrics.example 1234567890987654321abcde +``` diff --git a/website/docs/r/fabric_eth_network_group_policy.html.markdown b/website/docs/r/fabric_eth_network_group_policy.html.markdown index 04ada35a8c..2a1d53e871 100644 --- a/website/docs/r/fabric_eth_network_group_policy.html.markdown +++ b/website/docs/r/fabric_eth_network_group_policy.html.markdown @@ -83,7 +83,7 @@ This complex property has following sub-properties: * `vlan_settings`:(HashMap) - VLAN configuration for the virtual interface. This complex property has following sub-properties: + `allowed_vlans`:(string) Allowed VLAN IDs of the virtual interface. A list of comma separated VLAN ids and/or VLAN id ranges. - + `native_vlan`:(int) 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. + + `native_vlan`:(int) Native VLAN ID of the virtual interface or the corresponding Vethernet on the peer Fabric Interconnect to which the virtual interface is connected. Native VLAN ID maps all incoming untagged traffic i.e. packets without a VLAN tag to the native VLAN for switching purposes. If the native VLAN is not a part of the allowed VLANs, it will automatically be added to the list of allowed VLANs. A native VLAN ID of 0 will indicate to the system to use the system default native VLAN ID and will also prevent native VLAN from being added to the allowed VLAN list. + `object_type`:(string) The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property. + `qinq_enabled`:(bool) Enable QinQ (802.1Q-in-802.1Q) Tunneling on the vNIC. + `qinq_vlan`:(int) Select the VLAN ID for VIC QinQ (802.1Q-in-802.1Q) Tunneling. diff --git a/website/docs/r/ipmioverlan_policy.html.markdown b/website/docs/r/ipmioverlan_policy.html.markdown index 0a9da0af5e..f74a6f40c5 100644 --- a/website/docs/r/ipmioverlan_policy.html.markdown +++ b/website/docs/r/ipmioverlan_policy.html.markdown @@ -47,7 +47,7 @@ This complex property has following sub-properties: * `description`:(string) Description of the policy. * `domain_group_moid`:(string)(ReadOnly) The DomainGroup ID for this managed object. * `enabled`:(bool) State of the IPMI Over LAN service on the endpoint. -* `encryption_key`:(string) 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. +* `encryption_key`:(string) 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 C-Series servers. FI-attached C-Series servers with firmware at minimum of 4.2.3a support this configuration. B/X-Series 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. * `is_encryption_key_set`:(bool)(ReadOnly) Indicates whether the value of the 'encryptionKey' property has been set. * `mod_time`:(string)(ReadOnly) The time when this managed object was last modified. * `moid`:(string) The unique identifier of this Managed Object instance. @@ -69,7 +69,7 @@ This complex property has following sub-properties: + `moid`:(string) The Moid of the referenced REST resource. + `object_type`:(string) The fully-qualified name of the remote type referred by this relationship. + `selector`:(string) An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'. -* `privilege`:(string) 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. +* `privilege`:(string) The highest privilege level that can be assigned to an IPMI session on a server. This configuration is supported by all Standalone C-Series servers. FI-attached C-Series servers with firmware at minimum of 4.2.3a support this configuration. B/X-Series servers with firmware at minimum of 5.1.0.x support this configuration. Privilege level user is not supported for B/X-Series 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. * `profiles`:(Array) An array of relationships to policyAbstractConfigProfile resources. This complex property has following sub-properties: + `moid`:(string) The Moid of the referenced REST resource. diff --git a/website/docs/r/scheduler_task_schedule.html.markdown b/website/docs/r/scheduler_task_schedule.html.markdown index 37cbc35c72..c28ffab2e6 100644 --- a/website/docs/r/scheduler_task_schedule.html.markdown +++ b/website/docs/r/scheduler_task_schedule.html.markdown @@ -12,7 +12,7 @@ Metadata used to schedule one-time or repeated tasks. ## Argument Reference The following arguments are supported: * `account_moid`:(string)(ReadOnly) The Account ID for this managed object. -* `action`:(string) The action of the scheduled task such as suspend or resume.* `None` - No action is set (default).* `Suspend` - Suspend a scheduled task indefinitely.* `Resume` - Resume a suspended scheduled task.* `SuspendTill` - Suspend the scheduled task until a specified end-date. +* `action`:(string) The action of the scheduled task such as suspend or resume.* `None` - No action is set (default).* `Suspend` - Suspend a scheduled task indefinitely.* `Resume` - Resume a suspended scheduled task.* `SuspendTill` - Suspend the scheduled task until a specified end-date. Not supported in this release. * `ancestors`:(Array)(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties: + `moid`:(string) The Moid of the referenced REST resource. @@ -26,7 +26,7 @@ This complex property has following sub-properties: * `create_time`:(string)(ReadOnly) The time when this managed object was created. * `description`:(string) A description to describe the schedule for easier identification. * `domain_group_moid`:(string)(ReadOnly) The DomainGroup ID for this managed object. -* `last_action`:(string)(ReadOnly) The last action for the scheduled task is saved in this field. Set to none if there was no action.* `None` - No action is set (default).* `Suspend` - Suspend a scheduled task indefinitely.* `Resume` - Resume a suspended scheduled task.* `SuspendTill` - Suspend the scheduled task until a specified end-date. +* `last_action`:(string)(ReadOnly) The last action for the scheduled task is saved in this field. Set to none if there was no action.* `None` - No action is set (default).* `Suspend` - Suspend a scheduled task indefinitely.* `Resume` - Resume a suspended scheduled task.* `SuspendTill` - Suspend the scheduled task until a specified end-date. Not supported in this release. * `mod_time`:(string)(ReadOnly) The time when this managed object was last modified. * `moid`:(string) The unique identifier of this Managed Object instance. * `name`:(string) A schedule name for easier identification (not required to be unique). @@ -42,19 +42,21 @@ This complex property has following sub-properties: + `moid`:(string) The Moid of the referenced REST resource. + `object_type`:(string) The fully-qualified name of the remote type referred by this relationship. + `selector`:(string) An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'. -* `schedule_params`:(HashMap) - According to the schedule type this property is evaluated. If the property Type is set to OneTime, then the ObjectType must be scheduler.OneTimeScheduleParams. +* `schedule_params`:(HashMap) - According to the schedule type this property is evaluated. If the property Type is set to OneTime, then the ObjectType must be scheduler.OneTimeScheduleParams. If the Type is Recurring, then the ObjectType must be scheduler.RecurringScheduleParams. This complex property has following sub-properties: + `additional_properties`:(JSON as string) - Additional Properties as per object type, can be added as JSON using `jsonencode()`. Allowed Types are: [scheduler.OneTimeScheduleParams](#schedulerOneTimeScheduleParams) [scheduler.RecurringScheduleParams](#schedulerRecurringScheduleParams) + `object_type`:(string) The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.The enum values provides the list of concrete types that can be instantiated from this abstract type. - + `start_time`:(string) The schedule start time. A future time is required. When the start time is updated, it is mandatory to specify the corresponding timeZone property as well. + + `start_time`:(string) The schedule start time. A future time is required. + `time_zone`:(string) The timezone for the startTime specified. It is a mandatory input property when start time is provided.* `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` - * `shared_scope`:(string)(ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs. * `status`:(HashMap) -(ReadOnly) Status of the current scheduled task. This complex property has following sub-properties: + + `consecutive_failures`:(int)(ReadOnly) The number of consecutive times the task has failed. + `nr_count`:(int)(ReadOnly) The task completion count, which includes both successful executions and any failures. + `current_status`:(string)(ReadOnly) The status of the current task.* `None` - No status is set (default).* `Scheduled` - The status is set when a task is scheduled.* `Running` - The status is set when a task is running.* `Completed` - The status is set when a task is complete.* `Failed` - The status is set when a task fails.* `Suspended` - The status is set when a task is suspended.* `Skipped` - The status is set when a task is skipped because the previous task is still running. + `is_system_suspended`:(bool)(ReadOnly) Indicates if this task was suspended by the system. + + `last_run_status`:(string)(ReadOnly) The last task completion status, which includes both successful executions and any failures.* `None` - No status is set (default).* `Scheduled` - The status is set when a task is scheduled.* `Running` - The status is set when a task is running.* `Completed` - The status is set when a task is complete.* `Failed` - The status is set when a task fails.* `Suspended` - The status is set when a task is suspended.* `Skipped` - The status is set when a task is skipped because the previous task is still running. + `next_run_start_time`:(string)(ReadOnly) The next run time for a recurrently scheduled the task. + `object_type`:(string) The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property. + `prev_run_end_time`:(string)(ReadOnly) The time when the last occurrence of scheduled task completed. @@ -73,9 +75,9 @@ This complex property has following sub-properties: + `object_type`:(string) The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property. + `protocol`:(string) The accepted web protocol values are http and https. + `response`:(JSON as string) The response obtained for the scheduled API service. - + `timeout`:(int) Upper limit on the execution time of a scheduled task. Helps purge run-away scheduled tasks. + + `timeout`:(int) Upper limit on the execution time of a scheduled task. Helps purge run-away scheduled tasks.Not supported in this release. + `url`:(string) The URL of the resource in the target to which the API request is made. -* `type`:(string) An Enum describing the type of scheduler to use.* `None` - No value was set for the schedule type (Enum value None).* `OneTime` - Define a one-time task execution time that will not automatically repeat.* `Recurring` - Specify a recurring task cadence based on a predefined pattern, such as daily, weekly, monthly, yearly, or every pattern. This option is not currently supported. +* `type`:(string) An Enum describing the type of scheduler to use.* `None` - No value was set for the schedule type (Enum value None).* `OneTime` - Define a one-time task execution time that will not automatically repeat.* `Recurring` - Specify a recurring task cadence based on a predefined pattern, such as daily, weekly, monthly, or every pattern. * `version_context`:(HashMap) -(ReadOnly) The versioning info for this managed object. This complex property has following sub-properties: + `interested_mos`:(Array) @@ -112,4 +114,11 @@ The parameters for configuring a onetime schedule. ### [scheduler.RecurringScheduleParams](#argument-reference) The parameters for configuring a recurring schedule. +* `cadence`:(string) Allowed values for a recurring schedule cadence.* `None` - No value set for the cadence type (Enum value None).* `Every` - Use the 'Every' cadence for tasks that need to be run frequently and are relatively small or quick to execute. This could include tasks such as checking the status of a service every 15 minutes, or updating a counter.* `Daily` - A Daily cadence allows for a scheduled task to be run every day or every n-interval days.* `Weekly` - A Weekly cadence allows for a scheduled task to be run every week or every n-interval weeks on specific days.* `Monthly` - A Montly cadence allows for a scheduled task to be run every month on specific days. +* `end_after_occurrences`:(int) Specify the number of occurrences (instead of an end-time) for a recurring schedule. +* `end_time`:(string) End time for the recurring schedule. The schedule will not run beyond this time. If using the endAfterOccurrences parameter instead, this field should be set to zero time, i.e, 0001-01-01T00:00:00Z. +* `failure_threshold`:(int) The maximum number of consecutive failures until the recurring scheduled task is suspended by the system. The default is 1. +* `params`:(HashMap) - The cadence for the recurring schedule. Different parameters are used depending on the schedule type. +This complex property has following sub-properties: + + `object_type`:(string) The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.The enum values provides the list of concrete types that can be instantiated from this abstract type. diff --git a/website/docs/r/server_profile.html.markdown b/website/docs/r/server_profile.html.markdown index b5db2bee50..518fe865ac 100644 --- a/website/docs/r/server_profile.html.markdown +++ b/website/docs/r/server_profile.html.markdown @@ -131,6 +131,7 @@ This complex property has following sub-properties: + `moid`:(string) The Moid of the referenced REST resource. + `object_type`:(string) The fully-qualified name of the remote type referred by this relationship. + `selector`:(string) An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'. +* `management_mode`:(string)(ReadOnly) The management mode of the server.* `IntersightStandalone` - Intersight Standalone mode of operation.* `Intersight` - Intersight managed mode of operation. * `mod_time`:(string)(ReadOnly) The time when this managed object was last modified. * `moid`:(string) The unique identifier of this Managed Object instance. * `name`:(string) Name of the profile instance or profile template. diff --git a/website/docs/r/server_profile_template.html.markdown b/website/docs/r/server_profile_template.html.markdown index 014597dbbf..9597f7cab0 100644 --- a/website/docs/r/server_profile_template.html.markdown +++ b/website/docs/r/server_profile_template.html.markdown @@ -89,6 +89,7 @@ This complex property has following sub-properties: * `create_time`:(string)(ReadOnly) The time when this managed object was created. * `description`:(string) Description of the profile. * `domain_group_moid`:(string)(ReadOnly) The DomainGroup ID for this managed object. +* `management_mode`:(string)(ReadOnly) The management mode of the server.* `IntersightStandalone` - Intersight Standalone mode of operation.* `Intersight` - Intersight managed mode of operation. * `mod_time`:(string)(ReadOnly) The time when this managed object was last modified. * `moid`:(string) The unique identifier of this Managed Object instance. * `name`:(string) Name of the profile instance or profile template. diff --git a/website/docs/r/snmp_policy.html.markdown b/website/docs/r/snmp_policy.html.markdown index f19875e76b..98785d0386 100644 --- a/website/docs/r/snmp_policy.html.markdown +++ b/website/docs/r/snmp_policy.html.markdown @@ -74,7 +74,7 @@ variable "profile" { ``` ## Argument Reference The following arguments are supported: -* `access_community_string`:(string) The default SNMPv1, SNMPv2c community name or SNMPv3 username to include on any trap messages sent to the SNMP host. The name can be 18 characters long. +* `access_community_string`:(string) The default SNMPv1, SNMPv2c community name or SNMPv3 username to include on any trap messages sent to the SNMP host. The name can be 32 characters long. * `account_moid`:(string)(ReadOnly) The Account ID for this managed object. * `ancestors`:(Array)(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties: diff --git a/website/docs/r/storage_drive_group.html.markdown b/website/docs/r/storage_drive_group.html.markdown index 972e1ea0fd..14fce35862 100644 --- a/website/docs/r/storage_drive_group.html.markdown +++ b/website/docs/r/storage_drive_group.html.markdown @@ -107,7 +107,7 @@ This complex property has following sub-properties: + `object_type`:(string) The fully-qualified name of the remote type referred by this relationship. + `selector`:(string) An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'. * `raid_level`:(string) 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. -* `secure_drive_group`:(bool) 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. +* `secure_drive_group`:(bool) Enables/disables the drive security on all the drives used in this policy. This flag just enables the drive security and only after Remote/Manual key setting configured, the actual security will be applied. * `shared_scope`:(string)(ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs. * `storage_policy`:(HashMap) - A reference to a storageStoragePolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties: diff --git a/website/docs/r/storage_drive_security_policy.html.markdown b/website/docs/r/storage_drive_security_policy.html.markdown index 84eea90fa1..1f4f0ecd0a 100644 --- a/website/docs/r/storage_drive_security_policy.html.markdown +++ b/website/docs/r/storage_drive_security_policy.html.markdown @@ -3,12 +3,12 @@ subcategory: "storage" layout: "intersight" page_title: "Intersight: intersight_storage_drive_security_policy" description: |- - The drive security policy models the KMIP server related configuration that can be applied on multiple servers. Storage controller encryption can be enabled through this policy using remote keys from a KMIP server. + The drive security policy defines the configuration for a manual key or a KMIP server, which can be applied to multiple servers. You can enable drive security on the servers using either configuration.. --- # Resource: intersight_storage_drive_security_policy -The drive security policy models the KMIP server related configuration that can be applied on multiple servers. Storage controller encryption can be enabled through this policy using remote keys from a KMIP server. +The drive security policy defines the configuration for a manual key or a KMIP server, which can be applied to multiple servers. You can enable drive security on the servers using either configuration.. ## Argument Reference The following arguments are supported: * `account_moid`:(string)(ReadOnly) The Account ID for this managed object. @@ -20,18 +20,18 @@ This complex property has following sub-properties: * `create_time`:(string)(ReadOnly) The time when this managed object was created. * `description`:(string) Description of the policy. * `domain_group_moid`:(string)(ReadOnly) The DomainGroup ID for this managed object. -* `key_setting`:(HashMap) - Key details for supporting disk encryption. +* `key_setting`:(HashMap) - Key details for supporting drive security. This complex property has following sub-properties: - + `key_type`:(string) Method to be used for fetching the encryption key.* `Kmip` - Remote encryption using KMIP.* `Manual` - Drive encryption using manual key. + + `key_type`:(string) Method to be used for fetching the security key.* `Kmip` - Remote security using KMIP.* `Manual` - Drive security using manual key. + `manual_key`:(HashMap) - Manual key configuration. This complex property has following sub-properties: - + `existing_key`:(string) Current Security Key Passphrase which is already configured on the server. + + `existing_key`:(string) Current Security Key Passphrase which is already configured on the server. From the security context, the passphrase should be at least 8 characters long and should include at least one uppercase letter, one lowercase letter, one number, and one special character. + `is_existing_key_set`:(bool)(ReadOnly) Indicates whether the value of the 'existingKey' property has been set. + `is_new_key_set`:(bool)(ReadOnly) Indicates whether the value of the 'newKey' property has been set. - + `new_key`:(string) New Security Key Passphrase to be configured on the controller. + + `new_key`:(string) New Security Key Passphrase to be configured on the server. From the security context, the passphrase should be at least 8 characters long and should include at least one uppercase letter, one lowercase letter, one number, and one special character. + `object_type`:(string) The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property. + `object_type`:(string) The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property. - + `remote_key`:(HashMap) - Remote key encryption using KMIP configuration. + + `remote_key`:(HashMap) - Remote key security using KMIP configuration. This complex property has following sub-properties: + `auth_credentials`:(HashMap) - The authentication details of the KMIP server. It is required to login to the KMIP server. This complex property has following sub-properties: @@ -40,19 +40,19 @@ This complex property has following sub-properties: + `password`:(string) The password for the KMIP server login. + `use_authentication`:(bool) Enables/disables the authentication for communicating with KMIP server. This flag enables the authentication which makes authentication mandatory. + `username`:(string) The user name for the KMIP server login. - + `existing_key`:(string) Current Security Key Passphrase which is already configured on the server. + + `existing_key`:(string) Current Security Key Passphrase which is already configured on the server. From the security context, the passphrase should be at least 8 characters long and should include at least one uppercase letter, one lowercase letter, one number, and one special character. + `is_existing_key_set`:(bool)(ReadOnly) Indicates whether the value of the 'existingKey' property has been set. + `object_type`:(string) The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property. + `primary_server`:(HashMap) - Configuration of the primary KMIP server. This complex property has following sub-properties: - + `enable_drive_security`:(bool) Enable the selected KMIP Server configuration for encryption. This flag just enables the drive security and only after remote key setting configured, the actual encryption will be done. + + `enable_drive_security`:(bool) Enable the selected KMIP Server configuration for security. This flag just enables the drive security and only after remote key setting configured, the actual security will be applied. + `ip_address`:(string) The IP address of the KMIP server. It could be an IPv4 address, an IPv6 address, or a hostname. Hostnames are valid only when Inband is configured for the CIMC address. + `object_type`:(string) The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property. + `port`:(int) The port to which the KMIP client should connect. + `timeout`:(int) The timeout before which the KMIP client should connect. + `secondary_server`:(HashMap) - Configuration of the secondary KMIP server. This complex property has following sub-properties: - + `enable_drive_security`:(bool) Enable the selected KMIP Server configuration for encryption. This flag just enables the drive security and only after remote key setting configured, the actual encryption will be done. + + `enable_drive_security`:(bool) Enable the selected KMIP Server configuration for security. This flag just enables the drive security and only after remote key setting configured, the actual security will be applied. + `ip_address`:(string) The IP address of the KMIP server. It could be an IPv4 address, an IPv6 address, or a hostname. Hostnames are valid only when Inband is configured for the CIMC address. + `object_type`:(string) The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property. + `port`:(int) The port to which the KMIP client should connect. diff --git a/website/docs/r/storage_storage_policy.html.markdown b/website/docs/r/storage_storage_policy.html.markdown index 45ca7d39b3..0615fdf33c 100644 --- a/website/docs/r/storage_storage_policy.html.markdown +++ b/website/docs/r/storage_storage_policy.html.markdown @@ -3,12 +3,12 @@ subcategory: "storage" layout: "intersight" page_title: "Intersight: intersight_storage_storage_policy" description: |- - The storage policy models the reusable storage related configuration that can be applied on many servers. This policy allows creation of RAID groups using existing disk group policies and virtual drives on the drive groups. The user has options to move all unused disks to JBOD or Unconfigured good state. The encryption of drives can be enabled through this policy using remote keys from a KMIP server. + The storage policy models the reusable storage related configuration that can be applied on many servers. This policy allows creation of RAID groups using existing disk group policies and virtual drives on the drive groups. The user has options to move all unused disks to JBOD or Unconfigured good state. The security of drives can be enabled through this policy using remote keys from a KMIP server or Manually configured keys. --- # Resource: intersight_storage_storage_policy -The storage policy models the reusable storage related configuration that can be applied on many servers. This policy allows creation of RAID groups using existing disk group policies and virtual drives on the drive groups. The user has options to move all unused disks to JBOD or Unconfigured good state. The encryption of drives can be enabled through this policy using remote keys from a KMIP server. +The storage policy models the reusable storage related configuration that can be applied on many servers. This policy allows creation of RAID groups using existing disk group policies and virtual drives on the drive groups. The user has options to move all unused disks to JBOD or Unconfigured good state. The security of drives can be enabled through this policy using remote keys from a KMIP server or Manually configured keys. ## Usage Example ### Resource Creation