| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389 |
- # Copyright (c) 2014 Baidu.com, Inc. All Rights Reserved
- #
- # 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.
- """
- This module provides a client class for ROUTE.
- """
- import copy
- import json
- import logging
- import uuid
- from baidubce import bce_base_client
- from baidubce.auth import bce_v1_signer
- from baidubce.http import bce_http_client
- from baidubce.http import handler
- from baidubce.http import http_methods
- from baidubce.utils import required
- from baidubce import compat
- _logger = logging.getLogger(__name__)
- class RouteClient(bce_base_client.BceBaseClient):
- """
- Route base sdk client
- """
- prefix = b'/v1'
- def __init__(self, config=None):
- bce_base_client.BceBaseClient.__init__(self, config)
- def _merge_config(self, config=None):
- """
- :param config:
- :type config: baidubce.BceClientConfiguration
- :return:
- """
- if config is None:
- return self.config
- else:
- new_config = copy.copy(self.config)
- new_config.merge_non_none_values(config)
- return new_config
- def _send_request(self, http_method, path,
- body=None, headers=None, params=None,
- config=None, body_parser=None):
- config = self._merge_config(config)
- if body_parser is None:
- body_parser = handler.parse_json
- if headers is None:
- headers = {b'Accept': b'*/*', b'Content-Type': b'application/json;charset=utf-8'}
- return bce_http_client.send_request(
- config, bce_v1_signer.sign, [handler.parse_error, body_parser],
- http_method, RouteClient.prefix + path, body, headers, params)
- @required(route_table_id=(bytes, str),
- source_address=(bytes, str),
- destination_address=(bytes, str),
- description=(bytes, str))
- def create_route(self, route_table_id, source_address, destination_address,
- next_hop_type=None, description="", next_hop_id=None, ip_version=None,
- next_hops=None, client_token=None,
- config=None):
- """
- Create a route with the specified options.
- :param route_table_id:
- The id of the route table.
- :type route_table_id: string
- :param source_address:
- The source address of the route.
- :type source_address: string
- :param destination_address:
- The destination address of the route
- :type destination_address: string
- :param next_hop_type:
- route type
- the Bcc type is "custom";
- the VPN type is "vpn";
- the NAT type is "nat";
- the dedicatedGateway type is "dcGateway"; Multi-line mode does not require
- the PeerConn type is "peerConn";
- the ENIC type is "enic";
- the HaVip type is "havip";
- the ipv6Gateway type is "ipv6gateway";
- the local gateway type is "defaultGateway"
- :type next_hop_type: string
- :param description:
- The option param to describe the route table.
- :type description: string
- :param next_hop_id:
- The next hop id
- when the nexthopType is "defaultGateway",this field can be empty
- :type next_hop_id: string
- :param next_hop_id:
- The next hop id
- when the nexthopType is "defaultGateway",this field can be empty
- :type next_hop_id: string
- :param next_hop_list:
- The optional list of dcGateway Multi-line mode route to create.
- - NextHop.nexthopId next hop dcGateway ID
- - NextHop.nexthopType Route type. Currently only supports dedicatedGateway type: "dcGateway"
- - NextHop.pathType Multiline mode. The value of load balancing is ecmp; the values of active and
- standby modes are ha:active and ha:standby, which represent the active and standby routes respectively
- :type next_hop_list: list<route_model.NextHop>
- :param client_token:
- If the clientToken is not specified by the user, a random String
- generated by default algorithm will be used.
- :type client_token: string
- :param config:
- :type config: baidubce.BceClientConfiguration
- :return:
- :rtype baidubce.bce_response.BceResponse
- """
- path = b'/route/rule'
- params = {}
- if client_token is None:
- params[b'clientToken'] = generate_client_token()
- else:
- params[b'clientToken'] = client_token
- body = {
- 'routeTableId': compat.convert_to_string(route_table_id),
- 'sourceAddress': compat.convert_to_string(source_address),
- 'destinationAddress': compat.convert_to_string(destination_address),
- 'description': compat.convert_to_string(description)
- }
- if next_hop_type is not None:
- body['nexthopType'] = compat.convert_to_string(next_hop_type)
- if next_hop_id is not None:
- body['nexthopId'] = compat.convert_to_string(next_hop_id)
- if ip_version is not None:
- body['ipVersion'] = compat.convert_to_string(ip_version)
- if next_hops is not None:
- next_hop_list = [next_hop.__dict__ for next_hop in next_hops]
- body['nextHopList'] = next_hop_list
- return self._send_request(http_methods.POST, path, body=json.dumps(body), params=params,
- config=config)
- @required(vpc_id=(bytes, str), route_table_id=(bytes, str))
- def get_route(self, vpc_id=None, route_table_id=None, config=None):
- """
- Get the detail information of route table for specific route table or/and vpc.
- :param vpc_id:
- the vpc id
- vpcId and routeTableId cannot be empty at the same time
- :type vpc_id: string
- :param route_table_id:
- the id of the route table
- vpcId and routeTableId cannot be empty at the same time
- :type route_table_id: string
- :param config:
- :type config: baidubce.BceClientConfiguration
- :return:
- :rtype baidubce.bce_response.BceResponse
- """
- path = b'/route'
- params = {}
- if route_table_id is not None:
- params[b'routeTableId'] = route_table_id
- if vpc_id is not None:
- params[b'vpcId'] = vpc_id
- return self._send_request(http_methods.GET, path, params=params, config=config)
- @required(version=(bytes, str), routeTableId=(bytes, str), vpcId=(bytes, str), marker=(bytes, str), maxKeys=int)
- def get_route_rule(self, routeTableId=None, vpcId=None, marker=None, maxKeys=None, config=None):
- """
- Get the details of route rules in a specified route table or VPC.
- :param version:
- API version.
- :type version: string
- :param routeTableId:
- The ID of the route table. Either `routeTableId` or `vpcId` must be provided.
- :type routeTableId: string
- :param vpcId:
- The ID of the VPC. Either `routeTableId` or `vpcId` must be provided.
- :type vpcId: string
- :param marker:
- The marker for the start position of batch retrieval.
- :type marker: string
- :param maxKeys:
- The maximum number of entries per page (up to 1000).
- :type maxKeys: int
- :param config:
- BceClientConfiguration object.
- :type config: baidubce.BceClientConfiguration
- :return:
- A BceResponse object.
- :rtype: baidubce.bce_response.BceResponse
- """
- path = b'/route/rule'
- params = {}
- if routeTableId is not None:
- params[b'routeTableId'] = routeTableId
- if vpcId is not None:
- params[b'vpcId'] = vpcId
- if marker is not None:
- params[b'marker'] = marker
- if maxKeys is not None:
- params[b'maxKeys'] = maxKeys
- return self._send_request(http_methods.GET, path, params=params, config=config)
- @required(route_rule_id=(bytes, str))
- def delete_route(self, route_rule_id, client_token=None, config=None):
- """
- Delete the specific route rule.
- :param route_rule_id:
- The id of the specified route table.
- :type route_rule_id: string
- :param client_token:
- If the clientToken is not specified by the user, a random String
- generated by default algorithm will be used.
- :type route_table_id: string
- :param config:
- :type config: baidubce.BceClientConfiguration
- :return:
- :rtype baidubce.bce_response.BceResponse
- """
- path = b'/route/rule/%s' % compat.convert_to_bytes(route_rule_id)
- params = {
- 'action': 'switchRouteHA'
- }
- if client_token is None:
- params[b'clientToken'] = generate_client_token()
- else:
- params[b'clientToken'] = client_token
- return self._send_request(http_methods.DELETE, path, params=params, config=config)
- @required(route_rule_id=(bytes, str))
- def switch_route(self, route_rule_id, client_token=None, config=None):
- """
- In a multi-line master-slave routing mode, switching the main route to the backup route.
- :param route_rule_id:
- The id of the specified route table.
- :type route_rule_id: string
- :param client_token:
- If the clientToken is not specified by the user, a random String
- generated by default algorithm will be used.
- :type client_token: string
- :param config:
- :type config: baidubce.BceClientConfiguration
- :return:
- :rtype baidubce.bce_response.BceResponse
- """
- path = b'/route/rule/%s' % compat.convert_to_bytes(route_rule_id)
- params = {}
- if client_token is None:
- params[b'clientToken'] = generate_client_token()
- else:
- params[b'clientToken'] = client_token
- return self._send_request(http_methods.DELETE, path, params=params, config=config)
- @required(route_rule_id=(bytes, str),
- description=(bytes, str))
- def update_route(self, route_rule_id, source_address=None, destination_address=None,
- next_hop_type=None, description="", next_hop_id=None, ip_version=None,
- next_hops=None, client_token=None,
- config=None):
- """
- Update a route with the specified options.
- :param route_rule_id:
- The id of the route rule to be updated.
- :type route_rule_id: string
- :param source_address:
- The source address of the route.
- :type source_address: string
- :param destination_address:
- The destination address of the route.
- :type destination_address: string
- :param next_hop_type:
- Route type.
- :type next_hop_type: string
- :param description:
- The option param to describe the route rule.
- :type description: string
- :param next_hop_id:
- The next hop id.
- :type next_hop_id: string
- :param ip_version:
- IP version.
- :type ip_version: string
- :param next_hops:
- The optional list of next hops.
- :type next_hops: list<route_model.NextHop>
- :param client_token:
- If the clientToken is not specified by the user, a random String
- generated by default algorithm will be used.
- :type client_token: string
- :param config:
- :type config: baidubce.BceClientConfiguration
- :return:
- :rtype baidubce.bce_response.BceResponse
- """
- path = b'/route/rule/%s' % compat.convert_to_bytes(route_rule_id)
- params = {}
- if client_token is None:
- params[b'clientToken'] = generate_client_token()
- else:
- params[b'clientToken'] = client_token
- body = {
- 'description': compat.convert_to_string(description)
- }
- if next_hop_type is not None:
- body['nexthopType'] = compat.convert_to_string(next_hop_type)
- if next_hop_id is not None:
- body['nexthopId'] = compat.convert_to_string(next_hop_id)
- if ip_version is not None:
- body['ipVersion'] = compat.convert_to_string(ip_version)
- if next_hops is not None:
- next_hop_list = [next_hop.__dict__ for next_hop in next_hops]
- body['nextHopList'] = next_hop_list
- if destination_address is not None:
- body['destinationAddress'] = compat.convert_to_string(destination_address)
- if source_address is not None:
- body['sourceAddress'] = compat.convert_to_string(source_address)
- return self._send_request(http_methods.PUT, path, body=json.dumps(body), params=params, config=config)
-
- def generate_client_token_by_uuid():
- """
- The default method to generate the random string for client_token
- if the optional parameter client_token is not specified by the user.
- :return:
- :rtype string
- """
- return str(uuid.uuid4())
- generate_client_token = generate_client_token_by_uuid
|