PyConnectionsContent
class PyConnectionsContent(connections_content)
Bases: object
Interface for content that has connection metadata.
- Parameters: connections_content (IConnectionsContent)
__init__(connections_content)
Creates a new PyConnectionsContent object.
Args: : connections_content: A IConnectionsContent object.
Returns: None.
- Parameters: connections_content (IConnectionsContent)
- Return type: None
Methods
__init__ (connections_content) |
Creates a new PyConnectionsContent object. |
---|
Attributes
connections |
Gets the connection metadata. |
---|---|
has_embedded_o_auth_credentials |
Gets whether any Connections have an embedded password and an OAuth authentication type. |
has_embedded_o_auth_managed_keychain |
Gets whether any Connections have an embedded password and uses OAuth managed keychain. |
has_embedded_password |
Gets whether any Connections have an embedded password. |
property connections : Sequence[PyConnection]
Gets the connection metadata. Connection metadata is read only because connection metadata should not be transformed directly. Instead, connections should be modified by either: 1) manipulating XML before publishing, or 2) updating connection metadata in a post-publish hook.
property has_embedded_password : bool
Gets whether any Connections have an embedded password.
property has_embedded_o_auth_managed_keychain : bool
Gets whether any Connections have an embedded password and uses OAuth managed keychain.
property has_embedded_o_auth_credentials : bool
Gets whether any Connections have an embedded password and an OAuth authentication type.