CreateSourceApplicationInfo¶
-
class
oci.data_integration.models.
CreateSourceApplicationInfo
(**kwargs)¶ Bases:
object
The information about the application.
Attributes
COPY_TYPE_CONNECTED
A constant which can be used with the copy_type property of a CreateSourceApplicationInfo. COPY_TYPE_DISCONNECTED
A constant which can be used with the copy_type property of a CreateSourceApplicationInfo. application_key
Gets the application_key of this CreateSourceApplicationInfo. copy_type
Gets the copy_type of this CreateSourceApplicationInfo. workspace_id
Gets the workspace_id of this CreateSourceApplicationInfo. Methods
__init__
(**kwargs)Initializes a new CreateSourceApplicationInfo object with values from keyword arguments. -
COPY_TYPE_CONNECTED
= 'CONNECTED'¶ A constant which can be used with the copy_type property of a CreateSourceApplicationInfo. This constant has a value of “CONNECTED”
-
COPY_TYPE_DISCONNECTED
= 'DISCONNECTED'¶ A constant which can be used with the copy_type property of a CreateSourceApplicationInfo. This constant has a value of “DISCONNECTED”
-
__init__
(**kwargs)¶ Initializes a new CreateSourceApplicationInfo object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):
Parameters: - workspace_id (str) – The value to assign to the workspace_id property of this CreateSourceApplicationInfo.
- application_key (str) – The value to assign to the application_key property of this CreateSourceApplicationInfo.
- copy_type (str) – The value to assign to the copy_type property of this CreateSourceApplicationInfo. Allowed values for this property are: “CONNECTED”, “DISCONNECTED”
-
application_key
¶ Gets the application_key of this CreateSourceApplicationInfo. The source application key to use when creating the application.
Returns: The application_key of this CreateSourceApplicationInfo. Return type: str
-
copy_type
¶ Gets the copy_type of this CreateSourceApplicationInfo. Parameter to specify the link between SOURCE and TARGET application after copying. CONNECTED - Indicate that TARGET application is conneced to SOURCE and can be synced after copy. DISCONNECTED - Indicate that TARGET application is not conneced to SOURCE and can evolve independently.
Allowed values for this property are: “CONNECTED”, “DISCONNECTED”
Returns: The copy_type of this CreateSourceApplicationInfo. Return type: str
-
workspace_id
¶ Gets the workspace_id of this CreateSourceApplicationInfo. The OCID of the workspace containing the application. This allows cross workspace deployment to publish an application from a different workspace into the current workspace specified in this operation.
Returns: The workspace_id of this CreateSourceApplicationInfo. Return type: str
-