File manager - Edit - /usr/lib/mysqlsh/lib/python3.9/site-packages/oci/gdp/models/gdp_pipeline_summary.py
Back
# coding: utf-8 # Copyright (c) 2016, 2026, 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: 20230301 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 GdpPipelineSummary(object): """ Retrieves summary pipeline configuration information by identifier. """ def __init__(self, **kwargs): """ Initializes a new GdpPipelineSummary object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class): :param id: The value to assign to the id property of this GdpPipelineSummary. :type id: str :param compartment_id: The value to assign to the compartment_id property of this GdpPipelineSummary. :type compartment_id: str :param lifecycle_state: The value to assign to the lifecycle_state property of this GdpPipelineSummary. :type lifecycle_state: str :param display_name: The value to assign to the display_name property of this GdpPipelineSummary. :type display_name: str :param description: The value to assign to the description property of this GdpPipelineSummary. :type description: str :param service_log_group_id: The value to assign to the service_log_group_id property of this GdpPipelineSummary. :type service_log_group_id: str :param pipeline_type: The value to assign to the pipeline_type property of this GdpPipelineSummary. :type pipeline_type: str :param peering_region: The value to assign to the peering_region property of this GdpPipelineSummary. :type peering_region: str :param authorization_details: The value to assign to the authorization_details property of this GdpPipelineSummary. :type authorization_details: str :param time_created: The value to assign to the time_created property of this GdpPipelineSummary. :type time_created: datetime :param time_updated: The value to assign to the time_updated property of this GdpPipelineSummary. :type time_updated: datetime :param is_file_override_in_destination_enabled: The value to assign to the is_file_override_in_destination_enabled property of this GdpPipelineSummary. :type is_file_override_in_destination_enabled: bool :param is_scanning_enabled: The value to assign to the is_scanning_enabled property of this GdpPipelineSummary. :type is_scanning_enabled: bool :param is_chunking_enabled: The value to assign to the is_chunking_enabled property of this GdpPipelineSummary. :type is_chunking_enabled: bool :param is_approval_needed: The value to assign to the is_approval_needed property of this GdpPipelineSummary. :type is_approval_needed: bool :param freeform_tags: The value to assign to the freeform_tags property of this GdpPipelineSummary. :type freeform_tags: dict(str, str) :param defined_tags: The value to assign to the defined_tags property of this GdpPipelineSummary. :type defined_tags: dict(str, dict(str, object)) :param system_tags: The value to assign to the system_tags property of this GdpPipelineSummary. :type system_tags: dict(str, dict(str, object)) """ self.swagger_types = { 'id': 'str', 'compartment_id': 'str', 'lifecycle_state': 'str', 'display_name': 'str', 'description': 'str', 'service_log_group_id': 'str', 'pipeline_type': 'str', 'peering_region': 'str', 'authorization_details': 'str', 'time_created': 'datetime', 'time_updated': 'datetime', 'is_file_override_in_destination_enabled': 'bool', 'is_scanning_enabled': 'bool', 'is_chunking_enabled': 'bool', 'is_approval_needed': 'bool', 'freeform_tags': 'dict(str, str)', 'defined_tags': 'dict(str, dict(str, object))', 'system_tags': 'dict(str, dict(str, object))' } self.attribute_map = { 'id': 'id', 'compartment_id': 'compartmentId', 'lifecycle_state': 'lifecycleState', 'display_name': 'displayName', 'description': 'description', 'service_log_group_id': 'serviceLogGroupId', 'pipeline_type': 'pipelineType', 'peering_region': 'peeringRegion', 'authorization_details': 'authorizationDetails', 'time_created': 'timeCreated', 'time_updated': 'timeUpdated', 'is_file_override_in_destination_enabled': 'isFileOverrideInDestinationEnabled', 'is_scanning_enabled': 'isScanningEnabled', 'is_chunking_enabled': 'isChunkingEnabled', 'is_approval_needed': 'isApprovalNeeded', 'freeform_tags': 'freeformTags', 'defined_tags': 'definedTags', 'system_tags': 'systemTags' } self._id = None self._compartment_id = None self._lifecycle_state = None self._display_name = None self._description = None self._service_log_group_id = None self._pipeline_type = None self._peering_region = None self._authorization_details = None self._time_created = None self._time_updated = None self._is_file_override_in_destination_enabled = None self._is_scanning_enabled = None self._is_chunking_enabled = None self._is_approval_needed = None self._freeform_tags = None self._defined_tags = None self._system_tags = None @property def id(self): """ **[Required]** Gets the id of this GdpPipelineSummary. The OCID of the pipeline. :return: The id of this GdpPipelineSummary. :rtype: str """ return self._id @id.setter def id(self, id): """ Sets the id of this GdpPipelineSummary. The OCID of the pipeline. :param id: The id of this GdpPipelineSummary. :type: str """ self._id = id @property def compartment_id(self): """ **[Required]** Gets the compartment_id of this GdpPipelineSummary. The OCID of the compartment. :return: The compartment_id of this GdpPipelineSummary. :rtype: str """ return self._compartment_id @compartment_id.setter def compartment_id(self, compartment_id): """ Sets the compartment_id of this GdpPipelineSummary. The OCID of the compartment. :param compartment_id: The compartment_id of this GdpPipelineSummary. :type: str """ self._compartment_id = compartment_id @property def lifecycle_state(self): """ **[Required]** Gets the lifecycle_state of this GdpPipelineSummary. The current state of the pipeline. :return: The lifecycle_state of this GdpPipelineSummary. :rtype: str """ return self._lifecycle_state @lifecycle_state.setter def lifecycle_state(self, lifecycle_state): """ Sets the lifecycle_state of this GdpPipelineSummary. The current state of the pipeline. :param lifecycle_state: The lifecycle_state of this GdpPipelineSummary. :type: str """ self._lifecycle_state = lifecycle_state @property def display_name(self): """ **[Required]** Gets the display_name of this GdpPipelineSummary. Pipeline short name. :return: The display_name of this GdpPipelineSummary. :rtype: str """ return self._display_name @display_name.setter def display_name(self, display_name): """ Sets the display_name of this GdpPipelineSummary. Pipeline short name. :param display_name: The display_name of this GdpPipelineSummary. :type: str """ self._display_name = display_name @property def description(self): """ Gets the description of this GdpPipelineSummary. Short field input by customer for a description of the data pipeline use-case. :return: The description of this GdpPipelineSummary. :rtype: str """ return self._description @description.setter def description(self, description): """ Sets the description of this GdpPipelineSummary. Short field input by customer for a description of the data pipeline use-case. :param description: The description of this GdpPipelineSummary. :type: str """ self._description = description @property def service_log_group_id(self): """ Gets the service_log_group_id of this GdpPipelineSummary. the OCID of the service log group. :return: The service_log_group_id of this GdpPipelineSummary. :rtype: str """ return self._service_log_group_id @service_log_group_id.setter def service_log_group_id(self, service_log_group_id): """ Sets the service_log_group_id of this GdpPipelineSummary. the OCID of the service log group. :param service_log_group_id: The service_log_group_id of this GdpPipelineSummary. :type: str """ self._service_log_group_id = service_log_group_id @property def pipeline_type(self): """ **[Required]** Gets the pipeline_type of this GdpPipelineSummary. Type of pipeline. Can be SENDER or RECEIVER. :return: The pipeline_type of this GdpPipelineSummary. :rtype: str """ return self._pipeline_type @pipeline_type.setter def pipeline_type(self, pipeline_type): """ Sets the pipeline_type of this GdpPipelineSummary. Type of pipeline. Can be SENDER or RECEIVER. :param pipeline_type: The pipeline_type of this GdpPipelineSummary. :type: str """ self._pipeline_type = pipeline_type @property def peering_region(self): """ **[Required]** Gets the peering_region of this GdpPipelineSummary. Public region name where the peered pipeline exists. :return: The peering_region of this GdpPipelineSummary. :rtype: str """ return self._peering_region @peering_region.setter def peering_region(self, peering_region): """ Sets the peering_region of this GdpPipelineSummary. Public region name where the peered pipeline exists. :param peering_region: The peering_region of this GdpPipelineSummary. :type: str """ self._peering_region = peering_region @property def authorization_details(self): """ Gets the authorization_details of this GdpPipelineSummary. Free-text field containing tracking information for approval tracking. :return: The authorization_details of this GdpPipelineSummary. :rtype: str """ return self._authorization_details @authorization_details.setter def authorization_details(self, authorization_details): """ Sets the authorization_details of this GdpPipelineSummary. Free-text field containing tracking information for approval tracking. :param authorization_details: The authorization_details of this GdpPipelineSummary. :type: str """ self._authorization_details = authorization_details @property def time_created(self): """ **[Required]** Gets the time_created of this GdpPipelineSummary. The time the pipeline was created. An RFC3339 formatted datetime string. :return: The time_created of this GdpPipelineSummary. :rtype: datetime """ return self._time_created @time_created.setter def time_created(self, time_created): """ Sets the time_created of this GdpPipelineSummary. The time the pipeline was created. An RFC3339 formatted datetime string. :param time_created: The time_created of this GdpPipelineSummary. :type: datetime """ self._time_created = time_created @property def time_updated(self): """ **[Required]** Gets the time_updated of this GdpPipelineSummary. The time the pipeline was updated. An RFC3339 formatted datetime string. :return: The time_updated of this GdpPipelineSummary. :rtype: datetime """ return self._time_updated @time_updated.setter def time_updated(self, time_updated): """ Sets the time_updated of this GdpPipelineSummary. The time the pipeline was updated. An RFC3339 formatted datetime string. :param time_updated: The time_updated of this GdpPipelineSummary. :type: datetime """ self._time_updated = time_updated @property def is_file_override_in_destination_enabled(self): """ Gets the is_file_override_in_destination_enabled of this GdpPipelineSummary. Enable file override feature in destination bucket :return: The is_file_override_in_destination_enabled of this GdpPipelineSummary. :rtype: bool """ return self._is_file_override_in_destination_enabled @is_file_override_in_destination_enabled.setter def is_file_override_in_destination_enabled(self, is_file_override_in_destination_enabled): """ Sets the is_file_override_in_destination_enabled of this GdpPipelineSummary. Enable file override feature in destination bucket :param is_file_override_in_destination_enabled: The is_file_override_in_destination_enabled of this GdpPipelineSummary. :type: bool """ self._is_file_override_in_destination_enabled = is_file_override_in_destination_enabled @property def is_scanning_enabled(self): """ Gets the is_scanning_enabled of this GdpPipelineSummary. Determines whether GDP Scanning should be enabled for the pipeline. :return: The is_scanning_enabled of this GdpPipelineSummary. :rtype: bool """ return self._is_scanning_enabled @is_scanning_enabled.setter def is_scanning_enabled(self, is_scanning_enabled): """ Sets the is_scanning_enabled of this GdpPipelineSummary. Determines whether GDP Scanning should be enabled for the pipeline. :param is_scanning_enabled: The is_scanning_enabled of this GdpPipelineSummary. :type: bool """ self._is_scanning_enabled = is_scanning_enabled @property def is_chunking_enabled(self): """ Gets the is_chunking_enabled of this GdpPipelineSummary. Determines whether file must be chunked during the transfer. This is only a property of SENDER pipelines. :return: The is_chunking_enabled of this GdpPipelineSummary. :rtype: bool """ return self._is_chunking_enabled @is_chunking_enabled.setter def is_chunking_enabled(self, is_chunking_enabled): """ Sets the is_chunking_enabled of this GdpPipelineSummary. Determines whether file must be chunked during the transfer. This is only a property of SENDER pipelines. :param is_chunking_enabled: The is_chunking_enabled of this GdpPipelineSummary. :type: bool """ self._is_chunking_enabled = is_chunking_enabled @property def is_approval_needed(self): """ Gets the is_approval_needed of this GdpPipelineSummary. Determines whether file transfers need to go through an approval workflow. :return: The is_approval_needed of this GdpPipelineSummary. :rtype: bool """ return self._is_approval_needed @is_approval_needed.setter def is_approval_needed(self, is_approval_needed): """ Sets the is_approval_needed of this GdpPipelineSummary. Determines whether file transfers need to go through an approval workflow. :param is_approval_needed: The is_approval_needed of this GdpPipelineSummary. :type: bool """ self._is_approval_needed = is_approval_needed @property def freeform_tags(self): """ **[Required]** Gets the freeform_tags of this GdpPipelineSummary. Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}` :return: The freeform_tags of this GdpPipelineSummary. :rtype: dict(str, str) """ return self._freeform_tags @freeform_tags.setter def freeform_tags(self, freeform_tags): """ Sets the freeform_tags of this GdpPipelineSummary. Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}` :param freeform_tags: The freeform_tags of this GdpPipelineSummary. :type: dict(str, str) """ self._freeform_tags = freeform_tags @property def defined_tags(self): """ **[Required]** Gets the defined_tags of this GdpPipelineSummary. Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}` :return: The defined_tags of this GdpPipelineSummary. :rtype: dict(str, dict(str, object)) """ return self._defined_tags @defined_tags.setter def defined_tags(self, defined_tags): """ Sets the defined_tags of this GdpPipelineSummary. Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}` :param defined_tags: The defined_tags of this GdpPipelineSummary. :type: dict(str, dict(str, object)) """ self._defined_tags = defined_tags @property def system_tags(self): """ Gets the system_tags of this GdpPipelineSummary. System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}` :return: The system_tags of this GdpPipelineSummary. :rtype: dict(str, dict(str, object)) """ return self._system_tags @system_tags.setter def system_tags(self, system_tags): """ Sets the system_tags of this GdpPipelineSummary. System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}` :param system_tags: The system_tags of this GdpPipelineSummary. :type: dict(str, dict(str, object)) """ self._system_tags = system_tags 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
| ver. 1.4 |
Github
|
.
| PHP 8.2.32 | Generation time: 0.06 |
proxy
|
phpinfo
|
Settings