Skip to content

Commit 5524cfa

Browse files
committed
Generated 2021-03-08 for eds-user.
1 parent d8986d6 commit 5524cfa

33 files changed

+1847
-1
lines changed

CHANGELOG

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2025-07-02 Version: 1.0.2
2+
- Generated 2021-03-08 for `eds-user`.
3+
14
2025-06-30 Version: 3.1.3
25
- Public AssumeRole AssumeRoleWithSAML AssumeRoleWithOIDC for supporting sourceIdentity.
36

Lines changed: 113 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,113 @@
1+
/*
2+
* Licensed to the Apache Software Foundation (ASF) under one
3+
* or more contributor license agreements. See the NOTICE file
4+
* distributed with this work for additional information
5+
* regarding copyright ownership. The ASF licenses this file
6+
* to you under the Apache License, Version 2.0 (the
7+
* "License"); you may not use this file except in compliance
8+
* with the License. You may obtain a copy of the License at
9+
*
10+
* http://www.apache.org/licenses/LICENSE-2.0
11+
*
12+
* Unless required by applicable law or agreed to in writing,
13+
* software distributed under the License is distributed on an
14+
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15+
* KIND, either express or implied. See the License for the
16+
* specific language governing permissions and limitations
17+
* under the License.
18+
*/
19+
using System.Collections.Generic;
20+
21+
using Aliyun.Acs.Core;
22+
using Aliyun.Acs.Core.Http;
23+
using Aliyun.Acs.Core.Transform;
24+
using Aliyun.Acs.Core.Utils;
25+
using Aliyun.Acs.eds_user.Transform;
26+
using Aliyun.Acs.eds_user.Transform.V20210308;
27+
28+
namespace Aliyun.Acs.eds_user.Model.V20210308
29+
{
30+
public class CreateGroupRequest : RpcAcsRequest<CreateGroupResponse>
31+
{
32+
public CreateGroupRequest()
33+
: base("eds-user", "2021-03-08", "CreateGroup", "eds-user", "openAPI")
34+
{
35+
if (this.GetType().GetProperty("ProductEndpointMap") != null && this.GetType().GetProperty("ProductEndpointType") != null)
36+
{
37+
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Aliyun.Acs.eds_user.Endpoint.endpointMap, null);
38+
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Aliyun.Acs.eds_user.Endpoint.endpointRegionalType, null);
39+
}
40+
Method = MethodType.POST;
41+
}
42+
43+
private string groupName;
44+
45+
private string bizType;
46+
47+
private string parentGroupId;
48+
49+
private string solutionId;
50+
51+
public string GroupName
52+
{
53+
get
54+
{
55+
return groupName;
56+
}
57+
set
58+
{
59+
groupName = value;
60+
DictionaryUtil.Add(QueryParameters, "GroupName", value);
61+
}
62+
}
63+
64+
public string BizType
65+
{
66+
get
67+
{
68+
return bizType;
69+
}
70+
set
71+
{
72+
bizType = value;
73+
DictionaryUtil.Add(QueryParameters, "BizType", value);
74+
}
75+
}
76+
77+
public string ParentGroupId
78+
{
79+
get
80+
{
81+
return parentGroupId;
82+
}
83+
set
84+
{
85+
parentGroupId = value;
86+
DictionaryUtil.Add(QueryParameters, "ParentGroupId", value);
87+
}
88+
}
89+
90+
public string SolutionId
91+
{
92+
get
93+
{
94+
return solutionId;
95+
}
96+
set
97+
{
98+
solutionId = value;
99+
DictionaryUtil.Add(QueryParameters, "SolutionId", value);
100+
}
101+
}
102+
103+
public override bool CheckShowJsonItemName()
104+
{
105+
return false;
106+
}
107+
108+
public override CreateGroupResponse GetResponse(UnmarshallerContext unmarshallerContext)
109+
{
110+
return CreateGroupResponseUnmarshaller.Unmarshall(unmarshallerContext);
111+
}
112+
}
113+
}
Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
/*
2+
* Licensed to the Apache Software Foundation (ASF) under one
3+
* or more contributor license agreements. See the NOTICE file
4+
* distributed with this work for additional information
5+
* regarding copyright ownership. The ASF licenses this file
6+
* to you under the Apache License, Version 2.0 (the
7+
* "License"); you may not use this file except in compliance
8+
* with the License. You may obtain a copy of the License at
9+
*
10+
* http://www.apache.org/licenses/LICENSE-2.0
11+
*
12+
* Unless required by applicable law or agreed to in writing,
13+
* software distributed under the License is distributed on an
14+
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15+
* KIND, either express or implied. See the License for the
16+
* specific language governing permissions and limitations
17+
* under the License.
18+
*/
19+
using System.Collections.Generic;
20+
using Newtonsoft.Json;
21+
using Aliyun.Acs.Core;
22+
23+
namespace Aliyun.Acs.eds_user.Model.V20210308
24+
{
25+
public class CreateGroupResponse : AcsResponse
26+
{
27+
28+
private string requestId;
29+
30+
private string groupId;
31+
32+
public string RequestId
33+
{
34+
get
35+
{
36+
return requestId;
37+
}
38+
set
39+
{
40+
requestId = value;
41+
}
42+
}
43+
44+
public string GroupId
45+
{
46+
get
47+
{
48+
return groupId;
49+
}
50+
set
51+
{
52+
groupId = value;
53+
}
54+
}
55+
}
56+
}
Lines changed: 98 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,98 @@
1+
/*
2+
* Licensed to the Apache Software Foundation (ASF) under one
3+
* or more contributor license agreements. See the NOTICE file
4+
* distributed with this work for additional information
5+
* regarding copyright ownership. The ASF licenses this file
6+
* to you under the Apache License, Version 2.0 (the
7+
* "License"); you may not use this file except in compliance
8+
* with the License. You may obtain a copy of the License at
9+
*
10+
* http://www.apache.org/licenses/LICENSE-2.0
11+
*
12+
* Unless required by applicable law or agreed to in writing,
13+
* software distributed under the License is distributed on an
14+
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15+
* KIND, either express or implied. See the License for the
16+
* specific language governing permissions and limitations
17+
* under the License.
18+
*/
19+
using System.Collections.Generic;
20+
21+
using Aliyun.Acs.Core;
22+
using Aliyun.Acs.Core.Http;
23+
using Aliyun.Acs.Core.Transform;
24+
using Aliyun.Acs.Core.Utils;
25+
using Aliyun.Acs.eds_user.Transform;
26+
using Aliyun.Acs.eds_user.Transform.V20210308;
27+
28+
namespace Aliyun.Acs.eds_user.Model.V20210308
29+
{
30+
public class DescribeGroupUserRequest : RpcAcsRequest<DescribeGroupUserResponse>
31+
{
32+
public DescribeGroupUserRequest()
33+
: base("eds-user", "2021-03-08", "DescribeGroupUser", "eds-user", "openAPI")
34+
{
35+
if (this.GetType().GetProperty("ProductEndpointMap") != null && this.GetType().GetProperty("ProductEndpointType") != null)
36+
{
37+
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Aliyun.Acs.eds_user.Endpoint.endpointMap, null);
38+
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Aliyun.Acs.eds_user.Endpoint.endpointRegionalType, null);
39+
}
40+
Method = MethodType.POST;
41+
}
42+
43+
private string groupId;
44+
45+
private string bizType;
46+
47+
private string solutionId;
48+
49+
public string GroupId
50+
{
51+
get
52+
{
53+
return groupId;
54+
}
55+
set
56+
{
57+
groupId = value;
58+
DictionaryUtil.Add(QueryParameters, "GroupId", value);
59+
}
60+
}
61+
62+
public string BizType
63+
{
64+
get
65+
{
66+
return bizType;
67+
}
68+
set
69+
{
70+
bizType = value;
71+
DictionaryUtil.Add(QueryParameters, "BizType", value);
72+
}
73+
}
74+
75+
public string SolutionId
76+
{
77+
get
78+
{
79+
return solutionId;
80+
}
81+
set
82+
{
83+
solutionId = value;
84+
DictionaryUtil.Add(QueryParameters, "SolutionId", value);
85+
}
86+
}
87+
88+
public override bool CheckShowJsonItemName()
89+
{
90+
return false;
91+
}
92+
93+
public override DescribeGroupUserResponse GetResponse(UnmarshallerContext unmarshallerContext)
94+
{
95+
return DescribeGroupUserResponseUnmarshaller.Unmarshall(unmarshallerContext);
96+
}
97+
}
98+
}

0 commit comments

Comments
 (0)