File: //lib/mysqlsh/lib/python3.8/site-packages/oci/usage_api/models/create_schedule_details.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: 20200107
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 CreateScheduleDetails(object):
"""
The saved schedule.
"""
#: A constant which can be used with the output_file_format property of a CreateScheduleDetails.
#: This constant has a value of "CSV"
OUTPUT_FILE_FORMAT_CSV = "CSV"
#: A constant which can be used with the output_file_format property of a CreateScheduleDetails.
#: This constant has a value of "PDF"
OUTPUT_FILE_FORMAT_PDF = "PDF"
def __init__(self, **kwargs):
"""
Initializes a new CreateScheduleDetails object with values from keyword arguments.
The following keyword arguments are supported (corresponding to the getters/setters of this class):
:param name:
The value to assign to the name property of this CreateScheduleDetails.
:type name: str
:param compartment_id:
The value to assign to the compartment_id property of this CreateScheduleDetails.
:type compartment_id: str
:param description:
The value to assign to the description property of this CreateScheduleDetails.
:type description: str
:param output_file_format:
The value to assign to the output_file_format property of this CreateScheduleDetails.
Allowed values for this property are: "CSV", "PDF"
:type output_file_format: str
:param saved_report_id:
The value to assign to the saved_report_id property of this CreateScheduleDetails.
:type saved_report_id: str
:param result_location:
The value to assign to the result_location property of this CreateScheduleDetails.
:type result_location: oci.usage_api.models.ResultLocation
:param schedule_recurrences:
The value to assign to the schedule_recurrences property of this CreateScheduleDetails.
:type schedule_recurrences: str
:param time_scheduled:
The value to assign to the time_scheduled property of this CreateScheduleDetails.
:type time_scheduled: datetime
:param query_properties:
The value to assign to the query_properties property of this CreateScheduleDetails.
:type query_properties: oci.usage_api.models.QueryProperties
:param freeform_tags:
The value to assign to the freeform_tags property of this CreateScheduleDetails.
:type freeform_tags: dict(str, str)
:param defined_tags:
The value to assign to the defined_tags property of this CreateScheduleDetails.
:type defined_tags: dict(str, dict(str, object))
"""
self.swagger_types = {
'name': 'str',
'compartment_id': 'str',
'description': 'str',
'output_file_format': 'str',
'saved_report_id': 'str',
'result_location': 'ResultLocation',
'schedule_recurrences': 'str',
'time_scheduled': 'datetime',
'query_properties': 'QueryProperties',
'freeform_tags': 'dict(str, str)',
'defined_tags': 'dict(str, dict(str, object))'
}
self.attribute_map = {
'name': 'name',
'compartment_id': 'compartmentId',
'description': 'description',
'output_file_format': 'outputFileFormat',
'saved_report_id': 'savedReportId',
'result_location': 'resultLocation',
'schedule_recurrences': 'scheduleRecurrences',
'time_scheduled': 'timeScheduled',
'query_properties': 'queryProperties',
'freeform_tags': 'freeformTags',
'defined_tags': 'definedTags'
}
self._name = None
self._compartment_id = None
self._description = None
self._output_file_format = None
self._saved_report_id = None
self._result_location = None
self._schedule_recurrences = None
self._time_scheduled = None
self._query_properties = None
self._freeform_tags = None
self._defined_tags = None
@property
def name(self):
"""
**[Required]** Gets the name of this CreateScheduleDetails.
The unique name of the user-created schedule.
:return: The name of this CreateScheduleDetails.
:rtype: str
"""
return self._name
@name.setter
def name(self, name):
"""
Sets the name of this CreateScheduleDetails.
The unique name of the user-created schedule.
:param name: The name of this CreateScheduleDetails.
:type: str
"""
self._name = name
@property
def compartment_id(self):
"""
**[Required]** Gets the compartment_id of this CreateScheduleDetails.
The customer tenancy.
:return: The compartment_id of this CreateScheduleDetails.
:rtype: str
"""
return self._compartment_id
@compartment_id.setter
def compartment_id(self, compartment_id):
"""
Sets the compartment_id of this CreateScheduleDetails.
The customer tenancy.
:param compartment_id: The compartment_id of this CreateScheduleDetails.
:type: str
"""
self._compartment_id = compartment_id
@property
def description(self):
"""
Gets the description of this CreateScheduleDetails.
The description of the schedule.
:return: The description of this CreateScheduleDetails.
:rtype: str
"""
return self._description
@description.setter
def description(self, description):
"""
Sets the description of this CreateScheduleDetails.
The description of the schedule.
:param description: The description of this CreateScheduleDetails.
:type: str
"""
self._description = description
@property
def output_file_format(self):
"""
Gets the output_file_format of this CreateScheduleDetails.
Specifies the supported output file format.
Allowed values for this property are: "CSV", "PDF"
:return: The output_file_format of this CreateScheduleDetails.
:rtype: str
"""
return self._output_file_format
@output_file_format.setter
def output_file_format(self, output_file_format):
"""
Sets the output_file_format of this CreateScheduleDetails.
Specifies the supported output file format.
:param output_file_format: The output_file_format of this CreateScheduleDetails.
:type: str
"""
allowed_values = ["CSV", "PDF"]
if not value_allowed_none_or_none_sentinel(output_file_format, allowed_values):
raise ValueError(
f"Invalid value for `output_file_format`, must be None or one of {allowed_values}"
)
self._output_file_format = output_file_format
@property
def saved_report_id(self):
"""
Gets the saved_report_id of this CreateScheduleDetails.
The saved report ID which can also be used to generate a query.
:return: The saved_report_id of this CreateScheduleDetails.
:rtype: str
"""
return self._saved_report_id
@saved_report_id.setter
def saved_report_id(self, saved_report_id):
"""
Sets the saved_report_id of this CreateScheduleDetails.
The saved report ID which can also be used to generate a query.
:param saved_report_id: The saved_report_id of this CreateScheduleDetails.
:type: str
"""
self._saved_report_id = saved_report_id
@property
def result_location(self):
"""
**[Required]** Gets the result_location of this CreateScheduleDetails.
:return: The result_location of this CreateScheduleDetails.
:rtype: oci.usage_api.models.ResultLocation
"""
return self._result_location
@result_location.setter
def result_location(self, result_location):
"""
Sets the result_location of this CreateScheduleDetails.
:param result_location: The result_location of this CreateScheduleDetails.
:type: oci.usage_api.models.ResultLocation
"""
self._result_location = result_location
@property
def schedule_recurrences(self):
"""
**[Required]** Gets the schedule_recurrences of this CreateScheduleDetails.
Specifies the frequency according to when the schedule will be run,
in the x-obmcs-recurring-time format described in `RFC 5545 section 3.3.10`__.
Supported values are : ONE_TIME, DAILY, WEEKLY and MONTHLY.
__ https://datatracker.ietf.org/doc/html/rfc5545#section-3.3.10
:return: The schedule_recurrences of this CreateScheduleDetails.
:rtype: str
"""
return self._schedule_recurrences
@schedule_recurrences.setter
def schedule_recurrences(self, schedule_recurrences):
"""
Sets the schedule_recurrences of this CreateScheduleDetails.
Specifies the frequency according to when the schedule will be run,
in the x-obmcs-recurring-time format described in `RFC 5545 section 3.3.10`__.
Supported values are : ONE_TIME, DAILY, WEEKLY and MONTHLY.
__ https://datatracker.ietf.org/doc/html/rfc5545#section-3.3.10
:param schedule_recurrences: The schedule_recurrences of this CreateScheduleDetails.
:type: str
"""
self._schedule_recurrences = schedule_recurrences
@property
def time_scheduled(self):
"""
**[Required]** Gets the time_scheduled of this CreateScheduleDetails.
The date and time of the first time job execution.
:return: The time_scheduled of this CreateScheduleDetails.
:rtype: datetime
"""
return self._time_scheduled
@time_scheduled.setter
def time_scheduled(self, time_scheduled):
"""
Sets the time_scheduled of this CreateScheduleDetails.
The date and time of the first time job execution.
:param time_scheduled: The time_scheduled of this CreateScheduleDetails.
:type: datetime
"""
self._time_scheduled = time_scheduled
@property
def query_properties(self):
"""
Gets the query_properties of this CreateScheduleDetails.
:return: The query_properties of this CreateScheduleDetails.
:rtype: oci.usage_api.models.QueryProperties
"""
return self._query_properties
@query_properties.setter
def query_properties(self, query_properties):
"""
Sets the query_properties of this CreateScheduleDetails.
:param query_properties: The query_properties of this CreateScheduleDetails.
:type: oci.usage_api.models.QueryProperties
"""
self._query_properties = query_properties
@property
def freeform_tags(self):
"""
Gets the freeform_tags of this CreateScheduleDetails.
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only.
See `Resource Tags`__. Example: `{\"bar-key\": \"value\"}`
__ https://docs.cloud.oracle.com/Content/General/Concepts/resourcetags.htm
:return: The freeform_tags of this CreateScheduleDetails.
:rtype: dict(str, str)
"""
return self._freeform_tags
@freeform_tags.setter
def freeform_tags(self, freeform_tags):
"""
Sets the freeform_tags of this CreateScheduleDetails.
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only.
See `Resource Tags`__. Example: `{\"bar-key\": \"value\"}`
__ https://docs.cloud.oracle.com/Content/General/Concepts/resourcetags.htm
:param freeform_tags: The freeform_tags of this CreateScheduleDetails.
:type: dict(str, str)
"""
self._freeform_tags = freeform_tags
@property
def defined_tags(self):
"""
Gets the defined_tags of this CreateScheduleDetails.
Defined tags for this resource. Each key is predefined and scoped to a namespace. See `Resource Tags`__. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
__ https://docs.cloud.oracle.com/Content/General/Concepts/resourcetags.htm
:return: The defined_tags of this CreateScheduleDetails.
: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 CreateScheduleDetails.
Defined tags for this resource. Each key is predefined and scoped to a namespace. See `Resource Tags`__. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
__ https://docs.cloud.oracle.com/Content/General/Concepts/resourcetags.htm
:param defined_tags: The defined_tags of this CreateScheduleDetails.
:type: dict(str, dict(str, object))
"""
self._defined_tags = defined_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