-
Notifications
You must be signed in to change notification settings - Fork 283
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Releasing version 2.139.0
- Loading branch information
Showing
97 changed files
with
14,709 additions
and
10,201 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...els/oci.cims.models.ServiceCategories.rst → ...els/oci.cims.models.CmosUserGroupInfo.rst
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
Services | ||
======== | ||
|
||
.. currentmodule:: oci.cims.models | ||
|
||
.. autoclass:: Services | ||
:show-inheritance: | ||
:special-members: __init__ | ||
:members: | ||
:undoc-members: | ||
:inherited-members: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 11 additions & 0 deletions
11
...se/models/oci.database.models.ConfigureExascaleExadataInfrastructureDetails.rst
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
ConfigureExascaleExadataInfrastructureDetails | ||
============================================= | ||
|
||
.. currentmodule:: oci.database.models | ||
|
||
.. autoclass:: ConfigureExascaleExadataInfrastructureDetails | ||
:show-inheritance: | ||
:special-members: __init__ | ||
:members: | ||
:undoc-members: | ||
:inherited-members: |
11 changes: 11 additions & 0 deletions
11
docs/api/database/models/oci.database.models.ExascaleConfigDetails.rst
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
ExascaleConfigDetails | ||
===================== | ||
|
||
.. currentmodule:: oci.database.models | ||
|
||
.. autoclass:: ExascaleConfigDetails | ||
:show-inheritance: | ||
:special-members: __init__ | ||
:members: | ||
:undoc-members: | ||
:inherited-members: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,50 @@ | ||
# coding: utf-8 | ||
# Modified Work: Copyright (c) 2018, 2024, Oracle and/or its affiliates. All rights reserved. | ||
# This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. | ||
# Copyright (c) 2013-2018, Kim Davies. All rights reserved. | ||
# Copyright (c) 2013-2024, Kim Davies and contributors. All rights reserved. | ||
|
||
from .core import ( | ||
IDNABidiError, | ||
IDNAError, | ||
InvalidCodepoint, | ||
InvalidCodepointContext, | ||
alabel, | ||
check_bidi, | ||
check_hyphen_ok, | ||
check_initial_combiner, | ||
check_label, | ||
check_nfc, | ||
decode, | ||
encode, | ||
ulabel, | ||
uts46_remap, | ||
valid_contextj, | ||
valid_contexto, | ||
valid_label_length, | ||
valid_string_length, | ||
) | ||
from .intranges import intranges_contain | ||
from .package_data import __version__ | ||
from .core import * | ||
|
||
__all__ = [ | ||
"__version__", | ||
"IDNABidiError", | ||
"IDNAError", | ||
"InvalidCodepoint", | ||
"InvalidCodepointContext", | ||
"alabel", | ||
"check_bidi", | ||
"check_hyphen_ok", | ||
"check_initial_combiner", | ||
"check_label", | ||
"check_nfc", | ||
"decode", | ||
"encode", | ||
"intranges_contain", | ||
"ulabel", | ||
"uts46_remap", | ||
"valid_contextj", | ||
"valid_contexto", | ||
"valid_label_length", | ||
"valid_string_length", | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,20 @@ | ||
# coding: utf-8 | ||
# Modified Work: Copyright (c) 2018, 2024, Oracle and/or its affiliates. All rights reserved. | ||
# This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. | ||
# Copyright (c) 2013-2018, Kim Davies. All rights reserved. | ||
# Copyright (c) 2013-2024, Kim Davies and contributors. All rights reserved. | ||
|
||
from .core import * | ||
from .codec import * | ||
from typing import Any, Union | ||
|
||
def ToASCII(label): | ||
from .core import decode, encode | ||
|
||
|
||
def ToASCII(label: str) -> bytes: | ||
return encode(label) | ||
|
||
def ToUnicode(label): | ||
|
||
def ToUnicode(label: Union[bytes, bytearray]) -> str: | ||
return decode(label) | ||
|
||
def nameprep(s): | ||
raise NotImplementedError("IDNA 2008 does not utilise nameprep protocol") | ||
|
||
def nameprep(s: Any) -> None: | ||
raise NotImplementedError("IDNA 2008 does not utilise nameprep protocol") |
Oops, something went wrong.