File manager - Edit - /usr/lib/mysqlsh/lib/python3.9/site-packages/oci/limits_increase/models/limits_increase_request.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: 20251101 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 LimitsIncreaseRequest(object): """ The properties that define a limit increase request. For information about limit increase requests, see `Working with Limit Increase Requests`__. __ https://docs.oracle.com/iaas/Content/General/service-limits/requests.htm """ #: A constant which can be used with the lifecycle_state property of a LimitsIncreaseRequest. #: This constant has a value of "ACCEPTED" LIFECYCLE_STATE_ACCEPTED = "ACCEPTED" #: A constant which can be used with the lifecycle_state property of a LimitsIncreaseRequest. #: This constant has a value of "IN_PROGRESS" LIFECYCLE_STATE_IN_PROGRESS = "IN_PROGRESS" #: A constant which can be used with the lifecycle_state property of a LimitsIncreaseRequest. #: This constant has a value of "SUCCEEDED" LIFECYCLE_STATE_SUCCEEDED = "SUCCEEDED" #: A constant which can be used with the lifecycle_state property of a LimitsIncreaseRequest. #: This constant has a value of "CANCELED" LIFECYCLE_STATE_CANCELED = "CANCELED" #: A constant which can be used with the lifecycle_state property of a LimitsIncreaseRequest. #: This constant has a value of "PARTIALLY_SUCCEEDED" LIFECYCLE_STATE_PARTIALLY_SUCCEEDED = "PARTIALLY_SUCCEEDED" #: A constant which can be used with the lifecycle_state property of a LimitsIncreaseRequest. #: This constant has a value of "FAILED" LIFECYCLE_STATE_FAILED = "FAILED" def __init__(self, **kwargs): """ Initializes a new LimitsIncreaseRequest 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 LimitsIncreaseRequest. :type id: str :param display_name: The value to assign to the display_name property of this LimitsIncreaseRequest. :type display_name: str :param compartment_id: The value to assign to the compartment_id property of this LimitsIncreaseRequest. :type compartment_id: str :param subscription_id: The value to assign to the subscription_id property of this LimitsIncreaseRequest. :type subscription_id: str :param lifecycle_state: The value to assign to the lifecycle_state property of this LimitsIncreaseRequest. Allowed values for this property are: "ACCEPTED", "IN_PROGRESS", "SUCCEEDED", "CANCELED", "PARTIALLY_SUCCEEDED", "FAILED", 'UNKNOWN_ENUM_VALUE'. Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. :type lifecycle_state: str :param limits_increase_item_requests: The value to assign to the limits_increase_item_requests property of this LimitsIncreaseRequest. :type limits_increase_item_requests: list[oci.limits_increase.models.LimitsIncreaseItemRequest] :param justification: The value to assign to the justification property of this LimitsIncreaseRequest. :type justification: str :param time_created: The value to assign to the time_created property of this LimitsIncreaseRequest. :type time_created: datetime :param time_updated: The value to assign to the time_updated property of this LimitsIncreaseRequest. :type time_updated: datetime :param time_resolution: The value to assign to the time_resolution property of this LimitsIncreaseRequest. :type time_resolution: datetime :param customer_comments: The value to assign to the customer_comments property of this LimitsIncreaseRequest. :type customer_comments: list[oci.limits_increase.models.LimitsIncreaseRequestComment] :param freeform_tags: The value to assign to the freeform_tags property of this LimitsIncreaseRequest. :type freeform_tags: dict(str, str) :param defined_tags: The value to assign to the defined_tags property of this LimitsIncreaseRequest. :type defined_tags: dict(str, dict(str, object)) :param system_tags: The value to assign to the system_tags property of this LimitsIncreaseRequest. :type system_tags: dict(str, dict(str, object)) """ self.swagger_types = { 'id': 'str', 'display_name': 'str', 'compartment_id': 'str', 'subscription_id': 'str', 'lifecycle_state': 'str', 'limits_increase_item_requests': 'list[LimitsIncreaseItemRequest]', 'justification': 'str', 'time_created': 'datetime', 'time_updated': 'datetime', 'time_resolution': 'datetime', 'customer_comments': 'list[LimitsIncreaseRequestComment]', 'freeform_tags': 'dict(str, str)', 'defined_tags': 'dict(str, dict(str, object))', 'system_tags': 'dict(str, dict(str, object))' } self.attribute_map = { 'id': 'id', 'display_name': 'displayName', 'compartment_id': 'compartmentId', 'subscription_id': 'subscriptionId', 'lifecycle_state': 'lifecycleState', 'limits_increase_item_requests': 'limitsIncreaseItemRequests', 'justification': 'justification', 'time_created': 'timeCreated', 'time_updated': 'timeUpdated', 'time_resolution': 'timeResolution', 'customer_comments': 'customerComments', 'freeform_tags': 'freeformTags', 'defined_tags': 'definedTags', 'system_tags': 'systemTags' } self._id = None self._display_name = None self._compartment_id = None self._subscription_id = None self._lifecycle_state = None self._limits_increase_item_requests = None self._justification = None self._time_created = None self._time_updated = None self._time_resolution = None self._customer_comments = None self._freeform_tags = None self._defined_tags = None self._system_tags = None @property def id(self): """ **[Required]** Gets the id of this LimitsIncreaseRequest. The `OCID`__ of the limit increase request. __ https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm :return: The id of this LimitsIncreaseRequest. :rtype: str """ return self._id @id.setter def id(self, id): """ Sets the id of this LimitsIncreaseRequest. The `OCID`__ of the limit increase request. __ https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param id: The id of this LimitsIncreaseRequest. :type: str """ self._id = id @property def display_name(self): """ **[Required]** Gets the display_name of this LimitsIncreaseRequest. The user-friendly name of the limit increase request. Avoid entering confidential information. :return: The display_name of this LimitsIncreaseRequest. :rtype: str """ return self._display_name @display_name.setter def display_name(self, display_name): """ Sets the display_name of this LimitsIncreaseRequest. The user-friendly name of the limit increase request. Avoid entering confidential information. :param display_name: The display_name of this LimitsIncreaseRequest. :type: str """ self._display_name = display_name @property def compartment_id(self): """ **[Required]** Gets the compartment_id of this LimitsIncreaseRequest. The `OCID`__ of the compartment that contains the limit increase request. Note: The tenancy is the root compartment. __ https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm :return: The compartment_id of this LimitsIncreaseRequest. :rtype: str """ return self._compartment_id @compartment_id.setter def compartment_id(self, compartment_id): """ Sets the compartment_id of this LimitsIncreaseRequest. The `OCID`__ of the compartment that contains the limit increase request. Note: The tenancy is the root compartment. __ https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param compartment_id: The compartment_id of this LimitsIncreaseRequest. :type: str """ self._compartment_id = compartment_id @property def subscription_id(self): """ Gets the subscription_id of this LimitsIncreaseRequest. The `OCID`__ of the tenancy subscription for the limit increase request. __ https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm :return: The subscription_id of this LimitsIncreaseRequest. :rtype: str """ return self._subscription_id @subscription_id.setter def subscription_id(self, subscription_id): """ Sets the subscription_id of this LimitsIncreaseRequest. The `OCID`__ of the tenancy subscription for the limit increase request. __ https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param subscription_id: The subscription_id of this LimitsIncreaseRequest. :type: str """ self._subscription_id = subscription_id @property def lifecycle_state(self): """ **[Required]** Gets the lifecycle_state of this LimitsIncreaseRequest. The current status of the limit increase request. Allowed values for this property are: "ACCEPTED", "IN_PROGRESS", "SUCCEEDED", "CANCELED", "PARTIALLY_SUCCEEDED", "FAILED", 'UNKNOWN_ENUM_VALUE'. Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. :return: The lifecycle_state of this LimitsIncreaseRequest. :rtype: str """ return self._lifecycle_state @lifecycle_state.setter def lifecycle_state(self, lifecycle_state): """ Sets the lifecycle_state of this LimitsIncreaseRequest. The current status of the limit increase request. :param lifecycle_state: The lifecycle_state of this LimitsIncreaseRequest. :type: str """ allowed_values = ["ACCEPTED", "IN_PROGRESS", "SUCCEEDED", "CANCELED", "PARTIALLY_SUCCEEDED", "FAILED"] if not value_allowed_none_or_none_sentinel(lifecycle_state, allowed_values): lifecycle_state = 'UNKNOWN_ENUM_VALUE' self._lifecycle_state = lifecycle_state @property def limits_increase_item_requests(self): """ **[Required]** Gets the limits_increase_item_requests of this LimitsIncreaseRequest. List of limit increase items within the limit increase request. :return: The limits_increase_item_requests of this LimitsIncreaseRequest. :rtype: list[oci.limits_increase.models.LimitsIncreaseItemRequest] """ return self._limits_increase_item_requests @limits_increase_item_requests.setter def limits_increase_item_requests(self, limits_increase_item_requests): """ Sets the limits_increase_item_requests of this LimitsIncreaseRequest. List of limit increase items within the limit increase request. :param limits_increase_item_requests: The limits_increase_item_requests of this LimitsIncreaseRequest. :type: list[oci.limits_increase.models.LimitsIncreaseItemRequest] """ self._limits_increase_item_requests = limits_increase_item_requests @property def justification(self): """ Gets the justification of this LimitsIncreaseRequest. Reason for the limit increase request. :return: The justification of this LimitsIncreaseRequest. :rtype: str """ return self._justification @justification.setter def justification(self, justification): """ Sets the justification of this LimitsIncreaseRequest. Reason for the limit increase request. :param justification: The justification of this LimitsIncreaseRequest. :type: str """ self._justification = justification @property def time_created(self): """ **[Required]** Gets the time_created of this LimitsIncreaseRequest. The time that the limit increase request was created. Format defined by RFC3339. :return: The time_created of this LimitsIncreaseRequest. :rtype: datetime """ return self._time_created @time_created.setter def time_created(self, time_created): """ Sets the time_created of this LimitsIncreaseRequest. The time that the limit increase request was created. Format defined by RFC3339. :param time_created: The time_created of this LimitsIncreaseRequest. :type: datetime """ self._time_created = time_created @property def time_updated(self): """ Gets the time_updated of this LimitsIncreaseRequest. The time that the limit increase request was updated. Format defined by RFC3339. :return: The time_updated of this LimitsIncreaseRequest. :rtype: datetime """ return self._time_updated @time_updated.setter def time_updated(self, time_updated): """ Sets the time_updated of this LimitsIncreaseRequest. The time that the limit increase request was updated. Format defined by RFC3339. :param time_updated: The time_updated of this LimitsIncreaseRequest. :type: datetime """ self._time_updated = time_updated @property def time_resolution(self): """ Gets the time_resolution of this LimitsIncreaseRequest. The time that the limit increase request was resolved (reached a terminal state). Format defined by RFC3339. :return: The time_resolution of this LimitsIncreaseRequest. :rtype: datetime """ return self._time_resolution @time_resolution.setter def time_resolution(self, time_resolution): """ Sets the time_resolution of this LimitsIncreaseRequest. The time that the limit increase request was resolved (reached a terminal state). Format defined by RFC3339. :param time_resolution: The time_resolution of this LimitsIncreaseRequest. :type: datetime """ self._time_resolution = time_resolution @property def customer_comments(self): """ Gets the customer_comments of this LimitsIncreaseRequest. List of comments in the limit increase request. A comment is typically between the requester and OCI Support. :return: The customer_comments of this LimitsIncreaseRequest. :rtype: list[oci.limits_increase.models.LimitsIncreaseRequestComment] """ return self._customer_comments @customer_comments.setter def customer_comments(self, customer_comments): """ Sets the customer_comments of this LimitsIncreaseRequest. List of comments in the limit increase request. A comment is typically between the requester and OCI Support. :param customer_comments: The customer_comments of this LimitsIncreaseRequest. :type: list[oci.limits_increase.models.LimitsIncreaseRequestComment] """ self._customer_comments = customer_comments @property def freeform_tags(self): """ **[Required]** Gets the freeform_tags of this LimitsIncreaseRequest. 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 LimitsIncreaseRequest. :rtype: dict(str, str) """ return self._freeform_tags @freeform_tags.setter def freeform_tags(self, freeform_tags): """ Sets the freeform_tags of this LimitsIncreaseRequest. 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 LimitsIncreaseRequest. :type: dict(str, str) """ self._freeform_tags = freeform_tags @property def defined_tags(self): """ **[Required]** Gets the defined_tags of this LimitsIncreaseRequest. 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 LimitsIncreaseRequest. :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 LimitsIncreaseRequest. 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 LimitsIncreaseRequest. :type: dict(str, dict(str, object)) """ self._defined_tags = defined_tags @property def system_tags(self): """ Gets the system_tags of this LimitsIncreaseRequest. 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 LimitsIncreaseRequest. :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 LimitsIncreaseRequest. 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 LimitsIncreaseRequest. :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