Skip to content

Commit 614e58a

Browse files
committed
发布20250317
1 parent c6e9ff5 commit 614e58a

19 files changed

+318
-56
lines changed

aliyun-python-sdk-oos/ChangeLog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2025-03-17 Version: 1.5.16
2+
- 发布20250317
3+
14
2024-03-25 Version: 1.5.15
25
- Generated 2019-06-01 for `oos`.
36

aliyun-python-sdk-oos/README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Aliyun Python SDK is the official software development kit. It makes things easy
88

99
This module works on Python versions:
1010

11-
2.6.5 and greater
11+
3.7 and greater
1212

1313
**Documentation:**
1414

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '1.5.15'
1+
__version__ = '1.5.16'

aliyun-python-sdk-oos/aliyunsdkoos/request/v20190601/ListGitRepositoriesRequest.py renamed to aliyun-python-sdk-oos/aliyunsdkoos/request/v20190601/AnalyzeGitRepositoryRequest.py

Lines changed: 23 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -20,44 +20,50 @@
2020
from aliyunsdkcore.request import RpcRequest
2121
from aliyunsdkoos.endpoint import endpoint_data
2222

23-
class ListGitRepositoriesRequest(RpcRequest):
23+
class AnalyzeGitRepositoryRequest(RpcRequest):
2424

2525
def __init__(self):
26-
RpcRequest.__init__(self, 'oos', '2019-06-01', 'ListGitRepositories','oos')
26+
RpcRequest.__init__(self, 'oos', '2019-06-01', 'AnalyzeGitRepository','oos')
27+
self.set_protocol_type('https')
2728
self.set_method('POST')
2829

2930
if hasattr(self, "endpoint_map"):
3031
setattr(self, "endpoint_map", endpoint_data.getEndpointMap())
3132
if hasattr(self, "endpoint_regional"):
3233
setattr(self, "endpoint_regional", endpoint_data.getEndpointRegional())
3334

35+
def get_RepoId(self): # String
36+
return self.get_query_params().get('RepoId')
37+
38+
def set_RepoId(self, RepoId): # String
39+
self.add_query_param('RepoId', RepoId)
3440
def get_ClientToken(self): # String
3541
return self.get_query_params().get('ClientToken')
3642

3743
def set_ClientToken(self, ClientToken): # String
3844
self.add_query_param('ClientToken', ClientToken)
45+
def get_RepoFullName(self): # String
46+
return self.get_query_params().get('RepoFullName')
47+
48+
def set_RepoFullName(self, RepoFullName): # String
49+
self.add_query_param('RepoFullName', RepoFullName)
50+
def get_Branch(self): # String
51+
return self.get_query_params().get('Branch')
52+
53+
def set_Branch(self, Branch): # String
54+
self.add_query_param('Branch', Branch)
3955
def get_Platform(self): # String
4056
return self.get_query_params().get('Platform')
4157

4258
def set_Platform(self, Platform): # String
4359
self.add_query_param('Platform', Platform)
44-
def get_PageNumber(self): # Integer
45-
return self.get_query_params().get('PageNumber')
46-
47-
def set_PageNumber(self, PageNumber): # Integer
48-
self.add_query_param('PageNumber', PageNumber)
49-
def get_OrgName(self): # String
50-
return self.get_query_params().get('OrgName')
51-
52-
def set_OrgName(self, OrgName): # String
53-
self.add_query_param('OrgName', OrgName)
54-
def get_PageSize(self): # Integer
55-
return self.get_query_params().get('PageSize')
56-
57-
def set_PageSize(self, PageSize): # Integer
58-
self.add_query_param('PageSize', PageSize)
5960
def get_Owner(self): # String
6061
return self.get_query_params().get('Owner')
6162

6263
def set_Owner(self, Owner): # String
6364
self.add_query_param('Owner', Owner)
65+
def get_OrgId(self): # String
66+
return self.get_query_params().get('OrgId')
67+
68+
def set_OrgId(self, OrgId): # String
69+
self.add_query_param('OrgId', OrgId)

aliyun-python-sdk-oos/aliyunsdkoos/request/v20190601/CreateApplicationRequest.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,11 @@ def get_ResourceGroupId(self): # String
5252

5353
def set_ResourceGroupId(self, ResourceGroupId): # String
5454
self.add_query_param('ResourceGroupId', ResourceGroupId)
55+
def get_ApplicationSource(self): # String
56+
return self.get_query_params().get('ApplicationSource')
57+
58+
def set_ApplicationSource(self, ApplicationSource): # String
59+
self.add_query_param('ApplicationSource', ApplicationSource)
5560
def get_Tags(self): # String
5661
return self.get_query_params().get('Tags')
5762

aliyun-python-sdk-oos/aliyunsdkoos/request/v20190601/CreateParameterRequest.py

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -51,23 +51,23 @@ def get_Constraints(self): # String
5151

5252
def set_Constraints(self, Constraints): # String
5353
self.add_query_param('Constraints', Constraints)
54-
def get_Tags(self): # String
55-
return self.get_query_params().get('Tags')
56-
57-
def set_Tags(self, Tags): # String
58-
self.add_query_param('Tags', Tags)
5954
def get_ResourceGroupId(self): # String
6055
return self.get_query_params().get('ResourceGroupId')
6156

6257
def set_ResourceGroupId(self, ResourceGroupId): # String
6358
self.add_query_param('ResourceGroupId', ResourceGroupId)
64-
def get_Name(self): # String
65-
return self.get_query_params().get('Name')
66-
67-
def set_Name(self, Name): # String
68-
self.add_query_param('Name', Name)
6959
def get_Value(self): # String
7060
return self.get_query_params().get('Value')
7161

7262
def set_Value(self, Value): # String
7363
self.add_query_param('Value', Value)
64+
def get_Tags(self): # String
65+
return self.get_query_params().get('Tags')
66+
67+
def set_Tags(self, Tags): # String
68+
self.add_query_param('Tags', Tags)
69+
def get_Name(self): # String
70+
return self.get_query_params().get('Name')
71+
72+
def set_Name(self, Name): # String
73+
self.add_query_param('Name', Name)

aliyun-python-sdk-oos/aliyunsdkoos/request/v20190601/CreateSecretParameterRequest.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,11 @@ def get_ResourceGroupId(self): # String
5757

5858
def set_ResourceGroupId(self, ResourceGroupId): # String
5959
self.add_query_param('ResourceGroupId', ResourceGroupId)
60+
def get_DKMSInstanceId(self): # String
61+
return self.get_query_params().get('DKMSInstanceId')
62+
63+
def set_DKMSInstanceId(self, DKMSInstanceId): # String
64+
self.add_query_param('DKMSInstanceId', DKMSInstanceId)
6065
def get_Value(self): # String
6166
return self.get_query_params().get('Value')
6267

aliyun-python-sdk-oos/aliyunsdkoos/request/v20190601/DeleteExecutionsRequest.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,3 +36,8 @@ def get_ExecutionIds(self): # String
3636

3737
def set_ExecutionIds(self, ExecutionIds): # String
3838
self.add_query_param('ExecutionIds', ExecutionIds)
39+
def get_Force(self): # Boolean
40+
return self.get_query_params().get('Force')
41+
42+
def set_Force(self, Force): # Boolean
43+
self.add_query_param('Force', Force)
Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
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+
from aliyunsdkcore.request import RpcRequest
21+
from aliyunsdkoos.endpoint import endpoint_data
22+
23+
class GenerateOpsItemRequest(RpcRequest):
24+
25+
def __init__(self):
26+
RpcRequest.__init__(self, 'oos', '2019-06-01', 'GenerateOpsItem','oos')
27+
self.set_method('POST')
28+
29+
if hasattr(self, "endpoint_map"):
30+
setattr(self, "endpoint_map", endpoint_data.getEndpointMap())
31+
if hasattr(self, "endpoint_regional"):
32+
setattr(self, "endpoint_regional", endpoint_data.getEndpointRegional())
33+
34+
def get_Data(self): # String
35+
return self.get_query_params().get('Data')
36+
37+
def set_Data(self, Data): # String
38+
self.add_query_param('Data', Data)
39+
def get_ClientToken(self): # String
40+
return self.get_query_params().get('ClientToken')
41+
42+
def set_ClientToken(self, ClientToken): # String
43+
self.add_query_param('ClientToken', ClientToken)
44+
def get_DataSource(self): # String
45+
return self.get_query_params().get('DataSource')
46+
47+
def set_DataSource(self, DataSource): # String
48+
self.add_query_param('DataSource', DataSource)
49+
def get_ConfigurationId(self): # String
50+
return self.get_query_params().get('ConfigurationId')
51+
52+
def set_ConfigurationId(self, ConfigurationId): # String
53+
self.add_query_param('ConfigurationId', ConfigurationId)

aliyun-python-sdk-oos/aliyunsdkoos/request/v20190601/GetServiceSettingsRequest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ class GetServiceSettingsRequest(RpcRequest):
2424

2525
def __init__(self):
2626
RpcRequest.__init__(self, 'oos', '2019-06-01', 'GetServiceSettings','oos')
27-
self.set_method('POST')
27+
self.set_method('GET')
2828

2929
if hasattr(self, "endpoint_map"):
3030
setattr(self, "endpoint_map", endpoint_data.getEndpointMap())

0 commit comments

Comments
 (0)