Movatterモバイル変換


[0]ホーム

URL:


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

Commitc1a3abf

Browse files
committed
Supported Brand.
1 parent8409405 commitc1a3abf

File tree

59 files changed

+2659
-1
lines changed

Some content is hidden

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

59 files changed

+2659
-1
lines changed

‎aliyun-python-sdk-eiam/ChangeLog.txt‎

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2025-10-20 Version: 1.0.4
2+
- Supported Brand.
3+
14
2025-08-25 Version: 1.0.3
25
- Generated 2021-12-01 for `Eiam`.
36

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__='1.0.3'
1+
__version__='1.0.4'
Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
# Licensed to the Apache Software Foundation (ASF) under one
2+
# or more contributor license agreements. See the NOTICE file
3+
# distributed with this work for additional information
4+
# regarding copyright ownership. The ASF licenses this file
5+
# to you under the Apache License, Version 2.0 (the
6+
# "License"); you may not use this file except in compliance
7+
# with the License. You may obtain a copy of the License at
8+
#
9+
#
10+
# http://www.apache.org/licenses/LICENSE-2.0
11+
#
12+
#
13+
# Unless required by applicable law or agreed to in writing,
14+
# software distributed under the License is distributed on an
15+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16+
# KIND, either express or implied. See the License for the
17+
# specific language governing permissions and limitations
18+
# under the License.
19+
20+
fromaliyunsdkcore.requestimportRpcRequest
21+
22+
classAddApplicationAccountToUserRequest(RpcRequest):
23+
24+
def__init__(self):
25+
RpcRequest.__init__(self,'Eiam','2021-12-01','AddApplicationAccountToUser','eiam')
26+
self.set_protocol_type('https')
27+
self.set_method('POST')
28+
29+
defget_UserId(self):# String
30+
returnself.get_query_params().get('UserId')
31+
32+
defset_UserId(self,UserId):# String
33+
self.add_query_param('UserId',UserId)
34+
defget_ApplicationId(self):# String
35+
returnself.get_query_params().get('ApplicationId')
36+
37+
defset_ApplicationId(self,ApplicationId):# String
38+
self.add_query_param('ApplicationId',ApplicationId)
39+
defget_InstanceId(self):# String
40+
returnself.get_query_params().get('InstanceId')
41+
42+
defset_InstanceId(self,InstanceId):# String
43+
self.add_query_param('InstanceId',InstanceId)
44+
defget_ApplicationUsername(self):# String
45+
returnself.get_query_params().get('ApplicationUsername')
46+
47+
defset_ApplicationUsername(self,ApplicationUsername):# String
48+
self.add_query_param('ApplicationUsername',ApplicationUsername)
Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
# Licensed to the Apache Software Foundation (ASF) under one
2+
# or more contributor license agreements. See the NOTICE file
3+
# distributed with this work for additional information
4+
# regarding copyright ownership. The ASF licenses this file
5+
# to you under the Apache License, Version 2.0 (the
6+
# "License"); you may not use this file except in compliance
7+
# with the License. You may obtain a copy of the License at
8+
#
9+
#
10+
# http://www.apache.org/licenses/LICENSE-2.0
11+
#
12+
#
13+
# Unless required by applicable law or agreed to in writing,
14+
# software distributed under the License is distributed on an
15+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16+
# KIND, either express or implied. See the License for the
17+
# specific language governing permissions and limitations
18+
# under the License.
19+
20+
fromaliyunsdkcore.requestimportRpcRequest
21+
22+
classCreateApplicationFederatedCredentialRequest(RpcRequest):
23+
24+
def__init__(self):
25+
RpcRequest.__init__(self,'Eiam','2021-12-01','CreateApplicationFederatedCredential','eiam')
26+
self.set_protocol_type('https')
27+
self.set_method('POST')
28+
29+
defget_Description(self):# String
30+
returnself.get_query_params().get('Description')
31+
32+
defset_Description(self,Description):# String
33+
self.add_query_param('Description',Description)
34+
defget_AttributeMappings(self):# Array
35+
returnself.get_query_params().get('AttributeMappings')
36+
37+
defset_AttributeMappings(self,AttributeMappings):# Array
38+
forindex1,value1inenumerate(AttributeMappings):
39+
ifvalue1.get('SourceValueExpression')isnotNone:
40+
self.add_query_param('AttributeMappings.'+str(index1+1)+'.SourceValueExpression',value1.get('SourceValueExpression'))
41+
ifvalue1.get('TargetField')isnotNone:
42+
self.add_query_param('AttributeMappings.'+str(index1+1)+'.TargetField',value1.get('TargetField'))
43+
defget_FederatedCredentialProviderId(self):# String
44+
returnself.get_query_params().get('FederatedCredentialProviderId')
45+
46+
defset_FederatedCredentialProviderId(self,FederatedCredentialProviderId):# String
47+
self.add_query_param('FederatedCredentialProviderId',FederatedCredentialProviderId)
48+
defget_ApplicationId(self):# String
49+
returnself.get_query_params().get('ApplicationId')
50+
51+
defset_ApplicationId(self,ApplicationId):# String
52+
self.add_query_param('ApplicationId',ApplicationId)
53+
defget_ApplicationFederatedCredentialName(self):# String
54+
returnself.get_query_params().get('ApplicationFederatedCredentialName')
55+
56+
defset_ApplicationFederatedCredentialName(self,ApplicationFederatedCredentialName):# String
57+
self.add_query_param('ApplicationFederatedCredentialName',ApplicationFederatedCredentialName)
58+
defget_InstanceId(self):# String
59+
returnself.get_query_params().get('InstanceId')
60+
61+
defset_InstanceId(self,InstanceId):# String
62+
self.add_query_param('InstanceId',InstanceId)
63+
defget_VerificationCondition(self):# String
64+
returnself.get_query_params().get('VerificationCondition')
65+
66+
defset_VerificationCondition(self,VerificationCondition):# String
67+
self.add_query_param('VerificationCondition',VerificationCondition)
68+
defget_ApplicationFederatedCredentialType(self):# String
69+
returnself.get_query_params().get('ApplicationFederatedCredentialType')
70+
71+
defset_ApplicationFederatedCredentialType(self,ApplicationFederatedCredentialType):# String
72+
self.add_query_param('ApplicationFederatedCredentialType',ApplicationFederatedCredentialType)
Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
# Licensed to the Apache Software Foundation (ASF) under one
2+
# or more contributor license agreements. See the NOTICE file
3+
# distributed with this work for additional information
4+
# regarding copyright ownership. The ASF licenses this file
5+
# to you under the Apache License, Version 2.0 (the
6+
# "License"); you may not use this file except in compliance
7+
# with the License. You may obtain a copy of the License at
8+
#
9+
#
10+
# http://www.apache.org/licenses/LICENSE-2.0
11+
#
12+
#
13+
# Unless required by applicable law or agreed to in writing,
14+
# software distributed under the License is distributed on an
15+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16+
# KIND, either express or implied. See the License for the
17+
# specific language governing permissions and limitations
18+
# under the License.
19+
20+
fromaliyunsdkcore.requestimportRpcRequest
21+
22+
classCreateApplicationTokenRequest(RpcRequest):
23+
24+
def__init__(self):
25+
RpcRequest.__init__(self,'Eiam','2021-12-01','CreateApplicationToken','eiam')
26+
self.set_protocol_type('https')
27+
self.set_method('POST')
28+
29+
defget_ExpirationTime(self):# Long
30+
returnself.get_query_params().get('ExpirationTime')
31+
32+
defset_ExpirationTime(self,ExpirationTime):# Long
33+
self.add_query_param('ExpirationTime',ExpirationTime)
34+
defget_ApplicationId(self):# String
35+
returnself.get_query_params().get('ApplicationId')
36+
37+
defset_ApplicationId(self,ApplicationId):# String
38+
self.add_query_param('ApplicationId',ApplicationId)
39+
defget_ApplicationTokenType(self):# String
40+
returnself.get_query_params().get('ApplicationTokenType')
41+
42+
defset_ApplicationTokenType(self,ApplicationTokenType):# String
43+
self.add_query_param('ApplicationTokenType',ApplicationTokenType)
44+
defget_InstanceId(self):# String
45+
returnself.get_query_params().get('InstanceId')
46+
47+
defset_InstanceId(self,InstanceId):# String
48+
self.add_query_param('InstanceId',InstanceId)
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
# Licensed to the Apache Software Foundation (ASF) under one
2+
# or more contributor license agreements. See the NOTICE file
3+
# distributed with this work for additional information
4+
# regarding copyright ownership. The ASF licenses this file
5+
# to you under the Apache License, Version 2.0 (the
6+
# "License"); you may not use this file except in compliance
7+
# with the License. You may obtain a copy of the License at
8+
#
9+
#
10+
# http://www.apache.org/licenses/LICENSE-2.0
11+
#
12+
#
13+
# Unless required by applicable law or agreed to in writing,
14+
# software distributed under the License is distributed on an
15+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16+
# KIND, either express or implied. See the License for the
17+
# specific language governing permissions and limitations
18+
# under the License.
19+
20+
fromaliyunsdkcore.requestimportRpcRequest
21+
22+
classCreateBrandRequest(RpcRequest):
23+
24+
def__init__(self):
25+
RpcRequest.__init__(self,'Eiam','2021-12-01','CreateBrand','eiam')
26+
self.set_protocol_type('https')
27+
self.set_method('POST')
28+
29+
defget_BrandName(self):# String
30+
returnself.get_query_params().get('BrandName')
31+
32+
defset_BrandName(self,BrandName):# String
33+
self.add_query_param('BrandName',BrandName)
34+
defget_InstanceId(self):# String
35+
returnself.get_query_params().get('InstanceId')
36+
37+
defset_InstanceId(self,InstanceId):# String
38+
self.add_query_param('InstanceId',InstanceId)
Lines changed: 100 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,100 @@
1+
# Licensed to the Apache Software Foundation (ASF) under one
2+
# or more contributor license agreements. See the NOTICE file
3+
# distributed with this work for additional information
4+
# regarding copyright ownership. The ASF licenses this file
5+
# to you under the Apache License, Version 2.0 (the
6+
# "License"); you may not use this file except in compliance
7+
# with the License. You may obtain a copy of the License at
8+
#
9+
#
10+
# http://www.apache.org/licenses/LICENSE-2.0
11+
#
12+
#
13+
# Unless required by applicable law or agreed to in writing,
14+
# software distributed under the License is distributed on an
15+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16+
# KIND, either express or implied. See the License for the
17+
# specific language governing permissions and limitations
18+
# under the License.
19+
20+
fromaliyunsdkcore.requestimportRpcRequest
21+
22+
classCreateFederatedCredentialProviderRequest(RpcRequest):
23+
24+
def__init__(self):
25+
RpcRequest.__init__(self,'Eiam','2021-12-01','CreateFederatedCredentialProvider','eiam')
26+
self.set_protocol_type('https')
27+
self.set_method('POST')
28+
29+
defget_OidcProviderConfig(self):# Struct
30+
returnself.get_query_params().get('OidcProviderConfig')
31+
32+
defset_OidcProviderConfig(self,OidcProviderConfig):# Struct
33+
ifOidcProviderConfig.get('JwksSource')isnotNone:
34+
self.add_query_param('OidcProviderConfig.JwksSource',OidcProviderConfig.get('JwksSource'))
35+
ifOidcProviderConfig.get('StaticJwks')isnotNone:
36+
self.add_query_param('OidcProviderConfig.StaticJwks',OidcProviderConfig.get('StaticJwks'))
37+
ifOidcProviderConfig.get('TrustCondition')isnotNone:
38+
self.add_query_param('OidcProviderConfig.TrustCondition',OidcProviderConfig.get('TrustCondition'))
39+
ifOidcProviderConfig.get('JwksUri')isnotNone:
40+
self.add_query_param('OidcProviderConfig.JwksUri',OidcProviderConfig.get('JwksUri'))
41+
ifOidcProviderConfig.get('Audiences')isnotNone:
42+
forindex1,value1inenumerate(OidcProviderConfig.get('Audiences')):
43+
self.add_query_param('OidcProviderConfig.Audiences.'+str(index1+1),value1)
44+
ifOidcProviderConfig.get('Issuer')isnotNone:
45+
self.add_query_param('OidcProviderConfig.Issuer',OidcProviderConfig.get('Issuer'))
46+
defget_FederatedCredentialProviderName(self):# String
47+
returnself.get_query_params().get('FederatedCredentialProviderName')
48+
49+
defset_FederatedCredentialProviderName(self,FederatedCredentialProviderName):# String
50+
self.add_query_param('FederatedCredentialProviderName',FederatedCredentialProviderName)
51+
defget_Description(self):# String
52+
returnself.get_query_params().get('Description')
53+
54+
defset_Description(self,Description):# String
55+
self.add_query_param('Description',Description)
56+
defget_NetworkAccessEndpointId(self):# String
57+
returnself.get_query_params().get('NetworkAccessEndpointId')
58+
59+
defset_NetworkAccessEndpointId(self,NetworkAccessEndpointId):# String
60+
self.add_query_param('NetworkAccessEndpointId',NetworkAccessEndpointId)
61+
defget_PrivateCaProviderConfig(self):# Struct
62+
returnself.get_query_params().get('PrivateCaProviderConfig')
63+
64+
defset_PrivateCaProviderConfig(self,PrivateCaProviderConfig):# Struct
65+
ifPrivateCaProviderConfig.get('Certificates')isnotNone:
66+
forindex1,value1inenumerate(PrivateCaProviderConfig.get('Certificates')):
67+
ifvalue1.get('Content')isnotNone:
68+
self.add_query_param('PrivateCaProviderConfig.Certificates.'+str(index1+1)+'.Content',value1.get('Content'))
69+
ifPrivateCaProviderConfig.get('TrustCondition')isnotNone:
70+
self.add_query_param('PrivateCaProviderConfig.TrustCondition',PrivateCaProviderConfig.get('TrustCondition'))
71+
ifPrivateCaProviderConfig.get('TrustAnchorSource')isnotNone:
72+
self.add_query_param('PrivateCaProviderConfig.TrustAnchorSource',PrivateCaProviderConfig.get('TrustAnchorSource'))
73+
defget_FederatedCredentialProviderType(self):# String
74+
returnself.get_query_params().get('FederatedCredentialProviderType')
75+
76+
defset_FederatedCredentialProviderType(self,FederatedCredentialProviderType):# String
77+
self.add_query_param('FederatedCredentialProviderType',FederatedCredentialProviderType)
78+
defget_InstanceId(self):# String
79+
returnself.get_query_params().get('InstanceId')
80+
81+
defset_InstanceId(self,InstanceId):# String
82+
self.add_query_param('InstanceId',InstanceId)
83+
defget_Pkcs7ProviderConfig(self):# Struct
84+
returnself.get_query_params().get('Pkcs7ProviderConfig')
85+
86+
defset_Pkcs7ProviderConfig(self,Pkcs7ProviderConfig):# Struct
87+
ifPkcs7ProviderConfig.get('SigningTimeValueExpression')isnotNone:
88+
self.add_query_param('Pkcs7ProviderConfig.SigningTimeValueExpression',Pkcs7ProviderConfig.get('SigningTimeValueExpression'))
89+
ifPkcs7ProviderConfig.get('Certificates')isnotNone:
90+
forindex1,value1inenumerate(Pkcs7ProviderConfig.get('Certificates')):
91+
ifvalue1.get('Content')isnotNone:
92+
self.add_query_param('Pkcs7ProviderConfig.Certificates.'+str(index1+1)+'.Content',value1.get('Content'))
93+
ifPkcs7ProviderConfig.get('TrustCondition')isnotNone:
94+
self.add_query_param('Pkcs7ProviderConfig.TrustCondition',Pkcs7ProviderConfig.get('TrustCondition'))
95+
ifPkcs7ProviderConfig.get('CmsVerificationMode')isnotNone:
96+
self.add_query_param('Pkcs7ProviderConfig.CmsVerificationMode',Pkcs7ProviderConfig.get('CmsVerificationMode'))
97+
ifPkcs7ProviderConfig.get('TrustAnchorSource')isnotNone:
98+
self.add_query_param('Pkcs7ProviderConfig.TrustAnchorSource',Pkcs7ProviderConfig.get('TrustAnchorSource'))
99+
ifPkcs7ProviderConfig.get('SignatureEffectiveTime')isnotNone:
100+
self.add_query_param('Pkcs7ProviderConfig.SignatureEffectiveTime',Pkcs7ProviderConfig.get('SignatureEffectiveTime'))
Lines changed: 70 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
# Licensed to the Apache Software Foundation (ASF) under one
2+
# or more contributor license agreements. See the NOTICE file
3+
# distributed with this work for additional information
4+
# regarding copyright ownership. The ASF licenses this file
5+
# to you under the Apache License, Version 2.0 (the
6+
# "License"); you may not use this file except in compliance
7+
# with the License. You may obtain a copy of the License at
8+
#
9+
#
10+
# http://www.apache.org/licenses/LICENSE-2.0
11+
#
12+
#
13+
# Unless required by applicable law or agreed to in writing,
14+
# software distributed under the License is distributed on an
15+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16+
# KIND, either express or implied. See the License for the
17+
# specific language governing permissions and limitations
18+
# under the License.
19+
20+
fromaliyunsdkcore.requestimportRpcRequest
21+
22+
classCreateNetworkZoneRequest(RpcRequest):
23+
24+
def__init__(self):
25+
RpcRequest.__init__(self,'Eiam','2021-12-01','CreateNetworkZone','eiam')
26+
self.set_protocol_type('https')
27+
self.set_method('POST')
28+
29+
defget_NetworkZoneType(self):# String
30+
returnself.get_query_params().get('NetworkZoneType')
31+
32+
defset_NetworkZoneType(self,NetworkZoneType):# String
33+
self.add_query_param('NetworkZoneType',NetworkZoneType)
34+
defget_ClientToken(self):# String
35+
returnself.get_query_params().get('ClientToken')
36+
37+
defset_ClientToken(self,ClientToken):# String
38+
self.add_query_param('ClientToken',ClientToken)
39+
defget_Ipv6Cidrs(self):# Array
40+
returnself.get_query_params().get('Ipv6Cidrs')
41+
42+
defset_Ipv6Cidrs(self,Ipv6Cidrs):# Array
43+
forindex1,value1inenumerate(Ipv6Cidrs):
44+
self.add_query_param('Ipv6Cidrs.'+str(index1+1),value1)
45+
defget_Description(self):# String
46+
returnself.get_query_params().get('Description')
47+
48+
defset_Description(self,Description):# String
49+
self.add_query_param('Description',Description)
50+
defget_NetworkZoneName(self):# String
51+
returnself.get_query_params().get('NetworkZoneName')
52+
53+
defset_NetworkZoneName(self,NetworkZoneName):# String
54+
self.add_query_param('NetworkZoneName',NetworkZoneName)
55+
defget_Ipv4Cidrs(self):# Array
56+
returnself.get_query_params().get('Ipv4Cidrs')
57+
58+
defset_Ipv4Cidrs(self,Ipv4Cidrs):# Array
59+
forindex1,value1inenumerate(Ipv4Cidrs):
60+
self.add_query_param('Ipv4Cidrs.'+str(index1+1),value1)
61+
defget_InstanceId(self):# String
62+
returnself.get_query_params().get('InstanceId')
63+
64+
defset_InstanceId(self,InstanceId):# String
65+
self.add_query_param('InstanceId',InstanceId)
66+
defget_VpcId(self):# String
67+
returnself.get_query_params().get('VpcId')
68+
69+
defset_VpcId(self,VpcId):# String
70+
self.add_query_param('VpcId',VpcId)

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp