Skip to content

Commit

Permalink
update to v2.10.0 schema
Browse files Browse the repository at this point in the history
  • Loading branch information
Sczlog committed Aug 1, 2023
1 parent b3c996a commit da8cdca
Show file tree
Hide file tree
Showing 22 changed files with 4,662 additions and 158 deletions.
8 changes: 8 additions & 0 deletions .openapi-generator/FILES
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,8 @@ cloudtower/models/alert.py
cloudtower/models/alert_connection.py
cloudtower/models/alert_notifier.py
cloudtower/models/alert_notifier_connection.py
cloudtower/models/alert_notifier_creation_params.py
cloudtower/models/alert_notifier_many_updation_params.py
cloudtower/models/alert_notifier_order_by_input.py
cloudtower/models/alert_notifier_updation_params.py
cloudtower/models/alert_notifier_where_input.py
Expand Down Expand Up @@ -266,6 +268,8 @@ cloudtower/models/datacenter_updation_params.py
cloudtower/models/datacenter_updation_params_data.py
cloudtower/models/datacenter_where_input.py
cloudtower/models/datacenter_where_unique_input.py
cloudtower/models/delete_alert_notifier.py
cloudtower/models/delete_alert_notifier_params.py
cloudtower/models/delete_brick_topo.py
cloudtower/models/delete_cloud_tower_application_package.py
cloudtower/models/delete_cloud_tower_application_package_params.py
Expand Down Expand Up @@ -870,6 +874,7 @@ cloudtower/models/nested_report_template.py
cloudtower/models/nested_resource_meta.py
cloudtower/models/nested_security_policy.py
cloudtower/models/nested_security_policy_apply.py
cloudtower/models/nested_smtp_server.py
cloudtower/models/nested_snapshot_group.py
cloudtower/models/nested_snapshot_group_vm_disk_info.py
cloudtower/models/nested_snapshot_group_vm_info.py
Expand Down Expand Up @@ -1037,6 +1042,8 @@ cloudtower/models/security_policy_update_body.py
cloudtower/models/security_policy_update_params.py
cloudtower/models/security_policy_where_input.py
cloudtower/models/severity_enum.py
cloudtower/models/smtp_secure_mode.py
cloudtower/models/smtp_server_where_input.py
cloudtower/models/snapshot_group.py
cloudtower/models/snapshot_group_clone_param.py
cloudtower/models/snapshot_group_clone_params.py
Expand Down Expand Up @@ -1362,6 +1369,7 @@ cloudtower/models/with_task_consistency_group_snapshot.py
cloudtower/models/with_task_content_library_image.py
cloudtower/models/with_task_content_library_vm_template.py
cloudtower/models/with_task_datacenter.py
cloudtower/models/with_task_delete_alert_notifier.py
cloudtower/models/with_task_delete_brick_topo.py
cloudtower/models/with_task_delete_cluster.py
cloudtower/models/with_task_delete_cluster_recycle_bin.py
Expand Down
7 changes: 7 additions & 0 deletions RELEASENOTE.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# RELEASE NOTE

## release 日期 2023-08-01

v2.10.0 release (tower version 3.1.0)

- feature: [AlertNotifierApi] 支持更新,删除以及创建新的报警通知配置
- optimize: [utils] 优化了 WaitTask 以及 WaitTasks,在任务失败的时候会返回失败任务的原因

## releae 日期 2023-07-18

v2.9.1 release (tower version 3.0.0)
Expand Down
10 changes: 9 additions & 1 deletion cloudtower/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# flake8: noqa
from __future__ import absolute_import

__version__ = "2.9.1"
__version__ = "2.10.0"

# import apis into sdk package
from cloudtower.api.alert_api import AlertApi
Expand Down Expand Up @@ -120,6 +120,8 @@
from cloudtower.models.alert_connection import AlertConnection
from cloudtower.models.alert_notifier import AlertNotifier
from cloudtower.models.alert_notifier_connection import AlertNotifierConnection
from cloudtower.models.alert_notifier_creation_params import AlertNotifierCreationParams
from cloudtower.models.alert_notifier_many_updation_params import AlertNotifierManyUpdationParams
from cloudtower.models.alert_notifier_order_by_input import AlertNotifierOrderByInput
from cloudtower.models.alert_notifier_updation_params import AlertNotifierUpdationParams
from cloudtower.models.alert_notifier_where_input import AlertNotifierWhereInput
Expand Down Expand Up @@ -275,6 +277,8 @@
from cloudtower.models.datacenter_updation_params_data import DatacenterUpdationParamsData
from cloudtower.models.datacenter_where_input import DatacenterWhereInput
from cloudtower.models.datacenter_where_unique_input import DatacenterWhereUniqueInput
from cloudtower.models.delete_alert_notifier import DeleteAlertNotifier
from cloudtower.models.delete_alert_notifier_params import DeleteAlertNotifierParams
from cloudtower.models.delete_brick_topo import DeleteBrickTopo
from cloudtower.models.delete_cloud_tower_application_package import DeleteCloudTowerApplicationPackage
from cloudtower.models.delete_cloud_tower_application_package_params import DeleteCloudTowerApplicationPackageParams
Expand Down Expand Up @@ -879,6 +883,7 @@
from cloudtower.models.nested_resource_meta import NestedResourceMeta
from cloudtower.models.nested_security_policy import NestedSecurityPolicy
from cloudtower.models.nested_security_policy_apply import NestedSecurityPolicyApply
from cloudtower.models.nested_smtp_server import NestedSmtpServer
from cloudtower.models.nested_snapshot_group import NestedSnapshotGroup
from cloudtower.models.nested_snapshot_group_vm_disk_info import NestedSnapshotGroupVmDiskInfo
from cloudtower.models.nested_snapshot_group_vm_info import NestedSnapshotGroupVmInfo
Expand Down Expand Up @@ -1046,6 +1051,8 @@
from cloudtower.models.security_policy_update_params import SecurityPolicyUpdateParams
from cloudtower.models.security_policy_where_input import SecurityPolicyWhereInput
from cloudtower.models.severity_enum import SeverityEnum
from cloudtower.models.smtp_secure_mode import SmtpSecureMode
from cloudtower.models.smtp_server_where_input import SmtpServerWhereInput
from cloudtower.models.snapshot_group import SnapshotGroup
from cloudtower.models.snapshot_group_clone_param import SnapshotGroupCloneParam
from cloudtower.models.snapshot_group_clone_params import SnapshotGroupCloneParams
Expand Down Expand Up @@ -1371,6 +1378,7 @@
from cloudtower.models.with_task_content_library_image import WithTaskContentLibraryImage
from cloudtower.models.with_task_content_library_vm_template import WithTaskContentLibraryVmTemplate
from cloudtower.models.with_task_datacenter import WithTaskDatacenter
from cloudtower.models.with_task_delete_alert_notifier import WithTaskDeleteAlertNotifier
from cloudtower.models.with_task_delete_brick_topo import WithTaskDeleteBrickTopo
from cloudtower.models.with_task_delete_cluster import WithTaskDeleteCluster
from cloudtower.models.with_task_delete_cluster_recycle_bin import WithTaskDeleteClusterRecycleBin
Expand Down
Loading

0 comments on commit da8cdca

Please sign in to comment.