Oracle Cloud Infrastructure v2.11.0 published on Thursday, Sep 19, 2024 by Pulumi
oci.Functions.getFusionEnvironmentScheduledActivities
Explore with Pulumi AI
This data source provides the list of Fusion Environment Scheduled Activities in Oracle Cloud Infrastructure Fusion Apps service.
Returns a list of ScheduledActivities.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testFusionEnvironmentScheduledActivities = oci.Functions.getFusionEnvironmentScheduledActivities({
fusionEnvironmentId: testFusionEnvironment.id,
displayName: fusionEnvironmentScheduledActivityDisplayName,
runCycle: fusionEnvironmentScheduledActivityRunCycle,
state: fusionEnvironmentScheduledActivityState,
timeExpectedFinishLessThanOrEqualTo: fusionEnvironmentScheduledActivityTimeExpectedFinishLessThanOrEqualTo,
timeScheduledStartGreaterThanOrEqualTo: fusionEnvironmentScheduledActivityTimeScheduledStartGreaterThanOrEqualTo,
});
import pulumi
import pulumi_oci as oci
test_fusion_environment_scheduled_activities = oci.Functions.get_fusion_environment_scheduled_activities(fusion_environment_id=test_fusion_environment["id"],
display_name=fusion_environment_scheduled_activity_display_name,
run_cycle=fusion_environment_scheduled_activity_run_cycle,
state=fusion_environment_scheduled_activity_state,
time_expected_finish_less_than_or_equal_to=fusion_environment_scheduled_activity_time_expected_finish_less_than_or_equal_to,
time_scheduled_start_greater_than_or_equal_to=fusion_environment_scheduled_activity_time_scheduled_start_greater_than_or_equal_to)
package main
import (
"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/Functions"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := Functions.GetFusionEnvironmentScheduledActivities(ctx, &functions.GetFusionEnvironmentScheduledActivitiesArgs{
FusionEnvironmentId: testFusionEnvironment.Id,
DisplayName: pulumi.StringRef(fusionEnvironmentScheduledActivityDisplayName),
RunCycle: pulumi.StringRef(fusionEnvironmentScheduledActivityRunCycle),
State: pulumi.StringRef(fusionEnvironmentScheduledActivityState),
TimeExpectedFinishLessThanOrEqualTo: pulumi.StringRef(fusionEnvironmentScheduledActivityTimeExpectedFinishLessThanOrEqualTo),
TimeScheduledStartGreaterThanOrEqualTo: pulumi.StringRef(fusionEnvironmentScheduledActivityTimeScheduledStartGreaterThanOrEqualTo),
}, nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;
return await Deployment.RunAsync(() =>
{
var testFusionEnvironmentScheduledActivities = Oci.Functions.GetFusionEnvironmentScheduledActivities.Invoke(new()
{
FusionEnvironmentId = testFusionEnvironment.Id,
DisplayName = fusionEnvironmentScheduledActivityDisplayName,
RunCycle = fusionEnvironmentScheduledActivityRunCycle,
State = fusionEnvironmentScheduledActivityState,
TimeExpectedFinishLessThanOrEqualTo = fusionEnvironmentScheduledActivityTimeExpectedFinishLessThanOrEqualTo,
TimeScheduledStartGreaterThanOrEqualTo = fusionEnvironmentScheduledActivityTimeScheduledStartGreaterThanOrEqualTo,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.Functions.FunctionsFunctions;
import com.pulumi.oci.Functions.inputs.GetFusionEnvironmentScheduledActivitiesArgs;
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) {
final var testFusionEnvironmentScheduledActivities = FunctionsFunctions.getFusionEnvironmentScheduledActivities(GetFusionEnvironmentScheduledActivitiesArgs.builder()
.fusionEnvironmentId(testFusionEnvironment.id())
.displayName(fusionEnvironmentScheduledActivityDisplayName)
.runCycle(fusionEnvironmentScheduledActivityRunCycle)
.state(fusionEnvironmentScheduledActivityState)
.timeExpectedFinishLessThanOrEqualTo(fusionEnvironmentScheduledActivityTimeExpectedFinishLessThanOrEqualTo)
.timeScheduledStartGreaterThanOrEqualTo(fusionEnvironmentScheduledActivityTimeScheduledStartGreaterThanOrEqualTo)
.build());
}
}
variables:
testFusionEnvironmentScheduledActivities:
fn::invoke:
Function: oci:Functions:getFusionEnvironmentScheduledActivities
Arguments:
fusionEnvironmentId: ${testFusionEnvironment.id}
displayName: ${fusionEnvironmentScheduledActivityDisplayName}
runCycle: ${fusionEnvironmentScheduledActivityRunCycle}
state: ${fusionEnvironmentScheduledActivityState}
timeExpectedFinishLessThanOrEqualTo: ${fusionEnvironmentScheduledActivityTimeExpectedFinishLessThanOrEqualTo}
timeScheduledStartGreaterThanOrEqualTo: ${fusionEnvironmentScheduledActivityTimeScheduledStartGreaterThanOrEqualTo}
Using getFusionEnvironmentScheduledActivities
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getFusionEnvironmentScheduledActivities(args: GetFusionEnvironmentScheduledActivitiesArgs, opts?: InvokeOptions): Promise<GetFusionEnvironmentScheduledActivitiesResult>
function getFusionEnvironmentScheduledActivitiesOutput(args: GetFusionEnvironmentScheduledActivitiesOutputArgs, opts?: InvokeOptions): Output<GetFusionEnvironmentScheduledActivitiesResult>
def get_fusion_environment_scheduled_activities(display_name: Optional[str] = None,
filters: Optional[Sequence[_functions.GetFusionEnvironmentScheduledActivitiesFilter]] = None,
fusion_environment_id: Optional[str] = None,
run_cycle: Optional[str] = None,
state: Optional[str] = None,
time_expected_finish_less_than_or_equal_to: Optional[str] = None,
time_scheduled_start_greater_than_or_equal_to: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetFusionEnvironmentScheduledActivitiesResult
def get_fusion_environment_scheduled_activities_output(display_name: Optional[pulumi.Input[str]] = None,
filters: Optional[pulumi.Input[Sequence[pulumi.Input[_functions.GetFusionEnvironmentScheduledActivitiesFilterArgs]]]] = None,
fusion_environment_id: Optional[pulumi.Input[str]] = None,
run_cycle: Optional[pulumi.Input[str]] = None,
state: Optional[pulumi.Input[str]] = None,
time_expected_finish_less_than_or_equal_to: Optional[pulumi.Input[str]] = None,
time_scheduled_start_greater_than_or_equal_to: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetFusionEnvironmentScheduledActivitiesResult]
func GetFusionEnvironmentScheduledActivities(ctx *Context, args *GetFusionEnvironmentScheduledActivitiesArgs, opts ...InvokeOption) (*GetFusionEnvironmentScheduledActivitiesResult, error)
func GetFusionEnvironmentScheduledActivitiesOutput(ctx *Context, args *GetFusionEnvironmentScheduledActivitiesOutputArgs, opts ...InvokeOption) GetFusionEnvironmentScheduledActivitiesResultOutput
> Note: This function is named GetFusionEnvironmentScheduledActivities
in the Go SDK.
public static class GetFusionEnvironmentScheduledActivities
{
public static Task<GetFusionEnvironmentScheduledActivitiesResult> InvokeAsync(GetFusionEnvironmentScheduledActivitiesArgs args, InvokeOptions? opts = null)
public static Output<GetFusionEnvironmentScheduledActivitiesResult> Invoke(GetFusionEnvironmentScheduledActivitiesInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetFusionEnvironmentScheduledActivitiesResult> getFusionEnvironmentScheduledActivities(GetFusionEnvironmentScheduledActivitiesArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
function: oci:Functions/getFusionEnvironmentScheduledActivities:getFusionEnvironmentScheduledActivities
arguments:
# arguments dictionary
The following arguments are supported:
- Fusion
Environment stringId - unique FusionEnvironment identifier
- Display
Name string - A filter to return only resources that match the entire display name given.
- Filters
List<Get
Fusion Environment Scheduled Activities Filter> - Run
Cycle string - A filter that returns all resources that match the specified run cycle.
- State string
- A filter that returns all resources that match the specified status
- Time
Expected stringFinish Less Than Or Equal To - A filter that returns all resources that end before this date
- Time
Scheduled stringStart Greater Than Or Equal To - A filter that returns all resources that are scheduled after this date
- Fusion
Environment stringId - unique FusionEnvironment identifier
- Display
Name string - A filter to return only resources that match the entire display name given.
- Filters
[]Get
Fusion Environment Scheduled Activities Filter - Run
Cycle string - A filter that returns all resources that match the specified run cycle.
- State string
- A filter that returns all resources that match the specified status
- Time
Expected stringFinish Less Than Or Equal To - A filter that returns all resources that end before this date
- Time
Scheduled stringStart Greater Than Or Equal To - A filter that returns all resources that are scheduled after this date
- fusion
Environment StringId - unique FusionEnvironment identifier
- display
Name String - A filter to return only resources that match the entire display name given.
- filters
List<Get
Fusion Environment Scheduled Activities Filter> - run
Cycle String - A filter that returns all resources that match the specified run cycle.
- state String
- A filter that returns all resources that match the specified status
- time
Expected StringFinish Less Than Or Equal To - A filter that returns all resources that end before this date
- time
Scheduled StringStart Greater Than Or Equal To - A filter that returns all resources that are scheduled after this date
- fusion
Environment stringId - unique FusionEnvironment identifier
- display
Name string - A filter to return only resources that match the entire display name given.
- filters
Get
Fusion Environment Scheduled Activities Filter[] - run
Cycle string - A filter that returns all resources that match the specified run cycle.
- state string
- A filter that returns all resources that match the specified status
- time
Expected stringFinish Less Than Or Equal To - A filter that returns all resources that end before this date
- time
Scheduled stringStart Greater Than Or Equal To - A filter that returns all resources that are scheduled after this date
- fusion_
environment_ strid - unique FusionEnvironment identifier
- display_
name str - A filter to return only resources that match the entire display name given.
- filters
Sequence[functions.
Get Fusion Environment Scheduled Activities Filter] - run_
cycle str - A filter that returns all resources that match the specified run cycle.
- state str
- A filter that returns all resources that match the specified status
- time_
expected_ strfinish_ less_ than_ or_ equal_ to - A filter that returns all resources that end before this date
- time_
scheduled_ strstart_ greater_ than_ or_ equal_ to - A filter that returns all resources that are scheduled after this date
- fusion
Environment StringId - unique FusionEnvironment identifier
- display
Name String - A filter to return only resources that match the entire display name given.
- filters List<Property Map>
- run
Cycle String - A filter that returns all resources that match the specified run cycle.
- state String
- A filter that returns all resources that match the specified status
- time
Expected StringFinish Less Than Or Equal To - A filter that returns all resources that end before this date
- time
Scheduled StringStart Greater Than Or Equal To - A filter that returns all resources that are scheduled after this date
getFusionEnvironmentScheduledActivities Result
The following output properties are available:
- Fusion
Environment stringId - FAaaS Environment Identifier.
- Id string
- The provider-assigned unique ID for this managed resource.
- Scheduled
Activity List<GetCollections Fusion Environment Scheduled Activities Scheduled Activity Collection> - The list of scheduled_activity_collection.
- Display
Name string - scheduled activity display name, can be renamed.
- Filters
List<Get
Fusion Environment Scheduled Activities Filter> - Run
Cycle string - run cadence.
- State string
- The current state of the scheduledActivity.
- Time
Expected stringFinish Less Than Or Equal To - Time
Scheduled stringStart Greater Than Or Equal To
- Fusion
Environment stringId - FAaaS Environment Identifier.
- Id string
- The provider-assigned unique ID for this managed resource.
- Scheduled
Activity []GetCollections Fusion Environment Scheduled Activities Scheduled Activity Collection - The list of scheduled_activity_collection.
- Display
Name string - scheduled activity display name, can be renamed.
- Filters
[]Get
Fusion Environment Scheduled Activities Filter - Run
Cycle string - run cadence.
- State string
- The current state of the scheduledActivity.
- Time
Expected stringFinish Less Than Or Equal To - Time
Scheduled stringStart Greater Than Or Equal To
- fusion
Environment StringId - FAaaS Environment Identifier.
- id String
- The provider-assigned unique ID for this managed resource.
- scheduled
Activity List<GetCollections Fusion Environment Scheduled Activities Scheduled Activity Collection> - The list of scheduled_activity_collection.
- display
Name String - scheduled activity display name, can be renamed.
- filters
List<Get
Fusion Environment Scheduled Activities Filter> - run
Cycle String - run cadence.
- state String
- The current state of the scheduledActivity.
- time
Expected StringFinish Less Than Or Equal To - time
Scheduled StringStart Greater Than Or Equal To
- fusion
Environment stringId - FAaaS Environment Identifier.
- id string
- The provider-assigned unique ID for this managed resource.
- scheduled
Activity GetCollections Fusion Environment Scheduled Activities Scheduled Activity Collection[] - The list of scheduled_activity_collection.
- display
Name string - scheduled activity display name, can be renamed.
- filters
Get
Fusion Environment Scheduled Activities Filter[] - run
Cycle string - run cadence.
- state string
- The current state of the scheduledActivity.
- time
Expected stringFinish Less Than Or Equal To - time
Scheduled stringStart Greater Than Or Equal To
- fusion_
environment_ strid - FAaaS Environment Identifier.
- id str
- The provider-assigned unique ID for this managed resource.
- scheduled_
activity_ Sequence[functions.collections Get Fusion Environment Scheduled Activities Scheduled Activity Collection] - The list of scheduled_activity_collection.
- display_
name str - scheduled activity display name, can be renamed.
- filters
Sequence[functions.
Get Fusion Environment Scheduled Activities Filter] - run_
cycle str - run cadence.
- state str
- The current state of the scheduledActivity.
- time_
expected_ strfinish_ less_ than_ or_ equal_ to - time_
scheduled_ strstart_ greater_ than_ or_ equal_ to
- fusion
Environment StringId - FAaaS Environment Identifier.
- id String
- The provider-assigned unique ID for this managed resource.
- scheduled
Activity List<Property Map>Collections - The list of scheduled_activity_collection.
- display
Name String - scheduled activity display name, can be renamed.
- filters List<Property Map>
- run
Cycle String - run cadence.
- state String
- The current state of the scheduledActivity.
- time
Expected StringFinish Less Than Or Equal To - time
Scheduled StringStart Greater Than Or Equal To
Supporting Types
GetFusionEnvironmentScheduledActivitiesFilter
GetFusionEnvironmentScheduledActivitiesScheduledActivityCollection
GetFusionEnvironmentScheduledActivitiesScheduledActivityCollectionItem
- Actions
List<Get
Fusion Environment Scheduled Activities Scheduled Activity Collection Item Action> - List of actions
- Delay
In intHours - Cumulative delay hours
- Display
Name string - A filter to return only resources that match the entire display name given.
- Dictionary<string, string>
- Fusion
Environment stringId - unique FusionEnvironment identifier
- Id string
- Unique identifier that is immutable on creation.
- Lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- Run
Cycle string - A filter that returns all resources that match the specified run cycle.
- Service
Availability string - Service availability / impact during scheduled activity execution up down
- State string
- A filter that returns all resources that match the specified status
- Time
Accepted string - Time
Expected stringFinish - Current time the scheduled activity is scheduled to end. An RFC3339 formatted datetime string.
- Time
Finished string - The time the scheduled activity actually completed / cancelled / failed. An RFC3339 formatted datetime string.
- Time
Scheduled stringStart - Current time the scheduled activity is scheduled to start. An RFC3339 formatted datetime string.
- Time
Updated string - The time the scheduled activity record was updated. An RFC3339 formatted datetime string.
- Actions
[]Get
Fusion Environment Scheduled Activities Scheduled Activity Collection Item Action - List of actions
- Delay
In intHours - Cumulative delay hours
- Display
Name string - A filter to return only resources that match the entire display name given.
- map[string]string
- Fusion
Environment stringId - unique FusionEnvironment identifier
- Id string
- Unique identifier that is immutable on creation.
- Lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- Run
Cycle string - A filter that returns all resources that match the specified run cycle.
- Service
Availability string - Service availability / impact during scheduled activity execution up down
- State string
- A filter that returns all resources that match the specified status
- Time
Accepted string - Time
Expected stringFinish - Current time the scheduled activity is scheduled to end. An RFC3339 formatted datetime string.
- Time
Finished string - The time the scheduled activity actually completed / cancelled / failed. An RFC3339 formatted datetime string.
- Time
Scheduled stringStart - Current time the scheduled activity is scheduled to start. An RFC3339 formatted datetime string.
- Time
Updated string - The time the scheduled activity record was updated. An RFC3339 formatted datetime string.
- actions
List<Get
Fusion Environment Scheduled Activities Scheduled Activity Collection Item Action> - List of actions
- delay
In IntegerHours - Cumulative delay hours
- display
Name String - A filter to return only resources that match the entire display name given.
- Map<String,String>
- fusion
Environment StringId - unique FusionEnvironment identifier
- id String
- Unique identifier that is immutable on creation.
- lifecycle
Details String - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- run
Cycle String - A filter that returns all resources that match the specified run cycle.
- service
Availability String - Service availability / impact during scheduled activity execution up down
- state String
- A filter that returns all resources that match the specified status
- time
Accepted String - time
Expected StringFinish - Current time the scheduled activity is scheduled to end. An RFC3339 formatted datetime string.
- time
Finished String - The time the scheduled activity actually completed / cancelled / failed. An RFC3339 formatted datetime string.
- time
Scheduled StringStart - Current time the scheduled activity is scheduled to start. An RFC3339 formatted datetime string.
- time
Updated String - The time the scheduled activity record was updated. An RFC3339 formatted datetime string.
- actions
Get
Fusion Environment Scheduled Activities Scheduled Activity Collection Item Action[] - List of actions
- delay
In numberHours - Cumulative delay hours
- display
Name string - A filter to return only resources that match the entire display name given.
- {[key: string]: string}
- fusion
Environment stringId - unique FusionEnvironment identifier
- id string
- Unique identifier that is immutable on creation.
- lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- run
Cycle string - A filter that returns all resources that match the specified run cycle.
- service
Availability string - Service availability / impact during scheduled activity execution up down
- state string
- A filter that returns all resources that match the specified status
- time
Accepted string - time
Expected stringFinish - Current time the scheduled activity is scheduled to end. An RFC3339 formatted datetime string.
- time
Finished string - The time the scheduled activity actually completed / cancelled / failed. An RFC3339 formatted datetime string.
- time
Scheduled stringStart - Current time the scheduled activity is scheduled to start. An RFC3339 formatted datetime string.
- time
Updated string - The time the scheduled activity record was updated. An RFC3339 formatted datetime string.
- actions
Sequence[functions.
Get Fusion Environment Scheduled Activities Scheduled Activity Collection Item Action] - List of actions
- delay_
in_ inthours - Cumulative delay hours
- display_
name str - A filter to return only resources that match the entire display name given.
- Mapping[str, str]
- fusion_
environment_ strid - unique FusionEnvironment identifier
- id str
- Unique identifier that is immutable on creation.
- lifecycle_
details str - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- run_
cycle str - A filter that returns all resources that match the specified run cycle.
- service_
availability str - Service availability / impact during scheduled activity execution up down
- state str
- A filter that returns all resources that match the specified status
- time_
accepted str - time_
expected_ strfinish - Current time the scheduled activity is scheduled to end. An RFC3339 formatted datetime string.
- time_
finished str - The time the scheduled activity actually completed / cancelled / failed. An RFC3339 formatted datetime string.
- time_
scheduled_ strstart - Current time the scheduled activity is scheduled to start. An RFC3339 formatted datetime string.
- time_
updated str - The time the scheduled activity record was updated. An RFC3339 formatted datetime string.
- actions List<Property Map>
- List of actions
- delay
In NumberHours - Cumulative delay hours
- display
Name String - A filter to return only resources that match the entire display name given.
- Map<String>
- fusion
Environment StringId - unique FusionEnvironment identifier
- id String
- Unique identifier that is immutable on creation.
- lifecycle
Details String - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- run
Cycle String - A filter that returns all resources that match the specified run cycle.
- service
Availability String - Service availability / impact during scheduled activity execution up down
- state String
- A filter that returns all resources that match the specified status
- time
Accepted String - time
Expected StringFinish - Current time the scheduled activity is scheduled to end. An RFC3339 formatted datetime string.
- time
Finished String - The time the scheduled activity actually completed / cancelled / failed. An RFC3339 formatted datetime string.
- time
Scheduled StringStart - Current time the scheduled activity is scheduled to start. An RFC3339 formatted datetime string.
- time
Updated String - The time the scheduled activity record was updated. An RFC3339 formatted datetime string.
GetFusionEnvironmentScheduledActivitiesScheduledActivityCollectionItemAction
- Action
Type string - Type of action
- Artifact string
- patch that delivered the vertex update prerequisite
- Category string
- patch artifact category
- Description string
- A string that describes the details of the action. It does not have to be unique, and you can change it. Avoid entering confidential information.
- Mode string
- A string that describeds whether the change is applied hot or cold
- Qualifier string
- month qualifier
- Reference
Key string - Unique identifier of the object that represents the action
- State string
- A filter that returns all resources that match the specified status
- Version string
- name of the repo
- Action
Type string - Type of action
- Artifact string
- patch that delivered the vertex update prerequisite
- Category string
- patch artifact category
- Description string
- A string that describes the details of the action. It does not have to be unique, and you can change it. Avoid entering confidential information.
- Mode string
- A string that describeds whether the change is applied hot or cold
- Qualifier string
- month qualifier
- Reference
Key string - Unique identifier of the object that represents the action
- State string
- A filter that returns all resources that match the specified status
- Version string
- name of the repo
- action
Type String - Type of action
- artifact String
- patch that delivered the vertex update prerequisite
- category String
- patch artifact category
- description String
- A string that describes the details of the action. It does not have to be unique, and you can change it. Avoid entering confidential information.
- mode String
- A string that describeds whether the change is applied hot or cold
- qualifier String
- month qualifier
- reference
Key String - Unique identifier of the object that represents the action
- state String
- A filter that returns all resources that match the specified status
- version String
- name of the repo
- action
Type string - Type of action
- artifact string
- patch that delivered the vertex update prerequisite
- category string
- patch artifact category
- description string
- A string that describes the details of the action. It does not have to be unique, and you can change it. Avoid entering confidential information.
- mode string
- A string that describeds whether the change is applied hot or cold
- qualifier string
- month qualifier
- reference
Key string - Unique identifier of the object that represents the action
- state string
- A filter that returns all resources that match the specified status
- version string
- name of the repo
- action_
type str - Type of action
- artifact str
- patch that delivered the vertex update prerequisite
- category str
- patch artifact category
- description str
- A string that describes the details of the action. It does not have to be unique, and you can change it. Avoid entering confidential information.
- mode str
- A string that describeds whether the change is applied hot or cold
- qualifier str
- month qualifier
- reference_
key str - Unique identifier of the object that represents the action
- state str
- A filter that returns all resources that match the specified status
- version str
- name of the repo
- action
Type String - Type of action
- artifact String
- patch that delivered the vertex update prerequisite
- category String
- patch artifact category
- description String
- A string that describes the details of the action. It does not have to be unique, and you can change it. Avoid entering confidential information.
- mode String
- A string that describeds whether the change is applied hot or cold
- qualifier String
- month qualifier
- reference
Key String - Unique identifier of the object that represents the action
- state String
- A filter that returns all resources that match the specified status
- version String
- name of the repo
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
oci
Terraform Provider.