File manager - Edit - /usr/lib/mysqlsh/lib/python3.9/site-packages/oci/jms/models/application_work_item_details.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: 20210610 from .work_item_details import WorkItemDetails 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 ApplicationWorkItemDetails(WorkItemDetails): """ The work item details with JFR related information. """ def __init__(self, **kwargs): """ Initializes a new ApplicationWorkItemDetails object with values from keyword arguments. The default value of the :py:attr:`~oci.jms.models.ApplicationWorkItemDetails.kind` attribute of this class is ``APPLICATION`` and it should not be changed. The following keyword arguments are supported (corresponding to the getters/setters of this class): :param kind: The value to assign to the kind property of this ApplicationWorkItemDetails. Allowed values for this property are: "BASIC", "APPLICATION", "LCM", "DEPLOYED_APPLICATION" :type kind: str :param work_item_type: The value to assign to the work_item_type property of this ApplicationWorkItemDetails. Allowed values for this property are: "LCM", "JFR_CAPTURE", "JFR_UPLOAD", "CRYPTO_ANALYSIS", "CRYPTO_ANALYSIS_MERGE", "ADVANCED_USAGE_TRACKING", "ADV_USAGE_SERVER_METADATA", "ADV_USAGE_SERVER_LIBRARIES", "ADV_USAGE_JAVA_LIBRARIES", "ADV_USAGE_JAVA_LIBRARIES_DYNAMIC", "PERFORMANCE_TUNING", "JMIGRATE_ANALYSIS", "JMIGRATE_CREATE_REPORT", "DRS" :type work_item_type: str :param application_key: The value to assign to the application_key property of this ApplicationWorkItemDetails. :type application_key: str :param application_installation_key: The value to assign to the application_installation_key property of this ApplicationWorkItemDetails. :type application_installation_key: str :param application_name: The value to assign to the application_name property of this ApplicationWorkItemDetails. :type application_name: str :param application_installation_path: The value to assign to the application_installation_path property of this ApplicationWorkItemDetails. :type application_installation_path: str :param namespace: The value to assign to the namespace property of this ApplicationWorkItemDetails. :type namespace: str :param bucket_name: The value to assign to the bucket_name property of this ApplicationWorkItemDetails. :type bucket_name: str :param object_name: The value to assign to the object_name property of this ApplicationWorkItemDetails. :type object_name: str :param container_info: The value to assign to the container_info property of this ApplicationWorkItemDetails. :type container_info: oci.jms.models.ContainerSummary """ self.swagger_types = { 'kind': 'str', 'work_item_type': 'str', 'application_key': 'str', 'application_installation_key': 'str', 'application_name': 'str', 'application_installation_path': 'str', 'namespace': 'str', 'bucket_name': 'str', 'object_name': 'str', 'container_info': 'ContainerSummary' } self.attribute_map = { 'kind': 'kind', 'work_item_type': 'workItemType', 'application_key': 'applicationKey', 'application_installation_key': 'applicationInstallationKey', 'application_name': 'applicationName', 'application_installation_path': 'applicationInstallationPath', 'namespace': 'namespace', 'bucket_name': 'bucketName', 'object_name': 'objectName', 'container_info': 'containerInfo' } self._kind = None self._work_item_type = None self._application_key = None self._application_installation_key = None self._application_name = None self._application_installation_path = None self._namespace = None self._bucket_name = None self._object_name = None self._container_info = None self._kind = 'APPLICATION' @property def application_key(self): """ **[Required]** Gets the application_key of this ApplicationWorkItemDetails. The unique key of the application of the JFR. :return: The application_key of this ApplicationWorkItemDetails. :rtype: str """ return self._application_key @application_key.setter def application_key(self, application_key): """ Sets the application_key of this ApplicationWorkItemDetails. The unique key of the application of the JFR. :param application_key: The application_key of this ApplicationWorkItemDetails. :type: str """ self._application_key = application_key @property def application_installation_key(self): """ Gets the application_installation_key of this ApplicationWorkItemDetails. The unique key of the application installation of the JFR. :return: The application_installation_key of this ApplicationWorkItemDetails. :rtype: str """ return self._application_installation_key @application_installation_key.setter def application_installation_key(self, application_installation_key): """ Sets the application_installation_key of this ApplicationWorkItemDetails. The unique key of the application installation of the JFR. :param application_installation_key: The application_installation_key of this ApplicationWorkItemDetails. :type: str """ self._application_installation_key = application_installation_key @property def application_name(self): """ **[Required]** Gets the application_name of this ApplicationWorkItemDetails. The application name. :return: The application_name of this ApplicationWorkItemDetails. :rtype: str """ return self._application_name @application_name.setter def application_name(self, application_name): """ Sets the application_name of this ApplicationWorkItemDetails. The application name. :param application_name: The application_name of this ApplicationWorkItemDetails. :type: str """ self._application_name = application_name @property def application_installation_path(self): """ Gets the application_installation_path of this ApplicationWorkItemDetails. The full path on which application installation was detected. :return: The application_installation_path of this ApplicationWorkItemDetails. :rtype: str """ return self._application_installation_path @application_installation_path.setter def application_installation_path(self, application_installation_path): """ Sets the application_installation_path of this ApplicationWorkItemDetails. The full path on which application installation was detected. :param application_installation_path: The application_installation_path of this ApplicationWorkItemDetails. :type: str """ self._application_installation_path = application_installation_path @property def namespace(self): """ Gets the namespace of this ApplicationWorkItemDetails. The Object Storage namespace of the JFR upload result. :return: The namespace of this ApplicationWorkItemDetails. :rtype: str """ return self._namespace @namespace.setter def namespace(self, namespace): """ Sets the namespace of this ApplicationWorkItemDetails. The Object Storage namespace of the JFR upload result. :param namespace: The namespace of this ApplicationWorkItemDetails. :type: str """ self._namespace = namespace @property def bucket_name(self): """ Gets the bucket_name of this ApplicationWorkItemDetails. The Object Storage bucket name of the JFR upload result. :return: The bucket_name of this ApplicationWorkItemDetails. :rtype: str """ return self._bucket_name @bucket_name.setter def bucket_name(self, bucket_name): """ Sets the bucket_name of this ApplicationWorkItemDetails. The Object Storage bucket name of the JFR upload result. :param bucket_name: The bucket_name of this ApplicationWorkItemDetails. :type: str """ self._bucket_name = bucket_name @property def object_name(self): """ Gets the object_name of this ApplicationWorkItemDetails. The Object Storage object name of the JFR upload result. :return: The object_name of this ApplicationWorkItemDetails. :rtype: str """ return self._object_name @object_name.setter def object_name(self, object_name): """ Sets the object_name of this ApplicationWorkItemDetails. The Object Storage object name of the JFR upload result. :param object_name: The object_name of this ApplicationWorkItemDetails. :type: str """ self._object_name = object_name @property def container_info(self): """ Gets the container_info of this ApplicationWorkItemDetails. :return: The container_info of this ApplicationWorkItemDetails. :rtype: oci.jms.models.ContainerSummary """ return self._container_info @container_info.setter def container_info(self, container_info): """ Sets the container_info of this ApplicationWorkItemDetails. :param container_info: The container_info of this ApplicationWorkItemDetails. :type: oci.jms.models.ContainerSummary """ self._container_info = container_info 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