Skip to content

Commit 8835796

Browse files
committed
Generated 2021-03-08 for eds-user.
1 parent b60a164 commit 8835796

File tree

102 files changed

+9545
-0
lines changed

Some content is hidden

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

102 files changed

+9545
-0
lines changed

CHANGELOG

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2025-04-23 Version: 1.0.0
2+
- Generated 2021-03-08 for `eds-user`.
3+
14
2025-04-14 Version: 1.0.0
25
- PromptMaganer v1.0 sdk publish
36

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
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+
20+
using System.Collections.Generic;
21+
22+
namespace Aliyun.Acs.eds_user
23+
{
24+
public class Endpoint
25+
{
26+
public static Dictionary<string, string> endpointMap = new Dictionary<string, string>()
27+
{};
28+
29+
public static string endpointRegionalType = "regional";
30+
}
31+
}
Lines changed: 83 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,83 @@
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 BatchSetDesktopManagerRequest : RpcAcsRequest<BatchSetDesktopManagerResponse>
31+
{
32+
public BatchSetDesktopManagerRequest()
33+
: base("eds-user", "2021-03-08", "BatchSetDesktopManager", "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 isDesktopManager;
44+
45+
private List<string> userss = new List<string>(){ };
46+
47+
public string IsDesktopManager
48+
{
49+
get
50+
{
51+
return isDesktopManager;
52+
}
53+
set
54+
{
55+
isDesktopManager = value;
56+
DictionaryUtil.Add(BodyParameters, "IsDesktopManager", value);
57+
}
58+
}
59+
60+
public List<string> Userss
61+
{
62+
get
63+
{
64+
return userss;
65+
}
66+
67+
set
68+
{
69+
userss = value;
70+
}
71+
}
72+
73+
public override bool CheckShowJsonItemName()
74+
{
75+
return false;
76+
}
77+
78+
public override BatchSetDesktopManagerResponse GetResponse(UnmarshallerContext unmarshallerContext)
79+
{
80+
return BatchSetDesktopManagerResponseUnmarshaller.Unmarshall(unmarshallerContext);
81+
}
82+
}
83+
}
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
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 BatchSetDesktopManagerResponse : AcsResponse
26+
{
27+
28+
private string requestId;
29+
30+
public string RequestId
31+
{
32+
get
33+
{
34+
return requestId;
35+
}
36+
set
37+
{
38+
requestId = value;
39+
}
40+
}
41+
}
42+
}
Lines changed: 83 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,83 @@
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 ChangeUserPasswordRequest : RpcAcsRequest<ChangeUserPasswordResponse>
31+
{
32+
public ChangeUserPasswordRequest()
33+
: base("eds-user", "2021-03-08", "ChangeUserPassword", "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 newPassword;
44+
45+
private string endUserId;
46+
47+
public string NewPassword
48+
{
49+
get
50+
{
51+
return newPassword;
52+
}
53+
set
54+
{
55+
newPassword = value;
56+
DictionaryUtil.Add(BodyParameters, "NewPassword", value);
57+
}
58+
}
59+
60+
public string EndUserId
61+
{
62+
get
63+
{
64+
return endUserId;
65+
}
66+
set
67+
{
68+
endUserId = value;
69+
DictionaryUtil.Add(BodyParameters, "EndUserId", value);
70+
}
71+
}
72+
73+
public override bool CheckShowJsonItemName()
74+
{
75+
return false;
76+
}
77+
78+
public override ChangeUserPasswordResponse GetResponse(UnmarshallerContext unmarshallerContext)
79+
{
80+
return ChangeUserPasswordResponseUnmarshaller.Unmarshall(unmarshallerContext);
81+
}
82+
}
83+
}
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
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 ChangeUserPasswordResponse : AcsResponse
26+
{
27+
28+
private string requestId;
29+
30+
public string RequestId
31+
{
32+
get
33+
{
34+
return requestId;
35+
}
36+
set
37+
{
38+
requestId = value;
39+
}
40+
}
41+
}
42+
}
Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
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 CheckUsedPropertyRequest : RpcAcsRequest<CheckUsedPropertyResponse>
31+
{
32+
public CheckUsedPropertyRequest()
33+
: base("eds-user", "2021-03-08", "CheckUsedProperty", "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 long? propertyId;
44+
45+
public long? PropertyId
46+
{
47+
get
48+
{
49+
return propertyId;
50+
}
51+
set
52+
{
53+
propertyId = value;
54+
DictionaryUtil.Add(QueryParameters, "PropertyId", value.ToString());
55+
}
56+
}
57+
58+
public override bool CheckShowJsonItemName()
59+
{
60+
return false;
61+
}
62+
63+
public override CheckUsedPropertyResponse GetResponse(UnmarshallerContext unmarshallerContext)
64+
{
65+
return CheckUsedPropertyResponseUnmarshaller.Unmarshall(unmarshallerContext);
66+
}
67+
}
68+
}

0 commit comments

Comments
 (0)