oci.Functions.getFusionEnvironmentScheduledActivities
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
using System.Collections.Generic;
using Pulumi;
using Oci = Pulumi.Oci;
return await Deployment.RunAsync(() =>
{
var testFusionEnvironmentScheduledActivities = Oci.Functions.GetFusionEnvironmentScheduledActivities.Invoke(new()
{
FusionEnvironmentId = oci_fusion_apps_fusion_environment.Test_fusion_environment.Id,
DisplayName = @var.Fusion_environment_scheduled_activity_display_name,
RunCycle = @var.Fusion_environment_scheduled_activity_run_cycle,
State = @var.Fusion_environment_scheduled_activity_state,
TimeExpectedFinishLessThanOrEqualTo = @var.Fusion_environment_scheduled_activity_time_expected_finish_less_than_or_equal_to,
TimeScheduledStartGreaterThanOrEqualTo = @var.Fusion_environment_scheduled_activity_time_scheduled_start_greater_than_or_equal_to,
});
});
package main
import (
"github.com/pulumi/pulumi-oci/sdk/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: oci_fusion_apps_fusion_environment.Test_fusion_environment.Id,
DisplayName: pulumi.StringRef(_var.Fusion_environment_scheduled_activity_display_name),
RunCycle: pulumi.StringRef(_var.Fusion_environment_scheduled_activity_run_cycle),
State: pulumi.StringRef(_var.Fusion_environment_scheduled_activity_state),
TimeExpectedFinishLessThanOrEqualTo: pulumi.StringRef(_var.Fusion_environment_scheduled_activity_time_expected_finish_less_than_or_equal_to),
TimeScheduledStartGreaterThanOrEqualTo: pulumi.StringRef(_var.Fusion_environment_scheduled_activity_time_scheduled_start_greater_than_or_equal_to),
}, nil)
if err != nil {
return err
}
return nil
})
}
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(oci_fusion_apps_fusion_environment.test_fusion_environment().id())
.displayName(var_.fusion_environment_scheduled_activity_display_name())
.runCycle(var_.fusion_environment_scheduled_activity_run_cycle())
.state(var_.fusion_environment_scheduled_activity_state())
.timeExpectedFinishLessThanOrEqualTo(var_.fusion_environment_scheduled_activity_time_expected_finish_less_than_or_equal_to())
.timeScheduledStartGreaterThanOrEqualTo(var_.fusion_environment_scheduled_activity_time_scheduled_start_greater_than_or_equal_to())
.build());
}
}
import pulumi
import pulumi_oci as oci
test_fusion_environment_scheduled_activities = oci.Functions.get_fusion_environment_scheduled_activities(fusion_environment_id=oci_fusion_apps_fusion_environment["test_fusion_environment"]["id"],
display_name=var["fusion_environment_scheduled_activity_display_name"],
run_cycle=var["fusion_environment_scheduled_activity_run_cycle"],
state=var["fusion_environment_scheduled_activity_state"],
time_expected_finish_less_than_or_equal_to=var["fusion_environment_scheduled_activity_time_expected_finish_less_than_or_equal_to"],
time_scheduled_start_greater_than_or_equal_to=var["fusion_environment_scheduled_activity_time_scheduled_start_greater_than_or_equal_to"])
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testFusionEnvironmentScheduledActivities = oci.Functions.getFusionEnvironmentScheduledActivities({
fusionEnvironmentId: oci_fusion_apps_fusion_environment.test_fusion_environment.id,
displayName: _var.fusion_environment_scheduled_activity_display_name,
runCycle: _var.fusion_environment_scheduled_activity_run_cycle,
state: _var.fusion_environment_scheduled_activity_state,
timeExpectedFinishLessThanOrEqualTo: _var.fusion_environment_scheduled_activity_time_expected_finish_less_than_or_equal_to,
timeScheduledStartGreaterThanOrEqualTo: _var.fusion_environment_scheduled_activity_time_scheduled_start_greater_than_or_equal_to,
});
variables:
testFusionEnvironmentScheduledActivities:
fn::invoke:
Function: oci:Functions:getFusionEnvironmentScheduledActivities
Arguments:
fusionEnvironmentId: ${oci_fusion_apps_fusion_environment.test_fusion_environment.id}
displayName: ${var.fusion_environment_scheduled_activity_display_name}
runCycle: ${var.fusion_environment_scheduled_activity_run_cycle}
state: ${var.fusion_environment_scheduled_activity_state}
timeExpectedFinishLessThanOrEqualTo: ${var.fusion_environment_scheduled_activity_time_expected_finish_less_than_or_equal_to}
timeScheduledStartGreaterThanOrEqualTo: ${var.fusion_environment_scheduled_activity_time_scheduled_start_greater_than_or_equal_to}
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
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_ Getcollections Fusion Environment Scheduled Activities Scheduled Activity Collection] The list of scheduled_activity_collection.
- display_
name str scheduled activity display name, can be renamed.
- filters
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, object>
- 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]interface{}
- 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,Object>
- 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]: any}
- 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 str A filter to return only resources that match the entire display name given.
- Mapping[str, Any]
- 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<Any>
- 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.