diff --git a/CHANGELOG.rst b/CHANGELOG.rst
index d744e11231..2cdf3f086c 100644
--- a/CHANGELOG.rst
+++ b/CHANGELOG.rst
@@ -3,6 +3,22 @@ Change Log
All notable changes to this project will be documented in this file.
The format is based on `Keep a Changelog `_.
+====================
+2.70.0 - 2022-05-31
+====================
+
+Added
+-----
+* Support for in-depth monitoring, diagnostics capabilities, and advanced management functionality for on-premise Oracle databases in the Database Management service
+* Support for using Oracle Cloud Agent to perform iSCSI login and logout for non-multipath-enabled iSCSI attachments in the Container Engine for Kubernetes service
+* Support for Fault Domain placement in the Container Engine for Kubernetes service
+* Support for worker node images in the Container Engine for Kubernetes service
+* Support for flexible shapes using the driverShapeConfig and executorShapeConfig properties in the Data Flow service
+
+Breaking
+--------
+* Support for retries by default on operations in the Application Dependency Management service
+
====================
2.69.0 - 2022-05-24
====================
diff --git a/docs/api/data_flow.rst b/docs/api/data_flow.rst
index 430556a245..85a5db694b 100644
--- a/docs/api/data_flow.rst
+++ b/docs/api/data_flow.rst
@@ -33,6 +33,7 @@ Data Flow
oci.data_flow.models.Run
oci.data_flow.models.RunLogSummary
oci.data_flow.models.RunSummary
+ oci.data_flow.models.ShapeConfig
oci.data_flow.models.UpdateApplicationDetails
oci.data_flow.models.UpdatePrivateEndpointDetails
oci.data_flow.models.UpdateRunDetails
diff --git a/docs/api/data_flow/models/oci.data_flow.models.ShapeConfig.rst b/docs/api/data_flow/models/oci.data_flow.models.ShapeConfig.rst
new file mode 100644
index 0000000000..fdb523a335
--- /dev/null
+++ b/docs/api/data_flow/models/oci.data_flow.models.ShapeConfig.rst
@@ -0,0 +1,11 @@
+ShapeConfig
+===========
+
+.. currentmodule:: oci.data_flow.models
+
+.. autoclass:: ShapeConfig
+ :show-inheritance:
+ :special-members: __init__
+ :members:
+ :undoc-members:
+ :inherited-members:
\ No newline at end of file
diff --git a/docs/api/database_management.rst b/docs/api/database_management.rst
index a6d4a0f999..531e50db33 100644
--- a/docs/api/database_management.rst
+++ b/docs/api/database_management.rst
@@ -114,13 +114,17 @@ Database Management
oci.database_management.models.JobSummary
oci.database_management.models.ManagedDatabase
oci.database_management.models.ManagedDatabaseCollection
+ oci.database_management.models.ManagedDatabaseCredential
oci.database_management.models.ManagedDatabaseGroup
oci.database_management.models.ManagedDatabaseGroupCollection
oci.database_management.models.ManagedDatabaseGroupSummary
+ oci.database_management.models.ManagedDatabasePasswordCredential
+ oci.database_management.models.ManagedDatabaseSecretCredential
oci.database_management.models.ManagedDatabaseSummary
oci.database_management.models.MemoryAggregateMetrics
oci.database_management.models.MetricDataPoint
oci.database_management.models.MetricDimensionDefinition
+ oci.database_management.models.MetricStatisticsDefinition
oci.database_management.models.ObjectPrivilegeCollection
oci.database_management.models.ObjectPrivilegeSummary
oci.database_management.models.ObjectStorageJobExecutionResultDetails
diff --git a/docs/api/database_management/models/oci.database_management.models.ManagedDatabaseCredential.rst b/docs/api/database_management/models/oci.database_management.models.ManagedDatabaseCredential.rst
new file mode 100644
index 0000000000..a0fbe9fc92
--- /dev/null
+++ b/docs/api/database_management/models/oci.database_management.models.ManagedDatabaseCredential.rst
@@ -0,0 +1,11 @@
+ManagedDatabaseCredential
+=========================
+
+.. currentmodule:: oci.database_management.models
+
+.. autoclass:: ManagedDatabaseCredential
+ :show-inheritance:
+ :special-members: __init__
+ :members:
+ :undoc-members:
+ :inherited-members:
\ No newline at end of file
diff --git a/docs/api/database_management/models/oci.database_management.models.ManagedDatabasePasswordCredential.rst b/docs/api/database_management/models/oci.database_management.models.ManagedDatabasePasswordCredential.rst
new file mode 100644
index 0000000000..dfb6f4b629
--- /dev/null
+++ b/docs/api/database_management/models/oci.database_management.models.ManagedDatabasePasswordCredential.rst
@@ -0,0 +1,11 @@
+ManagedDatabasePasswordCredential
+=================================
+
+.. currentmodule:: oci.database_management.models
+
+.. autoclass:: ManagedDatabasePasswordCredential
+ :show-inheritance:
+ :special-members: __init__
+ :members:
+ :undoc-members:
+ :inherited-members:
\ No newline at end of file
diff --git a/docs/api/database_management/models/oci.database_management.models.ManagedDatabaseSecretCredential.rst b/docs/api/database_management/models/oci.database_management.models.ManagedDatabaseSecretCredential.rst
new file mode 100644
index 0000000000..882cedf7b3
--- /dev/null
+++ b/docs/api/database_management/models/oci.database_management.models.ManagedDatabaseSecretCredential.rst
@@ -0,0 +1,11 @@
+ManagedDatabaseSecretCredential
+===============================
+
+.. currentmodule:: oci.database_management.models
+
+.. autoclass:: ManagedDatabaseSecretCredential
+ :show-inheritance:
+ :special-members: __init__
+ :members:
+ :undoc-members:
+ :inherited-members:
\ No newline at end of file
diff --git a/docs/api/database_management/models/oci.database_management.models.MetricStatisticsDefinition.rst b/docs/api/database_management/models/oci.database_management.models.MetricStatisticsDefinition.rst
new file mode 100644
index 0000000000..3981c92276
--- /dev/null
+++ b/docs/api/database_management/models/oci.database_management.models.MetricStatisticsDefinition.rst
@@ -0,0 +1,11 @@
+MetricStatisticsDefinition
+==========================
+
+.. currentmodule:: oci.database_management.models
+
+.. autoclass:: MetricStatisticsDefinition
+ :show-inheritance:
+ :special-members: __init__
+ :members:
+ :undoc-members:
+ :inherited-members:
\ No newline at end of file
diff --git a/src/oci/adm/application_dependency_management_client.py b/src/oci/adm/application_dependency_management_client.py
index 74bef11b0d..555215e900 100644
--- a/src/oci/adm/application_dependency_management_client.py
+++ b/src/oci/adm/application_dependency_management_client.py
@@ -18,7 +18,7 @@
class ApplicationDependencyManagementClient(object):
"""
- Use the ADM API to create ADM knowledge base and vulnerability audits. For more information, see [ADM](/Content/adm/using/home.htm).
+ Use the Application Dependency Management API to create knowledge bases and vulnerability audits. For more information, see [ADM](/Content/application-dependency-management/home.htm).
"""
def __init__(self, config, **kwargs):
@@ -127,7 +127,7 @@ def cancel_work_request(self, work_request_id, **kwargs):
:param obj retry_strategy: (optional)
A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level.
- This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it.
+ This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation uses :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` as default if no retry strategy is provided.
The specifics of the default retry strategy are described `here `__.
To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`.
@@ -181,6 +181,8 @@ def cancel_work_request(self, work_request_id, **kwargs):
operation_retry_strategy=kwargs.get('retry_strategy'),
client_retry_strategy=self.retry_strategy
)
+ if retry_strategy is None:
+ retry_strategy = retry.DEFAULT_RETRY_STRATEGY
if retry_strategy:
if not isinstance(retry_strategy, retry.NoneRetryStrategy):
@@ -238,7 +240,7 @@ def change_knowledge_base_compartment(self, knowledge_base_id, change_knowledge_
:param obj retry_strategy: (optional)
A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level.
- This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it.
+ This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation uses :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` as default if no retry strategy is provided.
The specifics of the default retry strategy are described `here `__.
To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`.
@@ -294,6 +296,8 @@ def change_knowledge_base_compartment(self, knowledge_base_id, change_knowledge_
operation_retry_strategy=kwargs.get('retry_strategy'),
client_retry_strategy=self.retry_strategy
)
+ if retry_strategy is None:
+ retry_strategy = retry.DEFAULT_RETRY_STRATEGY
if retry_strategy:
if not isinstance(retry_strategy, retry.NoneRetryStrategy):
@@ -352,7 +356,7 @@ def change_vulnerability_audit_compartment(self, vulnerability_audit_id, change_
:param obj retry_strategy: (optional)
A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level.
- This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it.
+ This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation uses :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` as default if no retry strategy is provided.
The specifics of the default retry strategy are described `here `__.
To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`.
@@ -408,6 +412,8 @@ def change_vulnerability_audit_compartment(self, vulnerability_audit_id, change_
operation_retry_strategy=kwargs.get('retry_strategy'),
client_retry_strategy=self.retry_strategy
)
+ if retry_strategy is None:
+ retry_strategy = retry.DEFAULT_RETRY_STRATEGY
if retry_strategy:
if not isinstance(retry_strategy, retry.NoneRetryStrategy):
@@ -456,7 +462,7 @@ def create_knowledge_base(self, create_knowledge_base_details, **kwargs):
:param obj retry_strategy: (optional)
A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level.
- This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it.
+ This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation uses :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` as default if no retry strategy is provided.
The specifics of the default retry strategy are described `here `__.
To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`.
@@ -500,6 +506,8 @@ def create_knowledge_base(self, create_knowledge_base_details, **kwargs):
operation_retry_strategy=kwargs.get('retry_strategy'),
client_retry_strategy=self.retry_strategy
)
+ if retry_strategy is None:
+ retry_strategy = retry.DEFAULT_RETRY_STRATEGY
if retry_strategy:
if not isinstance(retry_strategy, retry.NoneRetryStrategy):
@@ -553,7 +561,7 @@ def create_vulnerability_audit(self, create_vulnerability_audit_details, **kwarg
:param obj retry_strategy: (optional)
A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level.
- This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it.
+ This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation uses :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` as default if no retry strategy is provided.
The specifics of the default retry strategy are described `here `__.
To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`.
@@ -599,6 +607,8 @@ def create_vulnerability_audit(self, create_vulnerability_audit_details, **kwarg
operation_retry_strategy=kwargs.get('retry_strategy'),
client_retry_strategy=self.retry_strategy
)
+ if retry_strategy is None:
+ retry_strategy = retry.DEFAULT_RETRY_STRATEGY
if retry_strategy:
if not isinstance(retry_strategy, retry.NoneRetryStrategy):
@@ -649,7 +659,7 @@ def delete_knowledge_base(self, knowledge_base_id, **kwargs):
:param obj retry_strategy: (optional)
A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level.
- This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it.
+ This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation uses :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` as default if no retry strategy is provided.
The specifics of the default retry strategy are described `here `__.
To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`.
@@ -703,6 +713,8 @@ def delete_knowledge_base(self, knowledge_base_id, **kwargs):
operation_retry_strategy=kwargs.get('retry_strategy'),
client_retry_strategy=self.retry_strategy
)
+ if retry_strategy is None:
+ retry_strategy = retry.DEFAULT_RETRY_STRATEGY
if retry_strategy:
if not isinstance(retry_strategy, retry.NoneRetryStrategy):
@@ -748,7 +760,7 @@ def delete_vulnerability_audit(self, vulnerability_audit_id, **kwargs):
:param obj retry_strategy: (optional)
A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level.
- This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it.
+ This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation uses :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` as default if no retry strategy is provided.
The specifics of the default retry strategy are described `here `__.
To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`.
@@ -802,6 +814,8 @@ def delete_vulnerability_audit(self, vulnerability_audit_id, **kwargs):
operation_retry_strategy=kwargs.get('retry_strategy'),
client_retry_strategy=self.retry_strategy
)
+ if retry_strategy is None:
+ retry_strategy = retry.DEFAULT_RETRY_STRATEGY
if retry_strategy:
if not isinstance(retry_strategy, retry.NoneRetryStrategy):
@@ -842,7 +856,7 @@ def get_knowledge_base(self, knowledge_base_id, **kwargs):
:param obj retry_strategy: (optional)
A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level.
- This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it.
+ This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation uses :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` as default if no retry strategy is provided.
The specifics of the default retry strategy are described `here `__.
To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`.
@@ -894,6 +908,8 @@ def get_knowledge_base(self, knowledge_base_id, **kwargs):
operation_retry_strategy=kwargs.get('retry_strategy'),
client_retry_strategy=self.retry_strategy
)
+ if retry_strategy is None:
+ retry_strategy = retry.DEFAULT_RETRY_STRATEGY
if retry_strategy:
if not isinstance(retry_strategy, retry.NoneRetryStrategy):
@@ -934,7 +950,7 @@ def get_vulnerability_audit(self, vulnerability_audit_id, **kwargs):
:param obj retry_strategy: (optional)
A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level.
- This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it.
+ This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation uses :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` as default if no retry strategy is provided.
The specifics of the default retry strategy are described `here `__.
To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`.
@@ -986,6 +1002,8 @@ def get_vulnerability_audit(self, vulnerability_audit_id, **kwargs):
operation_retry_strategy=kwargs.get('retry_strategy'),
client_retry_strategy=self.retry_strategy
)
+ if retry_strategy is None:
+ retry_strategy = retry.DEFAULT_RETRY_STRATEGY
if retry_strategy:
if not isinstance(retry_strategy, retry.NoneRetryStrategy):
@@ -1028,7 +1046,7 @@ def get_work_request(self, work_request_id, **kwargs):
:param obj retry_strategy: (optional)
A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level.
- This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it.
+ This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation uses :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` as default if no retry strategy is provided.
The specifics of the default retry strategy are described `here `__.
To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`.
@@ -1080,6 +1098,8 @@ def get_work_request(self, work_request_id, **kwargs):
operation_retry_strategy=kwargs.get('retry_strategy'),
client_retry_strategy=self.retry_strategy
)
+ if retry_strategy is None:
+ retry_strategy = retry.DEFAULT_RETRY_STRATEGY
if retry_strategy:
if not isinstance(retry_strategy, retry.NoneRetryStrategy):
@@ -1150,7 +1170,7 @@ def list_application_dependency_vulnerabilities(self, vulnerability_audit_id, **
:param obj retry_strategy: (optional)
A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level.
- This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it.
+ This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation uses :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` as default if no retry strategy is provided.
The specifics of the default retry strategy are described `here `__.
To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`.
@@ -1236,6 +1256,8 @@ def list_application_dependency_vulnerabilities(self, vulnerability_audit_id, **
operation_retry_strategy=kwargs.get('retry_strategy'),
client_retry_strategy=self.retry_strategy
)
+ if retry_strategy is None:
+ retry_strategy = retry.DEFAULT_RETRY_STRATEGY
if retry_strategy:
if not isinstance(retry_strategy, retry.NoneRetryStrategy):
@@ -1309,7 +1331,7 @@ def list_knowledge_bases(self, **kwargs):
:param obj retry_strategy: (optional)
A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level.
- This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it.
+ This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation uses :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` as default if no retry strategy is provided.
The specifics of the default retry strategy are described `here `__.
To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`.
@@ -1392,6 +1414,8 @@ def list_knowledge_bases(self, **kwargs):
operation_retry_strategy=kwargs.get('retry_strategy'),
client_retry_strategy=self.retry_strategy
)
+ if retry_strategy is None:
+ retry_strategy = retry.DEFAULT_RETRY_STRATEGY
if retry_strategy:
if not isinstance(retry_strategy, retry.NoneRetryStrategy):
@@ -1470,7 +1494,7 @@ def list_vulnerability_audits(self, **kwargs):
:param obj retry_strategy: (optional)
A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level.
- This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it.
+ This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation uses :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` as default if no retry strategy is provided.
The specifics of the default retry strategy are described `here `__.
To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`.
@@ -1557,6 +1581,8 @@ def list_vulnerability_audits(self, **kwargs):
operation_retry_strategy=kwargs.get('retry_strategy'),
client_retry_strategy=self.retry_strategy
)
+ if retry_strategy is None:
+ retry_strategy = retry.DEFAULT_RETRY_STRATEGY
if retry_strategy:
if not isinstance(retry_strategy, retry.NoneRetryStrategy):
@@ -1615,7 +1641,7 @@ def list_work_request_errors(self, work_request_id, **kwargs):
:param obj retry_strategy: (optional)
A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level.
- This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it.
+ This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation uses :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` as default if no retry strategy is provided.
The specifics of the default retry strategy are described `here `__.
To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`.
@@ -1693,6 +1719,8 @@ def list_work_request_errors(self, work_request_id, **kwargs):
operation_retry_strategy=kwargs.get('retry_strategy'),
client_retry_strategy=self.retry_strategy
)
+ if retry_strategy is None:
+ retry_strategy = retry.DEFAULT_RETRY_STRATEGY
if retry_strategy:
if not isinstance(retry_strategy, retry.NoneRetryStrategy):
@@ -1753,7 +1781,7 @@ def list_work_request_logs(self, work_request_id, **kwargs):
:param obj retry_strategy: (optional)
A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level.
- This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it.
+ This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation uses :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` as default if no retry strategy is provided.
The specifics of the default retry strategy are described `here `__.
To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`.
@@ -1831,6 +1859,8 @@ def list_work_request_logs(self, work_request_id, **kwargs):
operation_retry_strategy=kwargs.get('retry_strategy'),
client_retry_strategy=self.retry_strategy
)
+ if retry_strategy is None:
+ retry_strategy = retry.DEFAULT_RETRY_STRATEGY
if retry_strategy:
if not isinstance(retry_strategy, retry.NoneRetryStrategy):
@@ -1902,7 +1932,7 @@ def list_work_requests(self, **kwargs):
:param obj retry_strategy: (optional)
A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level.
- This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it.
+ This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation uses :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` as default if no retry strategy is provided.
The specifics of the default retry strategy are described `here `__.
To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`.
@@ -1985,6 +2015,8 @@ def list_work_requests(self, **kwargs):
operation_retry_strategy=kwargs.get('retry_strategy'),
client_retry_strategy=self.retry_strategy
)
+ if retry_strategy is None:
+ retry_strategy = retry.DEFAULT_RETRY_STRATEGY
if retry_strategy:
if not isinstance(retry_strategy, retry.NoneRetryStrategy):
@@ -2037,7 +2069,7 @@ def update_knowledge_base(self, knowledge_base_id, update_knowledge_base_details
:param obj retry_strategy: (optional)
A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level.
- This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it.
+ This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation uses :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` as default if no retry strategy is provided.
The specifics of the default retry strategy are described `here `__.
To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`.
@@ -2091,6 +2123,8 @@ def update_knowledge_base(self, knowledge_base_id, update_knowledge_base_details
operation_retry_strategy=kwargs.get('retry_strategy'),
client_retry_strategy=self.retry_strategy
)
+ if retry_strategy is None:
+ retry_strategy = retry.DEFAULT_RETRY_STRATEGY
if retry_strategy:
if not isinstance(retry_strategy, retry.NoneRetryStrategy):
@@ -2141,7 +2175,7 @@ def update_vulnerability_audit(self, vulnerability_audit_id, update_vulnerabilit
:param obj retry_strategy: (optional)
A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level.
- This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it.
+ This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation uses :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` as default if no retry strategy is provided.
The specifics of the default retry strategy are described `here `__.
To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`.
@@ -2195,6 +2229,8 @@ def update_vulnerability_audit(self, vulnerability_audit_id, update_vulnerabilit
operation_retry_strategy=kwargs.get('retry_strategy'),
client_retry_strategy=self.retry_strategy
)
+ if retry_strategy is None:
+ retry_strategy = retry.DEFAULT_RETRY_STRATEGY
if retry_strategy:
if not isinstance(retry_strategy, retry.NoneRetryStrategy):
diff --git a/src/oci/adm/models/application_dependency.py b/src/oci/adm/models/application_dependency.py
index 9320cbe04b..41703d7836 100644
--- a/src/oci/adm/models/application_dependency.py
+++ b/src/oci/adm/models/application_dependency.py
@@ -51,7 +51,7 @@ def __init__(self, **kwargs):
def gav(self):
"""
**[Required]** Gets the gav of this ApplicationDependency.
- Unique Group Artifact Version (GAV) identifier (Group:Artifact:Version).
+ Unique Group Artifact Version (GAV) identifier (Group:Artifact:Version), e.g. org.graalvm.nativeimage:svm:21.1.0.
:return: The gav of this ApplicationDependency.
@@ -63,7 +63,7 @@ def gav(self):
def gav(self, gav):
"""
Sets the gav of this ApplicationDependency.
- Unique Group Artifact Version (GAV) identifier (Group:Artifact:Version).
+ Unique Group Artifact Version (GAV) identifier (Group:Artifact:Version), e.g. org.graalvm.nativeimage:svm:21.1.0.
:param gav: The gav of this ApplicationDependency.
@@ -75,7 +75,7 @@ def gav(self, gav):
def node_id(self):
"""
**[Required]** Gets the node_id of this ApplicationDependency.
- Unique identifier of an Application Dependency node.
+ Unique identifier of an Application Dependency node, e.g. nodeId1.
:return: The node_id of this ApplicationDependency.
@@ -87,7 +87,7 @@ def node_id(self):
def node_id(self, node_id):
"""
Sets the node_id of this ApplicationDependency.
- Unique identifier of an Application Dependency node.
+ Unique identifier of an Application Dependency node, e.g. nodeId1.
:param node_id: The node_id of this ApplicationDependency.
diff --git a/src/oci/adm/models/application_dependency_vulnerability_summary.py b/src/oci/adm/models/application_dependency_vulnerability_summary.py
index f5f8b3972f..eda4e50d39 100644
--- a/src/oci/adm/models/application_dependency_vulnerability_summary.py
+++ b/src/oci/adm/models/application_dependency_vulnerability_summary.py
@@ -67,7 +67,7 @@ def __init__(self, **kwargs):
def gav(self):
"""
**[Required]** Gets the gav of this ApplicationDependencyVulnerabilitySummary.
- Unique Group Artifact Version (GAV) identifier (Group:Artifact:Version).
+ Unique Group Artifact Version (GAV) identifier (Group:Artifact:Version), e.g. org.graalvm.nativeimage:svm:21.1.0.
:return: The gav of this ApplicationDependencyVulnerabilitySummary.
@@ -79,7 +79,7 @@ def gav(self):
def gav(self, gav):
"""
Sets the gav of this ApplicationDependencyVulnerabilitySummary.
- Unique Group Artifact Version (GAV) identifier (Group:Artifact:Version).
+ Unique Group Artifact Version (GAV) identifier (Group:Artifact:Version), e.g. org.graalvm.nativeimage:svm:21.1.0.
:param gav: The gav of this ApplicationDependencyVulnerabilitySummary.
@@ -91,7 +91,7 @@ def gav(self, gav):
def node_id(self):
"""
**[Required]** Gets the node_id of this ApplicationDependencyVulnerabilitySummary.
- Unique identifier of an Application Dependency node.
+ Unique identifier of an Application Dependency node, e.g. nodeId1.
:return: The node_id of this ApplicationDependencyVulnerabilitySummary.
@@ -103,7 +103,7 @@ def node_id(self):
def node_id(self, node_id):
"""
Sets the node_id of this ApplicationDependencyVulnerabilitySummary.
- Unique identifier of an Application Dependency node.
+ Unique identifier of an Application Dependency node, e.g. nodeId1.
:param node_id: The node_id of this ApplicationDependencyVulnerabilitySummary.
diff --git a/src/oci/adm/models/vulnerability.py b/src/oci/adm/models/vulnerability.py
index 30cff40728..01ef150d6d 100644
--- a/src/oci/adm/models/vulnerability.py
+++ b/src/oci/adm/models/vulnerability.py
@@ -59,7 +59,7 @@ def __init__(self, **kwargs):
def id(self):
"""
**[Required]** Gets the id of this Vulnerability.
- Unique vulnerability identifier.
+ Unique vulnerability identifier, e.g. CVE-1999-0067.
:return: The id of this Vulnerability.
@@ -71,7 +71,7 @@ def id(self):
def id(self, id):
"""
Sets the id of this Vulnerability.
- Unique vulnerability identifier.
+ Unique vulnerability identifier, e.g. CVE-1999-0067.
:param id: The id of this Vulnerability.
diff --git a/src/oci/container_engine/models/create_node_pool_details.py b/src/oci/container_engine/models/create_node_pool_details.py
index 836fc0c623..6fde109d11 100644
--- a/src/oci/container_engine/models/create_node_pool_details.py
+++ b/src/oci/container_engine/models/create_node_pool_details.py
@@ -213,7 +213,7 @@ def name(self, name):
@property
def kubernetes_version(self):
"""
- **[Required]** Gets the kubernetes_version of this CreateNodePoolDetails.
+ Gets the kubernetes_version of this CreateNodePoolDetails.
The version of Kubernetes to install on the nodes in the node pool.
diff --git a/src/oci/container_engine/models/node_pool_placement_config_details.py b/src/oci/container_engine/models/node_pool_placement_config_details.py
index 7e9d215a82..2b9a331c65 100644
--- a/src/oci/container_engine/models/node_pool_placement_config_details.py
+++ b/src/oci/container_engine/models/node_pool_placement_config_details.py
@@ -30,22 +30,29 @@ def __init__(self, **kwargs):
The value to assign to the capacity_reservation_id property of this NodePoolPlacementConfigDetails.
:type capacity_reservation_id: str
+ :param fault_domains:
+ The value to assign to the fault_domains property of this NodePoolPlacementConfigDetails.
+ :type fault_domains: list[str]
+
"""
self.swagger_types = {
'availability_domain': 'str',
'subnet_id': 'str',
- 'capacity_reservation_id': 'str'
+ 'capacity_reservation_id': 'str',
+ 'fault_domains': 'list[str]'
}
self.attribute_map = {
'availability_domain': 'availabilityDomain',
'subnet_id': 'subnetId',
- 'capacity_reservation_id': 'capacityReservationId'
+ 'capacity_reservation_id': 'capacityReservationId',
+ 'fault_domains': 'faultDomains'
}
self._availability_domain = None
self._subnet_id = None
self._capacity_reservation_id = None
+ self._fault_domains = None
@property
def availability_domain(self):
@@ -121,6 +128,30 @@ def capacity_reservation_id(self, capacity_reservation_id):
"""
self._capacity_reservation_id = capacity_reservation_id
+ @property
+ def fault_domains(self):
+ """
+ Gets the fault_domains of this NodePoolPlacementConfigDetails.
+ A list of fault domains in which to place nodes.
+
+
+ :return: The fault_domains of this NodePoolPlacementConfigDetails.
+ :rtype: list[str]
+ """
+ return self._fault_domains
+
+ @fault_domains.setter
+ def fault_domains(self, fault_domains):
+ """
+ Sets the fault_domains of this NodePoolPlacementConfigDetails.
+ A list of fault domains in which to place nodes.
+
+
+ :param fault_domains: The fault_domains of this NodePoolPlacementConfigDetails.
+ :type: list[str]
+ """
+ self._fault_domains = fault_domains
+
def __repr__(self):
return formatted_flat_dict(self)
diff --git a/src/oci/core/blockstorage_client.py b/src/oci/core/blockstorage_client.py
index 931c1a4066..8fce469d4b 100644
--- a/src/oci/core/blockstorage_client.py
+++ b/src/oci/core/blockstorage_client.py
@@ -935,9 +935,9 @@ def copy_volume_backup(self, volume_backup_id, copy_volume_backup_details, **kwa
def copy_volume_group_backup(self, volume_group_backup_id, copy_volume_group_backup_details, **kwargs):
"""
Creates a volume group backup copy in specified region. For general information about volume group backups,
- see `Overview of Block Volume Service Backups`__
+ see `Overview of Block Volume Backups`__.
- __ https://docs.cloud.oracle.com/Content/Block/Concepts/blockvolumebackups.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/Block/Concepts/blockvolumebackups.htm
:param str volume_group_backup_id: (required)
diff --git a/src/oci/core/models/amd_milan_bm_launch_instance_platform_config.py b/src/oci/core/models/amd_milan_bm_launch_instance_platform_config.py
index 78bf35cc62..2fee1407d0 100644
--- a/src/oci/core/models/amd_milan_bm_launch_instance_platform_config.py
+++ b/src/oci/core/models/amd_milan_bm_launch_instance_platform_config.py
@@ -10,8 +10,8 @@
@init_model_state_from_kwargs
class AmdMilanBmLaunchInstancePlatformConfig(LaunchInstancePlatformConfig):
"""
- The platform configuration used when launching a bare metal instance with the BM.Standard.E4.128 shape
- (the AMD Milan platform).
+ The platform configuration used when launching a bare metal instance with one of the following shapes: BM.Standard.E4.128
+ or BM.DenseIO.E4.128 (the AMD Milan platform).
"""
#: A constant which can be used with the numa_nodes_per_socket property of a AmdMilanBmLaunchInstancePlatformConfig.
diff --git a/src/oci/core/models/amd_milan_bm_platform_config.py b/src/oci/core/models/amd_milan_bm_platform_config.py
index 28c734baba..e3d28f1de6 100644
--- a/src/oci/core/models/amd_milan_bm_platform_config.py
+++ b/src/oci/core/models/amd_milan_bm_platform_config.py
@@ -10,8 +10,8 @@
@init_model_state_from_kwargs
class AmdMilanBmPlatformConfig(PlatformConfig):
"""
- The platform configuration of a bare metal instance that uses the BM.Standard.E4.128 shape
- (the AMD Milan platform).
+ The platform configuration used when launching a bare metal instance with one of the following shapes: BM.Standard.E4.128
+ or BM.DenseIO.E4.128 (the AMD Milan platform).
"""
#: A constant which can be used with the numa_nodes_per_socket property of a AmdMilanBmPlatformConfig.
diff --git a/src/oci/core/models/app_catalog_listing_resource_version.py b/src/oci/core/models/app_catalog_listing_resource_version.py
index 5716460ad2..b3f346ac5c 100644
--- a/src/oci/core/models/app_catalog_listing_resource_version.py
+++ b/src/oci/core/models/app_catalog_listing_resource_version.py
@@ -220,12 +220,12 @@ def available_regions(self):
Gets the available_regions of this AppCatalogListingResourceVersion.
List of regions that this listing resource version is available.
- For information about Regions, see
- `Regions`__.
+ For information about regions, see
+ `Regions and Availability Domains`__.
Example: `[\"us-ashburn-1\", \"us-phoenix-1\"]`
- __ https://docs.cloud.oracle.com/#General/Concepts/regions.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/regions.htm
:return: The available_regions of this AppCatalogListingResourceVersion.
@@ -239,12 +239,12 @@ def available_regions(self, available_regions):
Sets the available_regions of this AppCatalogListingResourceVersion.
List of regions that this listing resource version is available.
- For information about Regions, see
- `Regions`__.
+ For information about regions, see
+ `Regions and Availability Domains`__.
Example: `[\"us-ashburn-1\", \"us-phoenix-1\"]`
- __ https://docs.cloud.oracle.com/#General/Concepts/regions.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/regions.htm
:param available_regions: The available_regions of this AppCatalogListingResourceVersion.
@@ -258,7 +258,7 @@ def compatible_shapes(self):
Gets the compatible_shapes of this AppCatalogListingResourceVersion.
Array of shapes compatible with this resource.
- You may enumerate all available shapes by calling :func:`list_shapes`.
+ You can enumerate all available shapes by calling :func:`list_shapes`.
Example: `[\"VM.Standard1.1\", \"VM.Standard1.2\"]`
@@ -274,7 +274,7 @@ def compatible_shapes(self, compatible_shapes):
Sets the compatible_shapes of this AppCatalogListingResourceVersion.
Array of shapes compatible with this resource.
- You may enumerate all available shapes by calling :func:`list_shapes`.
+ You can enumerate all available shapes by calling :func:`list_shapes`.
Example: `[\"VM.Standard1.1\", \"VM.Standard1.2\"]`
diff --git a/src/oci/core/models/attach_i_scsi_volume_details.py b/src/oci/core/models/attach_i_scsi_volume_details.py
index bf119962d7..90f895bd88 100644
--- a/src/oci/core/models/attach_i_scsi_volume_details.py
+++ b/src/oci/core/models/attach_i_scsi_volume_details.py
@@ -64,6 +64,10 @@ def __init__(self, **kwargs):
Allowed values for this property are: "NONE", "BM_ENCRYPTION_IN_TRANSIT"
:type encryption_in_transit_type: str
+ :param is_agent_auto_iscsi_login_enabled:
+ The value to assign to the is_agent_auto_iscsi_login_enabled property of this AttachIScsiVolumeDetails.
+ :type is_agent_auto_iscsi_login_enabled: bool
+
"""
self.swagger_types = {
'device': 'str',
@@ -74,7 +78,8 @@ def __init__(self, **kwargs):
'type': 'str',
'volume_id': 'str',
'use_chap': 'bool',
- 'encryption_in_transit_type': 'str'
+ 'encryption_in_transit_type': 'str',
+ 'is_agent_auto_iscsi_login_enabled': 'bool'
}
self.attribute_map = {
@@ -86,7 +91,8 @@ def __init__(self, **kwargs):
'type': 'type',
'volume_id': 'volumeId',
'use_chap': 'useChap',
- 'encryption_in_transit_type': 'encryptionInTransitType'
+ 'encryption_in_transit_type': 'encryptionInTransitType',
+ 'is_agent_auto_iscsi_login_enabled': 'isAgentAutoIscsiLoginEnabled'
}
self._device = None
@@ -98,6 +104,7 @@ def __init__(self, **kwargs):
self._volume_id = None
self._use_chap = None
self._encryption_in_transit_type = None
+ self._is_agent_auto_iscsi_login_enabled = None
self._type = 'iscsi'
@property
@@ -158,6 +165,30 @@ def encryption_in_transit_type(self, encryption_in_transit_type):
)
self._encryption_in_transit_type = encryption_in_transit_type
+ @property
+ def is_agent_auto_iscsi_login_enabled(self):
+ """
+ Gets the is_agent_auto_iscsi_login_enabled of this AttachIScsiVolumeDetails.
+ Whether to enable Oracle Cloud Agent to perform the iSCSI login and logout commands after the volume attach or detach operations for non multipath-enabled iSCSI attachments.
+
+
+ :return: The is_agent_auto_iscsi_login_enabled of this AttachIScsiVolumeDetails.
+ :rtype: bool
+ """
+ return self._is_agent_auto_iscsi_login_enabled
+
+ @is_agent_auto_iscsi_login_enabled.setter
+ def is_agent_auto_iscsi_login_enabled(self, is_agent_auto_iscsi_login_enabled):
+ """
+ Sets the is_agent_auto_iscsi_login_enabled of this AttachIScsiVolumeDetails.
+ Whether to enable Oracle Cloud Agent to perform the iSCSI login and logout commands after the volume attach or detach operations for non multipath-enabled iSCSI attachments.
+
+
+ :param is_agent_auto_iscsi_login_enabled: The is_agent_auto_iscsi_login_enabled of this AttachIScsiVolumeDetails.
+ :type: bool
+ """
+ self._is_agent_auto_iscsi_login_enabled = is_agent_auto_iscsi_login_enabled
+
def __repr__(self):
return formatted_flat_dict(self)
diff --git a/src/oci/core/models/capture_filter.py b/src/oci/core/models/capture_filter.py
index af0d578cf4..d16108abf9 100644
--- a/src/oci/core/models/capture_filter.py
+++ b/src/oci/core/models/capture_filter.py
@@ -124,7 +124,7 @@ def compartment_id(self):
**[Required]** Gets the compartment_id of this CaptureFilter.
The `OCID`__ of the compartment containing the capture filter.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:return: The compartment_id of this CaptureFilter.
@@ -138,7 +138,7 @@ def compartment_id(self, compartment_id):
Sets the compartment_id of this CaptureFilter.
The `OCID`__ of the compartment containing the capture filter.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param compartment_id: The compartment_id of this CaptureFilter.
@@ -246,7 +246,7 @@ def id(self):
**[Required]** Gets the id of this CaptureFilter.
The capture filter's Oracle ID (`OCID`__).
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:return: The id of this CaptureFilter.
@@ -260,7 +260,7 @@ def id(self, id):
Sets the id of this CaptureFilter.
The capture filter's Oracle ID (`OCID`__).
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param id: The id of this CaptureFilter.
diff --git a/src/oci/core/models/copy_volume_group_backup_details.py b/src/oci/core/models/copy_volume_group_backup_details.py
index 619a338127..3cd9ddfab5 100644
--- a/src/oci/core/models/copy_volume_group_backup_details.py
+++ b/src/oci/core/models/copy_volume_group_backup_details.py
@@ -115,8 +115,8 @@ def kms_key_id(self):
`Overview of Key Management`__ and
`Using Keys`__.
- __ https://docs.cloud.oracle.com/Content/KeyManagement/Concepts/keyoverview.htm
- __ https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/usingkeys.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Tasks/usingkeys.htm
:return: The kms_key_id of this CopyVolumeGroupBackupDetails.
@@ -138,8 +138,8 @@ def kms_key_id(self, kms_key_id):
`Overview of Key Management`__ and
`Using Keys`__.
- __ https://docs.cloud.oracle.com/Content/KeyManagement/Concepts/keyoverview.htm
- __ https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/usingkeys.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Tasks/usingkeys.htm
:param kms_key_id: The kms_key_id of this CopyVolumeGroupBackupDetails.
diff --git a/src/oci/core/models/create_capture_filter_details.py b/src/oci/core/models/create_capture_filter_details.py
index 61f21aa408..6783381f23 100644
--- a/src/oci/core/models/create_capture_filter_details.py
+++ b/src/oci/core/models/create_capture_filter_details.py
@@ -79,7 +79,7 @@ def compartment_id(self):
**[Required]** Gets the compartment_id of this CreateCaptureFilterDetails.
The `OCID`__ of the compartment containing the capture filter.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:return: The compartment_id of this CreateCaptureFilterDetails.
@@ -93,7 +93,7 @@ def compartment_id(self, compartment_id):
Sets the compartment_id of this CreateCaptureFilterDetails.
The `OCID`__ of the compartment containing the capture filter.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param compartment_id: The compartment_id of this CreateCaptureFilterDetails.
diff --git a/src/oci/core/models/create_drg_attachment_details.py b/src/oci/core/models/create_drg_attachment_details.py
index da02a63762..d869b37fac 100644
--- a/src/oci/core/models/create_drg_attachment_details.py
+++ b/src/oci/core/models/create_drg_attachment_details.py
@@ -114,7 +114,7 @@ def drg_id(self):
**[Required]** Gets the drg_id of this CreateDrgAttachmentDetails.
The `OCID`__ of the DRG.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:return: The drg_id of this CreateDrgAttachmentDetails.
@@ -128,7 +128,7 @@ def drg_id(self, drg_id):
Sets the drg_id of this CreateDrgAttachmentDetails.
The `OCID`__ of the DRG.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param drg_id: The drg_id of this CreateDrgAttachmentDetails.
@@ -144,7 +144,7 @@ def drg_route_table_id(self):
The DRG route table manages traffic inside the DRG.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:return: The drg_route_table_id of this CreateDrgAttachmentDetails.
@@ -160,7 +160,7 @@ def drg_route_table_id(self, drg_route_table_id):
The DRG route table manages traffic inside the DRG.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param drg_route_table_id: The drg_route_table_id of this CreateDrgAttachmentDetails.
@@ -271,7 +271,7 @@ def route_table_id(self):
* `Transit Routing: Private Access to Oracle Services`__
This field is deprecated. Instead, use the networkDetails field to specify the VCN route table for this attachment.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
__ https://docs.cloud.oracle.com/iaas/Content/Network/Tasks/transitrouting.htm
__ https://docs.cloud.oracle.com/iaas/Content/Network/Tasks/transitroutingoracleservices.htm
@@ -296,7 +296,7 @@ def route_table_id(self, route_table_id):
* `Transit Routing: Private Access to Oracle Services`__
This field is deprecated. Instead, use the networkDetails field to specify the VCN route table for this attachment.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
__ https://docs.cloud.oracle.com/iaas/Content/Network/Tasks/transitrouting.htm
__ https://docs.cloud.oracle.com/iaas/Content/Network/Tasks/transitroutingoracleservices.htm
@@ -313,8 +313,8 @@ def vcn_id(self):
The `OCID`__ of the VCN.
This field is deprecated. Instead, use the `networkDetails` field to specify the `OCID`__ of the attached resource.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:return: The vcn_id of this CreateDrgAttachmentDetails.
@@ -329,8 +329,8 @@ def vcn_id(self, vcn_id):
The `OCID`__ of the VCN.
This field is deprecated. Instead, use the `networkDetails` field to specify the `OCID`__ of the attached resource.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param vcn_id: The vcn_id of this CreateDrgAttachmentDetails.
diff --git a/src/oci/core/models/create_drg_details.py b/src/oci/core/models/create_drg_details.py
index 1be194c93c..316d86df78 100644
--- a/src/oci/core/models/create_drg_details.py
+++ b/src/oci/core/models/create_drg_details.py
@@ -60,7 +60,7 @@ def compartment_id(self):
**[Required]** Gets the compartment_id of this CreateDrgDetails.
The `OCID`__ of the compartment to contain the DRG.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:return: The compartment_id of this CreateDrgDetails.
@@ -74,7 +74,7 @@ def compartment_id(self, compartment_id):
Sets the compartment_id of this CreateDrgDetails.
The `OCID`__ of the compartment to contain the DRG.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param compartment_id: The compartment_id of this CreateDrgDetails.
diff --git a/src/oci/core/models/create_drg_route_table_details.py b/src/oci/core/models/create_drg_route_table_details.py
index fc2cf291db..2e83e318d7 100644
--- a/src/oci/core/models/create_drg_route_table_details.py
+++ b/src/oci/core/models/create_drg_route_table_details.py
@@ -197,7 +197,7 @@ def import_drg_route_distribution_id(self):
The `OCID`__ of the import route distribution used to specify how incoming route advertisements through
referenced attachments are inserted into the DRG route table.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:return: The import_drg_route_distribution_id of this CreateDrgRouteTableDetails.
@@ -212,7 +212,7 @@ def import_drg_route_distribution_id(self, import_drg_route_distribution_id):
The `OCID`__ of the import route distribution used to specify how incoming route advertisements through
referenced attachments are inserted into the DRG route table.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param import_drg_route_distribution_id: The import_drg_route_distribution_id of this CreateDrgRouteTableDetails.
diff --git a/src/oci/core/models/create_vtap_details.py b/src/oci/core/models/create_vtap_details.py
index 66362035ef..7b41939245 100644
--- a/src/oci/core/models/create_vtap_details.py
+++ b/src/oci/core/models/create_vtap_details.py
@@ -210,7 +210,7 @@ def compartment_id(self):
**[Required]** Gets the compartment_id of this CreateVtapDetails.
The `OCID`__ of the compartment containing the `Vtap` resource.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:return: The compartment_id of this CreateVtapDetails.
@@ -224,7 +224,7 @@ def compartment_id(self, compartment_id):
Sets the compartment_id of this CreateVtapDetails.
The `OCID`__ of the compartment containing the `Vtap` resource.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param compartment_id: The compartment_id of this CreateVtapDetails.
@@ -238,7 +238,7 @@ def vcn_id(self):
**[Required]** Gets the vcn_id of this CreateVtapDetails.
The `OCID`__ of the VCN containing the `Vtap` resource.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:return: The vcn_id of this CreateVtapDetails.
@@ -252,7 +252,7 @@ def vcn_id(self, vcn_id):
Sets the vcn_id of this CreateVtapDetails.
The `OCID`__ of the VCN containing the `Vtap` resource.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param vcn_id: The vcn_id of this CreateVtapDetails.
@@ -360,7 +360,7 @@ def source_id(self):
**[Required]** Gets the source_id of this CreateVtapDetails.
The `OCID`__ of the source point where packets are captured.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:return: The source_id of this CreateVtapDetails.
@@ -374,7 +374,7 @@ def source_id(self, source_id):
Sets the source_id of this CreateVtapDetails.
The `OCID`__ of the source point where packets are captured.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param source_id: The source_id of this CreateVtapDetails.
@@ -388,7 +388,7 @@ def target_id(self):
Gets the target_id of this CreateVtapDetails.
The `OCID`__ of the destination resource where mirrored packets are sent.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:return: The target_id of this CreateVtapDetails.
@@ -402,7 +402,7 @@ def target_id(self, target_id):
Sets the target_id of this CreateVtapDetails.
The `OCID`__ of the destination resource where mirrored packets are sent.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param target_id: The target_id of this CreateVtapDetails.
@@ -440,7 +440,7 @@ def capture_filter_id(self):
**[Required]** Gets the capture_filter_id of this CreateVtapDetails.
The capture filter's Oracle ID (`OCID`__).
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:return: The capture_filter_id of this CreateVtapDetails.
@@ -454,7 +454,7 @@ def capture_filter_id(self, capture_filter_id):
Sets the capture_filter_id of this CreateVtapDetails.
The capture filter's Oracle ID (`OCID`__).
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param capture_filter_id: The capture_filter_id of this CreateVtapDetails.
@@ -698,7 +698,7 @@ def source_private_endpoint_subnet_id(self):
Gets the source_private_endpoint_subnet_id of this CreateVtapDetails.
The `OCID`__ of the subnet that source private endpoint belongs to.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:return: The source_private_endpoint_subnet_id of this CreateVtapDetails.
@@ -712,7 +712,7 @@ def source_private_endpoint_subnet_id(self, source_private_endpoint_subnet_id):
Sets the source_private_endpoint_subnet_id of this CreateVtapDetails.
The `OCID`__ of the subnet that source private endpoint belongs to.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param source_private_endpoint_subnet_id: The source_private_endpoint_subnet_id of this CreateVtapDetails.
diff --git a/src/oci/core/models/default_drg_route_tables.py b/src/oci/core/models/default_drg_route_tables.py
index 72058b1ac8..542648345f 100644
--- a/src/oci/core/models/default_drg_route_tables.py
+++ b/src/oci/core/models/default_drg_route_tables.py
@@ -66,7 +66,7 @@ def vcn(self):
The `OCID`__ of the default DRG route table to be assigned to DRG attachments
of type VCN on creation.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:return: The vcn of this DefaultDrgRouteTables.
@@ -81,7 +81,7 @@ def vcn(self, vcn):
The `OCID`__ of the default DRG route table to be assigned to DRG attachments
of type VCN on creation.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param vcn: The vcn of this DefaultDrgRouteTables.
diff --git a/src/oci/core/models/drg.py b/src/oci/core/models/drg.py
index d6f50048c9..2f3125328d 100644
--- a/src/oci/core/models/drg.py
+++ b/src/oci/core/models/drg.py
@@ -14,14 +14,14 @@ class Drg(object):
network traffic between networks. You use it with other Networking
Service components to create a connection to your on-premises network using `Site-to-Site VPN`__ or a connection that uses
`FastConnect`__. For more information, see
- `Overview of the Networking Service`__.
+ `Networking Overview`__.
To use any of the API operations, you must be authorized in an IAM policy. If you're not authorized,
talk to an administrator. If you're an administrator who needs to write policies to give users access, see
`Getting Started with Policies`__.
- __ https://docs.cloud.oracle.com/Content/Network/Tasks/managingIPsec.htm
- __ https://docs.cloud.oracle.com/Content/Network/Concepts/fastconnect.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/Network/Tasks/managingIPsec.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/fastconnect.htm
__ https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/overview.htm
__ https://docs.cloud.oracle.com/iaas/Content/Identity/Concepts/policygetstarted.htm
"""
@@ -126,7 +126,7 @@ def compartment_id(self):
**[Required]** Gets the compartment_id of this Drg.
The `OCID`__ of the compartment containing the DRG.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:return: The compartment_id of this Drg.
@@ -140,7 +140,7 @@ def compartment_id(self, compartment_id):
Sets the compartment_id of this Drg.
The `OCID`__ of the compartment containing the DRG.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param compartment_id: The compartment_id of this Drg.
@@ -248,7 +248,7 @@ def id(self):
**[Required]** Gets the id of this Drg.
The DRG's Oracle ID (`OCID`__).
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:return: The id of this Drg.
@@ -262,7 +262,7 @@ def id(self, id):
Sets the id of this Drg.
The DRG's Oracle ID (`OCID`__).
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param id: The id of this Drg.
@@ -358,7 +358,7 @@ def default_export_drg_route_distribution_id(self):
Gets the default_export_drg_route_distribution_id of this Drg.
The `OCID`__ of this DRG's default export route distribution for the DRG attachments.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:return: The default_export_drg_route_distribution_id of this Drg.
@@ -372,7 +372,7 @@ def default_export_drg_route_distribution_id(self, default_export_drg_route_dist
Sets the default_export_drg_route_distribution_id of this Drg.
The `OCID`__ of this DRG's default export route distribution for the DRG attachments.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param default_export_drg_route_distribution_id: The default_export_drg_route_distribution_id of this Drg.
diff --git a/src/oci/core/models/drg_attachment.py b/src/oci/core/models/drg_attachment.py
index 2c37ea904b..f3844c9023 100644
--- a/src/oci/core/models/drg_attachment.py
+++ b/src/oci/core/models/drg_attachment.py
@@ -153,7 +153,7 @@ def compartment_id(self):
**[Required]** Gets the compartment_id of this DrgAttachment.
The `OCID`__ of the compartment containing the DRG attachment.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:return: The compartment_id of this DrgAttachment.
@@ -167,7 +167,7 @@ def compartment_id(self, compartment_id):
Sets the compartment_id of this DrgAttachment.
The `OCID`__ of the compartment containing the DRG attachment.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param compartment_id: The compartment_id of this DrgAttachment.
@@ -207,7 +207,7 @@ def drg_id(self):
**[Required]** Gets the drg_id of this DrgAttachment.
The `OCID`__ of the DRG.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:return: The drg_id of this DrgAttachment.
@@ -221,7 +221,7 @@ def drg_id(self, drg_id):
Sets the drg_id of this DrgAttachment.
The `OCID`__ of the DRG.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param drg_id: The drg_id of this DrgAttachment.
@@ -235,7 +235,7 @@ def id(self):
**[Required]** Gets the id of this DrgAttachment.
The DRG attachment's Oracle ID (`OCID`__).
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:return: The id of this DrgAttachment.
@@ -249,7 +249,7 @@ def id(self, id):
Sets the id of this DrgAttachment.
The DRG attachment's Oracle ID (`OCID`__).
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param id: The id of this DrgAttachment.
@@ -455,7 +455,7 @@ def route_table_id(self):
__ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
__ https://docs.cloud.oracle.com/iaas/Content/Network/Tasks/transitrouting.htm
__ https://docs.cloud.oracle.com/iaas/Content/Network/Tasks/transitroutingoracleservices.htm
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:return: The route_table_id of this DrgAttachment.
@@ -479,7 +479,7 @@ def route_table_id(self, route_table_id):
__ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
__ https://docs.cloud.oracle.com/iaas/Content/Network/Tasks/transitrouting.htm
__ https://docs.cloud.oracle.com/iaas/Content/Network/Tasks/transitroutingoracleservices.htm
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param route_table_id: The route_table_id of this DrgAttachment.
@@ -494,8 +494,8 @@ def vcn_id(self):
The `OCID`__ of the VCN.
This field is deprecated. Instead, use the `networkDetails` field to view the `OCID`__ of the attached resource.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:return: The vcn_id of this DrgAttachment.
@@ -510,8 +510,8 @@ def vcn_id(self, vcn_id):
The `OCID`__ of the VCN.
This field is deprecated. Instead, use the `networkDetails` field to view the `OCID`__ of the attached resource.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param vcn_id: The vcn_id of this DrgAttachment.
@@ -527,7 +527,7 @@ def export_drg_route_distribution_id(self):
are advertised to the attachment.
If this value is null, no routes are advertised through this attachment.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:return: The export_drg_route_distribution_id of this DrgAttachment.
@@ -543,7 +543,7 @@ def export_drg_route_distribution_id(self, export_drg_route_distribution_id):
are advertised to the attachment.
If this value is null, no routes are advertised through this attachment.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param export_drg_route_distribution_id: The export_drg_route_distribution_id of this DrgAttachment.
diff --git a/src/oci/core/models/drg_attachment_network_create_details.py b/src/oci/core/models/drg_attachment_network_create_details.py
index 4e258a241c..9145ce664f 100644
--- a/src/oci/core/models/drg_attachment_network_create_details.py
+++ b/src/oci/core/models/drg_attachment_network_create_details.py
@@ -96,7 +96,7 @@ def id(self):
**[Required]** Gets the id of this DrgAttachmentNetworkCreateDetails.
The `OCID`__ of the network attached to the DRG.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:return: The id of this DrgAttachmentNetworkCreateDetails.
@@ -110,7 +110,7 @@ def id(self, id):
Sets the id of this DrgAttachmentNetworkCreateDetails.
The `OCID`__ of the network attached to the DRG.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param id: The id of this DrgAttachmentNetworkCreateDetails.
diff --git a/src/oci/core/models/drg_redundancy_status.py b/src/oci/core/models/drg_redundancy_status.py
index ce441a0875..e3553808c3 100644
--- a/src/oci/core/models/drg_redundancy_status.py
+++ b/src/oci/core/models/drg_redundancy_status.py
@@ -83,7 +83,7 @@ def id(self):
Gets the id of this DrgRedundancyStatus.
The `OCID`__ of the DRG.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:return: The id of this DrgRedundancyStatus.
@@ -97,7 +97,7 @@ def id(self, id):
Sets the id of this DrgRedundancyStatus.
The `OCID`__ of the DRG.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param id: The id of this DrgRedundancyStatus.
diff --git a/src/oci/core/models/drg_route_rule.py b/src/oci/core/models/drg_route_rule.py
index 95f52893f6..713ab8944b 100644
--- a/src/oci/core/models/drg_route_rule.py
+++ b/src/oci/core/models/drg_route_rule.py
@@ -218,7 +218,7 @@ def next_hop_drg_attachment_id(self):
A value of `BLACKHOLE` means traffic for this route is discarded without notification.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:return: The next_hop_drg_attachment_id of this DrgRouteRule.
@@ -235,7 +235,7 @@ def next_hop_drg_attachment_id(self, next_hop_drg_attachment_id):
A value of `BLACKHOLE` means traffic for this route is discarded without notification.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param next_hop_drg_attachment_id: The next_hop_drg_attachment_id of this DrgRouteRule.
diff --git a/src/oci/core/models/drg_route_table.py b/src/oci/core/models/drg_route_table.py
index fb9e4af6e5..0ce37a699b 100644
--- a/src/oci/core/models/drg_route_table.py
+++ b/src/oci/core/models/drg_route_table.py
@@ -161,7 +161,7 @@ def compartment_id(self):
The `OCID`__ of the compartment the DRG is in. The DRG route table
is always in the same compartment as the DRG.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:return: The compartment_id of this DrgRouteTable.
@@ -176,7 +176,7 @@ def compartment_id(self, compartment_id):
The `OCID`__ of the compartment the DRG is in. The DRG route table
is always in the same compartment as the DRG.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param compartment_id: The compartment_id of this DrgRouteTable.
@@ -190,7 +190,7 @@ def drg_id(self):
**[Required]** Gets the drg_id of this DrgRouteTable.
The `OCID`__ of the DRG the DRG that contains this route table.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:return: The drg_id of this DrgRouteTable.
@@ -204,7 +204,7 @@ def drg_id(self, drg_id):
Sets the drg_id of this DrgRouteTable.
The `OCID`__ of the DRG the DRG that contains this route table.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param drg_id: The drg_id of this DrgRouteTable.
@@ -375,7 +375,7 @@ def import_drg_route_distribution_id(self):
The `OCID`__ of the import route distribution used to specify how incoming route advertisements from
referenced attachments are inserted into the DRG route table.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:return: The import_drg_route_distribution_id of this DrgRouteTable.
@@ -390,7 +390,7 @@ def import_drg_route_distribution_id(self, import_drg_route_distribution_id):
The `OCID`__ of the import route distribution used to specify how incoming route advertisements from
referenced attachments are inserted into the DRG route table.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param import_drg_route_distribution_id: The import_drg_route_distribution_id of this DrgRouteTable.
diff --git a/src/oci/core/models/i_scsi_volume_attachment.py b/src/oci/core/models/i_scsi_volume_attachment.py
index 3d0ba79046..acfce76d66 100644
--- a/src/oci/core/models/i_scsi_volume_attachment.py
+++ b/src/oci/core/models/i_scsi_volume_attachment.py
@@ -121,6 +121,10 @@ def __init__(self, **kwargs):
Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'.
:type encryption_in_transit_type: str
+ :param is_agent_auto_iscsi_login_enabled:
+ The value to assign to the is_agent_auto_iscsi_login_enabled property of this IScsiVolumeAttachment.
+ :type is_agent_auto_iscsi_login_enabled: bool
+
"""
self.swagger_types = {
'attachment_type': 'str',
@@ -144,7 +148,8 @@ def __init__(self, **kwargs):
'iqn': 'str',
'port': 'int',
'multipath_devices': 'list[MultipathDevice]',
- 'encryption_in_transit_type': 'str'
+ 'encryption_in_transit_type': 'str',
+ 'is_agent_auto_iscsi_login_enabled': 'bool'
}
self.attribute_map = {
@@ -169,7 +174,8 @@ def __init__(self, **kwargs):
'iqn': 'iqn',
'port': 'port',
'multipath_devices': 'multipathDevices',
- 'encryption_in_transit_type': 'encryptionInTransitType'
+ 'encryption_in_transit_type': 'encryptionInTransitType',
+ 'is_agent_auto_iscsi_login_enabled': 'isAgentAutoIscsiLoginEnabled'
}
self._attachment_type = None
@@ -194,6 +200,7 @@ def __init__(self, **kwargs):
self._port = None
self._multipath_devices = None
self._encryption_in_transit_type = None
+ self._is_agent_auto_iscsi_login_enabled = None
self._attachment_type = 'iscsi'
@property
@@ -404,6 +411,30 @@ def encryption_in_transit_type(self, encryption_in_transit_type):
encryption_in_transit_type = 'UNKNOWN_ENUM_VALUE'
self._encryption_in_transit_type = encryption_in_transit_type
+ @property
+ def is_agent_auto_iscsi_login_enabled(self):
+ """
+ Gets the is_agent_auto_iscsi_login_enabled of this IScsiVolumeAttachment.
+ Whether Oracle Cloud Agent is enabled perform the iSCSI login and logout commands after the volume attach or detach operations for non multipath-enabled iSCSI attachments.
+
+
+ :return: The is_agent_auto_iscsi_login_enabled of this IScsiVolumeAttachment.
+ :rtype: bool
+ """
+ return self._is_agent_auto_iscsi_login_enabled
+
+ @is_agent_auto_iscsi_login_enabled.setter
+ def is_agent_auto_iscsi_login_enabled(self, is_agent_auto_iscsi_login_enabled):
+ """
+ Sets the is_agent_auto_iscsi_login_enabled of this IScsiVolumeAttachment.
+ Whether Oracle Cloud Agent is enabled perform the iSCSI login and logout commands after the volume attach or detach operations for non multipath-enabled iSCSI attachments.
+
+
+ :param is_agent_auto_iscsi_login_enabled: The is_agent_auto_iscsi_login_enabled of this IScsiVolumeAttachment.
+ :type: bool
+ """
+ self._is_agent_auto_iscsi_login_enabled = is_agent_auto_iscsi_login_enabled
+
def __repr__(self):
return formatted_flat_dict(self)
diff --git a/src/oci/core/models/instance_configuration_amd_milan_bm_launch_instance_platform_config.py b/src/oci/core/models/instance_configuration_amd_milan_bm_launch_instance_platform_config.py
index cceb4a7a8e..2aedc7696a 100644
--- a/src/oci/core/models/instance_configuration_amd_milan_bm_launch_instance_platform_config.py
+++ b/src/oci/core/models/instance_configuration_amd_milan_bm_launch_instance_platform_config.py
@@ -10,8 +10,8 @@
@init_model_state_from_kwargs
class InstanceConfigurationAmdMilanBmLaunchInstancePlatformConfig(InstanceConfigurationLaunchInstancePlatformConfig):
"""
- The platform configuration used when launching a bare metal instance with the BM.Standard.E4.128 shape
- (the AMD Milan platform).
+ The platform configuration used when launching a bare metal instance with one of the following shapes: BM.Standard.E4.128
+ or BM.DenseIO.E4.128 (the AMD Milan platform).
"""
#: A constant which can be used with the numa_nodes_per_socket property of a InstanceConfigurationAmdMilanBmLaunchInstancePlatformConfig.
diff --git a/src/oci/core/models/ip_sec_connection.py b/src/oci/core/models/ip_sec_connection.py
index 2d1847700b..bfd04fc6b0 100644
--- a/src/oci/core/models/ip_sec_connection.py
+++ b/src/oci/core/models/ip_sec_connection.py
@@ -283,7 +283,7 @@ def drg_id(self):
**[Required]** Gets the drg_id of this IPSecConnection.
The `OCID`__ of the DRG.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:return: The drg_id of this IPSecConnection.
@@ -297,7 +297,7 @@ def drg_id(self, drg_id):
Sets the drg_id of this IPSecConnection.
The `OCID`__ of the DRG.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param drg_id: The drg_id of this IPSecConnection.
@@ -345,7 +345,7 @@ def id(self):
**[Required]** Gets the id of this IPSecConnection.
The IPSec connection's Oracle ID (`OCID`__).
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:return: The id of this IPSecConnection.
@@ -359,7 +359,7 @@ def id(self, id):
Sets the id of this IPSecConnection.
The IPSec connection's Oracle ID (`OCID`__).
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param id: The id of this IPSecConnection.
diff --git a/src/oci/core/models/route_table.py b/src/oci/core/models/route_table.py
index b5844359bf..2518eb6244 100644
--- a/src/oci/core/models/route_table.py
+++ b/src/oci/core/models/route_table.py
@@ -358,7 +358,7 @@ def vcn_id(self):
**[Required]** Gets the vcn_id of this RouteTable.
The `OCID`__ of the VCN the route table list belongs to.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:return: The vcn_id of this RouteTable.
@@ -372,7 +372,7 @@ def vcn_id(self, vcn_id):
Sets the vcn_id of this RouteTable.
The `OCID`__ of the VCN the route table list belongs to.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param vcn_id: The vcn_id of this RouteTable.
diff --git a/src/oci/core/models/update_drg_attachment_details.py b/src/oci/core/models/update_drg_attachment_details.py
index 5a35ebb810..8f2e993dc1 100644
--- a/src/oci/core/models/update_drg_attachment_details.py
+++ b/src/oci/core/models/update_drg_attachment_details.py
@@ -112,7 +112,7 @@ def drg_route_table_id(self):
You can't remove a DRG route table from a DRG attachment, but you can reassign which
DRG route table it uses.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:return: The drg_route_table_id of this UpdateDrgAttachmentDetails.
@@ -131,7 +131,7 @@ def drg_route_table_id(self, drg_route_table_id):
You can't remove a DRG route table from a DRG attachment, but you can reassign which
DRG route table it uses.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param drg_route_table_id: The drg_route_table_id of this UpdateDrgAttachmentDetails.
@@ -270,7 +270,7 @@ def route_table_id(self):
* `Transit Routing: Access to Multiple VCNs in Same Region`__
* `Transit Routing: Private Access to Oracle Services`__
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
__ https://docs.cloud.oracle.com/iaas/Content/Network/Tasks/transitrouting.htm
__ https://docs.cloud.oracle.com/iaas/Content/Network/Tasks/transitroutingoracleservices.htm
@@ -291,7 +291,7 @@ def route_table_id(self, route_table_id):
* `Transit Routing: Access to Multiple VCNs in Same Region`__
* `Transit Routing: Private Access to Oracle Services`__
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
__ https://docs.cloud.oracle.com/iaas/Content/Network/Tasks/transitrouting.htm
__ https://docs.cloud.oracle.com/iaas/Content/Network/Tasks/transitroutingoracleservices.htm
diff --git a/src/oci/core/models/update_vtap_details.py b/src/oci/core/models/update_vtap_details.py
index 7e0b4b3c47..21c3ac9cb5 100644
--- a/src/oci/core/models/update_vtap_details.py
+++ b/src/oci/core/models/update_vtap_details.py
@@ -290,7 +290,7 @@ def source_id(self):
Gets the source_id of this UpdateVtapDetails.
The `OCID`__ of the source point where packets are captured.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:return: The source_id of this UpdateVtapDetails.
@@ -304,7 +304,7 @@ def source_id(self, source_id):
Sets the source_id of this UpdateVtapDetails.
The `OCID`__ of the source point where packets are captured.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param source_id: The source_id of this UpdateVtapDetails.
@@ -318,7 +318,7 @@ def target_id(self):
Gets the target_id of this UpdateVtapDetails.
The `OCID`__ of the destination resource where mirrored packets are sent.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:return: The target_id of this UpdateVtapDetails.
@@ -332,7 +332,7 @@ def target_id(self, target_id):
Sets the target_id of this UpdateVtapDetails.
The `OCID`__ of the destination resource where mirrored packets are sent.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param target_id: The target_id of this UpdateVtapDetails.
@@ -370,7 +370,7 @@ def capture_filter_id(self):
Gets the capture_filter_id of this UpdateVtapDetails.
The capture filter's Oracle ID (`OCID`__).
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:return: The capture_filter_id of this UpdateVtapDetails.
@@ -384,7 +384,7 @@ def capture_filter_id(self, capture_filter_id):
Sets the capture_filter_id of this UpdateVtapDetails.
The capture filter's Oracle ID (`OCID`__).
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param capture_filter_id: The capture_filter_id of this UpdateVtapDetails.
@@ -564,7 +564,7 @@ def source_private_endpoint_subnet_id(self):
Gets the source_private_endpoint_subnet_id of this UpdateVtapDetails.
The `OCID`__ of the subnet that source private endpoint belongs to.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:return: The source_private_endpoint_subnet_id of this UpdateVtapDetails.
@@ -578,7 +578,7 @@ def source_private_endpoint_subnet_id(self, source_private_endpoint_subnet_id):
Sets the source_private_endpoint_subnet_id of this UpdateVtapDetails.
The `OCID`__ of the subnet that source private endpoint belongs to.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param source_private_endpoint_subnet_id: The source_private_endpoint_subnet_id of this UpdateVtapDetails.
diff --git a/src/oci/core/models/vcn_drg_attachment_network_create_details.py b/src/oci/core/models/vcn_drg_attachment_network_create_details.py
index c371a38201..28e6a8d806 100644
--- a/src/oci/core/models/vcn_drg_attachment_network_create_details.py
+++ b/src/oci/core/models/vcn_drg_attachment_network_create_details.py
@@ -70,7 +70,7 @@ def route_table_id(self):
* `Transit Routing: Access to Multiple VCNs in Same Region`__
* `Transit Routing: Private Access to Oracle Services`__
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
__ https://docs.cloud.oracle.com/iaas/Content/Network/Tasks/transitrouting.htm
__ https://docs.cloud.oracle.com/iaas/Content/Network/Tasks/transitrouting.htm
__ https://docs.cloud.oracle.com/iaas/Content/Network/Tasks/transitroutingoracleservices.htm
@@ -94,7 +94,7 @@ def route_table_id(self, route_table_id):
* `Transit Routing: Access to Multiple VCNs in Same Region`__
* `Transit Routing: Private Access to Oracle Services`__
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
__ https://docs.cloud.oracle.com/iaas/Content/Network/Tasks/transitrouting.htm
__ https://docs.cloud.oracle.com/iaas/Content/Network/Tasks/transitrouting.htm
__ https://docs.cloud.oracle.com/iaas/Content/Network/Tasks/transitroutingoracleservices.htm
diff --git a/src/oci/core/models/vcn_drg_attachment_network_details.py b/src/oci/core/models/vcn_drg_attachment_network_details.py
index ed2bc2c936..9b23aa33b0 100644
--- a/src/oci/core/models/vcn_drg_attachment_network_details.py
+++ b/src/oci/core/models/vcn_drg_attachment_network_details.py
@@ -79,7 +79,7 @@ def route_table_id(self):
* `Transit Routing: Access to Multiple VCNs in Same Region`__
* `Transit Routing: Private Access to Oracle Services`__
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
__ https://docs.cloud.oracle.com/iaas/Content/Network/Tasks/transitrouting.htm
__ https://docs.cloud.oracle.com/iaas/Content/Network/Tasks/transitroutingoracleservices.htm
@@ -100,7 +100,7 @@ def route_table_id(self, route_table_id):
* `Transit Routing: Access to Multiple VCNs in Same Region`__
* `Transit Routing: Private Access to Oracle Services`__
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
__ https://docs.cloud.oracle.com/iaas/Content/Network/Tasks/transitrouting.htm
__ https://docs.cloud.oracle.com/iaas/Content/Network/Tasks/transitroutingoracleservices.htm
diff --git a/src/oci/core/models/vcn_drg_attachment_network_update_details.py b/src/oci/core/models/vcn_drg_attachment_network_update_details.py
index 9ebe41621b..fc752ecb69 100644
--- a/src/oci/core/models/vcn_drg_attachment_network_update_details.py
+++ b/src/oci/core/models/vcn_drg_attachment_network_update_details.py
@@ -61,7 +61,7 @@ def route_table_id(self):
* `Transit Routing: Access to Multiple VCNs in Same Region`__
* `Transit Routing: Private Access to Oracle Services`__
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
__ https://docs.cloud.oracle.com/iaas/Content/Network/Tasks/transitrouting.htm
__ https://docs.cloud.oracle.com/iaas/Content/Network/Tasks/transitroutingoracleservices.htm
@@ -82,7 +82,7 @@ def route_table_id(self, route_table_id):
* `Transit Routing: Access to Multiple VCNs in Same Region`__
* `Transit Routing: Private Access to Oracle Services`__
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
__ https://docs.cloud.oracle.com/iaas/Content/Network/Tasks/transitrouting.htm
__ https://docs.cloud.oracle.com/iaas/Content/Network/Tasks/transitroutingoracleservices.htm
diff --git a/src/oci/core/models/vtap.py b/src/oci/core/models/vtap.py
index e77b96c836..0d16b58cbd 100644
--- a/src/oci/core/models/vtap.py
+++ b/src/oci/core/models/vtap.py
@@ -277,7 +277,7 @@ def compartment_id(self):
**[Required]** Gets the compartment_id of this Vtap.
The `OCID`__ of the compartment containing the `Vtap` resource.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:return: The compartment_id of this Vtap.
@@ -291,7 +291,7 @@ def compartment_id(self, compartment_id):
Sets the compartment_id of this Vtap.
The `OCID`__ of the compartment containing the `Vtap` resource.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param compartment_id: The compartment_id of this Vtap.
@@ -305,7 +305,7 @@ def vcn_id(self):
**[Required]** Gets the vcn_id of this Vtap.
The `OCID`__ of the VCN containing the `Vtap` resource.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:return: The vcn_id of this Vtap.
@@ -319,7 +319,7 @@ def vcn_id(self, vcn_id):
Sets the vcn_id of this Vtap.
The `OCID`__ of the VCN containing the `Vtap` resource.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param vcn_id: The vcn_id of this Vtap.
@@ -427,7 +427,7 @@ def id(self):
**[Required]** Gets the id of this Vtap.
The VTAP's Oracle ID (`OCID`__).
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:return: The id of this Vtap.
@@ -441,7 +441,7 @@ def id(self, id):
Sets the id of this Vtap.
The VTAP's Oracle ID (`OCID`__).
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param id: The id of this Vtap.
@@ -547,7 +547,7 @@ def source_id(self):
**[Required]** Gets the source_id of this Vtap.
The `OCID`__ of the source point where packets are captured.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:return: The source_id of this Vtap.
@@ -561,7 +561,7 @@ def source_id(self, source_id):
Sets the source_id of this Vtap.
The `OCID`__ of the source point where packets are captured.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param source_id: The source_id of this Vtap.
@@ -575,7 +575,7 @@ def target_id(self):
Gets the target_id of this Vtap.
The `OCID`__ of the destination resource where mirrored packets are sent.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:return: The target_id of this Vtap.
@@ -589,7 +589,7 @@ def target_id(self, target_id):
Sets the target_id of this Vtap.
The `OCID`__ of the destination resource where mirrored packets are sent.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param target_id: The target_id of this Vtap.
@@ -627,7 +627,7 @@ def capture_filter_id(self):
**[Required]** Gets the capture_filter_id of this Vtap.
The capture filter's Oracle ID (`OCID`__).
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:return: The capture_filter_id of this Vtap.
@@ -641,7 +641,7 @@ def capture_filter_id(self, capture_filter_id):
Sets the capture_filter_id of this Vtap.
The capture filter's Oracle ID (`OCID`__).
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param capture_filter_id: The capture_filter_id of this Vtap.
@@ -877,7 +877,7 @@ def source_private_endpoint_subnet_id(self):
Gets the source_private_endpoint_subnet_id of this Vtap.
The `OCID`__ of the subnet that source private endpoint belongs to.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:return: The source_private_endpoint_subnet_id of this Vtap.
@@ -891,7 +891,7 @@ def source_private_endpoint_subnet_id(self, source_private_endpoint_subnet_id):
Sets the source_private_endpoint_subnet_id of this Vtap.
The `OCID`__ of the subnet that source private endpoint belongs to.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param source_private_endpoint_subnet_id: The source_private_endpoint_subnet_id of this Vtap.
diff --git a/src/oci/core/virtual_network_client.py b/src/oci/core/virtual_network_client.py
index c109251eac..f0b20b7561 100644
--- a/src/oci/core/virtual_network_client.py
+++ b/src/oci/core/virtual_network_client.py
@@ -311,7 +311,7 @@ def add_ipv6_subnet_cidr(self, subnet_id, add_subnet_ipv6_cidr_details, **kwargs
:param str subnet_id: (required)
The `OCID`__ of the subnet.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param oci.core.models.AddSubnetIpv6CidrDetails add_subnet_ipv6_cidr_details: (required)
Details object for adding an IPv6 CIDR to a subnet.
@@ -1072,7 +1072,7 @@ def bulk_add_virtual_circuit_public_prefixes(self, virtual_circuit_id, bulk_add_
:param str virtual_circuit_id: (required)
The `OCID`__ of the virtual circuit.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param oci.core.models.BulkAddVirtualCircuitPublicPrefixesDetails bulk_add_virtual_circuit_public_prefixes_details: (required)
Request with publix prefixes to be added to the virtual circuit
@@ -1164,7 +1164,7 @@ def bulk_delete_virtual_circuit_public_prefixes(self, virtual_circuit_id, bulk_d
:param str virtual_circuit_id: (required)
The `OCID`__ of the virtual circuit.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param oci.core.models.BulkDeleteVirtualCircuitPublicPrefixesDetails bulk_delete_virtual_circuit_public_prefixes_details: (required)
Request with public prefixes to be deleted from the virtual circuit.
@@ -1369,7 +1369,7 @@ def change_capture_filter_compartment(self, capture_filter_id, change_capture_fi
:param str capture_filter_id: (required)
The `OCID`__ of the capture filter.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param oci.core.models.ChangeCaptureFilterCompartmentDetails change_capture_filter_compartment_details: (required)
Request to change the compartment of a VTAP.
@@ -1488,7 +1488,7 @@ def change_cpe_compartment(self, cpe_id, change_cpe_compartment_details, **kwarg
:param str cpe_id: (required)
The `OCID`__ of the CPE.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param oci.core.models.ChangeCpeCompartmentDetails change_cpe_compartment_details: (required)
Request to change the compartment of a CPE.
@@ -1602,7 +1602,7 @@ def change_cross_connect_compartment(self, cross_connect_id, change_cross_connec
:param str cross_connect_id: (required)
The `OCID`__ of the cross-connect.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param oci.core.models.ChangeCrossConnectCompartmentDetails change_cross_connect_compartment_details: (required)
Request to change the compartment of a Cross Connect.
@@ -1716,7 +1716,7 @@ def change_cross_connect_group_compartment(self, cross_connect_group_id, change_
:param str cross_connect_group_id: (required)
The `OCID`__ of the cross-connect group.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param oci.core.models.ChangeCrossConnectGroupCompartmentDetails change_cross_connect_group_compartment_details: (required)
Request to change the compartment of a Cross Connect Group.
@@ -1830,7 +1830,7 @@ def change_dhcp_options_compartment(self, dhcp_id, change_dhcp_options_compartme
:param str dhcp_id: (required)
The `OCID`__ for the set of DHCP options.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param oci.core.models.ChangeDhcpOptionsCompartmentDetails change_dhcp_options_compartment_details: (required)
Request to change the compartment of a set of DHCP Options.
@@ -1942,7 +1942,7 @@ def change_drg_compartment(self, drg_id, change_drg_compartment_details, **kwarg
:param str drg_id: (required)
The `OCID`__ of the DRG.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param oci.core.models.ChangeDrgCompartmentDetails change_drg_compartment_details: (required)
Request to change the compartment of a DRG.
@@ -2054,7 +2054,7 @@ def change_internet_gateway_compartment(self, ig_id, change_internet_gateway_com
:param str ig_id: (required)
The `OCID`__ of the internet gateway.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param oci.core.models.ChangeInternetGatewayCompartmentDetails change_internet_gateway_compartment_details: (required)
Request to change the compartment of an internet gateway.
@@ -2166,7 +2166,7 @@ def change_ip_sec_connection_compartment(self, ipsc_id, change_ip_sec_connection
:param str ipsc_id: (required)
The `OCID`__ of the IPSec connection.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param oci.core.models.ChangeIPSecConnectionCompartmentDetails change_ip_sec_connection_compartment_details: (required)
Request to change the compartment of a IPSec connection.
@@ -2280,7 +2280,7 @@ def change_local_peering_gateway_compartment(self, local_peering_gateway_id, cha
:param str local_peering_gateway_id: (required)
The `OCID`__ of the local peering gateway.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param oci.core.models.ChangeLocalPeeringGatewayCompartmentDetails change_local_peering_gateway_compartment_details: (required)
Request to change the compartment of a given local peering gateway.
@@ -2618,7 +2618,7 @@ def change_public_ip_compartment(self, public_ip_id, change_public_ip_compartmen
:param str public_ip_id: (required)
The `OCID`__ of the public IP.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param oci.core.models.ChangePublicIpCompartmentDetails change_public_ip_compartment_details: (required)
Request to change the compartment of a Public IP.
@@ -2842,7 +2842,7 @@ def change_remote_peering_connection_compartment(self, remote_peering_connection
:param str remote_peering_connection_id: (required)
The `OCID`__ of the remote peering connection (RPC).
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param oci.core.models.ChangeRemotePeeringConnectionCompartmentDetails change_remote_peering_connection_compartment_details: (required)
Request to change the compartment of a remote peering connection.
@@ -2956,7 +2956,7 @@ def change_route_table_compartment(self, rt_id, change_route_table_compartment_d
:param str rt_id: (required)
The `OCID`__ of the route table.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param oci.core.models.ChangeRouteTableCompartmentDetails change_route_table_compartment_details: (required)
Request to change the compartment of a given route table.
@@ -3068,7 +3068,7 @@ def change_security_list_compartment(self, security_list_id, change_security_lis
:param str security_list_id: (required)
The `OCID`__ of the security list.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param oci.core.models.ChangeSecurityListCompartmentDetails change_security_list_compartment_details: (required)
Request to change the compartment of a given security list.
@@ -3292,7 +3292,7 @@ def change_subnet_compartment(self, subnet_id, change_subnet_compartment_details
:param str subnet_id: (required)
The `OCID`__ of the subnet.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param oci.core.models.ChangeSubnetCompartmentDetails change_subnet_compartment_details: (required)
Request to change the compartment of a given subnet.
@@ -3516,7 +3516,7 @@ def change_virtual_circuit_compartment(self, virtual_circuit_id, change_virtual_
:param str virtual_circuit_id: (required)
The `OCID`__ of the virtual circuit.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param oci.core.models.ChangeVirtualCircuitCompartmentDetails change_virtual_circuit_compartment_details: (required)
Request to change the compartment of a virtual circuit.
@@ -3749,7 +3749,7 @@ def change_vtap_compartment(self, vtap_id, change_vtap_compartment_details, **kw
:param str vtap_id: (required)
The `OCID`__ of the VTAP.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param oci.core.models.ChangeVtapCompartmentDetails change_vtap_compartment_details: (required)
Request to change the compartment that contains a VTAP.
@@ -3873,7 +3873,7 @@ def connect_local_peering_gateways(self, local_peering_gateway_id, connect_local
:param str local_peering_gateway_id: (required)
The `OCID`__ of the local peering gateway.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param oci.core.models.ConnectLocalPeeringGatewaysDetails connect_local_peering_gateways_details: (required)
Details regarding the local peering gateway to connect.
@@ -3969,7 +3969,7 @@ def connect_remote_peering_connections(self, remote_peering_connection_id, conne
:param str remote_peering_connection_id: (required)
The `OCID`__ of the remote peering connection (RPC).
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param oci.core.models.ConnectRemotePeeringConnectionsDetails connect_remote_peering_connections_details: (required)
Details to connect peering connection with peering connection from remote region
@@ -4267,7 +4267,7 @@ def create_cpe(self, create_cpe_details, **kwargs):
be unique, and you can change it. Avoid entering confidential information.
__ https://docs.cloud.oracle.com/iaas/Content/Network/Tasks/overviewIPsec.htm
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
__ https://docs.cloud.oracle.com/iaas/Content/Identity/Concepts/overview.htm
__ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
__ https://docs.cloud.oracle.com/iaas/Content/Network/Tasks/configuringCPE.htm
@@ -4380,7 +4380,7 @@ def create_cross_connect(self, create_cross_connect_details, **kwargs):
It does not have to be unique, and you can change it. Avoid entering confidential information.
__ https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/fastconnect.htm
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
__ https://docs.cloud.oracle.com/iaas/Content/Identity/Concepts/overview.htm
__ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
@@ -4488,7 +4488,7 @@ def create_cross_connect_group(self, create_cross_connect_group_details, **kwarg
It does not have to be unique, and you can change it. Avoid entering confidential information.
__ https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/fastconnect.htm
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
__ https://docs.cloud.oracle.com/iaas/Content/Identity/Concepts/overview.htm
__ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
@@ -4592,7 +4592,7 @@ def create_dhcp_options(self, create_dhcp_details, **kwargs):
You may optionally specify a *display name* for the set of DHCP options, otherwise a default is provided.
It does not have to be unique, and you can change it. Avoid entering confidential information.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
__ https://docs.cloud.oracle.com/iaas/Content/Identity/Concepts/overview.htm
__ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
@@ -4796,7 +4796,7 @@ def create_drg_attachment(self, create_drg_attachment_details, **kwargs):
For more information about compartments and access control, see
`Overview of the IAM Service`__.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
__ https://docs.cloud.oracle.com/iaas/Content/Network/Tasks/managingDRGs.htm
__ https://docs.cloud.oracle.com/iaas/Content/Identity/Concepts/overview.htm
@@ -5085,7 +5085,7 @@ def create_internet_gateway(self, create_internet_gateway_details, **kwargs):
the gateway without changing the route rule.
__ https://docs.cloud.oracle.com/iaas/Content/Network/Tasks/managingIGs.htm
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
__ https://docs.cloud.oracle.com/iaas/Content/Identity/Concepts/overview.htm
@@ -5203,7 +5203,7 @@ def create_ip_sec_connection(self, create_ip_sec_connection_details, **kwargs):
`CPE Configuration`__.
__ https://docs.cloud.oracle.com/iaas/Content/Network/Tasks/overviewIPsec.htm
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
__ https://docs.cloud.oracle.com/iaas/Content/Identity/Concepts/overview.htm
__ https://docs.cloud.oracle.com/iaas/Content/Network/Tasks/configuringCPE.htm
@@ -6817,7 +6817,7 @@ def create_vtap(self, create_vtap_details, **kwargs):
You may optionally specify a *display name* for the VTAP, otherwise a default is provided.
It does not have to be unique, and you can change it.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
__ https://docs.cloud.oracle.com/iaas/Content/Identity/Concepts/overview.htm
__ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
@@ -7025,7 +7025,7 @@ def delete_capture_filter(self, capture_filter_id, **kwargs):
:param str capture_filter_id: (required)
The `OCID`__ of the capture filter.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param str if_match: (optional)
For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match`
@@ -7127,7 +7127,7 @@ def delete_cpe(self, cpe_id, **kwargs):
:param str cpe_id: (required)
The `OCID`__ of the CPE.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param str if_match: (optional)
For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match`
@@ -7224,7 +7224,7 @@ def delete_cross_connect(self, cross_connect_id, **kwargs):
:param str cross_connect_id: (required)
The `OCID`__ of the cross-connect.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param str if_match: (optional)
For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match`
@@ -7322,7 +7322,7 @@ def delete_cross_connect_group(self, cross_connect_group_id, **kwargs):
:param str cross_connect_group_id: (required)
The `OCID`__ of the cross-connect group.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param str if_match: (optional)
For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match`
@@ -7422,7 +7422,7 @@ def delete_dhcp_options(self, dhcp_id, **kwargs):
:param str dhcp_id: (required)
The `OCID`__ for the set of DHCP options.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param str if_match: (optional)
For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match`
@@ -7519,7 +7519,7 @@ def delete_drg(self, drg_id, **kwargs):
:param str drg_id: (required)
The `OCID`__ of the DRG.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param str if_match: (optional)
For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match`
@@ -7903,7 +7903,7 @@ def delete_internet_gateway(self, ig_id, **kwargs):
:param str ig_id: (required)
The `OCID`__ of the internet gateway.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param str if_match: (optional)
For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match`
@@ -8004,7 +8004,7 @@ def delete_ip_sec_connection(self, ipsc_id, **kwargs):
:param str ipsc_id: (required)
The `OCID`__ of the IPSec connection.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param str if_match: (optional)
For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match`
@@ -8097,7 +8097,7 @@ def delete_ipv6(self, ipv6_id, **kwargs):
Unassigns and deletes the specified IPv6. You must specify the object's `OCID`__.
The IPv6 address is returned to the subnet's pool of available addresses.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param str ipv6_id: (required)
@@ -8206,7 +8206,7 @@ def delete_local_peering_gateway(self, local_peering_gateway_id, **kwargs):
:param str local_peering_gateway_id: (required)
The `OCID`__ of the local peering gateway.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param str if_match: (optional)
For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match`
@@ -8514,7 +8514,7 @@ def delete_private_ip(self, private_ip_id, **kwargs):
:param str private_ip_id: (required)
The `OCID`__ of the private IP or IPv6.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param str if_match: (optional)
For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match`
@@ -8624,7 +8624,7 @@ def delete_public_ip(self, public_ip_id, **kwargs):
:param str public_ip_id: (required)
The `OCID`__ of the public IP.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param str if_match: (optional)
For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match`
@@ -8825,7 +8825,7 @@ def delete_remote_peering_connection(self, remote_peering_connection_id, **kwarg
:param str remote_peering_connection_id: (required)
The `OCID`__ of the remote peering connection (RPC).
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param str if_match: (optional)
For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match`
@@ -8925,7 +8925,7 @@ def delete_route_table(self, rt_id, **kwargs):
:param str rt_id: (required)
The `OCID`__ of the route table.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param str if_match: (optional)
For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match`
@@ -9023,7 +9023,7 @@ def delete_security_list(self, security_list_id, **kwargs):
:param str security_list_id: (required)
The `OCID`__ of the security list.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param str if_match: (optional)
For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match`
@@ -9214,7 +9214,7 @@ def delete_subnet(self, subnet_id, **kwargs):
:param str subnet_id: (required)
The `OCID`__ of the subnet.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param str if_match: (optional)
For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match`
@@ -9408,7 +9408,7 @@ def delete_virtual_circuit(self, virtual_circuit_id, **kwargs):
:param str virtual_circuit_id: (required)
The `OCID`__ of the virtual circuit.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param str if_match: (optional)
For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match`
@@ -9605,7 +9605,7 @@ def delete_vtap(self, vtap_id, **kwargs):
:param str vtap_id: (required)
The `OCID`__ of the VTAP.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param str if_match: (optional)
For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match`
@@ -9817,7 +9817,7 @@ def get_all_drg_attachments(self, drg_id, **kwargs):
:param str drg_id: (required)
The `OCID`__ of the DRG.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param str opc_request_id: (optional)
Unique identifier for the request.
@@ -10134,7 +10134,7 @@ def get_capture_filter(self, capture_filter_id, **kwargs):
:param str capture_filter_id: (required)
The `OCID`__ of the capture filter.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param str opc_request_id: (optional)
Unique identifier for the request.
@@ -10229,7 +10229,7 @@ def get_cpe(self, cpe_id, **kwargs):
:param str cpe_id: (required)
The `OCID`__ of the CPE.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param obj retry_strategy: (optional)
A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level.
@@ -10332,7 +10332,7 @@ def get_cpe_device_config_content(self, cpe_id, **kwargs):
:param str cpe_id: (required)
The `OCID`__ of the CPE.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param str opc_request_id: (optional)
Unique identifier for the request.
@@ -10534,7 +10534,7 @@ def get_cross_connect(self, cross_connect_id, **kwargs):
:param str cross_connect_id: (required)
The `OCID`__ of the cross-connect.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param obj retry_strategy: (optional)
A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level.
@@ -10620,7 +10620,7 @@ def get_cross_connect_group(self, cross_connect_group_id, **kwargs):
:param str cross_connect_group_id: (required)
The `OCID`__ of the cross-connect group.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param obj retry_strategy: (optional)
A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level.
@@ -10706,7 +10706,7 @@ def get_cross_connect_letter_of_authority(self, cross_connect_id, **kwargs):
:param str cross_connect_id: (required)
The `OCID`__ of the cross-connect.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param obj retry_strategy: (optional)
A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level.
@@ -10792,7 +10792,7 @@ def get_cross_connect_status(self, cross_connect_id, **kwargs):
:param str cross_connect_id: (required)
The `OCID`__ of the cross-connect.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param obj retry_strategy: (optional)
A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level.
@@ -10878,7 +10878,7 @@ def get_dhcp_options(self, dhcp_id, **kwargs):
:param str dhcp_id: (required)
The `OCID`__ for the set of DHCP options.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param obj retry_strategy: (optional)
A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level.
@@ -10962,7 +10962,7 @@ def get_drg(self, drg_id, **kwargs):
:param str drg_id: (required)
The `OCID`__ of the DRG.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param obj retry_strategy: (optional)
A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level.
@@ -11133,7 +11133,7 @@ def get_drg_redundancy_status(self, drg_id, **kwargs):
:param str drg_id: (required)
The `OCID`__ of the DRG.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param str opc_request_id: (optional)
Unique identifier for the request.
@@ -11401,7 +11401,7 @@ def get_fast_connect_provider_service(self, provider_service_id, **kwargs):
:param str provider_service_id: (required)
The `OCID`__ of the provider service.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param obj retry_strategy: (optional)
A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level.
@@ -11488,7 +11488,7 @@ def get_fast_connect_provider_service_key(self, provider_service_id, provider_se
:param str provider_service_id: (required)
The `OCID`__ of the provider service.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param str provider_service_key_name: (required)
The provider service key that the provider gives you when you set up a virtual circuit connection
@@ -11581,7 +11581,7 @@ def get_internet_gateway(self, ig_id, **kwargs):
:param str ig_id: (required)
The `OCID`__ of the internet gateway.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param obj retry_strategy: (optional)
A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level.
@@ -11667,7 +11667,7 @@ def get_ip_sec_connection(self, ipsc_id, **kwargs):
:param str ipsc_id: (required)
The `OCID`__ of the IPSec connection.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param obj retry_strategy: (optional)
A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level.
@@ -11756,7 +11756,7 @@ def get_ip_sec_connection_device_config(self, ipsc_id, **kwargs):
:param str ipsc_id: (required)
The `OCID`__ of the IPSec connection.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param obj retry_strategy: (optional)
A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level.
@@ -11843,7 +11843,7 @@ def get_ip_sec_connection_device_status(self, ipsc_id, **kwargs):
:param str ipsc_id: (required)
The `OCID`__ of the IPSec connection.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param obj retry_strategy: (optional)
A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level.
@@ -11931,7 +11931,7 @@ def get_ip_sec_connection_tunnel(self, ipsc_id, tunnel_id, **kwargs):
:param str ipsc_id: (required)
The `OCID`__ of the IPSec connection.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param str tunnel_id: (required)
The `OCID`__ of the tunnel.
@@ -12023,7 +12023,7 @@ def get_ip_sec_connection_tunnel_error(self, ipsc_id, tunnel_id, **kwargs):
:param str ipsc_id: (required)
The `OCID`__ of the IPSec connection.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param str tunnel_id: (required)
The `OCID`__ of the tunnel.
@@ -12116,7 +12116,7 @@ def get_ip_sec_connection_tunnel_shared_secret(self, ipsc_id, tunnel_id, **kwarg
:param str ipsc_id: (required)
The `OCID`__ of the IPSec connection.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param str tunnel_id: (required)
The `OCID`__ of the tunnel.
@@ -12226,7 +12226,7 @@ def get_ipsec_cpe_device_config_content(self, ipsc_id, **kwargs):
:param str ipsc_id: (required)
The `OCID`__ of the IPSec connection.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param str opc_request_id: (optional)
Unique identifier for the request.
@@ -12322,7 +12322,7 @@ def get_ipv6(self, ipv6_id, **kwargs):
:func:`list_ipv6s`
with the IPv6 address (for example, 2001:0db8:0123:1111:98fe:dcba:9876:4321) and subnet `OCID`__.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
__ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
@@ -12424,7 +12424,7 @@ def get_local_peering_gateway(self, local_peering_gateway_id, **kwargs):
:param str local_peering_gateway_id: (required)
The `OCID`__ of the local peering gateway.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param obj retry_strategy: (optional)
A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level.
@@ -12821,7 +12821,7 @@ def get_private_ip(self, private_ip_id, **kwargs):
:param str private_ip_id: (required)
The `OCID`__ of the private IP or IPv6.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param obj retry_strategy: (optional)
A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level.
@@ -12919,7 +12919,7 @@ def get_public_ip(self, public_ip_id, **kwargs):
:param str public_ip_id: (required)
The `OCID`__ of the public IP.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param obj retry_strategy: (optional)
A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level.
@@ -13264,7 +13264,7 @@ def get_remote_peering_connection(self, remote_peering_connection_id, **kwargs):
:param str remote_peering_connection_id: (required)
The `OCID`__ of the remote peering connection (RPC).
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param obj retry_strategy: (optional)
A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level.
@@ -13350,7 +13350,7 @@ def get_route_table(self, rt_id, **kwargs):
:param str rt_id: (required)
The `OCID`__ of the route table.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param obj retry_strategy: (optional)
A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level.
@@ -13434,7 +13434,7 @@ def get_security_list(self, security_list_id, **kwargs):
:param str security_list_id: (required)
The `OCID`__ of the security list.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param obj retry_strategy: (optional)
A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level.
@@ -13686,7 +13686,7 @@ def get_subnet(self, subnet_id, **kwargs):
:param str subnet_id: (required)
The `OCID`__ of the subnet.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param obj retry_strategy: (optional)
A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level.
@@ -13775,7 +13775,7 @@ def get_subnet_topology(self, compartment_id, subnet_id, **kwargs):
:param str subnet_id: (required)
The `OCID`__ of the subnet.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param str access_level: (optional)
Valid values are `ANY` and `ACCESSIBLE`. The default is `ANY`.
@@ -13913,7 +13913,7 @@ def get_tunnel_cpe_device_config(self, ipsc_id, tunnel_id, **kwargs):
:param str ipsc_id: (required)
The `OCID`__ of the IPSec connection.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param str tunnel_id: (required)
The `OCID`__ of the tunnel.
@@ -14033,7 +14033,7 @@ def get_tunnel_cpe_device_config_content(self, ipsc_id, tunnel_id, **kwargs):
:param str ipsc_id: (required)
The `OCID`__ of the IPSec connection.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param str tunnel_id: (required)
The `OCID`__ of the tunnel.
@@ -14136,7 +14136,7 @@ def get_upgrade_status(self, drg_id, **kwargs):
:param str drg_id: (required)
The `OCID`__ of the DRG.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param str opc_request_id: (optional)
Unique identifier for the request.
@@ -14549,7 +14549,7 @@ def get_virtual_circuit(self, virtual_circuit_id, **kwargs):
:param str virtual_circuit_id: (required)
The `OCID`__ of the virtual circuit.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param obj retry_strategy: (optional)
A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level.
@@ -14735,7 +14735,7 @@ def get_vnic(self, vnic_id, **kwargs):
:param str vnic_id: (required)
The `OCID`__ of the VNIC.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param obj retry_strategy: (optional)
A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level.
@@ -14819,7 +14819,7 @@ def get_vtap(self, vtap_id, **kwargs):
:param str vtap_id: (required)
The `OCID`__ of the VTAP.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param str opc_request_id: (optional)
Unique identifier for the request.
@@ -15439,7 +15439,7 @@ def list_cpe_device_shapes(self, **kwargs):
* :func:`get_ipsec_cpe_device_config_content`
* :func:`get_tunnel_cpe_device_config_content`
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param int limit: (optional)
@@ -15924,7 +15924,7 @@ def list_cross_connect_mappings(self, virtual_circuit_id, **kwargs):
:param str virtual_circuit_id: (required)
The `OCID`__ of the virtual circuit.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param str opc_request_id: (optional)
Unique identifier for the request.
@@ -16018,7 +16018,7 @@ def list_cross_connects(self, compartment_id, **kwargs):
Lists the cross-connects in the specified compartment. You can filter the list
by specifying the `OCID`__ of a cross-connect group.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param str compartment_id: (required)
@@ -16029,7 +16029,7 @@ def list_cross_connects(self, compartment_id, **kwargs):
:param str cross_connect_group_id: (optional)
The `OCID`__ of the cross-connect group.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param int limit: (optional)
For list pagination. The maximum number of results per page, or items to return in a paginated
@@ -17381,7 +17381,7 @@ def list_fast_connect_provider_services(self, compartment_id, **kwargs):
For more information, see `FastConnect Overview`__.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
__ https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/fastconnect.htm
@@ -17498,7 +17498,7 @@ def list_fast_connect_provider_virtual_circuit_bandwidth_shapes(self, provider_s
:param str provider_service_id: (required)
The `OCID`__ of the provider service.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param int limit: (optional)
For list pagination. The maximum number of results per page, or items to return in a paginated
@@ -17781,7 +17781,7 @@ def list_ip_sec_connection_tunnel_routes(self, ipsc_id, tunnel_id, **kwargs):
:param str ipsc_id: (required)
The `OCID`__ of the IPSec connection.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param str tunnel_id: (required)
The `OCID`__ of the tunnel.
@@ -17919,7 +17919,7 @@ def list_ip_sec_connection_tunnel_security_associations(self, ipsc_id, tunnel_id
:param str ipsc_id: (required)
The `OCID`__ of the IPSec connection.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param str tunnel_id: (required)
The `OCID`__ of the tunnel.
@@ -18041,7 +18041,7 @@ def list_ip_sec_connection_tunnels(self, ipsc_id, **kwargs):
:param str ipsc_id: (required)
The `OCID`__ of the IPSec connection.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param int limit: (optional)
For list pagination. The maximum number of results per page, or items to return in a paginated
@@ -18168,7 +18168,7 @@ def list_ip_sec_connections(self, compartment_id, **kwargs):
:param str cpe_id: (optional)
The `OCID`__ of the CPE.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param int limit: (optional)
For list pagination. The maximum number of results per page, or items to return in a paginated
@@ -18309,7 +18309,7 @@ def list_ipv6s(self, **kwargs):
:param str subnet_id: (optional)
The `OCID`__ of the subnet.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param str vnic_id: (optional)
The OCID of the VNIC.
@@ -19206,7 +19206,7 @@ def list_private_ips(self, **kwargs):
:param str subnet_id: (optional)
The `OCID`__ of the subnet.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param str vnic_id: (optional)
The OCID of the VNIC.
@@ -20777,7 +20777,7 @@ def list_virtual_circuit_public_prefixes(self, virtual_circuit_id, **kwargs):
:param str virtual_circuit_id: (required)
The `OCID`__ of the virtual circuit.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param str verification_state: (optional)
A filter to only return resources that match the given verification
@@ -21926,7 +21926,7 @@ def remove_ipv6_subnet_cidr(self, subnet_id, remove_subnet_ipv6_cidr_details, **
:param str subnet_id: (required)
The `OCID`__ of the subnet.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param oci.core.models.RemoveSubnetIpv6CidrDetails remove_subnet_ipv6_cidr_details: (required)
Details object for removing an IPv6 SUBNET CIDR.
@@ -22581,7 +22581,7 @@ def update_capture_filter(self, capture_filter_id, update_capture_filter_details
:param str capture_filter_id: (required)
The `OCID`__ of the capture filter.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param oci.core.models.UpdateCaptureFilterDetails update_capture_filter_details: (required)
Details object for updating a VTAP.
@@ -22689,7 +22689,7 @@ def update_cpe(self, cpe_id, update_cpe_details, **kwargs):
:param str cpe_id: (required)
The `OCID`__ of the CPE.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param oci.core.models.UpdateCpeDetails update_cpe_details: (required)
Details object for updating a CPE.
@@ -22792,7 +22792,7 @@ def update_cross_connect(self, cross_connect_id, update_cross_connect_details, *
:param str cross_connect_id: (required)
The `OCID`__ of the cross-connect.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param oci.core.models.UpdateCrossConnectDetails update_cross_connect_details: (required)
Update CrossConnect fields.
@@ -22896,7 +22896,7 @@ def update_cross_connect_group(self, cross_connect_group_id, update_cross_connec
:param str cross_connect_group_id: (required)
The `OCID`__ of the cross-connect group.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param oci.core.models.UpdateCrossConnectGroupDetails update_cross_connect_group_details: (required)
Update CrossConnectGroup fields
@@ -23002,7 +23002,7 @@ def update_dhcp_options(self, dhcp_id, update_dhcp_details, **kwargs):
:param str dhcp_id: (required)
The `OCID`__ for the set of DHCP options.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param oci.core.models.UpdateDhcpDetails update_dhcp_details: (required)
Request object for updating a set of DHCP options.
@@ -23103,7 +23103,7 @@ def update_drg(self, drg_id, update_drg_details, **kwargs):
:param str drg_id: (required)
The `OCID`__ of the DRG.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param oci.core.models.UpdateDrgDetails update_drg_details: (required)
Details object for updating a DRG.
@@ -23690,7 +23690,7 @@ def update_internet_gateway(self, ig_id, update_internet_gateway_details, **kwar
:param str ig_id: (required)
The `OCID`__ of the internet gateway.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param oci.core.models.UpdateInternetGatewayDetails update_internet_gateway_details: (required)
Details for updating the internet gateway.
@@ -23794,7 +23794,7 @@ def update_ip_sec_connection(self, ipsc_id, update_ip_sec_connection_details, **
:param str ipsc_id: (required)
The `OCID`__ of the IPSec connection.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param oci.core.models.UpdateIPSecConnectionDetails update_ip_sec_connection_details: (required)
Details object for updating an IPSec connection.
@@ -23908,7 +23908,7 @@ def update_ip_sec_connection_tunnel(self, ipsc_id, tunnel_id, update_ip_sec_conn
:param str ipsc_id: (required)
The `OCID`__ of the IPSec connection.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param str tunnel_id: (required)
The `OCID`__ of the tunnel.
@@ -24025,7 +24025,7 @@ def update_ip_sec_connection_tunnel_shared_secret(self, ipsc_id, tunnel_id, upda
:param str ipsc_id: (required)
The `OCID`__ of the IPSec connection.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param str tunnel_id: (required)
The `OCID`__ of the tunnel.
@@ -24249,7 +24249,7 @@ def update_local_peering_gateway(self, local_peering_gateway_id, update_local_pe
:param str local_peering_gateway_id: (required)
The `OCID`__ of the local peering gateway.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param oci.core.models.UpdateLocalPeeringGatewayDetails update_local_peering_gateway_details: (required)
Details object for updating a local peering gateway.
@@ -24669,7 +24669,7 @@ def update_private_ip(self, private_ip_id, update_private_ip_details, **kwargs):
:param str private_ip_id: (required)
The `OCID`__ of the private IP or IPv6.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param oci.core.models.UpdatePrivateIpDetails update_private_ip_details: (required)
Private IP details.
@@ -24811,7 +24811,7 @@ def update_public_ip(self, public_ip_id, update_public_ip_details, **kwargs):
:param str public_ip_id: (required)
The `OCID`__ of the public IP.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param oci.core.models.UpdatePublicIpDetails update_public_ip_details: (required)
Public IP details.
@@ -25019,7 +25019,7 @@ def update_remote_peering_connection(self, remote_peering_connection_id, update_
:param str remote_peering_connection_id: (required)
The `OCID`__ of the remote peering connection (RPC).
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param oci.core.models.UpdateRemotePeeringConnectionDetails update_remote_peering_connection_details: (required)
Request to the update the peering connection to remote region
@@ -25125,7 +25125,7 @@ def update_route_table(self, rt_id, update_route_table_details, **kwargs):
:param str rt_id: (required)
The `OCID`__ of the route table.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param oci.core.models.UpdateRouteTableDetails update_route_table_details: (required)
Details object for updating a route table.
@@ -25230,7 +25230,7 @@ def update_security_list(self, security_list_id, update_security_list_details, *
:param str security_list_id: (required)
The `OCID`__ of the security list.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param oci.core.models.UpdateSecurityListDetails update_security_list_details: (required)
Updated details for the security list.
@@ -25433,7 +25433,7 @@ def update_subnet(self, subnet_id, update_subnet_details, **kwargs):
:param str subnet_id: (required)
The `OCID`__ of the subnet.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param oci.core.models.UpdateSubnetDetails update_subnet_details: (required)
Details object for updating a subnet.
@@ -25536,7 +25536,7 @@ def update_tunnel_cpe_device_config(self, ipsc_id, tunnel_id, update_tunnel_cpe_
:param str ipsc_id: (required)
The `OCID`__ of the IPSec connection.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param str tunnel_id: (required)
The `OCID`__ of the tunnel.
@@ -25787,7 +25787,7 @@ def update_virtual_circuit(self, virtual_circuit_id, update_virtual_circuit_deta
:param str virtual_circuit_id: (required)
The `OCID`__ of the virtual circuit.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param oci.core.models.UpdateVirtualCircuitDetails update_virtual_circuit_details: (required)
Update VirtualCircuit fields.
@@ -25998,7 +25998,7 @@ def update_vnic(self, vnic_id, update_vnic_details, **kwargs):
:param str vnic_id: (required)
The `OCID`__ of the VNIC.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param oci.core.models.UpdateVnicDetails update_vnic_details: (required)
Details object for updating a VNIC.
@@ -26099,7 +26099,7 @@ def update_vtap(self, vtap_id, update_vtap_details, **kwargs):
:param str vtap_id: (required)
The `OCID`__ of the VTAP.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param oci.core.models.UpdateVtapDetails update_vtap_details: (required)
Details object for updating a VTAP.
@@ -26207,7 +26207,7 @@ def upgrade_drg(self, drg_id, **kwargs):
:param str drg_id: (required)
The `OCID`__ of the DRG.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param str opc_request_id: (optional)
Unique identifier for the request.
diff --git a/src/oci/core/virtual_network_client_composite_operations.py b/src/oci/core/virtual_network_client_composite_operations.py
index 0b8416fef7..a1b135a922 100644
--- a/src/oci/core/virtual_network_client_composite_operations.py
+++ b/src/oci/core/virtual_network_client_composite_operations.py
@@ -35,7 +35,7 @@ def add_ipv6_subnet_cidr_and_wait_for_work_request(self, subnet_id, add_subnet_i
:param str subnet_id: (required)
The `OCID`__ of the subnet.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param oci.core.models.AddSubnetIpv6CidrDetails add_subnet_ipv6_cidr_details: (required)
Details object for adding an IPv6 CIDR to a subnet.
@@ -238,7 +238,7 @@ def change_capture_filter_compartment_and_wait_for_work_request(self, capture_fi
:param str capture_filter_id: (required)
The `OCID`__ of the capture filter.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param oci.core.models.ChangeCaptureFilterCompartmentDetails change_capture_filter_compartment_details: (required)
Request to change the compartment of a VTAP.
@@ -278,7 +278,7 @@ def change_drg_compartment_and_wait_for_work_request(self, drg_id, change_drg_co
:param str drg_id: (required)
The `OCID`__ of the DRG.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param oci.core.models.ChangeDrgCompartmentDetails change_drg_compartment_details: (required)
Request to change the compartment of a DRG.
@@ -318,7 +318,7 @@ def change_subnet_compartment_and_wait_for_work_request(self, subnet_id, change_
:param str subnet_id: (required)
The `OCID`__ of the subnet.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param oci.core.models.ChangeSubnetCompartmentDetails change_subnet_compartment_details: (required)
Request to change the compartment of a given subnet.
@@ -438,7 +438,7 @@ def change_vtap_compartment_and_wait_for_work_request(self, vtap_id, change_vtap
:param str vtap_id: (required)
The `OCID`__ of the VTAP.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param oci.core.models.ChangeVtapCompartmentDetails change_vtap_compartment_details: (required)
Request to change the compartment that contains a VTAP.
@@ -1503,7 +1503,7 @@ def delete_capture_filter_and_wait_for_state(self, capture_filter_id, wait_for_s
:param str capture_filter_id: (required)
The `OCID`__ of the capture filter.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param list[str] wait_for_states:
An array of states to wait on. These should be valid values for :py:attr:`~oci.core.models.CaptureFilter.lifecycle_state`
@@ -1552,7 +1552,7 @@ def delete_cross_connect_and_wait_for_state(self, cross_connect_id, wait_for_sta
:param str cross_connect_id: (required)
The `OCID`__ of the cross-connect.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param list[str] wait_for_states:
An array of states to wait on. These should be valid values for :py:attr:`~oci.core.models.CrossConnect.lifecycle_state`
@@ -1601,7 +1601,7 @@ def delete_cross_connect_group_and_wait_for_state(self, cross_connect_group_id,
:param str cross_connect_group_id: (required)
The `OCID`__ of the cross-connect group.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param list[str] wait_for_states:
An array of states to wait on. These should be valid values for :py:attr:`~oci.core.models.CrossConnectGroup.lifecycle_state`
@@ -1650,7 +1650,7 @@ def delete_dhcp_options_and_wait_for_state(self, dhcp_id, wait_for_states=[], op
:param str dhcp_id: (required)
The `OCID`__ for the set of DHCP options.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param list[str] wait_for_states:
An array of states to wait on. These should be valid values for :py:attr:`~oci.core.models.DhcpOptions.lifecycle_state`
@@ -1699,7 +1699,7 @@ def delete_drg_and_wait_for_state(self, drg_id, wait_for_states=[], operation_kw
:param str drg_id: (required)
The `OCID`__ of the DRG.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param list[str] wait_for_states:
An array of states to wait on. These should be valid values for :py:attr:`~oci.core.models.Drg.lifecycle_state`
@@ -1895,7 +1895,7 @@ def delete_internet_gateway_and_wait_for_state(self, ig_id, wait_for_states=[],
:param str ig_id: (required)
The `OCID`__ of the internet gateway.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param list[str] wait_for_states:
An array of states to wait on. These should be valid values for :py:attr:`~oci.core.models.InternetGateway.lifecycle_state`
@@ -1944,7 +1944,7 @@ def delete_ip_sec_connection_and_wait_for_state(self, ipsc_id, wait_for_states=[
:param str ipsc_id: (required)
The `OCID`__ of the IPSec connection.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param list[str] wait_for_states:
An array of states to wait on. These should be valid values for :py:attr:`~oci.core.models.IPSecConnection.lifecycle_state`
@@ -2042,7 +2042,7 @@ def delete_local_peering_gateway_and_wait_for_state(self, local_peering_gateway_
:param str local_peering_gateway_id: (required)
The `OCID`__ of the local peering gateway.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param list[str] wait_for_states:
An array of states to wait on. These should be valid values for :py:attr:`~oci.core.models.LocalPeeringGateway.lifecycle_state`
@@ -2189,7 +2189,7 @@ def delete_public_ip_and_wait_for_state(self, public_ip_id, wait_for_states=[],
:param str public_ip_id: (required)
The `OCID`__ of the public IP.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param list[str] wait_for_states:
An array of states to wait on. These should be valid values for :py:attr:`~oci.core.models.PublicIp.lifecycle_state`
@@ -2287,7 +2287,7 @@ def delete_remote_peering_connection_and_wait_for_state(self, remote_peering_con
:param str remote_peering_connection_id: (required)
The `OCID`__ of the remote peering connection (RPC).
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param list[str] wait_for_states:
An array of states to wait on. These should be valid values for :py:attr:`~oci.core.models.RemotePeeringConnection.lifecycle_state`
@@ -2336,7 +2336,7 @@ def delete_route_table_and_wait_for_state(self, rt_id, wait_for_states=[], opera
:param str rt_id: (required)
The `OCID`__ of the route table.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param list[str] wait_for_states:
An array of states to wait on. These should be valid values for :py:attr:`~oci.core.models.RouteTable.lifecycle_state`
@@ -2385,7 +2385,7 @@ def delete_security_list_and_wait_for_state(self, security_list_id, wait_for_sta
:param str security_list_id: (required)
The `OCID`__ of the security list.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param list[str] wait_for_states:
An array of states to wait on. These should be valid values for :py:attr:`~oci.core.models.SecurityList.lifecycle_state`
@@ -2483,7 +2483,7 @@ def delete_subnet_and_wait_for_state(self, subnet_id, wait_for_states=[], operat
:param str subnet_id: (required)
The `OCID`__ of the subnet.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param list[str] wait_for_states:
An array of states to wait on. These should be valid values for :py:attr:`~oci.core.models.Subnet.lifecycle_state`
@@ -2581,7 +2581,7 @@ def delete_virtual_circuit_and_wait_for_state(self, virtual_circuit_id, wait_for
:param str virtual_circuit_id: (required)
The `OCID`__ of the virtual circuit.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param list[str] wait_for_states:
An array of states to wait on. These should be valid values for :py:attr:`~oci.core.models.VirtualCircuit.lifecycle_state`
@@ -2679,7 +2679,7 @@ def delete_vtap_and_wait_for_work_request(self, vtap_id, work_request_states=[],
:param str vtap_id: (required)
The `OCID`__ of the VTAP.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param list[str] work_request_states: (optional)
An array of work requests states to wait on. These should be valid values for :py:attr:`~oci.work_requests.models.WorkRequest.status`
@@ -2879,7 +2879,7 @@ def remove_ipv6_subnet_cidr_and_wait_for_work_request(self, subnet_id, remove_su
:param str subnet_id: (required)
The `OCID`__ of the subnet.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param oci.core.models.RemoveSubnetIpv6CidrDetails remove_subnet_ipv6_cidr_details: (required)
Details object for removing an IPv6 SUBNET CIDR.
@@ -3082,7 +3082,7 @@ def update_capture_filter_and_wait_for_state(self, capture_filter_id, update_cap
:param str capture_filter_id: (required)
The `OCID`__ of the capture filter.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param oci.core.models.UpdateCaptureFilterDetails update_capture_filter_details: (required)
Details object for updating a VTAP.
@@ -3125,7 +3125,7 @@ def update_cross_connect_and_wait_for_state(self, cross_connect_id, update_cross
:param str cross_connect_id: (required)
The `OCID`__ of the cross-connect.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param oci.core.models.UpdateCrossConnectDetails update_cross_connect_details: (required)
Update CrossConnect fields.
@@ -3168,7 +3168,7 @@ def update_cross_connect_group_and_wait_for_state(self, cross_connect_group_id,
:param str cross_connect_group_id: (required)
The `OCID`__ of the cross-connect group.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param oci.core.models.UpdateCrossConnectGroupDetails update_cross_connect_group_details: (required)
Update CrossConnectGroup fields
@@ -3211,7 +3211,7 @@ def update_dhcp_options_and_wait_for_state(self, dhcp_id, update_dhcp_details, w
:param str dhcp_id: (required)
The `OCID`__ for the set of DHCP options.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param oci.core.models.UpdateDhcpDetails update_dhcp_details: (required)
Request object for updating a set of DHCP options.
@@ -3254,7 +3254,7 @@ def update_drg_and_wait_for_state(self, drg_id, update_drg_details, wait_for_sta
:param str drg_id: (required)
The `OCID`__ of the DRG.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param oci.core.models.UpdateDrgDetails update_drg_details: (required)
Details object for updating a DRG.
@@ -3426,7 +3426,7 @@ def update_internet_gateway_and_wait_for_state(self, ig_id, update_internet_gate
:param str ig_id: (required)
The `OCID`__ of the internet gateway.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param oci.core.models.UpdateInternetGatewayDetails update_internet_gateway_details: (required)
Details for updating the internet gateway.
@@ -3469,7 +3469,7 @@ def update_ip_sec_connection_and_wait_for_state(self, ipsc_id, update_ip_sec_con
:param str ipsc_id: (required)
The `OCID`__ of the IPSec connection.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param oci.core.models.UpdateIPSecConnectionDetails update_ip_sec_connection_details: (required)
Details object for updating an IPSec connection.
@@ -3512,7 +3512,7 @@ def update_ip_sec_connection_tunnel_and_wait_for_state(self, ipsc_id, tunnel_id,
:param str ipsc_id: (required)
The `OCID`__ of the IPSec connection.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param str tunnel_id: (required)
The `OCID`__ of the tunnel.
@@ -3603,7 +3603,7 @@ def update_local_peering_gateway_and_wait_for_state(self, local_peering_gateway_
:param str local_peering_gateway_id: (required)
The `OCID`__ of the local peering gateway.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param oci.core.models.UpdateLocalPeeringGatewayDetails update_local_peering_gateway_details: (required)
Details object for updating a local peering gateway.
@@ -3732,7 +3732,7 @@ def update_public_ip_and_wait_for_state(self, public_ip_id, update_public_ip_det
:param str public_ip_id: (required)
The `OCID`__ of the public IP.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param oci.core.models.UpdatePublicIpDetails update_public_ip_details: (required)
Public IP details.
@@ -3818,7 +3818,7 @@ def update_remote_peering_connection_and_wait_for_state(self, remote_peering_con
:param str remote_peering_connection_id: (required)
The `OCID`__ of the remote peering connection (RPC).
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param oci.core.models.UpdateRemotePeeringConnectionDetails update_remote_peering_connection_details: (required)
Request to the update the peering connection to remote region
@@ -3861,7 +3861,7 @@ def update_route_table_and_wait_for_state(self, rt_id, update_route_table_detail
:param str rt_id: (required)
The `OCID`__ of the route table.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param oci.core.models.UpdateRouteTableDetails update_route_table_details: (required)
Details object for updating a route table.
@@ -3904,7 +3904,7 @@ def update_security_list_and_wait_for_state(self, security_list_id, update_secur
:param str security_list_id: (required)
The `OCID`__ of the security list.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param oci.core.models.UpdateSecurityListDetails update_security_list_details: (required)
Updated details for the security list.
@@ -3990,7 +3990,7 @@ def update_subnet_and_wait_for_state(self, subnet_id, update_subnet_details, wai
:param str subnet_id: (required)
The `OCID`__ of the subnet.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param oci.core.models.UpdateSubnetDetails update_subnet_details: (required)
Details object for updating a subnet.
@@ -4076,7 +4076,7 @@ def update_virtual_circuit_and_wait_for_state(self, virtual_circuit_id, update_v
:param str virtual_circuit_id: (required)
The `OCID`__ of the virtual circuit.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param oci.core.models.UpdateVirtualCircuitDetails update_virtual_circuit_details: (required)
Update VirtualCircuit fields.
@@ -4162,7 +4162,7 @@ def update_vnic_and_wait_for_state(self, vnic_id, update_vnic_details, wait_for_
:param str vnic_id: (required)
The `OCID`__ of the VNIC.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param oci.core.models.UpdateVnicDetails update_vnic_details: (required)
Details object for updating a VNIC.
@@ -4205,7 +4205,7 @@ def update_vtap_and_wait_for_work_request(self, vtap_id, update_vtap_details, wo
:param str vtap_id: (required)
The `OCID`__ of the VTAP.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param oci.core.models.UpdateVtapDetails update_vtap_details: (required)
Details object for updating a VTAP.
@@ -4245,7 +4245,7 @@ def update_vtap_and_wait_for_state(self, vtap_id, update_vtap_details, wait_for_
:param str vtap_id: (required)
The `OCID`__ of the VTAP.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param oci.core.models.UpdateVtapDetails update_vtap_details: (required)
Details object for updating a VTAP.
@@ -4288,7 +4288,7 @@ def upgrade_drg_and_wait_for_work_request(self, drg_id, work_request_states=[],
:param str drg_id: (required)
The `OCID`__ of the DRG.
- __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param list[str] work_request_states: (optional)
An array of work requests states to wait on. These should be valid values for :py:attr:`~oci.work_requests.models.WorkRequest.status`
diff --git a/src/oci/data_flow/models/__init__.py b/src/oci/data_flow/models/__init__.py
index 6d76379365..6437f648dc 100644
--- a/src/oci/data_flow/models/__init__.py
+++ b/src/oci/data_flow/models/__init__.py
@@ -19,6 +19,7 @@
from .run import Run
from .run_log_summary import RunLogSummary
from .run_summary import RunSummary
+from .shape_config import ShapeConfig
from .update_application_details import UpdateApplicationDetails
from .update_private_endpoint_details import UpdatePrivateEndpointDetails
from .update_run_details import UpdateRunDetails
@@ -48,6 +49,7 @@
"Run": Run,
"RunLogSummary": RunLogSummary,
"RunSummary": RunSummary,
+ "ShapeConfig": ShapeConfig,
"UpdateApplicationDetails": UpdateApplicationDetails,
"UpdatePrivateEndpointDetails": UpdatePrivateEndpointDetails,
"UpdateRunDetails": UpdateRunDetails,
diff --git a/src/oci/data_flow/models/application.py b/src/oci/data_flow/models/application.py
index 778a1a7dc9..dd23d29d9b 100644
--- a/src/oci/data_flow/models/application.py
+++ b/src/oci/data_flow/models/application.py
@@ -90,6 +90,10 @@ def __init__(self, **kwargs):
The value to assign to the driver_shape property of this Application.
:type driver_shape: str
+ :param driver_shape_config:
+ The value to assign to the driver_shape_config property of this Application.
+ :type driver_shape_config: oci.data_flow.models.ShapeConfig
+
:param execute:
The value to assign to the execute property of this Application.
:type execute: str
@@ -98,6 +102,10 @@ def __init__(self, **kwargs):
The value to assign to the executor_shape property of this Application.
:type executor_shape: str
+ :param executor_shape_config:
+ The value to assign to the executor_shape_config property of this Application.
+ :type executor_shape_config: oci.data_flow.models.ShapeConfig
+
:param file_uri:
The value to assign to the file_uri property of this Application.
:type file_uri: str
@@ -183,8 +191,10 @@ def __init__(self, **kwargs):
'description': 'str',
'display_name': 'str',
'driver_shape': 'str',
+ 'driver_shape_config': 'ShapeConfig',
'execute': 'str',
'executor_shape': 'str',
+ 'executor_shape_config': 'ShapeConfig',
'file_uri': 'str',
'freeform_tags': 'dict(str, str)',
'id': 'str',
@@ -214,8 +224,10 @@ def __init__(self, **kwargs):
'description': 'description',
'display_name': 'displayName',
'driver_shape': 'driverShape',
+ 'driver_shape_config': 'driverShapeConfig',
'execute': 'execute',
'executor_shape': 'executorShape',
+ 'executor_shape_config': 'executorShapeConfig',
'file_uri': 'fileUri',
'freeform_tags': 'freeformTags',
'id': 'id',
@@ -244,8 +256,10 @@ def __init__(self, **kwargs):
self._description = None
self._display_name = None
self._driver_shape = None
+ self._driver_shape_config = None
self._execute = None
self._executor_shape = None
+ self._executor_shape_config = None
self._file_uri = None
self._freeform_tags = None
self._id = None
@@ -510,6 +524,26 @@ def driver_shape(self, driver_shape):
"""
self._driver_shape = driver_shape
+ @property
+ def driver_shape_config(self):
+ """
+ Gets the driver_shape_config of this Application.
+
+ :return: The driver_shape_config of this Application.
+ :rtype: oci.data_flow.models.ShapeConfig
+ """
+ return self._driver_shape_config
+
+ @driver_shape_config.setter
+ def driver_shape_config(self, driver_shape_config):
+ """
+ Sets the driver_shape_config of this Application.
+
+ :param driver_shape_config: The driver_shape_config of this Application.
+ :type: oci.data_flow.models.ShapeConfig
+ """
+ self._driver_shape_config = driver_shape_config
+
@property
def execute(self):
"""
@@ -566,6 +600,26 @@ def executor_shape(self, executor_shape):
"""
self._executor_shape = executor_shape
+ @property
+ def executor_shape_config(self):
+ """
+ Gets the executor_shape_config of this Application.
+
+ :return: The executor_shape_config of this Application.
+ :rtype: oci.data_flow.models.ShapeConfig
+ """
+ return self._executor_shape_config
+
+ @executor_shape_config.setter
+ def executor_shape_config(self, executor_shape_config):
+ """
+ Sets the executor_shape_config of this Application.
+
+ :param executor_shape_config: The executor_shape_config of this Application.
+ :type: oci.data_flow.models.ShapeConfig
+ """
+ self._executor_shape_config = executor_shape_config
+
@property
def file_uri(self):
"""
diff --git a/src/oci/data_flow/models/create_application_details.py b/src/oci/data_flow/models/create_application_details.py
index d666803c18..bebff6ca22 100644
--- a/src/oci/data_flow/models/create_application_details.py
+++ b/src/oci/data_flow/models/create_application_details.py
@@ -78,6 +78,10 @@ def __init__(self, **kwargs):
The value to assign to the driver_shape property of this CreateApplicationDetails.
:type driver_shape: str
+ :param driver_shape_config:
+ The value to assign to the driver_shape_config property of this CreateApplicationDetails.
+ :type driver_shape_config: oci.data_flow.models.ShapeConfig
+
:param execute:
The value to assign to the execute property of this CreateApplicationDetails.
:type execute: str
@@ -86,6 +90,10 @@ def __init__(self, **kwargs):
The value to assign to the executor_shape property of this CreateApplicationDetails.
:type executor_shape: str
+ :param executor_shape_config:
+ The value to assign to the executor_shape_config property of this CreateApplicationDetails.
+ :type executor_shape_config: oci.data_flow.models.ShapeConfig
+
:param file_uri:
The value to assign to the file_uri property of this CreateApplicationDetails.
:type file_uri: str
@@ -143,8 +151,10 @@ def __init__(self, **kwargs):
'description': 'str',
'display_name': 'str',
'driver_shape': 'str',
+ 'driver_shape_config': 'ShapeConfig',
'execute': 'str',
'executor_shape': 'str',
+ 'executor_shape_config': 'ShapeConfig',
'file_uri': 'str',
'freeform_tags': 'dict(str, str)',
'language': 'str',
@@ -168,8 +178,10 @@ def __init__(self, **kwargs):
'description': 'description',
'display_name': 'displayName',
'driver_shape': 'driverShape',
+ 'driver_shape_config': 'driverShapeConfig',
'execute': 'execute',
'executor_shape': 'executorShape',
+ 'executor_shape_config': 'executorShapeConfig',
'file_uri': 'fileUri',
'freeform_tags': 'freeformTags',
'language': 'language',
@@ -192,8 +204,10 @@ def __init__(self, **kwargs):
self._description = None
self._display_name = None
self._driver_shape = None
+ self._driver_shape_config = None
self._execute = None
self._executor_shape = None
+ self._executor_shape_config = None
self._file_uri = None
self._freeform_tags = None
self._language = None
@@ -452,6 +466,26 @@ def driver_shape(self, driver_shape):
"""
self._driver_shape = driver_shape
+ @property
+ def driver_shape_config(self):
+ """
+ Gets the driver_shape_config of this CreateApplicationDetails.
+
+ :return: The driver_shape_config of this CreateApplicationDetails.
+ :rtype: oci.data_flow.models.ShapeConfig
+ """
+ return self._driver_shape_config
+
+ @driver_shape_config.setter
+ def driver_shape_config(self, driver_shape_config):
+ """
+ Sets the driver_shape_config of this CreateApplicationDetails.
+
+ :param driver_shape_config: The driver_shape_config of this CreateApplicationDetails.
+ :type: oci.data_flow.models.ShapeConfig
+ """
+ self._driver_shape_config = driver_shape_config
+
@property
def execute(self):
"""
@@ -508,6 +542,26 @@ def executor_shape(self, executor_shape):
"""
self._executor_shape = executor_shape
+ @property
+ def executor_shape_config(self):
+ """
+ Gets the executor_shape_config of this CreateApplicationDetails.
+
+ :return: The executor_shape_config of this CreateApplicationDetails.
+ :rtype: oci.data_flow.models.ShapeConfig
+ """
+ return self._executor_shape_config
+
+ @executor_shape_config.setter
+ def executor_shape_config(self, executor_shape_config):
+ """
+ Sets the executor_shape_config of this CreateApplicationDetails.
+
+ :param executor_shape_config: The executor_shape_config of this CreateApplicationDetails.
+ :type: oci.data_flow.models.ShapeConfig
+ """
+ self._executor_shape_config = executor_shape_config
+
@property
def file_uri(self):
"""
diff --git a/src/oci/data_flow/models/create_run_details.py b/src/oci/data_flow/models/create_run_details.py
index 32fba347d6..2e87b34d7a 100644
--- a/src/oci/data_flow/models/create_run_details.py
+++ b/src/oci/data_flow/models/create_run_details.py
@@ -90,6 +90,10 @@ def __init__(self, **kwargs):
The value to assign to the driver_shape property of this CreateRunDetails.
:type driver_shape: str
+ :param driver_shape_config:
+ The value to assign to the driver_shape_config property of this CreateRunDetails.
+ :type driver_shape_config: oci.data_flow.models.ShapeConfig
+
:param execute:
The value to assign to the execute property of this CreateRunDetails.
:type execute: str
@@ -98,6 +102,10 @@ def __init__(self, **kwargs):
The value to assign to the executor_shape property of this CreateRunDetails.
:type executor_shape: str
+ :param executor_shape_config:
+ The value to assign to the executor_shape_config property of this CreateRunDetails.
+ :type executor_shape_config: oci.data_flow.models.ShapeConfig
+
:param freeform_tags:
The value to assign to the freeform_tags property of this CreateRunDetails.
:type freeform_tags: dict(str, str)
@@ -141,8 +149,10 @@ def __init__(self, **kwargs):
'defined_tags': 'dict(str, dict(str, object))',
'display_name': 'str',
'driver_shape': 'str',
+ 'driver_shape_config': 'ShapeConfig',
'execute': 'str',
'executor_shape': 'str',
+ 'executor_shape_config': 'ShapeConfig',
'freeform_tags': 'dict(str, str)',
'logs_bucket_uri': 'str',
'metastore_id': 'str',
@@ -162,8 +172,10 @@ def __init__(self, **kwargs):
'defined_tags': 'definedTags',
'display_name': 'displayName',
'driver_shape': 'driverShape',
+ 'driver_shape_config': 'driverShapeConfig',
'execute': 'execute',
'executor_shape': 'executorShape',
+ 'executor_shape_config': 'executorShapeConfig',
'freeform_tags': 'freeformTags',
'logs_bucket_uri': 'logsBucketUri',
'metastore_id': 'metastoreId',
@@ -182,8 +194,10 @@ def __init__(self, **kwargs):
self._defined_tags = None
self._display_name = None
self._driver_shape = None
+ self._driver_shape_config = None
self._execute = None
self._executor_shape = None
+ self._executor_shape_config = None
self._freeform_tags = None
self._logs_bucket_uri = None
self._metastore_id = None
@@ -415,6 +429,26 @@ def driver_shape(self, driver_shape):
"""
self._driver_shape = driver_shape
+ @property
+ def driver_shape_config(self):
+ """
+ Gets the driver_shape_config of this CreateRunDetails.
+
+ :return: The driver_shape_config of this CreateRunDetails.
+ :rtype: oci.data_flow.models.ShapeConfig
+ """
+ return self._driver_shape_config
+
+ @driver_shape_config.setter
+ def driver_shape_config(self, driver_shape_config):
+ """
+ Sets the driver_shape_config of this CreateRunDetails.
+
+ :param driver_shape_config: The driver_shape_config of this CreateRunDetails.
+ :type: oci.data_flow.models.ShapeConfig
+ """
+ self._driver_shape_config = driver_shape_config
+
@property
def execute(self):
"""
@@ -471,6 +505,26 @@ def executor_shape(self, executor_shape):
"""
self._executor_shape = executor_shape
+ @property
+ def executor_shape_config(self):
+ """
+ Gets the executor_shape_config of this CreateRunDetails.
+
+ :return: The executor_shape_config of this CreateRunDetails.
+ :rtype: oci.data_flow.models.ShapeConfig
+ """
+ return self._executor_shape_config
+
+ @executor_shape_config.setter
+ def executor_shape_config(self, executor_shape_config):
+ """
+ Sets the executor_shape_config of this CreateRunDetails.
+
+ :param executor_shape_config: The executor_shape_config of this CreateRunDetails.
+ :type: oci.data_flow.models.ShapeConfig
+ """
+ self._executor_shape_config = executor_shape_config
+
@property
def freeform_tags(self):
"""
diff --git a/src/oci/data_flow/models/run.py b/src/oci/data_flow/models/run.py
index 118dd07886..ddae3f258a 100644
--- a/src/oci/data_flow/models/run.py
+++ b/src/oci/data_flow/models/run.py
@@ -118,6 +118,10 @@ def __init__(self, **kwargs):
The value to assign to the driver_shape property of this Run.
:type driver_shape: str
+ :param driver_shape_config:
+ The value to assign to the driver_shape_config property of this Run.
+ :type driver_shape_config: oci.data_flow.models.ShapeConfig
+
:param execute:
The value to assign to the execute property of this Run.
:type execute: str
@@ -126,6 +130,10 @@ def __init__(self, **kwargs):
The value to assign to the executor_shape property of this Run.
:type executor_shape: str
+ :param executor_shape_config:
+ The value to assign to the executor_shape_config property of this Run.
+ :type executor_shape_config: oci.data_flow.models.ShapeConfig
+
:param file_uri:
The value to assign to the file_uri property of this Run.
:type file_uri: str
@@ -245,8 +253,10 @@ def __init__(self, **kwargs):
'defined_tags': 'dict(str, dict(str, object))',
'display_name': 'str',
'driver_shape': 'str',
+ 'driver_shape_config': 'ShapeConfig',
'execute': 'str',
'executor_shape': 'str',
+ 'executor_shape_config': 'ShapeConfig',
'file_uri': 'str',
'freeform_tags': 'dict(str, str)',
'id': 'str',
@@ -286,8 +296,10 @@ def __init__(self, **kwargs):
'defined_tags': 'definedTags',
'display_name': 'displayName',
'driver_shape': 'driverShape',
+ 'driver_shape_config': 'driverShapeConfig',
'execute': 'execute',
'executor_shape': 'executorShape',
+ 'executor_shape_config': 'executorShapeConfig',
'file_uri': 'fileUri',
'freeform_tags': 'freeformTags',
'id': 'id',
@@ -326,8 +338,10 @@ def __init__(self, **kwargs):
self._defined_tags = None
self._display_name = None
self._driver_shape = None
+ self._driver_shape_config = None
self._execute = None
self._executor_shape = None
+ self._executor_shape_config = None
self._file_uri = None
self._freeform_tags = None
self._id = None
@@ -648,6 +662,26 @@ def driver_shape(self, driver_shape):
"""
self._driver_shape = driver_shape
+ @property
+ def driver_shape_config(self):
+ """
+ Gets the driver_shape_config of this Run.
+
+ :return: The driver_shape_config of this Run.
+ :rtype: oci.data_flow.models.ShapeConfig
+ """
+ return self._driver_shape_config
+
+ @driver_shape_config.setter
+ def driver_shape_config(self, driver_shape_config):
+ """
+ Sets the driver_shape_config of this Run.
+
+ :param driver_shape_config: The driver_shape_config of this Run.
+ :type: oci.data_flow.models.ShapeConfig
+ """
+ self._driver_shape_config = driver_shape_config
+
@property
def execute(self):
"""
@@ -704,6 +738,26 @@ def executor_shape(self, executor_shape):
"""
self._executor_shape = executor_shape
+ @property
+ def executor_shape_config(self):
+ """
+ Gets the executor_shape_config of this Run.
+
+ :return: The executor_shape_config of this Run.
+ :rtype: oci.data_flow.models.ShapeConfig
+ """
+ return self._executor_shape_config
+
+ @executor_shape_config.setter
+ def executor_shape_config(self, executor_shape_config):
+ """
+ Sets the executor_shape_config of this Run.
+
+ :param executor_shape_config: The executor_shape_config of this Run.
+ :type: oci.data_flow.models.ShapeConfig
+ """
+ self._executor_shape_config = executor_shape_config
+
@property
def file_uri(self):
"""
diff --git a/src/oci/data_flow/models/shape_config.py b/src/oci/data_flow/models/shape_config.py
new file mode 100644
index 0000000000..febe234615
--- /dev/null
+++ b/src/oci/data_flow/models/shape_config.py
@@ -0,0 +1,107 @@
+# coding: utf-8
+# Copyright (c) 2016, 2022, 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.
+
+
+from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401
+from oci.decorators import init_model_state_from_kwargs
+
+
+@init_model_state_from_kwargs
+class ShapeConfig(object):
+ """
+ This is used to configure the shape of the driver or executor if a flexible shape is used.
+ """
+
+ def __init__(self, **kwargs):
+ """
+ Initializes a new ShapeConfig object with values from keyword arguments.
+ The following keyword arguments are supported (corresponding to the getters/setters of this class):
+
+ :param ocpus:
+ The value to assign to the ocpus property of this ShapeConfig.
+ :type ocpus: float
+
+ :param memory_in_gbs:
+ The value to assign to the memory_in_gbs property of this ShapeConfig.
+ :type memory_in_gbs: float
+
+ """
+ self.swagger_types = {
+ 'ocpus': 'float',
+ 'memory_in_gbs': 'float'
+ }
+
+ self.attribute_map = {
+ 'ocpus': 'ocpus',
+ 'memory_in_gbs': 'memoryInGBs'
+ }
+
+ self._ocpus = None
+ self._memory_in_gbs = None
+
+ @property
+ def ocpus(self):
+ """
+ Gets the ocpus of this ShapeConfig.
+ The total number of OCPUs used for the driver or executors.
+ See `here`__ for details.
+
+ __ https://docs.cloud.oracle.com/en-us/iaas/api/#/en/iaas/20160918/Shape/
+
+
+ :return: The ocpus of this ShapeConfig.
+ :rtype: float
+ """
+ return self._ocpus
+
+ @ocpus.setter
+ def ocpus(self, ocpus):
+ """
+ Sets the ocpus of this ShapeConfig.
+ The total number of OCPUs used for the driver or executors.
+ See `here`__ for details.
+
+ __ https://docs.cloud.oracle.com/en-us/iaas/api/#/en/iaas/20160918/Shape/
+
+
+ :param ocpus: The ocpus of this ShapeConfig.
+ :type: float
+ """
+ self._ocpus = ocpus
+
+ @property
+ def memory_in_gbs(self):
+ """
+ Gets the memory_in_gbs of this ShapeConfig.
+ The amount of memory used for the driver or executors.
+
+
+ :return: The memory_in_gbs of this ShapeConfig.
+ :rtype: float
+ """
+ return self._memory_in_gbs
+
+ @memory_in_gbs.setter
+ def memory_in_gbs(self, memory_in_gbs):
+ """
+ Sets the memory_in_gbs of this ShapeConfig.
+ The amount of memory used for the driver or executors.
+
+
+ :param memory_in_gbs: The memory_in_gbs of this ShapeConfig.
+ :type: float
+ """
+ self._memory_in_gbs = memory_in_gbs
+
+ def __repr__(self):
+ return formatted_flat_dict(self)
+
+ def __eq__(self, other):
+ if other is None:
+ return False
+
+ return self.__dict__ == other.__dict__
+
+ def __ne__(self, other):
+ return not self == other
diff --git a/src/oci/data_flow/models/update_application_details.py b/src/oci/data_flow/models/update_application_details.py
index 116ff223f5..b582648dea 100644
--- a/src/oci/data_flow/models/update_application_details.py
+++ b/src/oci/data_flow/models/update_application_details.py
@@ -79,6 +79,10 @@ def __init__(self, **kwargs):
The value to assign to the driver_shape property of this UpdateApplicationDetails.
:type driver_shape: str
+ :param driver_shape_config:
+ The value to assign to the driver_shape_config property of this UpdateApplicationDetails.
+ :type driver_shape_config: oci.data_flow.models.ShapeConfig
+
:param execute:
The value to assign to the execute property of this UpdateApplicationDetails.
:type execute: str
@@ -87,6 +91,10 @@ def __init__(self, **kwargs):
The value to assign to the executor_shape property of this UpdateApplicationDetails.
:type executor_shape: str
+ :param executor_shape_config:
+ The value to assign to the executor_shape_config property of this UpdateApplicationDetails.
+ :type executor_shape_config: oci.data_flow.models.ShapeConfig
+
:param freeform_tags:
The value to assign to the freeform_tags property of this UpdateApplicationDetails.
:type freeform_tags: dict(str, str)
@@ -128,8 +136,10 @@ def __init__(self, **kwargs):
'description': 'str',
'display_name': 'str',
'driver_shape': 'str',
+ 'driver_shape_config': 'ShapeConfig',
'execute': 'str',
'executor_shape': 'str',
+ 'executor_shape_config': 'ShapeConfig',
'freeform_tags': 'dict(str, str)',
'logs_bucket_uri': 'str',
'metastore_id': 'str',
@@ -151,8 +161,10 @@ def __init__(self, **kwargs):
'description': 'description',
'display_name': 'displayName',
'driver_shape': 'driverShape',
+ 'driver_shape_config': 'driverShapeConfig',
'execute': 'execute',
'executor_shape': 'executorShape',
+ 'executor_shape_config': 'executorShapeConfig',
'freeform_tags': 'freeformTags',
'logs_bucket_uri': 'logsBucketUri',
'metastore_id': 'metastoreId',
@@ -173,8 +185,10 @@ def __init__(self, **kwargs):
self._description = None
self._display_name = None
self._driver_shape = None
+ self._driver_shape_config = None
self._execute = None
self._executor_shape = None
+ self._executor_shape_config = None
self._freeform_tags = None
self._logs_bucket_uri = None
self._metastore_id = None
@@ -487,6 +501,26 @@ def driver_shape(self, driver_shape):
"""
self._driver_shape = driver_shape
+ @property
+ def driver_shape_config(self):
+ """
+ Gets the driver_shape_config of this UpdateApplicationDetails.
+
+ :return: The driver_shape_config of this UpdateApplicationDetails.
+ :rtype: oci.data_flow.models.ShapeConfig
+ """
+ return self._driver_shape_config
+
+ @driver_shape_config.setter
+ def driver_shape_config(self, driver_shape_config):
+ """
+ Sets the driver_shape_config of this UpdateApplicationDetails.
+
+ :param driver_shape_config: The driver_shape_config of this UpdateApplicationDetails.
+ :type: oci.data_flow.models.ShapeConfig
+ """
+ self._driver_shape_config = driver_shape_config
+
@property
def execute(self):
"""
@@ -543,6 +577,26 @@ def executor_shape(self, executor_shape):
"""
self._executor_shape = executor_shape
+ @property
+ def executor_shape_config(self):
+ """
+ Gets the executor_shape_config of this UpdateApplicationDetails.
+
+ :return: The executor_shape_config of this UpdateApplicationDetails.
+ :rtype: oci.data_flow.models.ShapeConfig
+ """
+ return self._executor_shape_config
+
+ @executor_shape_config.setter
+ def executor_shape_config(self, executor_shape_config):
+ """
+ Sets the executor_shape_config of this UpdateApplicationDetails.
+
+ :param executor_shape_config: The executor_shape_config of this UpdateApplicationDetails.
+ :type: oci.data_flow.models.ShapeConfig
+ """
+ self._executor_shape_config = executor_shape_config
+
@property
def freeform_tags(self):
"""
diff --git a/src/oci/database_management/db_management_client.py b/src/oci/database_management/db_management_client.py
index eb1a10c809..6d443cad53 100644
--- a/src/oci/database_management/db_management_client.py
+++ b/src/oci/database_management/db_management_client.py
@@ -2086,7 +2086,7 @@ def get_database_fleet_health_metrics(self, compare_baseline_time, compare_targe
:param str compare_type: (optional)
The time window used for metrics comparison.
- Allowed values are: "HOUR", "DAY"
+ Allowed values are: "HOUR", "DAY", "WEEK"
:param str filter_by_metric_names: (optional)
The filter used to retrieve a specific set of metrics by passing the desired metric names with a comma separator. Note that, by default, the service returns all supported metrics.
@@ -2146,7 +2146,7 @@ def get_database_fleet_health_metrics(self, compare_baseline_time, compare_targe
"get_database_fleet_health_metrics got unknown kwargs: {!r}".format(extra_kwargs))
if 'compare_type' in kwargs:
- compare_type_allowed_values = ["HOUR", "DAY"]
+ compare_type_allowed_values = ["HOUR", "DAY", "WEEK"]
if kwargs['compare_type'] not in compare_type_allowed_values:
raise ValueError(
"Invalid value for `compare_type`, must be one of {0}".format(compare_type_allowed_values)
@@ -2892,7 +2892,7 @@ def get_pdb_metrics(self, managed_database_id, start_time, end_time, **kwargs):
:param str compare_type: (optional)
The time window used for metrics comparison.
- Allowed values are: "HOUR", "DAY"
+ Allowed values are: "HOUR", "DAY", "WEEK"
:param str filter_by_metric_names: (optional)
The filter used to retrieve a specific set of metrics by passing the desired metric names with a comma separator. Note that, by default, the service returns all supported metrics.
@@ -2945,7 +2945,7 @@ def get_pdb_metrics(self, managed_database_id, start_time, end_time, **kwargs):
raise ValueError('Parameter {} cannot be None, whitespace or empty string'.format(k))
if 'compare_type' in kwargs:
- compare_type_allowed_values = ["HOUR", "DAY"]
+ compare_type_allowed_values = ["HOUR", "DAY", "WEEK"]
if kwargs['compare_type'] not in compare_type_allowed_values:
raise ValueError(
"Invalid value for `compare_type`, must be one of {0}".format(compare_type_allowed_values)
diff --git a/src/oci/database_management/models/__init__.py b/src/oci/database_management/models/__init__.py
index e106339207..8cbc709cd8 100644
--- a/src/oci/database_management/models/__init__.py
+++ b/src/oci/database_management/models/__init__.py
@@ -98,13 +98,17 @@
from .job_summary import JobSummary
from .managed_database import ManagedDatabase
from .managed_database_collection import ManagedDatabaseCollection
+from .managed_database_credential import ManagedDatabaseCredential
from .managed_database_group import ManagedDatabaseGroup
from .managed_database_group_collection import ManagedDatabaseGroupCollection
from .managed_database_group_summary import ManagedDatabaseGroupSummary
+from .managed_database_password_credential import ManagedDatabasePasswordCredential
+from .managed_database_secret_credential import ManagedDatabaseSecretCredential
from .managed_database_summary import ManagedDatabaseSummary
from .memory_aggregate_metrics import MemoryAggregateMetrics
from .metric_data_point import MetricDataPoint
from .metric_dimension_definition import MetricDimensionDefinition
+from .metric_statistics_definition import MetricStatisticsDefinition
from .object_privilege_collection import ObjectPrivilegeCollection
from .object_privilege_summary import ObjectPrivilegeSummary
from .object_storage_job_execution_result_details import ObjectStorageJobExecutionResultDetails
@@ -273,13 +277,17 @@
"JobSummary": JobSummary,
"ManagedDatabase": ManagedDatabase,
"ManagedDatabaseCollection": ManagedDatabaseCollection,
+ "ManagedDatabaseCredential": ManagedDatabaseCredential,
"ManagedDatabaseGroup": ManagedDatabaseGroup,
"ManagedDatabaseGroupCollection": ManagedDatabaseGroupCollection,
"ManagedDatabaseGroupSummary": ManagedDatabaseGroupSummary,
+ "ManagedDatabasePasswordCredential": ManagedDatabasePasswordCredential,
+ "ManagedDatabaseSecretCredential": ManagedDatabaseSecretCredential,
"ManagedDatabaseSummary": ManagedDatabaseSummary,
"MemoryAggregateMetrics": MemoryAggregateMetrics,
"MetricDataPoint": MetricDataPoint,
"MetricDimensionDefinition": MetricDimensionDefinition,
+ "MetricStatisticsDefinition": MetricStatisticsDefinition,
"ObjectPrivilegeCollection": ObjectPrivilegeCollection,
"ObjectPrivilegeSummary": ObjectPrivilegeSummary,
"ObjectStorageJobExecutionResultDetails": ObjectStorageJobExecutionResultDetails,
diff --git a/src/oci/database_management/models/activity_time_series_metrics.py b/src/oci/database_management/models/activity_time_series_metrics.py
index 26d7e473e5..f236a1889c 100644
--- a/src/oci/database_management/models/activity_time_series_metrics.py
+++ b/src/oci/database_management/models/activity_time_series_metrics.py
@@ -10,7 +10,7 @@
@init_model_state_from_kwargs
class ActivityTimeSeriesMetrics(object):
"""
- The response object representing activityMetric details for a specific database at a particular time.
+ The response object representing activityMetric details for a specific Managed Database at a particular time.
"""
def __init__(self, **kwargs):
diff --git a/src/oci/database_management/models/asm_property_collection.py b/src/oci/database_management/models/asm_property_collection.py
index 69918ad2d3..98015d7a24 100644
--- a/src/oci/database_management/models/asm_property_collection.py
+++ b/src/oci/database_management/models/asm_property_collection.py
@@ -10,7 +10,7 @@
@init_model_state_from_kwargs
class AsmPropertyCollection(object):
"""
- A collection of ASM properties for a specific database.
+ A collection of ASM properties for a specific Managed Database.
"""
def __init__(self, **kwargs):
diff --git a/src/oci/database_management/models/cluster_cache_metric.py b/src/oci/database_management/models/cluster_cache_metric.py
index 3a8bd9441f..a6f709b8aa 100644
--- a/src/oci/database_management/models/cluster_cache_metric.py
+++ b/src/oci/database_management/models/cluster_cache_metric.py
@@ -38,7 +38,7 @@ def __init__(self, **kwargs):
def cluster_cache_metrics(self):
"""
**[Required]** Gets the cluster_cache_metrics of this ClusterCacheMetric.
- A list of cluster cache metrics for a specific database.
+ A list of cluster cache metrics for a specific Managed Database.
:return: The cluster_cache_metrics of this ClusterCacheMetric.
@@ -50,7 +50,7 @@ def cluster_cache_metrics(self):
def cluster_cache_metrics(self, cluster_cache_metrics):
"""
Sets the cluster_cache_metrics of this ClusterCacheMetric.
- A list of cluster cache metrics for a specific database.
+ A list of cluster cache metrics for a specific Managed Database.
:param cluster_cache_metrics: The cluster_cache_metrics of this ClusterCacheMetric.
diff --git a/src/oci/database_management/models/cpu_utilization_aggregate_metrics.py b/src/oci/database_management/models/cpu_utilization_aggregate_metrics.py
index 8f493158ec..829b4715cc 100644
--- a/src/oci/database_management/models/cpu_utilization_aggregate_metrics.py
+++ b/src/oci/database_management/models/cpu_utilization_aggregate_metrics.py
@@ -22,16 +22,23 @@ def __init__(self, **kwargs):
The value to assign to the cpu_utilization property of this CpuUtilizationAggregateMetrics.
:type cpu_utilization: oci.database_management.models.MetricDataPoint
+ :param cpu_statistics:
+ The value to assign to the cpu_statistics property of this CpuUtilizationAggregateMetrics.
+ :type cpu_statistics: oci.database_management.models.MetricStatisticsDefinition
+
"""
self.swagger_types = {
- 'cpu_utilization': 'MetricDataPoint'
+ 'cpu_utilization': 'MetricDataPoint',
+ 'cpu_statistics': 'MetricStatisticsDefinition'
}
self.attribute_map = {
- 'cpu_utilization': 'cpuUtilization'
+ 'cpu_utilization': 'cpuUtilization',
+ 'cpu_statistics': 'cpuStatistics'
}
self._cpu_utilization = None
+ self._cpu_statistics = None
@property
def cpu_utilization(self):
@@ -53,6 +60,26 @@ def cpu_utilization(self, cpu_utilization):
"""
self._cpu_utilization = cpu_utilization
+ @property
+ def cpu_statistics(self):
+ """
+ Gets the cpu_statistics of this CpuUtilizationAggregateMetrics.
+
+ :return: The cpu_statistics of this CpuUtilizationAggregateMetrics.
+ :rtype: oci.database_management.models.MetricStatisticsDefinition
+ """
+ return self._cpu_statistics
+
+ @cpu_statistics.setter
+ def cpu_statistics(self, cpu_statistics):
+ """
+ Sets the cpu_statistics of this CpuUtilizationAggregateMetrics.
+
+ :param cpu_statistics: The cpu_statistics of this CpuUtilizationAggregateMetrics.
+ :type: oci.database_management.models.MetricStatisticsDefinition
+ """
+ self._cpu_statistics = cpu_statistics
+
def __repr__(self):
return formatted_flat_dict(self)
diff --git a/src/oci/database_management/models/database_fleet_health_metrics.py b/src/oci/database_management/models/database_fleet_health_metrics.py
index d7ff47ceb2..1cfffddec4 100644
--- a/src/oci/database_management/models/database_fleet_health_metrics.py
+++ b/src/oci/database_management/models/database_fleet_health_metrics.py
@@ -21,6 +21,10 @@ class DatabaseFleetHealthMetrics(object):
#: This constant has a value of "DAY"
COMPARE_TYPE_DAY = "DAY"
+ #: A constant which can be used with the compare_type property of a DatabaseFleetHealthMetrics.
+ #: This constant has a value of "WEEK"
+ COMPARE_TYPE_WEEK = "WEEK"
+
def __init__(self, **kwargs):
"""
Initializes a new DatabaseFleetHealthMetrics object with values from keyword arguments.
@@ -36,7 +40,7 @@ def __init__(self, **kwargs):
:param compare_type:
The value to assign to the compare_type property of this DatabaseFleetHealthMetrics.
- Allowed values for this property are: "HOUR", "DAY", 'UNKNOWN_ENUM_VALUE'.
+ Allowed values for this property are: "HOUR", "DAY", "WEEK", 'UNKNOWN_ENUM_VALUE'.
Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'.
:type compare_type: str
@@ -131,7 +135,7 @@ def compare_type(self):
Gets the compare_type of this DatabaseFleetHealthMetrics.
The time window used for metrics comparison.
- Allowed values for this property are: "HOUR", "DAY", 'UNKNOWN_ENUM_VALUE'.
+ Allowed values for this property are: "HOUR", "DAY", "WEEK", 'UNKNOWN_ENUM_VALUE'.
Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'.
@@ -150,7 +154,7 @@ def compare_type(self, compare_type):
:param compare_type: The compare_type of this DatabaseFleetHealthMetrics.
:type: str
"""
- allowed_values = ["HOUR", "DAY"]
+ allowed_values = ["HOUR", "DAY", "WEEK"]
if not value_allowed_none_or_none_sentinel(compare_type, allowed_values):
compare_type = 'UNKNOWN_ENUM_VALUE'
self._compare_type = compare_type
diff --git a/src/oci/database_management/models/database_home_metric_definition.py b/src/oci/database_management/models/database_home_metric_definition.py
index cb2faa727d..53fd0a38ea 100644
--- a/src/oci/database_management/models/database_home_metric_definition.py
+++ b/src/oci/database_management/models/database_home_metric_definition.py
@@ -10,7 +10,7 @@
@init_model_state_from_kwargs
class DatabaseHomeMetricDefinition(object):
"""
- The response containing the CPU, Storage, Wait, DB Time, and Memory metrics for a specific database.
+ The response containing the CPU, Storage, Wait, DB Time, and Memory metrics for a specific Managed Database.
"""
def __init__(self, **kwargs):
@@ -86,7 +86,7 @@ def __init__(self, **kwargs):
def activity_time_series_metrics(self):
"""
**[Required]** Gets the activity_time_series_metrics of this DatabaseHomeMetricDefinition.
- A list of the active session metrics for CPU and Wait time for a specific database.
+ A list of the active session metrics for CPU and Wait time for a specific Managed Database.
:return: The activity_time_series_metrics of this DatabaseHomeMetricDefinition.
@@ -98,7 +98,7 @@ def activity_time_series_metrics(self):
def activity_time_series_metrics(self, activity_time_series_metrics):
"""
Sets the activity_time_series_metrics of this DatabaseHomeMetricDefinition.
- A list of the active session metrics for CPU and Wait time for a specific database.
+ A list of the active session metrics for CPU and Wait time for a specific Managed Database.
:param activity_time_series_metrics: The activity_time_series_metrics of this DatabaseHomeMetricDefinition.
diff --git a/src/oci/database_management/models/database_home_metrics.py b/src/oci/database_management/models/database_home_metrics.py
index 9ed9c94356..fb5b10cca7 100644
--- a/src/oci/database_management/models/database_home_metrics.py
+++ b/src/oci/database_management/models/database_home_metrics.py
@@ -10,7 +10,7 @@
@init_model_state_from_kwargs
class DatabaseHomeMetrics(object):
"""
- The response containing the metric collection for a specific database.
+ The response containing the metric collection for a specific Managed Database.
"""
def __init__(self, **kwargs):
diff --git a/src/oci/database_management/models/database_io_aggregate_metrics.py b/src/oci/database_management/models/database_io_aggregate_metrics.py
index e5c111aab0..39999ae6b0 100644
--- a/src/oci/database_management/models/database_io_aggregate_metrics.py
+++ b/src/oci/database_management/models/database_io_aggregate_metrics.py
@@ -26,25 +26,39 @@ def __init__(self, **kwargs):
The value to assign to the io_throughput property of this DatabaseIOAggregateMetrics.
:type io_throughput: list[oci.database_management.models.MetricDataPoint]
+ :param iops_statistics:
+ The value to assign to the iops_statistics property of this DatabaseIOAggregateMetrics.
+ :type iops_statistics: list[oci.database_management.models.MetricStatisticsDefinition]
+
+ :param io_throughput_statistics:
+ The value to assign to the io_throughput_statistics property of this DatabaseIOAggregateMetrics.
+ :type io_throughput_statistics: list[oci.database_management.models.MetricStatisticsDefinition]
+
"""
self.swagger_types = {
'iops': 'list[MetricDataPoint]',
- 'io_throughput': 'list[MetricDataPoint]'
+ 'io_throughput': 'list[MetricDataPoint]',
+ 'iops_statistics': 'list[MetricStatisticsDefinition]',
+ 'io_throughput_statistics': 'list[MetricStatisticsDefinition]'
}
self.attribute_map = {
'iops': 'iops',
- 'io_throughput': 'ioThroughput'
+ 'io_throughput': 'ioThroughput',
+ 'iops_statistics': 'iopsStatistics',
+ 'io_throughput_statistics': 'ioThroughputStatistics'
}
self._iops = None
self._io_throughput = None
+ self._iops_statistics = None
+ self._io_throughput_statistics = None
@property
def iops(self):
"""
Gets the iops of this DatabaseIOAggregateMetrics.
- A list of the Input/Output Operations Per Second metrics grouped by IOType for a specific database.
+ The Input/Output Operations Per Second metrics grouped by IOType for a specific Managed Database.
:return: The iops of this DatabaseIOAggregateMetrics.
@@ -56,7 +70,7 @@ def iops(self):
def iops(self, iops):
"""
Sets the iops of this DatabaseIOAggregateMetrics.
- A list of the Input/Output Operations Per Second metrics grouped by IOType for a specific database.
+ The Input/Output Operations Per Second metrics grouped by IOType for a specific Managed Database.
:param iops: The iops of this DatabaseIOAggregateMetrics.
@@ -68,7 +82,7 @@ def iops(self, iops):
def io_throughput(self):
"""
Gets the io_throughput of this DatabaseIOAggregateMetrics.
- A list of the IOThroughput metrics grouped for a specific database.
+ The IOThroughput metrics grouped by IOType for a specific Managed Database.
:return: The io_throughput of this DatabaseIOAggregateMetrics.
@@ -80,7 +94,7 @@ def io_throughput(self):
def io_throughput(self, io_throughput):
"""
Sets the io_throughput of this DatabaseIOAggregateMetrics.
- A list of the IOThroughput metrics grouped for a specific database.
+ The IOThroughput metrics grouped by IOType for a specific Managed Database.
:param io_throughput: The io_throughput of this DatabaseIOAggregateMetrics.
@@ -88,6 +102,54 @@ def io_throughput(self, io_throughput):
"""
self._io_throughput = io_throughput
+ @property
+ def iops_statistics(self):
+ """
+ Gets the iops_statistics of this DatabaseIOAggregateMetrics.
+ The Input/Output metric statistics such as min, max, mean, lowerQuartile, and upperQuartile.
+
+
+ :return: The iops_statistics of this DatabaseIOAggregateMetrics.
+ :rtype: list[oci.database_management.models.MetricStatisticsDefinition]
+ """
+ return self._iops_statistics
+
+ @iops_statistics.setter
+ def iops_statistics(self, iops_statistics):
+ """
+ Sets the iops_statistics of this DatabaseIOAggregateMetrics.
+ The Input/Output metric statistics such as min, max, mean, lowerQuartile, and upperQuartile.
+
+
+ :param iops_statistics: The iops_statistics of this DatabaseIOAggregateMetrics.
+ :type: list[oci.database_management.models.MetricStatisticsDefinition]
+ """
+ self._iops_statistics = iops_statistics
+
+ @property
+ def io_throughput_statistics(self):
+ """
+ Gets the io_throughput_statistics of this DatabaseIOAggregateMetrics.
+ The IOThroughput metric statistics such as min, max, mean, lowerQuartile, and upperQuartile.
+
+
+ :return: The io_throughput_statistics of this DatabaseIOAggregateMetrics.
+ :rtype: list[oci.database_management.models.MetricStatisticsDefinition]
+ """
+ return self._io_throughput_statistics
+
+ @io_throughput_statistics.setter
+ def io_throughput_statistics(self, io_throughput_statistics):
+ """
+ Sets the io_throughput_statistics of this DatabaseIOAggregateMetrics.
+ The IOThroughput metric statistics such as min, max, mean, lowerQuartile, and upperQuartile.
+
+
+ :param io_throughput_statistics: The io_throughput_statistics of this DatabaseIOAggregateMetrics.
+ :type: list[oci.database_management.models.MetricStatisticsDefinition]
+ """
+ self._io_throughput_statistics = io_throughput_statistics
+
def __repr__(self):
return formatted_flat_dict(self)
diff --git a/src/oci/database_management/models/database_storage_aggregate_metrics.py b/src/oci/database_management/models/database_storage_aggregate_metrics.py
index da9df4db68..1fe29e7f4b 100644
--- a/src/oci/database_management/models/database_storage_aggregate_metrics.py
+++ b/src/oci/database_management/models/database_storage_aggregate_metrics.py
@@ -91,7 +91,7 @@ def storage_used(self, storage_used):
def storage_used_by_table_space(self):
"""
Gets the storage_used_by_table_space of this DatabaseStorageAggregateMetrics.
- A list of the storage metrics grouped by TableSpace for a specific database.
+ A list of the storage metrics grouped by TableSpace for a specific Managed Database.
:return: The storage_used_by_table_space of this DatabaseStorageAggregateMetrics.
@@ -103,7 +103,7 @@ def storage_used_by_table_space(self):
def storage_used_by_table_space(self, storage_used_by_table_space):
"""
Sets the storage_used_by_table_space of this DatabaseStorageAggregateMetrics.
- A list of the storage metrics grouped by TableSpace for a specific database.
+ A list of the storage metrics grouped by TableSpace for a specific Managed Database.
:param storage_used_by_table_space: The storage_used_by_table_space of this DatabaseStorageAggregateMetrics.
diff --git a/src/oci/database_management/models/managed_database_credential.py b/src/oci/database_management/models/managed_database_credential.py
new file mode 100644
index 0000000000..21848076cf
--- /dev/null
+++ b/src/oci/database_management/models/managed_database_credential.py
@@ -0,0 +1,187 @@
+# coding: utf-8
+# Copyright (c) 2016, 2022, 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.
+
+
+from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401
+from oci.decorators import init_model_state_from_kwargs
+
+
+@init_model_state_from_kwargs
+class ManagedDatabaseCredential(object):
+ """
+ The credential to connect to the managed database in order to get optimizer statistics gathering & advisor task details.
+ """
+
+ #: A constant which can be used with the credential_type property of a ManagedDatabaseCredential.
+ #: This constant has a value of "SECRET"
+ CREDENTIAL_TYPE_SECRET = "SECRET"
+
+ #: A constant which can be used with the credential_type property of a ManagedDatabaseCredential.
+ #: This constant has a value of "PASSWORD"
+ CREDENTIAL_TYPE_PASSWORD = "PASSWORD"
+
+ #: A constant which can be used with the role property of a ManagedDatabaseCredential.
+ #: This constant has a value of "NORMAL"
+ ROLE_NORMAL = "NORMAL"
+
+ #: A constant which can be used with the role property of a ManagedDatabaseCredential.
+ #: This constant has a value of "SYSDBA"
+ ROLE_SYSDBA = "SYSDBA"
+
+ def __init__(self, **kwargs):
+ """
+ Initializes a new ManagedDatabaseCredential object with values from keyword arguments. This class has the following subclasses and if you are using this class as input
+ to a service operations then you should favor using a subclass over the base class:
+
+ * :class:`~oci.database_management.models.ManagedDatabasePasswordCredential`
+ * :class:`~oci.database_management.models.ManagedDatabaseSecretCredential`
+
+ The following keyword arguments are supported (corresponding to the getters/setters of this class):
+
+ :param credential_type:
+ The value to assign to the credential_type property of this ManagedDatabaseCredential.
+ Allowed values for this property are: "SECRET", "PASSWORD"
+ :type credential_type: str
+
+ :param username:
+ The value to assign to the username property of this ManagedDatabaseCredential.
+ :type username: str
+
+ :param role:
+ The value to assign to the role property of this ManagedDatabaseCredential.
+ Allowed values for this property are: "NORMAL", "SYSDBA"
+ :type role: str
+
+ """
+ self.swagger_types = {
+ 'credential_type': 'str',
+ 'username': 'str',
+ 'role': 'str'
+ }
+
+ self.attribute_map = {
+ 'credential_type': 'credentialType',
+ 'username': 'username',
+ 'role': 'role'
+ }
+
+ self._credential_type = None
+ self._username = None
+ self._role = None
+
+ @staticmethod
+ def get_subtype(object_dictionary):
+ """
+ Given the hash representation of a subtype of this class,
+ use the info in the hash to return the class of the subtype.
+ """
+ type = object_dictionary['credentialType']
+
+ if type == 'PASSWORD':
+ return 'ManagedDatabasePasswordCredential'
+
+ if type == 'SECRET':
+ return 'ManagedDatabaseSecretCredential'
+ else:
+ return 'ManagedDatabaseCredential'
+
+ @property
+ def credential_type(self):
+ """
+ **[Required]** Gets the credential_type of this ManagedDatabaseCredential.
+ The type of the credential has access to retrieve optimizer statistics gathering & advisor task details.
+
+ Allowed values for this property are: "SECRET", "PASSWORD"
+
+
+ :return: The credential_type of this ManagedDatabaseCredential.
+ :rtype: str
+ """
+ return self._credential_type
+
+ @credential_type.setter
+ def credential_type(self, credential_type):
+ """
+ Sets the credential_type of this ManagedDatabaseCredential.
+ The type of the credential has access to retrieve optimizer statistics gathering & advisor task details.
+
+
+ :param credential_type: The credential_type of this ManagedDatabaseCredential.
+ :type: str
+ """
+ allowed_values = ["SECRET", "PASSWORD"]
+ if not value_allowed_none_or_none_sentinel(credential_type, allowed_values):
+ raise ValueError(
+ "Invalid value for `credential_type`, must be None or one of {0}"
+ .format(allowed_values)
+ )
+ self._credential_type = credential_type
+
+ @property
+ def username(self):
+ """
+ **[Required]** Gets the username of this ManagedDatabaseCredential.
+ The user to connect to the database.
+
+
+ :return: The username of this ManagedDatabaseCredential.
+ :rtype: str
+ """
+ return self._username
+
+ @username.setter
+ def username(self, username):
+ """
+ Sets the username of this ManagedDatabaseCredential.
+ The user to connect to the database.
+
+
+ :param username: The username of this ManagedDatabaseCredential.
+ :type: str
+ """
+ self._username = username
+
+ @property
+ def role(self):
+ """
+ **[Required]** Gets the role of this ManagedDatabaseCredential.
+ The role of the database user.
+
+ Allowed values for this property are: "NORMAL", "SYSDBA"
+
+
+ :return: The role of this ManagedDatabaseCredential.
+ :rtype: str
+ """
+ return self._role
+
+ @role.setter
+ def role(self, role):
+ """
+ Sets the role of this ManagedDatabaseCredential.
+ The role of the database user.
+
+
+ :param role: The role of this ManagedDatabaseCredential.
+ :type: str
+ """
+ allowed_values = ["NORMAL", "SYSDBA"]
+ if not value_allowed_none_or_none_sentinel(role, allowed_values):
+ raise ValueError(
+ "Invalid value for `role`, must be None or one of {0}"
+ .format(allowed_values)
+ )
+ self._role = role
+
+ def __repr__(self):
+ return formatted_flat_dict(self)
+
+ def __eq__(self, other):
+ if other is None:
+ return False
+
+ return self.__dict__ == other.__dict__
+
+ def __ne__(self, other):
+ return not self == other
diff --git a/src/oci/database_management/models/managed_database_password_credential.py b/src/oci/database_management/models/managed_database_password_credential.py
new file mode 100644
index 0000000000..6023609410
--- /dev/null
+++ b/src/oci/database_management/models/managed_database_password_credential.py
@@ -0,0 +1,95 @@
+# coding: utf-8
+# Copyright (c) 2016, 2022, 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.
+
+from .managed_database_credential import ManagedDatabaseCredential
+from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401
+from oci.decorators import init_model_state_from_kwargs
+
+
+@init_model_state_from_kwargs
+class ManagedDatabasePasswordCredential(ManagedDatabaseCredential):
+ """
+ User provides a password to be used to connect to the database.
+ """
+
+ def __init__(self, **kwargs):
+ """
+ Initializes a new ManagedDatabasePasswordCredential object with values from keyword arguments. The default value of the :py:attr:`~oci.database_management.models.ManagedDatabasePasswordCredential.credential_type` attribute
+ of this class is ``PASSWORD`` and it should not be changed.
+ The following keyword arguments are supported (corresponding to the getters/setters of this class):
+
+ :param credential_type:
+ The value to assign to the credential_type property of this ManagedDatabasePasswordCredential.
+ Allowed values for this property are: "SECRET", "PASSWORD"
+ :type credential_type: str
+
+ :param username:
+ The value to assign to the username property of this ManagedDatabasePasswordCredential.
+ :type username: str
+
+ :param role:
+ The value to assign to the role property of this ManagedDatabasePasswordCredential.
+ Allowed values for this property are: "NORMAL", "SYSDBA"
+ :type role: str
+
+ :param password:
+ The value to assign to the password property of this ManagedDatabasePasswordCredential.
+ :type password: str
+
+ """
+ self.swagger_types = {
+ 'credential_type': 'str',
+ 'username': 'str',
+ 'role': 'str',
+ 'password': 'str'
+ }
+
+ self.attribute_map = {
+ 'credential_type': 'credentialType',
+ 'username': 'username',
+ 'role': 'role',
+ 'password': 'password'
+ }
+
+ self._credential_type = None
+ self._username = None
+ self._role = None
+ self._password = None
+ self._credential_type = 'PASSWORD'
+
+ @property
+ def password(self):
+ """
+ **[Required]** Gets the password of this ManagedDatabasePasswordCredential.
+ The database user's password encoded using BASE64 scheme.
+
+
+ :return: The password of this ManagedDatabasePasswordCredential.
+ :rtype: str
+ """
+ return self._password
+
+ @password.setter
+ def password(self, password):
+ """
+ Sets the password of this ManagedDatabasePasswordCredential.
+ The database user's password encoded using BASE64 scheme.
+
+
+ :param password: The password of this ManagedDatabasePasswordCredential.
+ :type: str
+ """
+ self._password = password
+
+ def __repr__(self):
+ return formatted_flat_dict(self)
+
+ def __eq__(self, other):
+ if other is None:
+ return False
+
+ return self.__dict__ == other.__dict__
+
+ def __ne__(self, other):
+ return not self == other
diff --git a/src/oci/database_management/models/managed_database_secret_credential.py b/src/oci/database_management/models/managed_database_secret_credential.py
new file mode 100644
index 0000000000..f703e59e6a
--- /dev/null
+++ b/src/oci/database_management/models/managed_database_secret_credential.py
@@ -0,0 +1,101 @@
+# coding: utf-8
+# Copyright (c) 2016, 2022, 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.
+
+from .managed_database_credential import ManagedDatabaseCredential
+from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401
+from oci.decorators import init_model_state_from_kwargs
+
+
+@init_model_state_from_kwargs
+class ManagedDatabaseSecretCredential(ManagedDatabaseCredential):
+ """
+ User provides a secret OCID, which will be used to retrieve the password to connect to the database.
+ """
+
+ def __init__(self, **kwargs):
+ """
+ Initializes a new ManagedDatabaseSecretCredential object with values from keyword arguments. The default value of the :py:attr:`~oci.database_management.models.ManagedDatabaseSecretCredential.credential_type` attribute
+ of this class is ``SECRET`` and it should not be changed.
+ The following keyword arguments are supported (corresponding to the getters/setters of this class):
+
+ :param credential_type:
+ The value to assign to the credential_type property of this ManagedDatabaseSecretCredential.
+ Allowed values for this property are: "SECRET", "PASSWORD"
+ :type credential_type: str
+
+ :param username:
+ The value to assign to the username property of this ManagedDatabaseSecretCredential.
+ :type username: str
+
+ :param role:
+ The value to assign to the role property of this ManagedDatabaseSecretCredential.
+ Allowed values for this property are: "NORMAL", "SYSDBA"
+ :type role: str
+
+ :param password_secret_id:
+ The value to assign to the password_secret_id property of this ManagedDatabaseSecretCredential.
+ :type password_secret_id: str
+
+ """
+ self.swagger_types = {
+ 'credential_type': 'str',
+ 'username': 'str',
+ 'role': 'str',
+ 'password_secret_id': 'str'
+ }
+
+ self.attribute_map = {
+ 'credential_type': 'credentialType',
+ 'username': 'username',
+ 'role': 'role',
+ 'password_secret_id': 'passwordSecretId'
+ }
+
+ self._credential_type = None
+ self._username = None
+ self._role = None
+ self._password_secret_id = None
+ self._credential_type = 'SECRET'
+
+ @property
+ def password_secret_id(self):
+ """
+ **[Required]** Gets the password_secret_id of this ManagedDatabaseSecretCredential.
+ The `OCID`__ of the Secret
+ where the database password is stored.
+
+ __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+
+
+ :return: The password_secret_id of this ManagedDatabaseSecretCredential.
+ :rtype: str
+ """
+ return self._password_secret_id
+
+ @password_secret_id.setter
+ def password_secret_id(self, password_secret_id):
+ """
+ Sets the password_secret_id of this ManagedDatabaseSecretCredential.
+ The `OCID`__ of the Secret
+ where the database password is stored.
+
+ __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
+
+
+ :param password_secret_id: The password_secret_id of this ManagedDatabaseSecretCredential.
+ :type: str
+ """
+ self._password_secret_id = password_secret_id
+
+ def __repr__(self):
+ return formatted_flat_dict(self)
+
+ def __eq__(self, other):
+ if other is None:
+ return False
+
+ return self.__dict__ == other.__dict__
+
+ def __ne__(self, other):
+ return not self == other
diff --git a/src/oci/database_management/models/memory_aggregate_metrics.py b/src/oci/database_management/models/memory_aggregate_metrics.py
index 1a940a1b3e..905acc967b 100644
--- a/src/oci/database_management/models/memory_aggregate_metrics.py
+++ b/src/oci/database_management/models/memory_aggregate_metrics.py
@@ -37,7 +37,7 @@ def __init__(self, **kwargs):
def memory_usage(self):
"""
Gets the memory_usage of this MemoryAggregateMetrics.
- A list of the memory usage metrics grouped by memorypool for a specific database.
+ The Memory Usage metrics grouped by memorypool for a specific Managed Database.
:return: The memory_usage of this MemoryAggregateMetrics.
@@ -49,7 +49,7 @@ def memory_usage(self):
def memory_usage(self, memory_usage):
"""
Sets the memory_usage of this MemoryAggregateMetrics.
- A list of the memory usage metrics grouped by memorypool for a specific database.
+ The Memory Usage metrics grouped by memorypool for a specific Managed Database.
:param memory_usage: The memory_usage of this MemoryAggregateMetrics.
diff --git a/src/oci/database_management/models/metric_statistics_definition.py b/src/oci/database_management/models/metric_statistics_definition.py
new file mode 100644
index 0000000000..36724839bc
--- /dev/null
+++ b/src/oci/database_management/models/metric_statistics_definition.py
@@ -0,0 +1,256 @@
+# coding: utf-8
+# Copyright (c) 2016, 2022, 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.
+
+
+from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401
+from oci.decorators import init_model_state_from_kwargs
+
+
+@init_model_state_from_kwargs
+class MetricStatisticsDefinition(object):
+ """
+ The metric statistics values with dimension details.
+ """
+
+ def __init__(self, **kwargs):
+ """
+ Initializes a new MetricStatisticsDefinition object with values from keyword arguments.
+ The following keyword arguments are supported (corresponding to the getters/setters of this class):
+
+ :param min:
+ The value to assign to the min property of this MetricStatisticsDefinition.
+ :type min: float
+
+ :param max:
+ The value to assign to the max property of this MetricStatisticsDefinition.
+ :type max: float
+
+ :param median:
+ The value to assign to the median property of this MetricStatisticsDefinition.
+ :type median: float
+
+ :param lower_quartile:
+ The value to assign to the lower_quartile property of this MetricStatisticsDefinition.
+ :type lower_quartile: float
+
+ :param upper_quartile:
+ The value to assign to the upper_quartile property of this MetricStatisticsDefinition.
+ :type upper_quartile: float
+
+ :param unit:
+ The value to assign to the unit property of this MetricStatisticsDefinition.
+ :type unit: str
+
+ :param dimensions:
+ The value to assign to the dimensions property of this MetricStatisticsDefinition.
+ :type dimensions: list[oci.database_management.models.MetricDimensionDefinition]
+
+ """
+ self.swagger_types = {
+ 'min': 'float',
+ 'max': 'float',
+ 'median': 'float',
+ 'lower_quartile': 'float',
+ 'upper_quartile': 'float',
+ 'unit': 'str',
+ 'dimensions': 'list[MetricDimensionDefinition]'
+ }
+
+ self.attribute_map = {
+ 'min': 'min',
+ 'max': 'max',
+ 'median': 'median',
+ 'lower_quartile': 'lowerQuartile',
+ 'upper_quartile': 'upperQuartile',
+ 'unit': 'unit',
+ 'dimensions': 'dimensions'
+ }
+
+ self._min = None
+ self._max = None
+ self._median = None
+ self._lower_quartile = None
+ self._upper_quartile = None
+ self._unit = None
+ self._dimensions = None
+
+ @property
+ def min(self):
+ """
+ Gets the min of this MetricStatisticsDefinition.
+ The minimum value of the metric.
+
+
+ :return: The min of this MetricStatisticsDefinition.
+ :rtype: float
+ """
+ return self._min
+
+ @min.setter
+ def min(self, min):
+ """
+ Sets the min of this MetricStatisticsDefinition.
+ The minimum value of the metric.
+
+
+ :param min: The min of this MetricStatisticsDefinition.
+ :type: float
+ """
+ self._min = min
+
+ @property
+ def max(self):
+ """
+ Gets the max of this MetricStatisticsDefinition.
+ The maximum value of the metric.
+
+
+ :return: The max of this MetricStatisticsDefinition.
+ :rtype: float
+ """
+ return self._max
+
+ @max.setter
+ def max(self, max):
+ """
+ Sets the max of this MetricStatisticsDefinition.
+ The maximum value of the metric.
+
+
+ :param max: The max of this MetricStatisticsDefinition.
+ :type: float
+ """
+ self._max = max
+
+ @property
+ def median(self):
+ """
+ Gets the median of this MetricStatisticsDefinition.
+ The median value of the metric.
+
+
+ :return: The median of this MetricStatisticsDefinition.
+ :rtype: float
+ """
+ return self._median
+
+ @median.setter
+ def median(self, median):
+ """
+ Sets the median of this MetricStatisticsDefinition.
+ The median value of the metric.
+
+
+ :param median: The median of this MetricStatisticsDefinition.
+ :type: float
+ """
+ self._median = median
+
+ @property
+ def lower_quartile(self):
+ """
+ Gets the lower_quartile of this MetricStatisticsDefinition.
+ The first quartile value of the metric.
+
+
+ :return: The lower_quartile of this MetricStatisticsDefinition.
+ :rtype: float
+ """
+ return self._lower_quartile
+
+ @lower_quartile.setter
+ def lower_quartile(self, lower_quartile):
+ """
+ Sets the lower_quartile of this MetricStatisticsDefinition.
+ The first quartile value of the metric.
+
+
+ :param lower_quartile: The lower_quartile of this MetricStatisticsDefinition.
+ :type: float
+ """
+ self._lower_quartile = lower_quartile
+
+ @property
+ def upper_quartile(self):
+ """
+ Gets the upper_quartile of this MetricStatisticsDefinition.
+ The third quartile value of the metric.
+
+
+ :return: The upper_quartile of this MetricStatisticsDefinition.
+ :rtype: float
+ """
+ return self._upper_quartile
+
+ @upper_quartile.setter
+ def upper_quartile(self, upper_quartile):
+ """
+ Sets the upper_quartile of this MetricStatisticsDefinition.
+ The third quartile value of the metric.
+
+
+ :param upper_quartile: The upper_quartile of this MetricStatisticsDefinition.
+ :type: float
+ """
+ self._upper_quartile = upper_quartile
+
+ @property
+ def unit(self):
+ """
+ Gets the unit of this MetricStatisticsDefinition.
+ The unit of the metric value.
+
+
+ :return: The unit of this MetricStatisticsDefinition.
+ :rtype: str
+ """
+ return self._unit
+
+ @unit.setter
+ def unit(self, unit):
+ """
+ Sets the unit of this MetricStatisticsDefinition.
+ The unit of the metric value.
+
+
+ :param unit: The unit of this MetricStatisticsDefinition.
+ :type: str
+ """
+ self._unit = unit
+
+ @property
+ def dimensions(self):
+ """
+ Gets the dimensions of this MetricStatisticsDefinition.
+ The dimensions of the metric.
+
+
+ :return: The dimensions of this MetricStatisticsDefinition.
+ :rtype: list[oci.database_management.models.MetricDimensionDefinition]
+ """
+ return self._dimensions
+
+ @dimensions.setter
+ def dimensions(self, dimensions):
+ """
+ Sets the dimensions of this MetricStatisticsDefinition.
+ The dimensions of the metric.
+
+
+ :param dimensions: The dimensions of this MetricStatisticsDefinition.
+ :type: list[oci.database_management.models.MetricDimensionDefinition]
+ """
+ self._dimensions = dimensions
+
+ def __repr__(self):
+ return formatted_flat_dict(self)
+
+ def __eq__(self, other):
+ if other is None:
+ return False
+
+ return self.__dict__ == other.__dict__
+
+ def __ne__(self, other):
+ return not self == other
diff --git a/src/oci/database_management/models/object_storage_job_execution_result_details.py b/src/oci/database_management/models/object_storage_job_execution_result_details.py
index b8ece0571f..b726a82266 100644
--- a/src/oci/database_management/models/object_storage_job_execution_result_details.py
+++ b/src/oci/database_management/models/object_storage_job_execution_result_details.py
@@ -141,7 +141,7 @@ def object_name(self, object_name):
def row_count(self):
"""
Gets the row_count of this ObjectStorageJobExecutionResultDetails.
- The number of rows returned in the result. Only applicable for QUERY SqlType.
+ The number of rows returned in the result for the Query SqlType.
:return: The row_count of this ObjectStorageJobExecutionResultDetails.
@@ -153,7 +153,7 @@ def row_count(self):
def row_count(self, row_count):
"""
Sets the row_count of this ObjectStorageJobExecutionResultDetails.
- The number of rows returned in the result. Only applicable for QUERY SqlType.
+ The number of rows returned in the result for the Query SqlType.
:param row_count: The row_count of this ObjectStorageJobExecutionResultDetails.
diff --git a/src/oci/database_management/models/sql_tuning_advisor_task_recommendation_summary.py b/src/oci/database_management/models/sql_tuning_advisor_task_recommendation_summary.py
index ebd215cd3e..20565bee36 100644
--- a/src/oci/database_management/models/sql_tuning_advisor_task_recommendation_summary.py
+++ b/src/oci/database_management/models/sql_tuning_advisor_task_recommendation_summary.py
@@ -84,6 +84,10 @@ def __init__(self, **kwargs):
The value to assign to the implement_action_sql property of this SqlTuningAdvisorTaskRecommendationSummary.
:type implement_action_sql: str
+ :param is_parallel_execution:
+ The value to assign to the is_parallel_execution property of this SqlTuningAdvisorTaskRecommendationSummary.
+ :type is_parallel_execution: bool
+
"""
self.swagger_types = {
'sql_tuning_advisor_task_id': 'int',
@@ -94,7 +98,8 @@ def __init__(self, **kwargs):
'recommendation': 'str',
'rationale': 'str',
'benefit': 'float',
- 'implement_action_sql': 'str'
+ 'implement_action_sql': 'str',
+ 'is_parallel_execution': 'bool'
}
self.attribute_map = {
@@ -106,7 +111,8 @@ def __init__(self, **kwargs):
'recommendation': 'recommendation',
'rationale': 'rationale',
'benefit': 'benefit',
- 'implement_action_sql': 'implementActionSql'
+ 'implement_action_sql': 'implementActionSql',
+ 'is_parallel_execution': 'isParallelExecution'
}
self._sql_tuning_advisor_task_id = None
@@ -118,6 +124,7 @@ def __init__(self, **kwargs):
self._rationale = None
self._benefit = None
self._implement_action_sql = None
+ self._is_parallel_execution = None
@property
def sql_tuning_advisor_task_id(self):
@@ -349,6 +356,30 @@ def implement_action_sql(self, implement_action_sql):
"""
self._implement_action_sql = implement_action_sql
+ @property
+ def is_parallel_execution(self):
+ """
+ Gets the is_parallel_execution of this SqlTuningAdvisorTaskRecommendationSummary.
+ Indicates whether a SQL Profile recommendation uses parallel execution.
+
+
+ :return: The is_parallel_execution of this SqlTuningAdvisorTaskRecommendationSummary.
+ :rtype: bool
+ """
+ return self._is_parallel_execution
+
+ @is_parallel_execution.setter
+ def is_parallel_execution(self, is_parallel_execution):
+ """
+ Sets the is_parallel_execution of this SqlTuningAdvisorTaskRecommendationSummary.
+ Indicates whether a SQL Profile recommendation uses parallel execution.
+
+
+ :param is_parallel_execution: The is_parallel_execution of this SqlTuningAdvisorTaskRecommendationSummary.
+ :type: bool
+ """
+ self._is_parallel_execution = is_parallel_execution
+
def __repr__(self):
return formatted_flat_dict(self)
diff --git a/src/oci/database_management/models/tablespace_collection.py b/src/oci/database_management/models/tablespace_collection.py
index 3c6b4b9ff6..97252b2c7a 100644
--- a/src/oci/database_management/models/tablespace_collection.py
+++ b/src/oci/database_management/models/tablespace_collection.py
@@ -10,7 +10,7 @@
@init_model_state_from_kwargs
class TablespaceCollection(object):
"""
- A collection of tablespaces for a specific database.
+ A collection of tablespaces for a specific Managed Database.
"""
def __init__(self, **kwargs):
diff --git a/src/oci/database_management/models/time_series_metric_definition.py b/src/oci/database_management/models/time_series_metric_definition.py
index 37fe2dcd84..106d8d6566 100644
--- a/src/oci/database_management/models/time_series_metric_definition.py
+++ b/src/oci/database_management/models/time_series_metric_definition.py
@@ -11,7 +11,7 @@
class TimeSeriesMetricDefinition(object):
"""
The response object representing time series metric details
- for a specific database at a particular time.
+ for a specific Managed Database at a particular time.
"""
def __init__(self, **kwargs):
diff --git a/src/oci/database_management/models/user.py b/src/oci/database_management/models/user.py
index dbc73ac3dd..3359e714fe 100644
--- a/src/oci/database_management/models/user.py
+++ b/src/oci/database_management/models/user.py
@@ -10,7 +10,7 @@
@init_model_state_from_kwargs
class User(object):
"""
- The summary of a specific User.
+ The summary of a specific user resource.
"""
#: A constant which can be used with the status property of a User.
@@ -412,7 +412,7 @@ def status(self, status):
def time_locked(self):
"""
Gets the time_locked of this User.
- The date the account was locked if account status was LOCKED.
+ The date the account was locked, if the status of the account is LOCKED.
:return: The time_locked of this User.
@@ -424,7 +424,7 @@ def time_locked(self):
def time_locked(self, time_locked):
"""
Sets the time_locked of this User.
- The date the account was locked if account status was LOCKED.
+ The date the account was locked, if the status of the account is LOCKED.
:param time_locked: The time_locked of this User.
@@ -556,7 +556,7 @@ def time_created(self, time_created):
def profile(self):
"""
**[Required]** Gets the profile of this User.
- The User resource profile name.
+ The profile name of the user.
:return: The profile of this User.
@@ -568,7 +568,7 @@ def profile(self):
def profile(self, profile):
"""
Sets the profile of this User.
- The User resource profile name.
+ The profile name of the user.
:param profile: The profile of this User.
diff --git a/src/oci/database_management/models/user_collection.py b/src/oci/database_management/models/user_collection.py
index 3cc6e6d5b3..ca2a06b103 100644
--- a/src/oci/database_management/models/user_collection.py
+++ b/src/oci/database_management/models/user_collection.py
@@ -10,7 +10,7 @@
@init_model_state_from_kwargs
class UserCollection(object):
"""
- A collection of users for a specific database.
+ A collection of users for a specific Managed Database.
"""
def __init__(self, **kwargs):
diff --git a/src/oci/database_management/models/user_summary.py b/src/oci/database_management/models/user_summary.py
index bcb84816e9..e31f3009f2 100644
--- a/src/oci/database_management/models/user_summary.py
+++ b/src/oci/database_management/models/user_summary.py
@@ -104,6 +104,10 @@ def __init__(self, **kwargs):
The value to assign to the time_created property of this UserSummary.
:type time_created: datetime
+ :param time_locked:
+ The value to assign to the time_locked property of this UserSummary.
+ :type time_locked: datetime
+
:param profile:
The value to assign to the profile property of this UserSummary.
:type profile: str
@@ -116,6 +120,7 @@ def __init__(self, **kwargs):
'default_tablespace': 'str',
'temp_tablespace': 'str',
'time_created': 'datetime',
+ 'time_locked': 'datetime',
'profile': 'str'
}
@@ -126,6 +131,7 @@ def __init__(self, **kwargs):
'default_tablespace': 'defaultTablespace',
'temp_tablespace': 'tempTablespace',
'time_created': 'timeCreated',
+ 'time_locked': 'timeLocked',
'profile': 'profile'
}
@@ -135,6 +141,7 @@ def __init__(self, **kwargs):
self._default_tablespace = None
self._temp_tablespace = None
self._time_created = None
+ self._time_locked = None
self._profile = None
@property
@@ -287,11 +294,35 @@ def time_created(self, time_created):
"""
self._time_created = time_created
+ @property
+ def time_locked(self):
+ """
+ Gets the time_locked of this UserSummary.
+ The date the account was locked, if the status of the account is LOCKED.
+
+
+ :return: The time_locked of this UserSummary.
+ :rtype: datetime
+ """
+ return self._time_locked
+
+ @time_locked.setter
+ def time_locked(self, time_locked):
+ """
+ Sets the time_locked of this UserSummary.
+ The date the account was locked, if the status of the account is LOCKED.
+
+
+ :param time_locked: The time_locked of this UserSummary.
+ :type: datetime
+ """
+ self._time_locked = time_locked
+
@property
def profile(self):
"""
**[Required]** Gets the profile of this UserSummary.
- The User resource profile name.
+ The profile name of the user.
:return: The profile of this UserSummary.
@@ -303,7 +334,7 @@ def profile(self):
def profile(self, profile):
"""
Sets the profile of this UserSummary.
- The User resource profile name.
+ The profile name of the user.
:param profile: The profile of this UserSummary.
diff --git a/src/oci/database_management/sql_tuning_client.py b/src/oci/database_management/sql_tuning_client.py
index 4844e2254c..521842731e 100644
--- a/src/oci/database_management/sql_tuning_client.py
+++ b/src/oci/database_management/sql_tuning_client.py
@@ -465,7 +465,7 @@ def get_sql_execution_plan(self, managed_database_id, sql_tuning_advisor_task_id
:param str attribute: (required)
The attribute of the SQL execution plan.
- Allowed values are: "ORIGINAL", "ORIGINAL_WITH_ADJUSTED_COST", "USING_SQL_PROFILE", "USING_NEW_INDICES"
+ Allowed values are: "ORIGINAL", "ORIGINAL_WITH_ADJUSTED_COST", "USING_SQL_PROFILE", "USING_NEW_INDICES", "USING_PARALLEL_EXECUTION"
:param str opc_request_id: (optional)
The client request ID for tracing.
@@ -515,7 +515,7 @@ def get_sql_execution_plan(self, managed_database_id, sql_tuning_advisor_task_id
if v is None or (isinstance(v, six.string_types) and len(v.strip()) == 0):
raise ValueError('Parameter {} cannot be None, whitespace or empty string'.format(k))
- attribute_allowed_values = ["ORIGINAL", "ORIGINAL_WITH_ADJUSTED_COST", "USING_SQL_PROFILE", "USING_NEW_INDICES"]
+ attribute_allowed_values = ["ORIGINAL", "ORIGINAL_WITH_ADJUSTED_COST", "USING_SQL_PROFILE", "USING_NEW_INDICES", "USING_PARALLEL_EXECUTION"]
if attribute not in attribute_allowed_values:
raise ValueError(
"Invalid value for `attribute`, must be one of {0}".format(attribute_allowed_values)
diff --git a/src/oci/version.py b/src/oci/version.py
index 4ccf808ab1..e352b4656a 100644
--- a/src/oci/version.py
+++ b/src/oci/version.py
@@ -2,4 +2,4 @@
# Copyright (c) 2016, 2022, 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.
-__version__ = "2.69.0"
+__version__ = "2.70.0"