52 lines
1.4 KiB
Python
52 lines
1.4 KiB
Python
# coding: utf-8
|
|
"""
|
|
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.
|
|
"""
|
|
|
|
|
|
class Region:
|
|
def __init__(self, id=None, endpoint=None):
|
|
self._id = None
|
|
self._endpoint = None
|
|
|
|
if id is not None:
|
|
self.id = id
|
|
if endpoint is not None:
|
|
self.endpoint = endpoint
|
|
|
|
@property
|
|
def id(self):
|
|
return self._id
|
|
|
|
@id.setter
|
|
def id(self, id):
|
|
self._id = id
|
|
|
|
@property
|
|
def endpoint(self):
|
|
return self._endpoint
|
|
|
|
@endpoint.setter
|
|
def endpoint(self, endpoint):
|
|
self._endpoint = endpoint
|
|
|
|
def with_endpoint_override(self, endpoint):
|
|
self._endpoint = endpoint
|
|
return self
|
|
|