Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 61e3460

Browse files
committed
Support API AddCustomPrivacyPoliciesToBrand.
1 parent 6c6d97c commit 61e3460

File tree

33 files changed

+4095
-10
lines changed

33 files changed

+4095
-10
lines changed

‎eiam-20211201/ChangeLog.txt‎

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
2025年10月30日 Version: v2.4.0
2+
- Support API AddCustomPrivacyPoliciesToBrand.
3+
- Support API CreateCustomPrivacyPolicy.
4+
- Support API DeleteCustomPrivacyPolicy.
5+
- Support API DisableCustomPrivacyPolicy.
6+
- Support API EnableCustomPrivacyPolicy.
7+
- Support API GetCustomPrivacyPolicy.
8+
- Support API ListCustomPrivacyPolicies.
9+
- Support API ListCustomPrivacyPoliciesForBrand.
10+
- Support API RemoveCustomPrivacyPoliciesFromBrand.
11+
- Support API UpdateCustomPrivacyPolicy.
12+
13+
114
2025年10月20日 Version: v2.3.0
215
- Support API CreateBrand.
316
- Support API DeleteBrand.
Lines changed: 80 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,80 @@
1+
// This file is auto-generated, don't edit it. Thanks.
2+
package client
3+
4+
import (
5+
"github.com/alibabacloud-go/tea/dara"
6+
)
7+
8+
type iAddCustomPrivacyPoliciesToBrandRequest interface {
9+
dara.Model
10+
String() string
11+
GoString() string
12+
SetBrandId(v string) *AddCustomPrivacyPoliciesToBrandRequest
13+
GetBrandId() *string
14+
SetCustomPrivacyPolicyIds(v []*string) *AddCustomPrivacyPoliciesToBrandRequest
15+
GetCustomPrivacyPolicyIds() []*string
16+
SetInstanceId(v string) *AddCustomPrivacyPoliciesToBrandRequest
17+
GetInstanceId() *string
18+
}
19+
20+
type AddCustomPrivacyPoliciesToBrandRequest struct {
21+
// 品牌化Id
22+
//
23+
// This parameter is required.
24+
//
25+
// example:
26+
//
27+
// brand_xxxxx
28+
BrandId *string `json:"BrandId,omitempty" xml:"BrandId,omitempty"`
29+
// 条款ID列表
30+
//
31+
// This parameter is required.
32+
CustomPrivacyPolicyIds []*string `json:"CustomPrivacyPolicyIds,omitempty" xml:"CustomPrivacyPolicyIds,omitempty" type:"Repeated"`
33+
// IDaaS EIAM实例的ID。
34+
//
35+
// This parameter is required.
36+
//
37+
// example:
38+
//
39+
// idaas_ue2jvisn35ea5lmthk267xxxxx
40+
InstanceId *string `json:"InstanceId,omitempty" xml:"InstanceId,omitempty"`
41+
}
42+
43+
func (s AddCustomPrivacyPoliciesToBrandRequest) String() string {
44+
return dara.Prettify(s)
45+
}
46+
47+
func (s AddCustomPrivacyPoliciesToBrandRequest) GoString() string {
48+
return s.String()
49+
}
50+
51+
func (s *AddCustomPrivacyPoliciesToBrandRequest) GetBrandId() *string {
52+
return s.BrandId
53+
}
54+
55+
func (s *AddCustomPrivacyPoliciesToBrandRequest) GetCustomPrivacyPolicyIds() []*string {
56+
return s.CustomPrivacyPolicyIds
57+
}
58+
59+
func (s *AddCustomPrivacyPoliciesToBrandRequest) GetInstanceId() *string {
60+
return s.InstanceId
61+
}
62+
63+
func (s *AddCustomPrivacyPoliciesToBrandRequest) SetBrandId(v string) *AddCustomPrivacyPoliciesToBrandRequest {
64+
s.BrandId = &v
65+
return s
66+
}
67+
68+
func (s *AddCustomPrivacyPoliciesToBrandRequest) SetCustomPrivacyPolicyIds(v []*string) *AddCustomPrivacyPoliciesToBrandRequest {
69+
s.CustomPrivacyPolicyIds = v
70+
return s
71+
}
72+
73+
func (s *AddCustomPrivacyPoliciesToBrandRequest) SetInstanceId(v string) *AddCustomPrivacyPoliciesToBrandRequest {
74+
s.InstanceId = &v
75+
return s
76+
}
77+
78+
func (s *AddCustomPrivacyPoliciesToBrandRequest) Validate() error {
79+
return dara.Validate(s)
80+
}
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
// This file is auto-generated, don't edit it. Thanks.
2+
package client
3+
4+
import (
5+
"github.com/alibabacloud-go/tea/dara"
6+
)
7+
8+
type iAddCustomPrivacyPoliciesToBrandResponseBody interface {
9+
dara.Model
10+
String() string
11+
GoString() string
12+
SetRequestId(v string) *AddCustomPrivacyPoliciesToBrandResponseBody
13+
GetRequestId() *string
14+
}
15+
16+
type AddCustomPrivacyPoliciesToBrandResponseBody struct {
17+
// example:
18+
//
19+
// 0441BD79-92F3-53AA-8657-F8CE4A2B912A
20+
RequestId *string `json:"RequestId,omitempty" xml:"RequestId,omitempty"`
21+
}
22+
23+
func (s AddCustomPrivacyPoliciesToBrandResponseBody) String() string {
24+
return dara.Prettify(s)
25+
}
26+
27+
func (s AddCustomPrivacyPoliciesToBrandResponseBody) GoString() string {
28+
return s.String()
29+
}
30+
31+
func (s *AddCustomPrivacyPoliciesToBrandResponseBody) GetRequestId() *string {
32+
return s.RequestId
33+
}
34+
35+
func (s *AddCustomPrivacyPoliciesToBrandResponseBody) SetRequestId(v string) *AddCustomPrivacyPoliciesToBrandResponseBody {
36+
s.RequestId = &v
37+
return s
38+
}
39+
40+
func (s *AddCustomPrivacyPoliciesToBrandResponseBody) Validate() error {
41+
return dara.Validate(s)
42+
}
Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
// This file is auto-generated, don't edit it. Thanks.
2+
package client
3+
4+
import (
5+
"github.com/alibabacloud-go/tea/dara"
6+
)
7+
8+
type iAddCustomPrivacyPoliciesToBrandResponse interface {
9+
dara.Model
10+
String() string
11+
GoString() string
12+
SetHeaders(v map[string]*string) *AddCustomPrivacyPoliciesToBrandResponse
13+
GetHeaders() map[string]*string
14+
SetStatusCode(v int32) *AddCustomPrivacyPoliciesToBrandResponse
15+
GetStatusCode() *int32
16+
SetBody(v *AddCustomPrivacyPoliciesToBrandResponseBody) *AddCustomPrivacyPoliciesToBrandResponse
17+
GetBody() *AddCustomPrivacyPoliciesToBrandResponseBody
18+
}
19+
20+
type AddCustomPrivacyPoliciesToBrandResponse struct {
21+
Headers map[string]*string `json:"headers,omitempty" xml:"headers,omitempty"`
22+
StatusCode *int32 `json:"statusCode,omitempty" xml:"statusCode,omitempty"`
23+
Body *AddCustomPrivacyPoliciesToBrandResponseBody `json:"body,omitempty" xml:"body,omitempty"`
24+
}
25+
26+
func (s AddCustomPrivacyPoliciesToBrandResponse) String() string {
27+
return dara.Prettify(s)
28+
}
29+
30+
func (s AddCustomPrivacyPoliciesToBrandResponse) GoString() string {
31+
return s.String()
32+
}
33+
34+
func (s *AddCustomPrivacyPoliciesToBrandResponse) GetHeaders() map[string]*string {
35+
return s.Headers
36+
}
37+
38+
func (s *AddCustomPrivacyPoliciesToBrandResponse) GetStatusCode() *int32 {
39+
return s.StatusCode
40+
}
41+
42+
func (s *AddCustomPrivacyPoliciesToBrandResponse) GetBody() *AddCustomPrivacyPoliciesToBrandResponseBody {
43+
return s.Body
44+
}
45+
46+
func (s *AddCustomPrivacyPoliciesToBrandResponse) SetHeaders(v map[string]*string) *AddCustomPrivacyPoliciesToBrandResponse {
47+
s.Headers = v
48+
return s
49+
}
50+
51+
func (s *AddCustomPrivacyPoliciesToBrandResponse) SetStatusCode(v int32) *AddCustomPrivacyPoliciesToBrandResponse {
52+
s.StatusCode = &v
53+
return s
54+
}
55+
56+
func (s *AddCustomPrivacyPoliciesToBrandResponse) SetBody(v *AddCustomPrivacyPoliciesToBrandResponseBody) *AddCustomPrivacyPoliciesToBrandResponse {
57+
s.Body = v
58+
return s
59+
}
60+
61+
func (s *AddCustomPrivacyPoliciesToBrandResponse) Validate() error {
62+
if s.Body != nil {
63+
if err := s.Body.Validate(); err != nil {
64+
return err
65+
}
66+
}
67+
return nil
68+
}

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /