File: //lib/mysqlsh/lib/python3.8/site-packages/oci/data_integration/models/operation_from_api.py
# coding: utf-8
# Copyright (c) 2016, 2025, 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: 20200430
from .operation import Operation
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 OperationFromApi(Operation):
"""
The API operation object.
"""
def __init__(self, **kwargs):
"""
Initializes a new OperationFromApi object with values from keyword arguments. The default value of the :py:attr:`~oci.data_integration.models.OperationFromApi.model_type` attribute
of this class is ``API`` and it should not be changed.
The following keyword arguments are supported (corresponding to the getters/setters of this class):
:param model_type:
The value to assign to the model_type property of this OperationFromApi.
Allowed values for this property are: "PROCEDURE", "API"
:type model_type: str
:param metadata:
The value to assign to the metadata property of this OperationFromApi.
:type metadata: oci.data_integration.models.ObjectMetadata
:param key:
The value to assign to the key property of this OperationFromApi.
:type key: str
:param model_version:
The value to assign to the model_version property of this OperationFromApi.
:type model_version: str
:param parent_ref:
The value to assign to the parent_ref property of this OperationFromApi.
:type parent_ref: oci.data_integration.models.ParentReference
:param shape:
The value to assign to the shape property of this OperationFromApi.
:type shape: oci.data_integration.models.Shape
:param name:
The value to assign to the name property of this OperationFromApi.
:type name: str
:param object_version:
The value to assign to the object_version property of this OperationFromApi.
:type object_version: int
:param external_key:
The value to assign to the external_key property of this OperationFromApi.
:type external_key: str
:param resource_name:
The value to assign to the resource_name property of this OperationFromApi.
:type resource_name: str
:param object_status:
The value to assign to the object_status property of this OperationFromApi.
:type object_status: int
:param operation_attributes:
The value to assign to the operation_attributes property of this OperationFromApi.
:type operation_attributes: oci.data_integration.models.GenericRestApiAttributes
"""
self.swagger_types = {
'model_type': 'str',
'metadata': 'ObjectMetadata',
'key': 'str',
'model_version': 'str',
'parent_ref': 'ParentReference',
'shape': 'Shape',
'name': 'str',
'object_version': 'int',
'external_key': 'str',
'resource_name': 'str',
'object_status': 'int',
'operation_attributes': 'GenericRestApiAttributes'
}
self.attribute_map = {
'model_type': 'modelType',
'metadata': 'metadata',
'key': 'key',
'model_version': 'modelVersion',
'parent_ref': 'parentRef',
'shape': 'shape',
'name': 'name',
'object_version': 'objectVersion',
'external_key': 'externalKey',
'resource_name': 'resourceName',
'object_status': 'objectStatus',
'operation_attributes': 'operationAttributes'
}
self._model_type = None
self._metadata = None
self._key = None
self._model_version = None
self._parent_ref = None
self._shape = None
self._name = None
self._object_version = None
self._external_key = None
self._resource_name = None
self._object_status = None
self._operation_attributes = None
self._model_type = 'API'
@property
def key(self):
"""
Gets the key of this OperationFromApi.
The operation key, used to identiying this metadata object within the dataflow.
:return: The key of this OperationFromApi.
:rtype: str
"""
return self._key
@key.setter
def key(self, key):
"""
Sets the key of this OperationFromApi.
The operation key, used to identiying this metadata object within the dataflow.
:param key: The key of this OperationFromApi.
:type: str
"""
self._key = key
@property
def model_version(self):
"""
Gets the model_version of this OperationFromApi.
The model version of the object.
:return: The model_version of this OperationFromApi.
:rtype: str
"""
return self._model_version
@model_version.setter
def model_version(self, model_version):
"""
Sets the model_version of this OperationFromApi.
The model version of the object.
:param model_version: The model_version of this OperationFromApi.
:type: str
"""
self._model_version = model_version
@property
def parent_ref(self):
"""
Gets the parent_ref of this OperationFromApi.
:return: The parent_ref of this OperationFromApi.
:rtype: oci.data_integration.models.ParentReference
"""
return self._parent_ref
@parent_ref.setter
def parent_ref(self, parent_ref):
"""
Sets the parent_ref of this OperationFromApi.
:param parent_ref: The parent_ref of this OperationFromApi.
:type: oci.data_integration.models.ParentReference
"""
self._parent_ref = parent_ref
@property
def shape(self):
"""
Gets the shape of this OperationFromApi.
:return: The shape of this OperationFromApi.
:rtype: oci.data_integration.models.Shape
"""
return self._shape
@shape.setter
def shape(self, shape):
"""
Sets the shape of this OperationFromApi.
:param shape: The shape of this OperationFromApi.
:type: oci.data_integration.models.Shape
"""
self._shape = shape
@property
def name(self):
"""
**[Required]** Gets the name of this OperationFromApi.
The operation name. This value is unique.
:return: The name of this OperationFromApi.
:rtype: str
"""
return self._name
@name.setter
def name(self, name):
"""
Sets the name of this OperationFromApi.
The operation name. This value is unique.
:param name: The name of this OperationFromApi.
:type: str
"""
self._name = name
@property
def object_version(self):
"""
Gets the object_version of this OperationFromApi.
The version of the object that is used to track changes in the object instance.
:return: The object_version of this OperationFromApi.
:rtype: int
"""
return self._object_version
@object_version.setter
def object_version(self, object_version):
"""
Sets the object_version of this OperationFromApi.
The version of the object that is used to track changes in the object instance.
:param object_version: The object_version of this OperationFromApi.
:type: int
"""
self._object_version = object_version
@property
def external_key(self):
"""
Gets the external_key of this OperationFromApi.
The external key for the object.
:return: The external_key of this OperationFromApi.
:rtype: str
"""
return self._external_key
@external_key.setter
def external_key(self, external_key):
"""
Sets the external_key of this OperationFromApi.
The external key for the object.
:param external_key: The external_key of this OperationFromApi.
:type: str
"""
self._external_key = external_key
@property
def resource_name(self):
"""
**[Required]** Gets the resource_name of this OperationFromApi.
The resource name.
:return: The resource_name of this OperationFromApi.
:rtype: str
"""
return self._resource_name
@resource_name.setter
def resource_name(self, resource_name):
"""
Sets the resource_name of this OperationFromApi.
The resource name.
:param resource_name: The resource_name of this OperationFromApi.
:type: str
"""
self._resource_name = resource_name
@property
def object_status(self):
"""
Gets the object_status of this OperationFromApi.
The status of an object that can be set to value 1 for shallow reference across objects, other values reserved.
:return: The object_status of this OperationFromApi.
:rtype: int
"""
return self._object_status
@object_status.setter
def object_status(self, object_status):
"""
Sets the object_status of this OperationFromApi.
The status of an object that can be set to value 1 for shallow reference across objects, other values reserved.
:param object_status: The object_status of this OperationFromApi.
:type: int
"""
self._object_status = object_status
@property
def operation_attributes(self):
"""
Gets the operation_attributes of this OperationFromApi.
:return: The operation_attributes of this OperationFromApi.
:rtype: oci.data_integration.models.GenericRestApiAttributes
"""
return self._operation_attributes
@operation_attributes.setter
def operation_attributes(self, operation_attributes):
"""
Sets the operation_attributes of this OperationFromApi.
:param operation_attributes: The operation_attributes of this OperationFromApi.
:type: oci.data_integration.models.GenericRestApiAttributes
"""
self._operation_attributes = operation_attributes
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