UpdateConnectionDetails

class oci.data_catalog.models.UpdateConnectionDetails(**kwargs)

Bases: object

Properties used in connection update operations.

Methods

__init__(**kwargs) Initializes a new UpdateConnectionDetails object with values from keyword arguments.

Attributes

custom_property_members Gets the custom_property_members of this UpdateConnectionDetails.
description Gets the description of this UpdateConnectionDetails.
display_name Gets the display_name of this UpdateConnectionDetails.
enc_properties Gets the enc_properties of this UpdateConnectionDetails.
is_default Gets the is_default of this UpdateConnectionDetails.
properties Gets the properties of this UpdateConnectionDetails.
__init__(**kwargs)

Initializes a new UpdateConnectionDetails object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):

Parameters:
  • description (str) – The value to assign to the description property of this UpdateConnectionDetails.
  • display_name (str) – The value to assign to the display_name property of this UpdateConnectionDetails.
  • custom_property_members (list[oci.data_catalog.models.CustomPropertySetUsage]) – The value to assign to the custom_property_members property of this UpdateConnectionDetails.
  • properties (dict(str, dict(str, str))) – The value to assign to the properties property of this UpdateConnectionDetails.
  • enc_properties (dict(str, dict(str, str))) – The value to assign to the enc_properties property of this UpdateConnectionDetails.
  • is_default (bool) – The value to assign to the is_default property of this UpdateConnectionDetails.
custom_property_members

Gets the custom_property_members of this UpdateConnectionDetails. The list of customized properties along with the values for this object

Returns:The custom_property_members of this UpdateConnectionDetails.
Return type:list[oci.data_catalog.models.CustomPropertySetUsage]
description

Gets the description of this UpdateConnectionDetails. A description of the connection.

Returns:The description of this UpdateConnectionDetails.
Return type:str
display_name

Gets the display_name of this UpdateConnectionDetails. A user-friendly display name. Does not have to be unique, and it’s changeable. Avoid entering confidential information.

Returns:The display_name of this UpdateConnectionDetails.
Return type:str
enc_properties

Gets the enc_properties of this UpdateConnectionDetails. A map of maps that contains the encrypted values for sensitive properties which are specific to the connection type. Each connection type definition defines it’s set of required and optional properties. The map keys are category names and the values are maps of property name to property value. Every property is contained inside of a category. Most connections have required properties within the “default” category. To determine the set of optional and required properties for a connection type, a query can be done on ‘/types?type=connection’ that returns a collection of all connection types. The appropriate connection type, which will include definitions of all of it’s properties, can be identified from this collection. Example: {“encProperties”: { “default”: { “password”: “example-password”}}}

Returns:The enc_properties of this UpdateConnectionDetails.
Return type:dict(str, dict(str, str))
is_default

Gets the is_default of this UpdateConnectionDetails. Indicates whether this connection is the default connection.

Returns:The is_default of this UpdateConnectionDetails.
Return type:bool
properties

Gets the properties of this UpdateConnectionDetails. A map of maps that contains the properties which are specific to the connection type. Each connection type definition defines it’s set of required and optional properties. The map keys are category names and the values are maps of property name to property value. Every property is contained inside of a category. Most connections have required properties within the “default” category. To determine the set of optional and required properties for a connection type, a query can be done on ‘/types?type=connection’ that returns a collection of all connection types. The appropriate connection type, which will include definitions of all of it’s properties, can be identified from this collection. Example: {“properties”: { “default”: { “username”: “user1”}}}

Returns:The properties of this UpdateConnectionDetails.
Return type:dict(str, dict(str, str))