Skip to content

Commit bfa6e95

Browse files
authored
Releasing version 1.3.4 (#21)
1 parent 53c6a10 commit bfa6e95

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+28
-272
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ data/
1616
dist/
1717
__pycache__/
1818
env/
19+
docs/warnings.txt
1920
docs/_build/
2021
docs/apidocs/
2122
oraclebmc/models/init_*

CHANGELOG.rst

Lines changed: 10 additions & 0 deletions

docs/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#
33

44
# You can set these variables from the command line.
5-
SPHINXOPTS =
5+
SPHINXOPTS = -w warnings.txt
66
SPHINXBUILD = sphinx-build
77
PAPER =
88
BUILDDIR = _build

docs/api/index.rst

Lines changed: 2 additions & 2 deletions

oraclebmc/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# coding: utf-8
22
# Copyright (c) 2016, 2017, Oracle and/or its affiliates. All rights reserved.
33

4-
from . import config, constants, core, exceptions, identity, object_storage, regions
4+
from . import config, constants, core, exceptions, identity, load_balancer, object_storage, regions
55
from .base_client import BaseClient
66
from .request import Request
77
from .response import Response
@@ -13,5 +13,5 @@
1313
__all__ = [
1414
"BaseClient", "Error", "Request", "Response", "Signer",
1515
"config", "constants", "core", "exceptions", "identity",
16-
"object_storage", "regions", "wait_until"
16+
"load_balancer", "object_storage", "regions", "wait_until"
1717
]
File renamed without changes.

oraclebmc/loadbalancer/load_balancer_client.py renamed to oraclebmc/load_balancer/load_balancer_client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
from ..config import get_config_value_or_default, validate_config
1010
from ..signer import Signer
1111
from ..util import Sentinel
12-
from .models import loadbalancer_type_mapping
12+
from .models import load_balancer_type_mapping
1313
missing = Sentinel("Missing")
1414

1515

@@ -24,7 +24,7 @@ def __init__(self, config):
2424
private_key_file_location=config["key_file"],
2525
pass_phrase=get_config_value_or_default(config, "pass_phrase")
2626
)
27-
self.base_client = BaseClient("load_balancer", config, signer, loadbalancer_type_mapping)
27+
self.base_client = BaseClient("load_balancer", config, signer, load_balancer_type_mapping)
2828

2929
def create_backend(self, create_backend_details, load_balancer_id, backend_set_name, **kwargs):
3030
"""

oraclebmc/loadbalancer/models/__init__.py renamed to oraclebmc/load_balancer/models/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@
3434
from .work_request import WorkRequest
3535
from .work_request_error import WorkRequestError
3636

37-
# Maps type names to classes for loadbalancer services.
38-
loadbalancer_type_mapping = {
37+
# Maps type names to classes for load_balancer services.
38+
load_balancer_type_mapping = {
3939
"Backend": Backend,
4040
"BackendDetails": BackendDetails,
4141
"BackendSet": BackendSet,

0 commit comments

Comments
 (0)