Skip to content

Commit

Permalink
Generated 2018-01-15 for dcdn.
Browse files Browse the repository at this point in the history
  • Loading branch information
sdk-team committed Apr 30, 2024
1 parent 543b55c commit a048516
Show file tree
Hide file tree
Showing 20 changed files with 708 additions and 4 deletions.
3 changes: 3 additions & 0 deletions aliyun-python-sdk-dcdn/ChangeLog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
2024-04-30 Version: 2.2.19
- Generated 2018-01-15 for `dcdn`.

2023-10-07 Version: 2.2.18
- Update PutDcdnKv.

Expand Down
2 changes: 1 addition & 1 deletion aliyun-python-sdk-dcdn/aliyunsdkdcdn/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '2.2.18'
__version__ = '2.2.19'
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
#
# http://www.apache.org/licenses/LICENSE-2.0
#
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.

from aliyunsdkcore.request import RpcRequest
from aliyunsdkdcdn.endpoint import endpoint_data
import json

class BatchDeleteDcdnKvRequest(RpcRequest):

def __init__(self):
RpcRequest.__init__(self, 'dcdn', '2018-01-15', 'BatchDeleteDcdnKv')
self.set_protocol_type('https')
self.set_method('POST')

if hasattr(self, "endpoint_map"):
setattr(self, "endpoint_map", endpoint_data.getEndpointMap())
if hasattr(self, "endpoint_regional"):
setattr(self, "endpoint_regional", endpoint_data.getEndpointRegional())

def get_Keys(self): # Array
return self.get_body_params().get('Keys')

def set_Keys(self, Keys): # Array
self.add_body_params("Keys", json.dumps(Keys))
def get_Namespace(self): # String
return self.get_query_params().get('Namespace')

def set_Namespace(self, Namespace): # String
self.add_query_param('Namespace', Namespace)
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
#
# http://www.apache.org/licenses/LICENSE-2.0
#
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.

from aliyunsdkcore.request import RpcRequest
from aliyunsdkdcdn.endpoint import endpoint_data

class BatchDeleteDcdnKvWithHighCapacityRequest(RpcRequest):

def __init__(self):
RpcRequest.__init__(self, 'dcdn', '2018-01-15', 'BatchDeleteDcdnKvWithHighCapacity')
self.set_protocol_type('https')
self.set_method('POST')

if hasattr(self, "endpoint_map"):
setattr(self, "endpoint_map", endpoint_data.getEndpointMap())
if hasattr(self, "endpoint_regional"):
setattr(self, "endpoint_regional", endpoint_data.getEndpointRegional())

def get_Namespace(self): # String
return self.get_query_params().get('Namespace')

def set_Namespace(self, Namespace): # String
self.add_query_param('Namespace', Namespace)
def get_Url(self): # String
return self.get_query_params().get('Url')

def set_Url(self, Url): # String
self.add_query_param('Url', Url)
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,10 @@ def __init__(self):
setattr(self, "endpoint_regional", endpoint_data.getEndpointRegional())

def get_KvList(self): # Array
return self.get_query_params().get('KvList')
return self.get_body_params().get('KvList')

def set_KvList(self, KvList): # Array
self.add_query_param("KvList", json.dumps(KvList))
self.add_body_params("KvList", json.dumps(KvList))
def get_Namespace(self): # String
return self.get_query_params().get('Namespace')

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
#
# http://www.apache.org/licenses/LICENSE-2.0
#
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.

from aliyunsdkcore.request import RpcRequest
from aliyunsdkdcdn.endpoint import endpoint_data

class BatchPutDcdnKvWithHighCapacityRequest(RpcRequest):

def __init__(self):
RpcRequest.__init__(self, 'dcdn', '2018-01-15', 'BatchPutDcdnKvWithHighCapacity')
self.set_protocol_type('https')
self.set_method('POST')

if hasattr(self, "endpoint_map"):
setattr(self, "endpoint_map", endpoint_data.getEndpointMap())
if hasattr(self, "endpoint_regional"):
setattr(self, "endpoint_regional", endpoint_data.getEndpointRegional())

def get_Namespace(self): # String
return self.get_query_params().get('Namespace')

def set_Namespace(self, Namespace): # String
self.add_query_param('Namespace', Namespace)
def get_Url(self): # String
return self.get_query_params().get('Url')

def set_Url(self, Url): # String
self.add_query_param('Url', Url)
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
#
# http://www.apache.org/licenses/LICENSE-2.0
#
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.

from aliyunsdkcore.request import RpcRequest
from aliyunsdkdcdn.endpoint import endpoint_data

class CreateDcdnCertificateSigningRequestRequest(RpcRequest):

def __init__(self):
RpcRequest.__init__(self, 'dcdn', '2018-01-15', 'CreateDcdnCertificateSigningRequest')
self.set_method('POST')

if hasattr(self, "endpoint_map"):
setattr(self, "endpoint_map", endpoint_data.getEndpointMap())
if hasattr(self, "endpoint_regional"):
setattr(self, "endpoint_regional", endpoint_data.getEndpointRegional())

def get_Country(self): # String
return self.get_query_params().get('Country')

def set_Country(self, Country): # String
self.add_query_param('Country', Country)
def get_CommonName(self): # String
return self.get_query_params().get('CommonName')

def set_CommonName(self, CommonName): # String
self.add_query_param('CommonName', CommonName)
def get_City(self): # String
return self.get_query_params().get('City')

def set_City(self, City): # String
self.add_query_param('City', City)
def get_SANs(self): # String
return self.get_query_params().get('SANs')

def set_SANs(self, SANs): # String
self.add_query_param('SANs', SANs)
def get_Organization(self): # String
return self.get_query_params().get('Organization')

def set_Organization(self, Organization): # String
self.add_query_param('Organization', Organization)
def get_State(self): # String
return self.get_query_params().get('State')

def set_State(self, State): # String
self.add_query_param('State', State)
def get_OrganizationUnit(self): # String
return self.get_query_params().get('OrganizationUnit')

def set_OrganizationUnit(self, OrganizationUnit): # String
self.add_query_param('OrganizationUnit', OrganizationUnit)
def get_Email(self): # String
return self.get_query_params().get('Email')

def set_Email(self, Email): # String
self.add_query_param('Email', Email)
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
#
# http://www.apache.org/licenses/LICENSE-2.0
#
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.

from aliyunsdkcore.request import RpcRequest
from aliyunsdkdcdn.endpoint import endpoint_data

class DescribeDcdnDomainLogExTtlRequest(RpcRequest):

def __init__(self):
RpcRequest.__init__(self, 'dcdn', '2018-01-15', 'DescribeDcdnDomainLogExTtl')
self.set_method('POST')

if hasattr(self, "endpoint_map"):
setattr(self, "endpoint_map", endpoint_data.getEndpointMap())
if hasattr(self, "endpoint_regional"):
setattr(self, "endpoint_regional", endpoint_data.getEndpointRegional())

def get_DomainName(self): # String
return self.get_query_params().get('DomainName')

def set_DomainName(self, DomainName): # String
self.add_query_param('DomainName', DomainName)
def get_PageSize(self): # Long
return self.get_query_params().get('PageSize')

def set_PageSize(self, PageSize): # Long
self.add_query_param('PageSize', PageSize)
def get_EndTime(self): # String
return self.get_query_params().get('EndTime')

def set_EndTime(self, EndTime): # String
self.add_query_param('EndTime', EndTime)
def get_StartTime(self): # String
return self.get_query_params().get('StartTime')

def set_StartTime(self, StartTime): # String
self.add_query_param('StartTime', StartTime)
def get_PageNumber(self): # Long
return self.get_query_params().get('PageNumber')

def set_PageNumber(self, PageNumber): # Long
self.add_query_param('PageNumber', PageNumber)
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
#
# http://www.apache.org/licenses/LICENSE-2.0
#
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.

from aliyunsdkcore.request import RpcRequest
from aliyunsdkdcdn.endpoint import endpoint_data

class DescribeDcdnDomainsBySourceRequest(RpcRequest):

def __init__(self):
RpcRequest.__init__(self, 'dcdn', '2018-01-15', 'DescribeDcdnDomainsBySource')
self.set_protocol_type('https')
self.set_method('POST')

if hasattr(self, "endpoint_map"):
setattr(self, "endpoint_map", endpoint_data.getEndpointMap())
if hasattr(self, "endpoint_regional"):
setattr(self, "endpoint_regional", endpoint_data.getEndpointRegional())

def get_Sources(self): # String
return self.get_query_params().get('Sources')

def set_Sources(self, Sources): # String
self.add_query_param('Sources', Sources)
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
#
# http://www.apache.org/licenses/LICENSE-2.0
#
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.

from aliyunsdkcore.request import RpcRequest
from aliyunsdkdcdn.endpoint import endpoint_data

class DescribeDcdnOriginSiteHealthStatusRequest(RpcRequest):

def __init__(self):
RpcRequest.__init__(self, 'dcdn', '2018-01-15', 'DescribeDcdnOriginSiteHealthStatus')
self.set_protocol_type('https')
self.set_method('POST')

if hasattr(self, "endpoint_map"):
setattr(self, "endpoint_map", endpoint_data.getEndpointMap())
if hasattr(self, "endpoint_regional"):
setattr(self, "endpoint_regional", endpoint_data.getEndpointRegional())

def get_DomainName(self): # String
return self.get_query_params().get('DomainName')

def set_DomainName(self, DomainName): # String
self.add_query_param('DomainName', DomainName)

0 comments on commit a048516

Please sign in to comment.