Skip to content

Commit 099beef

Browse files
committed
Update API DescribeDBInstanceAttribute: add response parameters Body.VirtualClusterList.
1 parent 10a4bb0 commit 099beef

File tree

71 files changed

+1117
-326
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

71 files changed

+1117
-326
lines changed

ChangeLog.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
2025-11-13 Version: v4.4.1
2+
- Update API DescribeDBInstanceAttribute: add response parameters Body.VirtualClusterList.
3+
4+
15
2025-10-10 Version: v4.4.0
26
- Support API ChangeResourceGroup.
37
- Support API CheckIpExistsInSecurityIpList.

client/allocate_instance_public_connection_response_model.go

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,5 +59,10 @@ func (s *AllocateInstancePublicConnectionResponse) SetBody(v *AllocateInstancePu
5959
}
6060

6161
func (s *AllocateInstancePublicConnectionResponse) Validate() error {
62-
return dara.Validate(s)
62+
if s.Body != nil {
63+
if err := s.Body.Validate(); err != nil {
64+
return err
65+
}
66+
}
67+
return nil
6368
}

client/change_resource_group_response_model.go

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,5 +59,10 @@ func (s *ChangeResourceGroupResponse) SetBody(v *ChangeResourceGroupResponseBody
5959
}
6060

6161
func (s *ChangeResourceGroupResponse) Validate() error {
62-
return dara.Validate(s)
62+
if s.Body != nil {
63+
if err := s.Body.Validate(); err != nil {
64+
return err
65+
}
66+
}
67+
return nil
6368
}

client/check_create_dbinstance_response_model.go

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,5 +59,10 @@ func (s *CheckCreateDBInstanceResponse) SetBody(v *CheckCreateDBInstanceResponse
5959
}
6060

6161
func (s *CheckCreateDBInstanceResponse) Validate() error {
62-
return dara.Validate(s)
62+
if s.Body != nil {
63+
if err := s.Body.Validate(); err != nil {
64+
return err
65+
}
66+
}
67+
return nil
6368
}

client/check_ip_exists_in_security_ip_list_response_body_model.go

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,12 @@ func (s *CheckIpExistsInSecurityIpListResponseBody) SetRequestId(v string) *Chec
5252
}
5353

5454
func (s *CheckIpExistsInSecurityIpListResponseBody) Validate() error {
55-
return dara.Validate(s)
55+
if s.Data != nil {
56+
if err := s.Data.Validate(); err != nil {
57+
return err
58+
}
59+
}
60+
return nil
5661
}
5762

5863
type CheckIpExistsInSecurityIpListResponseBodyData struct {

client/check_ip_exists_in_security_ip_list_response_model.go

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,5 +59,10 @@ func (s *CheckIpExistsInSecurityIpListResponse) SetBody(v *CheckIpExistsInSecuri
5959
}
6060

6161
func (s *CheckIpExistsInSecurityIpListResponse) Validate() error {
62-
return dara.Validate(s)
62+
if s.Body != nil {
63+
if err := s.Body.Validate(); err != nil {
64+
return err
65+
}
66+
}
67+
return nil
6368
}

client/check_service_linked_role_response_model.go

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,5 +59,10 @@ func (s *CheckServiceLinkedRoleResponse) SetBody(v *CheckServiceLinkedRoleRespon
5959
}
6060

6161
func (s *CheckServiceLinkedRoleResponse) Validate() error {
62-
return dara.Validate(s)
62+
if s.Body != nil {
63+
if err := s.Body.Validate(); err != nil {
64+
return err
65+
}
66+
}
67+
return nil
6368
}

0 commit comments

Comments
 (0)