oci.LogAnalytics.NamespaceScheduledTask
This resource provides the Namespace Scheduled Task resource in Oracle Cloud Infrastructure Log Analytics service.
Schedule a task as specified and return task info.
Example Usage
Coming soon!
Coming soon!
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.LogAnalytics.NamespaceScheduledTask;
import com.pulumi.oci.LogAnalytics.NamespaceScheduledTaskArgs;
import com.pulumi.oci.LogAnalytics.inputs.NamespaceScheduledTaskActionArgs;
import com.pulumi.oci.LogAnalytics.inputs.NamespaceScheduledTaskSchedulesArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var testNamespaceScheduledTask = new NamespaceScheduledTask("testNamespaceScheduledTask", NamespaceScheduledTaskArgs.builder()
.compartmentId(var_.compartment_id())
.kind(var_.namespace_scheduled_task_kind())
.namespace(var_.namespace_scheduled_task_namespace())
.action(NamespaceScheduledTaskActionArgs.builder()
.type(var_.namespace_scheduled_task_action_type())
.compartmentIdInSubtree(var_.namespace_scheduled_task_action_compartment_id_in_subtree())
.dataType(var_.namespace_scheduled_task_action_data_type())
.purgeCompartmentId(oci_identity_compartment.test_compartment().id())
.purgeDuration(var_.namespace_scheduled_task_action_purge_duration())
.queryString(var_.namespace_scheduled_task_action_query_string())
.savedSearchId(oci_log_analytics_saved_search.test_saved_search().id())
.build())
.definedTags(Map.of("foo-namespace.bar-key", "value"))
.displayName(var_.namespace_scheduled_task_display_name())
.freeformTags(Map.of("bar-key", "value"))
.savedSearchId(oci_log_analytics_saved_search.test_saved_search().id())
.schedules(NamespaceScheduledTaskSchedulesArgs.builder()
.type(var_.namespace_scheduled_task_schedules_type())
.expression(var_.namespace_scheduled_task_schedules_expression())
.misfirePolicy(var_.namespace_scheduled_task_schedules_misfire_policy())
.recurringInterval(var_.namespace_scheduled_task_schedules_recurring_interval())
.repeatCount(var_.namespace_scheduled_task_schedules_repeat_count())
.timeZone(var_.namespace_scheduled_task_schedules_time_zone())
.build())
.taskType(var_.namespace_scheduled_task_task_type())
.build());
}
}
Coming soon!
Coming soon!
resources:
testNamespaceScheduledTask:
type: oci:LogAnalytics:NamespaceScheduledTask
properties:
#Required
compartmentId: ${var.compartment_id}
kind: ${var.namespace_scheduled_task_kind}
namespace: ${var.namespace_scheduled_task_namespace}
action:
type: ${var.namespace_scheduled_task_action_type}
compartmentIdInSubtree: ${var.namespace_scheduled_task_action_compartment_id_in_subtree}
dataType: ${var.namespace_scheduled_task_action_data_type}
purgeCompartmentId: ${oci_identity_compartment.test_compartment.id}
purgeDuration: ${var.namespace_scheduled_task_action_purge_duration}
queryString: ${var.namespace_scheduled_task_action_query_string}
savedSearchId: ${oci_log_analytics_saved_search.test_saved_search.id}
definedTags:
foo-namespace.bar-key: value
displayName: ${var.namespace_scheduled_task_display_name}
freeformTags:
bar-key: value
savedSearchId: ${oci_log_analytics_saved_search.test_saved_search.id}
schedules:
type: ${var.namespace_scheduled_task_schedules_type}
expression: ${var.namespace_scheduled_task_schedules_expression}
misfirePolicy: ${var.namespace_scheduled_task_schedules_misfire_policy}
recurringInterval: ${var.namespace_scheduled_task_schedules_recurring_interval}
repeatCount: ${var.namespace_scheduled_task_schedules_repeat_count}
timeZone: ${var.namespace_scheduled_task_schedules_time_zone}
taskType: ${var.namespace_scheduled_task_task_type}
Create NamespaceScheduledTask Resource
new NamespaceScheduledTask(name: string, args: NamespaceScheduledTaskArgs, opts?: CustomResourceOptions);
@overload
def NamespaceScheduledTask(resource_name: str,
opts: Optional[ResourceOptions] = None,
action: Optional[_loganalytics.NamespaceScheduledTaskActionArgs] = None,
compartment_id: Optional[str] = None,
defined_tags: Optional[Mapping[str, Any]] = None,
display_name: Optional[str] = None,
freeform_tags: Optional[Mapping[str, Any]] = None,
kind: Optional[str] = None,
namespace: Optional[str] = None,
saved_search_id: Optional[str] = None,
schedules: Optional[_loganalytics.NamespaceScheduledTaskSchedulesArgs] = None,
task_type: Optional[str] = None)
@overload
def NamespaceScheduledTask(resource_name: str,
args: NamespaceScheduledTaskArgs,
opts: Optional[ResourceOptions] = None)
func NewNamespaceScheduledTask(ctx *Context, name string, args NamespaceScheduledTaskArgs, opts ...ResourceOption) (*NamespaceScheduledTask, error)
public NamespaceScheduledTask(string name, NamespaceScheduledTaskArgs args, CustomResourceOptions? opts = null)
public NamespaceScheduledTask(String name, NamespaceScheduledTaskArgs args)
public NamespaceScheduledTask(String name, NamespaceScheduledTaskArgs args, CustomResourceOptions options)
type: oci:LogAnalytics:NamespaceScheduledTask
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args NamespaceScheduledTaskArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args NamespaceScheduledTaskArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args NamespaceScheduledTaskArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args NamespaceScheduledTaskArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args NamespaceScheduledTaskArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
NamespaceScheduledTask Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The NamespaceScheduledTask resource accepts the following input properties:
- Action
Namespace
Scheduled Task Action Args Action for scheduled task.
- Compartment
Id string (Updatable) Compartment Identifier [OCID] (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
- Kind string
Discriminator.
- Namespace string
The Logging Analytics namespace used for the request.
- Schedules
Namespace
Scheduled Task Schedules Args (Updatable) Schedules, typically a single schedule. Note there may only be a single schedule for SAVED_SEARCH and PURGE scheduled tasks.
- Task
Type string Task type.
- Dictionary<string, object>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Display
Name string (Updatable) A user-friendly name that is changeable and that does not have to be unique. Format: a leading alphanumeric, followed by zero or more alphanumerics, underscores, spaces, backslashes, or hyphens in any order). No trailing spaces allowed.
- Dictionary<string, object>
(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- Saved
Search stringId The ManagementSavedSearch id [OCID] to be accelerated.
- Action
Namespace
Scheduled Task Action Args Action for scheduled task.
- Compartment
Id string (Updatable) Compartment Identifier [OCID] (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
- Kind string
Discriminator.
- Namespace string
The Logging Analytics namespace used for the request.
- Schedules
Namespace
Scheduled Task Schedules Args (Updatable) Schedules, typically a single schedule. Note there may only be a single schedule for SAVED_SEARCH and PURGE scheduled tasks.
- Task
Type string Task type.
- map[string]interface{}
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Display
Name string (Updatable) A user-friendly name that is changeable and that does not have to be unique. Format: a leading alphanumeric, followed by zero or more alphanumerics, underscores, spaces, backslashes, or hyphens in any order). No trailing spaces allowed.
- map[string]interface{}
(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- Saved
Search stringId The ManagementSavedSearch id [OCID] to be accelerated.
- action
Namespace
Scheduled Task Action Args Action for scheduled task.
- compartment
Id String (Updatable) Compartment Identifier [OCID] (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
- kind String
Discriminator.
- namespace String
The Logging Analytics namespace used for the request.
- schedules
Namespace
Scheduled Task Schedules Args (Updatable) Schedules, typically a single schedule. Note there may only be a single schedule for SAVED_SEARCH and PURGE scheduled tasks.
- task
Type String Task type.
- Map<String,Object>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- display
Name String (Updatable) A user-friendly name that is changeable and that does not have to be unique. Format: a leading alphanumeric, followed by zero or more alphanumerics, underscores, spaces, backslashes, or hyphens in any order). No trailing spaces allowed.
- Map<String,Object>
(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- saved
Search StringId The ManagementSavedSearch id [OCID] to be accelerated.
- action
Namespace
Scheduled Task Action Args Action for scheduled task.
- compartment
Id string (Updatable) Compartment Identifier [OCID] (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
- kind string
Discriminator.
- namespace string
The Logging Analytics namespace used for the request.
- schedules
Namespace
Scheduled Task Schedules Args (Updatable) Schedules, typically a single schedule. Note there may only be a single schedule for SAVED_SEARCH and PURGE scheduled tasks.
- task
Type string Task type.
- {[key: string]: any}
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- display
Name string (Updatable) A user-friendly name that is changeable and that does not have to be unique. Format: a leading alphanumeric, followed by zero or more alphanumerics, underscores, spaces, backslashes, or hyphens in any order). No trailing spaces allowed.
- {[key: string]: any}
(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- saved
Search stringId The ManagementSavedSearch id [OCID] to be accelerated.
- action
Namespace
Scheduled Task Action Args Action for scheduled task.
- compartment_
id str (Updatable) Compartment Identifier [OCID] (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
- kind str
Discriminator.
- namespace str
The Logging Analytics namespace used for the request.
- schedules
Namespace
Scheduled Task Schedules Args (Updatable) Schedules, typically a single schedule. Note there may only be a single schedule for SAVED_SEARCH and PURGE scheduled tasks.
- task_
type str Task type.
- Mapping[str, Any]
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- display_
name str (Updatable) A user-friendly name that is changeable and that does not have to be unique. Format: a leading alphanumeric, followed by zero or more alphanumerics, underscores, spaces, backslashes, or hyphens in any order). No trailing spaces allowed.
- Mapping[str, Any]
(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- saved_
search_ strid The ManagementSavedSearch id [OCID] to be accelerated.
- action Property Map
Action for scheduled task.
- compartment
Id String (Updatable) Compartment Identifier [OCID] (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
- kind String
Discriminator.
- namespace String
The Logging Analytics namespace used for the request.
- schedules Property Map
(Updatable) Schedules, typically a single schedule. Note there may only be a single schedule for SAVED_SEARCH and PURGE scheduled tasks.
- task
Type String Task type.
- Map<Any>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- display
Name String (Updatable) A user-friendly name that is changeable and that does not have to be unique. Format: a leading alphanumeric, followed by zero or more alphanumerics, underscores, spaces, backslashes, or hyphens in any order). No trailing spaces allowed.
- Map<Any>
(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- saved
Search StringId The ManagementSavedSearch id [OCID] to be accelerated.
Outputs
All input properties are implicitly available as output properties. Additionally, the NamespaceScheduledTask resource produces the following output properties:
- Id string
The provider-assigned unique ID for this managed resource.
- Num
Occurrences string Number of execution occurrences.
- Scheduled
Task stringId - State string
The current state of the scheduled task.
- Task
Status string Status of the scheduled task. - PURGE_RESOURCE_NOT_FOUND
- Time
Created string The date and time the scheduled task was created, in the format defined by RFC3339.
- Time
Updated string The date and time the scheduled task was last updated, in the format defined by RFC3339.
- Work
Request stringId most recent Work Request Identifier [OCID] (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for the asynchronous request.
- Id string
The provider-assigned unique ID for this managed resource.
- Num
Occurrences string Number of execution occurrences.
- Scheduled
Task stringId - State string
The current state of the scheduled task.
- Task
Status string Status of the scheduled task. - PURGE_RESOURCE_NOT_FOUND
- Time
Created string The date and time the scheduled task was created, in the format defined by RFC3339.
- Time
Updated string The date and time the scheduled task was last updated, in the format defined by RFC3339.
- Work
Request stringId most recent Work Request Identifier [OCID] (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for the asynchronous request.
- id String
The provider-assigned unique ID for this managed resource.
- num
Occurrences String Number of execution occurrences.
- scheduled
Task StringId - state String
The current state of the scheduled task.
- task
Status String Status of the scheduled task. - PURGE_RESOURCE_NOT_FOUND
- time
Created String The date and time the scheduled task was created, in the format defined by RFC3339.
- time
Updated String The date and time the scheduled task was last updated, in the format defined by RFC3339.
- work
Request StringId most recent Work Request Identifier [OCID] (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for the asynchronous request.
- id string
The provider-assigned unique ID for this managed resource.
- num
Occurrences string Number of execution occurrences.
- scheduled
Task stringId - state string
The current state of the scheduled task.
- task
Status string Status of the scheduled task. - PURGE_RESOURCE_NOT_FOUND
- time
Created string The date and time the scheduled task was created, in the format defined by RFC3339.
- time
Updated string The date and time the scheduled task was last updated, in the format defined by RFC3339.
- work
Request stringId most recent Work Request Identifier [OCID] (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for the asynchronous request.
- id str
The provider-assigned unique ID for this managed resource.
- num_
occurrences str Number of execution occurrences.
- scheduled_
task_ strid - state str
The current state of the scheduled task.
- task_
status str Status of the scheduled task. - PURGE_RESOURCE_NOT_FOUND
- time_
created str The date and time the scheduled task was created, in the format defined by RFC3339.
- time_
updated str The date and time the scheduled task was last updated, in the format defined by RFC3339.
- work_
request_ strid most recent Work Request Identifier [OCID] (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for the asynchronous request.
- id String
The provider-assigned unique ID for this managed resource.
- num
Occurrences String Number of execution occurrences.
- scheduled
Task StringId - state String
The current state of the scheduled task.
- task
Status String Status of the scheduled task. - PURGE_RESOURCE_NOT_FOUND
- time
Created String The date and time the scheduled task was created, in the format defined by RFC3339.
- time
Updated String The date and time the scheduled task was last updated, in the format defined by RFC3339.
- work
Request StringId most recent Work Request Identifier [OCID] (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for the asynchronous request.
Look up Existing NamespaceScheduledTask Resource
Get an existing NamespaceScheduledTask resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: NamespaceScheduledTaskState, opts?: CustomResourceOptions): NamespaceScheduledTask
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
action: Optional[_loganalytics.NamespaceScheduledTaskActionArgs] = None,
compartment_id: Optional[str] = None,
defined_tags: Optional[Mapping[str, Any]] = None,
display_name: Optional[str] = None,
freeform_tags: Optional[Mapping[str, Any]] = None,
kind: Optional[str] = None,
namespace: Optional[str] = None,
num_occurrences: Optional[str] = None,
saved_search_id: Optional[str] = None,
scheduled_task_id: Optional[str] = None,
schedules: Optional[_loganalytics.NamespaceScheduledTaskSchedulesArgs] = None,
state: Optional[str] = None,
task_status: Optional[str] = None,
task_type: Optional[str] = None,
time_created: Optional[str] = None,
time_updated: Optional[str] = None,
work_request_id: Optional[str] = None) -> NamespaceScheduledTask
func GetNamespaceScheduledTask(ctx *Context, name string, id IDInput, state *NamespaceScheduledTaskState, opts ...ResourceOption) (*NamespaceScheduledTask, error)
public static NamespaceScheduledTask Get(string name, Input<string> id, NamespaceScheduledTaskState? state, CustomResourceOptions? opts = null)
public static NamespaceScheduledTask get(String name, Output<String> id, NamespaceScheduledTaskState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Action
Namespace
Scheduled Task Action Args Action for scheduled task.
- Compartment
Id string (Updatable) Compartment Identifier [OCID] (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
- Dictionary<string, object>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Display
Name string (Updatable) A user-friendly name that is changeable and that does not have to be unique. Format: a leading alphanumeric, followed by zero or more alphanumerics, underscores, spaces, backslashes, or hyphens in any order). No trailing spaces allowed.
- Dictionary<string, object>
(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- Kind string
Discriminator.
- Namespace string
The Logging Analytics namespace used for the request.
- Num
Occurrences string Number of execution occurrences.
- Saved
Search stringId The ManagementSavedSearch id [OCID] to be accelerated.
- Scheduled
Task stringId - Schedules
Namespace
Scheduled Task Schedules Args (Updatable) Schedules, typically a single schedule. Note there may only be a single schedule for SAVED_SEARCH and PURGE scheduled tasks.
- State string
The current state of the scheduled task.
- Task
Status string Status of the scheduled task. - PURGE_RESOURCE_NOT_FOUND
- Task
Type string Task type.
- Time
Created string The date and time the scheduled task was created, in the format defined by RFC3339.
- Time
Updated string The date and time the scheduled task was last updated, in the format defined by RFC3339.
- Work
Request stringId most recent Work Request Identifier [OCID] (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for the asynchronous request.
- Action
Namespace
Scheduled Task Action Args Action for scheduled task.
- Compartment
Id string (Updatable) Compartment Identifier [OCID] (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
- map[string]interface{}
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Display
Name string (Updatable) A user-friendly name that is changeable and that does not have to be unique. Format: a leading alphanumeric, followed by zero or more alphanumerics, underscores, spaces, backslashes, or hyphens in any order). No trailing spaces allowed.
- map[string]interface{}
(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- Kind string
Discriminator.
- Namespace string
The Logging Analytics namespace used for the request.
- Num
Occurrences string Number of execution occurrences.
- Saved
Search stringId The ManagementSavedSearch id [OCID] to be accelerated.
- Scheduled
Task stringId - Schedules
Namespace
Scheduled Task Schedules Args (Updatable) Schedules, typically a single schedule. Note there may only be a single schedule for SAVED_SEARCH and PURGE scheduled tasks.
- State string
The current state of the scheduled task.
- Task
Status string Status of the scheduled task. - PURGE_RESOURCE_NOT_FOUND
- Task
Type string Task type.
- Time
Created string The date and time the scheduled task was created, in the format defined by RFC3339.
- Time
Updated string The date and time the scheduled task was last updated, in the format defined by RFC3339.
- Work
Request stringId most recent Work Request Identifier [OCID] (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for the asynchronous request.
- action
Namespace
Scheduled Task Action Args Action for scheduled task.
- compartment
Id String (Updatable) Compartment Identifier [OCID] (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
- Map<String,Object>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- display
Name String (Updatable) A user-friendly name that is changeable and that does not have to be unique. Format: a leading alphanumeric, followed by zero or more alphanumerics, underscores, spaces, backslashes, or hyphens in any order). No trailing spaces allowed.
- Map<String,Object>
(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- kind String
Discriminator.
- namespace String
The Logging Analytics namespace used for the request.
- num
Occurrences String Number of execution occurrences.
- saved
Search StringId The ManagementSavedSearch id [OCID] to be accelerated.
- scheduled
Task StringId - schedules
Namespace
Scheduled Task Schedules Args (Updatable) Schedules, typically a single schedule. Note there may only be a single schedule for SAVED_SEARCH and PURGE scheduled tasks.
- state String
The current state of the scheduled task.
- task
Status String Status of the scheduled task. - PURGE_RESOURCE_NOT_FOUND
- task
Type String Task type.
- time
Created String The date and time the scheduled task was created, in the format defined by RFC3339.
- time
Updated String The date and time the scheduled task was last updated, in the format defined by RFC3339.
- work
Request StringId most recent Work Request Identifier [OCID] (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for the asynchronous request.
- action
Namespace
Scheduled Task Action Args Action for scheduled task.
- compartment
Id string (Updatable) Compartment Identifier [OCID] (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
- {[key: string]: any}
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- display
Name string (Updatable) A user-friendly name that is changeable and that does not have to be unique. Format: a leading alphanumeric, followed by zero or more alphanumerics, underscores, spaces, backslashes, or hyphens in any order). No trailing spaces allowed.
- {[key: string]: any}
(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- kind string
Discriminator.
- namespace string
The Logging Analytics namespace used for the request.
- num
Occurrences string Number of execution occurrences.
- saved
Search stringId The ManagementSavedSearch id [OCID] to be accelerated.
- scheduled
Task stringId - schedules
Namespace
Scheduled Task Schedules Args (Updatable) Schedules, typically a single schedule. Note there may only be a single schedule for SAVED_SEARCH and PURGE scheduled tasks.
- state string
The current state of the scheduled task.
- task
Status string Status of the scheduled task. - PURGE_RESOURCE_NOT_FOUND
- task
Type string Task type.
- time
Created string The date and time the scheduled task was created, in the format defined by RFC3339.
- time
Updated string The date and time the scheduled task was last updated, in the format defined by RFC3339.
- work
Request stringId most recent Work Request Identifier [OCID] (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for the asynchronous request.
- action
Namespace
Scheduled Task Action Args Action for scheduled task.
- compartment_
id str (Updatable) Compartment Identifier [OCID] (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
- Mapping[str, Any]
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- display_
name str (Updatable) A user-friendly name that is changeable and that does not have to be unique. Format: a leading alphanumeric, followed by zero or more alphanumerics, underscores, spaces, backslashes, or hyphens in any order). No trailing spaces allowed.
- Mapping[str, Any]
(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- kind str
Discriminator.
- namespace str
The Logging Analytics namespace used for the request.
- num_
occurrences str Number of execution occurrences.
- saved_
search_ strid The ManagementSavedSearch id [OCID] to be accelerated.
- scheduled_
task_ strid - schedules
Namespace
Scheduled Task Schedules Args (Updatable) Schedules, typically a single schedule. Note there may only be a single schedule for SAVED_SEARCH and PURGE scheduled tasks.
- state str
The current state of the scheduled task.
- task_
status str Status of the scheduled task. - PURGE_RESOURCE_NOT_FOUND
- task_
type str Task type.
- time_
created str The date and time the scheduled task was created, in the format defined by RFC3339.
- time_
updated str The date and time the scheduled task was last updated, in the format defined by RFC3339.
- work_
request_ strid most recent Work Request Identifier [OCID] (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for the asynchronous request.
- action Property Map
Action for scheduled task.
- compartment
Id String (Updatable) Compartment Identifier [OCID] (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
- Map<Any>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- display
Name String (Updatable) A user-friendly name that is changeable and that does not have to be unique. Format: a leading alphanumeric, followed by zero or more alphanumerics, underscores, spaces, backslashes, or hyphens in any order). No trailing spaces allowed.
- Map<Any>
(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- kind String
Discriminator.
- namespace String
The Logging Analytics namespace used for the request.
- num
Occurrences String Number of execution occurrences.
- saved
Search StringId The ManagementSavedSearch id [OCID] to be accelerated.
- scheduled
Task StringId - schedules Property Map
(Updatable) Schedules, typically a single schedule. Note there may only be a single schedule for SAVED_SEARCH and PURGE scheduled tasks.
- state String
The current state of the scheduled task.
- task
Status String Status of the scheduled task. - PURGE_RESOURCE_NOT_FOUND
- task
Type String Task type.
- time
Created String The date and time the scheduled task was created, in the format defined by RFC3339.
- time
Updated String The date and time the scheduled task was last updated, in the format defined by RFC3339.
- work
Request StringId most recent Work Request Identifier [OCID] (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for the asynchronous request.
Supporting Types
NamespaceScheduledTaskAction
- Type string
(Updatable) Schedule type discriminator.
- Compartment
Id boolIn Subtree if true, purge child compartments data
- Data
Type string the type of the log data to be purged
- Purge
Compartment stringId the compartment OCID under which the data will be purged
- Purge
Duration string The duration of data to be retained, which is used to calculate the timeDataEnded when the task fires. The value should be negative. Purge duration in ISO 8601 extended format as described in https://en.wikipedia.org/wiki/ISO_8601#Durations. The largest supported unit is D, e.g. -P365D (not -P1Y) or -P14D (not -P2W).
- Query
String string Purge query string.
- Saved
Search stringId The ManagementSavedSearch id [OCID] to be accelerated.
- Type string
(Updatable) Schedule type discriminator.
- Compartment
Id boolIn Subtree if true, purge child compartments data
- Data
Type string the type of the log data to be purged
- Purge
Compartment stringId the compartment OCID under which the data will be purged
- Purge
Duration string The duration of data to be retained, which is used to calculate the timeDataEnded when the task fires. The value should be negative. Purge duration in ISO 8601 extended format as described in https://en.wikipedia.org/wiki/ISO_8601#Durations. The largest supported unit is D, e.g. -P365D (not -P1Y) or -P14D (not -P2W).
- Query
String string Purge query string.
- Saved
Search stringId The ManagementSavedSearch id [OCID] to be accelerated.
- type String
(Updatable) Schedule type discriminator.
- compartment
Id BooleanIn Subtree if true, purge child compartments data
- data
Type String the type of the log data to be purged
- purge
Compartment StringId the compartment OCID under which the data will be purged
- purge
Duration String The duration of data to be retained, which is used to calculate the timeDataEnded when the task fires. The value should be negative. Purge duration in ISO 8601 extended format as described in https://en.wikipedia.org/wiki/ISO_8601#Durations. The largest supported unit is D, e.g. -P365D (not -P1Y) or -P14D (not -P2W).
- query
String String Purge query string.
- saved
Search StringId The ManagementSavedSearch id [OCID] to be accelerated.
- type string
(Updatable) Schedule type discriminator.
- compartment
Id booleanIn Subtree if true, purge child compartments data
- data
Type string the type of the log data to be purged
- purge
Compartment stringId the compartment OCID under which the data will be purged
- purge
Duration string The duration of data to be retained, which is used to calculate the timeDataEnded when the task fires. The value should be negative. Purge duration in ISO 8601 extended format as described in https://en.wikipedia.org/wiki/ISO_8601#Durations. The largest supported unit is D, e.g. -P365D (not -P1Y) or -P14D (not -P2W).
- query
String string Purge query string.
- saved
Search stringId The ManagementSavedSearch id [OCID] to be accelerated.
- type str
(Updatable) Schedule type discriminator.
- compartment_
id_ boolin_ subtree if true, purge child compartments data
- data_
type str the type of the log data to be purged
- purge_
compartment_ strid the compartment OCID under which the data will be purged
- purge_
duration str The duration of data to be retained, which is used to calculate the timeDataEnded when the task fires. The value should be negative. Purge duration in ISO 8601 extended format as described in https://en.wikipedia.org/wiki/ISO_8601#Durations. The largest supported unit is D, e.g. -P365D (not -P1Y) or -P14D (not -P2W).
- query_
string str Purge query string.
- saved_
search_ strid The ManagementSavedSearch id [OCID] to be accelerated.
- type String
(Updatable) Schedule type discriminator.
- compartment
Id BooleanIn Subtree if true, purge child compartments data
- data
Type String the type of the log data to be purged
- purge
Compartment StringId the compartment OCID under which the data will be purged
- purge
Duration String The duration of data to be retained, which is used to calculate the timeDataEnded when the task fires. The value should be negative. Purge duration in ISO 8601 extended format as described in https://en.wikipedia.org/wiki/ISO_8601#Durations. The largest supported unit is D, e.g. -P365D (not -P1Y) or -P14D (not -P2W).
- query
String String Purge query string.
- saved
Search StringId The ManagementSavedSearch id [OCID] to be accelerated.
NamespaceScheduledTaskSchedules
NamespaceScheduledTaskSchedulesSchedule
- Type string
(Updatable) Schedule type discriminator.
- Expression string
(Updatable) Value in cron format.
- Misfire
Policy string (Updatable) Schedule misfire retry policy.
- Recurring
Interval string (Updatable) Recurring interval in ISO 8601 extended format as described in https://en.wikipedia.org/wiki/ISO_8601#Durations. The largest supported unit is D, e.g. P14D (not P2W). The value must be at least 5 minutes (PT5M) and at most 3 weeks (P21D or PT30240M).
- Repeat
Count int (Updatable) Number of times (0-based) to execute until auto-stop. Default value -1 will execute indefinitely. Value 0 will execute once.
- Time
Zone string (Updatable) Time zone, by default UTC.
- Type string
(Updatable) Schedule type discriminator.
- Expression string
(Updatable) Value in cron format.
- Misfire
Policy string (Updatable) Schedule misfire retry policy.
- Recurring
Interval string (Updatable) Recurring interval in ISO 8601 extended format as described in https://en.wikipedia.org/wiki/ISO_8601#Durations. The largest supported unit is D, e.g. P14D (not P2W). The value must be at least 5 minutes (PT5M) and at most 3 weeks (P21D or PT30240M).
- Repeat
Count int (Updatable) Number of times (0-based) to execute until auto-stop. Default value -1 will execute indefinitely. Value 0 will execute once.
- Time
Zone string (Updatable) Time zone, by default UTC.
- type String
(Updatable) Schedule type discriminator.
- expression String
(Updatable) Value in cron format.
- misfire
Policy String (Updatable) Schedule misfire retry policy.
- recurring
Interval String (Updatable) Recurring interval in ISO 8601 extended format as described in https://en.wikipedia.org/wiki/ISO_8601#Durations. The largest supported unit is D, e.g. P14D (not P2W). The value must be at least 5 minutes (PT5M) and at most 3 weeks (P21D or PT30240M).
- repeat
Count Integer (Updatable) Number of times (0-based) to execute until auto-stop. Default value -1 will execute indefinitely. Value 0 will execute once.
- time
Zone String (Updatable) Time zone, by default UTC.
- type string
(Updatable) Schedule type discriminator.
- expression string
(Updatable) Value in cron format.
- misfire
Policy string (Updatable) Schedule misfire retry policy.
- recurring
Interval string (Updatable) Recurring interval in ISO 8601 extended format as described in https://en.wikipedia.org/wiki/ISO_8601#Durations. The largest supported unit is D, e.g. P14D (not P2W). The value must be at least 5 minutes (PT5M) and at most 3 weeks (P21D or PT30240M).
- repeat
Count number (Updatable) Number of times (0-based) to execute until auto-stop. Default value -1 will execute indefinitely. Value 0 will execute once.
- time
Zone string (Updatable) Time zone, by default UTC.
- type str
(Updatable) Schedule type discriminator.
- expression str
(Updatable) Value in cron format.
- misfire_
policy str (Updatable) Schedule misfire retry policy.
- recurring_
interval str (Updatable) Recurring interval in ISO 8601 extended format as described in https://en.wikipedia.org/wiki/ISO_8601#Durations. The largest supported unit is D, e.g. P14D (not P2W). The value must be at least 5 minutes (PT5M) and at most 3 weeks (P21D or PT30240M).
- repeat_
count int (Updatable) Number of times (0-based) to execute until auto-stop. Default value -1 will execute indefinitely. Value 0 will execute once.
- time_
zone str (Updatable) Time zone, by default UTC.
- type String
(Updatable) Schedule type discriminator.
- expression String
(Updatable) Value in cron format.
- misfire
Policy String (Updatable) Schedule misfire retry policy.
- recurring
Interval String (Updatable) Recurring interval in ISO 8601 extended format as described in https://en.wikipedia.org/wiki/ISO_8601#Durations. The largest supported unit is D, e.g. P14D (not P2W). The value must be at least 5 minutes (PT5M) and at most 3 weeks (P21D or PT30240M).
- repeat
Count Number (Updatable) Number of times (0-based) to execute until auto-stop. Default value -1 will execute indefinitely. Value 0 will execute once.
- time
Zone String (Updatable) Time zone, by default UTC.
Import
NamespaceScheduledTasks can be imported using the id
, e.g.
$ pulumi import oci:LogAnalytics/namespaceScheduledTask:NamespaceScheduledTask test_namespace_scheduled_task "namespaces/{namespaceName}/scheduledTasks/{scheduledTaskId}"
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
This Pulumi package is based on the
oci
Terraform Provider.