Source code for jdcloud_sdk.services.baseanti.apis.DescribeIpResourcesRequest

# coding=utf8

# Copyright 2018 JDCLOUD.COM
#
# Licensed 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.
#
# NOTE: This class is auto generated by the jdcloud code generator program.

from jdcloud_sdk.core.jdcloudrequest import JDCloudRequest


[docs]class DescribeIpResourcesRequest(JDCloudRequest): """ 查询基础防护已防护的公网 IP 的安全信息列表. 包括私有网络的弹性公网 IP(运营商级 NAT 保留地址除外), 云物理服务器的公网 IP 和弹性公网 IP. (已废弃, 建议使用 <a href='http://docs.jdcloud.com/anti-ddos-basic/api/describeelasticipresources'>describeElasticIpResources</a>, <a href='http://docs.jdcloud.com/anti-ddos-basic/api/describecpsipresources'>describeCpsIpResources</a> 接口) """ def __init__(self, parameters, header=None, version="v1"): super(DescribeIpResourcesRequest, self).__init__( '/regions/{regionId}/ipResources', 'GET', header, version) self.parameters = parameters
[docs]class DescribeIpResourcesParameters(object): def __init__(self, regionId, ): """ :param regionId: 地域编码. 基础防护已支持华北-北京, 华东-宿迁, 华东-上海, 华南-广州 """ self.regionId = regionId self.ip = None
[docs] def setIp(self, ip): """ :param ip: (Optional) IP 模糊匹配 """ self.ip = ip