oci.DatabaseManagement.getManagedDatabaseOptimizerStatisticsCollectionAggregations
Explore with Pulumi AI
This data source provides the list of Managed Database Optimizer Statistics Collection Aggregations in Oracle Cloud Infrastructure Database Management service.
Gets a list of the optimizer statistics collection operations per hour, grouped by task or object status for the specified Managed Database. You must specify a value for the GroupByQueryParam to determine whether the data should be grouped by task status or task object status. Optionally, you can specify a date-time range (of seven days) to obtain collection aggregations within the specified time range. If the date-time range is not specified, then the operations in the last seven days are listed. You can further filter the results by providing the optional type of TaskTypeQueryParam. If the task type if not provided, then both Auto and Manual tasks are considered for aggregation.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testManagedDatabaseOptimizerStatisticsCollectionAggregations = oci.DatabaseManagement.getManagedDatabaseOptimizerStatisticsCollectionAggregations({
groupType: managedDatabaseOptimizerStatisticsCollectionAggregationGroupType,
managedDatabaseId: testManagedDatabase.id,
endTimeLessThanOrEqualTo: managedDatabaseOptimizerStatisticsCollectionAggregationEndTimeLessThanOrEqualTo,
startTimeGreaterThanOrEqualTo: managedDatabaseOptimizerStatisticsCollectionAggregationStartTimeGreaterThanOrEqualTo,
taskType: managedDatabaseOptimizerStatisticsCollectionAggregationTaskType,
});
import pulumi
import pulumi_oci as oci
test_managed_database_optimizer_statistics_collection_aggregations = oci.DatabaseManagement.get_managed_database_optimizer_statistics_collection_aggregations(group_type=managed_database_optimizer_statistics_collection_aggregation_group_type,
managed_database_id=test_managed_database["id"],
end_time_less_than_or_equal_to=managed_database_optimizer_statistics_collection_aggregation_end_time_less_than_or_equal_to,
start_time_greater_than_or_equal_to=managed_database_optimizer_statistics_collection_aggregation_start_time_greater_than_or_equal_to,
task_type=managed_database_optimizer_statistics_collection_aggregation_task_type)
package main
import (
"github.com/pulumi/pulumi-oci/sdk/go/oci/DatabaseManagement"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := DatabaseManagement.GetManagedDatabaseOptimizerStatisticsCollectionAggregations(ctx, &databasemanagement.GetManagedDatabaseOptimizerStatisticsCollectionAggregationsArgs{
GroupType: managedDatabaseOptimizerStatisticsCollectionAggregationGroupType,
ManagedDatabaseId: testManagedDatabase.Id,
EndTimeLessThanOrEqualTo: pulumi.StringRef(managedDatabaseOptimizerStatisticsCollectionAggregationEndTimeLessThanOrEqualTo),
StartTimeGreaterThanOrEqualTo: pulumi.StringRef(managedDatabaseOptimizerStatisticsCollectionAggregationStartTimeGreaterThanOrEqualTo),
TaskType: pulumi.StringRef(managedDatabaseOptimizerStatisticsCollectionAggregationTaskType),
}, 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 testManagedDatabaseOptimizerStatisticsCollectionAggregations = Oci.DatabaseManagement.GetManagedDatabaseOptimizerStatisticsCollectionAggregations.Invoke(new()
{
GroupType = managedDatabaseOptimizerStatisticsCollectionAggregationGroupType,
ManagedDatabaseId = testManagedDatabase.Id,
EndTimeLessThanOrEqualTo = managedDatabaseOptimizerStatisticsCollectionAggregationEndTimeLessThanOrEqualTo,
StartTimeGreaterThanOrEqualTo = managedDatabaseOptimizerStatisticsCollectionAggregationStartTimeGreaterThanOrEqualTo,
TaskType = managedDatabaseOptimizerStatisticsCollectionAggregationTaskType,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.DatabaseManagement.DatabaseManagementFunctions;
import com.pulumi.oci.DatabaseManagement.inputs.GetManagedDatabaseOptimizerStatisticsCollectionAggregationsArgs;
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 testManagedDatabaseOptimizerStatisticsCollectionAggregations = DatabaseManagementFunctions.getManagedDatabaseOptimizerStatisticsCollectionAggregations(GetManagedDatabaseOptimizerStatisticsCollectionAggregationsArgs.builder()
.groupType(managedDatabaseOptimizerStatisticsCollectionAggregationGroupType)
.managedDatabaseId(testManagedDatabase.id())
.endTimeLessThanOrEqualTo(managedDatabaseOptimizerStatisticsCollectionAggregationEndTimeLessThanOrEqualTo)
.startTimeGreaterThanOrEqualTo(managedDatabaseOptimizerStatisticsCollectionAggregationStartTimeGreaterThanOrEqualTo)
.taskType(managedDatabaseOptimizerStatisticsCollectionAggregationTaskType)
.build());
}
}
variables:
testManagedDatabaseOptimizerStatisticsCollectionAggregations:
fn::invoke:
Function: oci:DatabaseManagement:getManagedDatabaseOptimizerStatisticsCollectionAggregations
Arguments:
groupType: ${managedDatabaseOptimizerStatisticsCollectionAggregationGroupType}
managedDatabaseId: ${testManagedDatabase.id}
endTimeLessThanOrEqualTo: ${managedDatabaseOptimizerStatisticsCollectionAggregationEndTimeLessThanOrEqualTo}
startTimeGreaterThanOrEqualTo: ${managedDatabaseOptimizerStatisticsCollectionAggregationStartTimeGreaterThanOrEqualTo}
taskType: ${managedDatabaseOptimizerStatisticsCollectionAggregationTaskType}
Using getManagedDatabaseOptimizerStatisticsCollectionAggregations
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 getManagedDatabaseOptimizerStatisticsCollectionAggregations(args: GetManagedDatabaseOptimizerStatisticsCollectionAggregationsArgs, opts?: InvokeOptions): Promise<GetManagedDatabaseOptimizerStatisticsCollectionAggregationsResult>
function getManagedDatabaseOptimizerStatisticsCollectionAggregationsOutput(args: GetManagedDatabaseOptimizerStatisticsCollectionAggregationsOutputArgs, opts?: InvokeOptions): Output<GetManagedDatabaseOptimizerStatisticsCollectionAggregationsResult>
def get_managed_database_optimizer_statistics_collection_aggregations(end_time_less_than_or_equal_to: Optional[str] = None,
filters: Optional[Sequence[_databasemanagement.GetManagedDatabaseOptimizerStatisticsCollectionAggregationsFilter]] = None,
group_type: Optional[str] = None,
limit: Optional[int] = None,
managed_database_id: Optional[str] = None,
start_time_greater_than_or_equal_to: Optional[str] = None,
task_type: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetManagedDatabaseOptimizerStatisticsCollectionAggregationsResult
def get_managed_database_optimizer_statistics_collection_aggregations_output(end_time_less_than_or_equal_to: Optional[pulumi.Input[str]] = None,
filters: Optional[pulumi.Input[Sequence[pulumi.Input[_databasemanagement.GetManagedDatabaseOptimizerStatisticsCollectionAggregationsFilterArgs]]]] = None,
group_type: Optional[pulumi.Input[str]] = None,
limit: Optional[pulumi.Input[int]] = None,
managed_database_id: Optional[pulumi.Input[str]] = None,
start_time_greater_than_or_equal_to: Optional[pulumi.Input[str]] = None,
task_type: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetManagedDatabaseOptimizerStatisticsCollectionAggregationsResult]
func GetManagedDatabaseOptimizerStatisticsCollectionAggregations(ctx *Context, args *GetManagedDatabaseOptimizerStatisticsCollectionAggregationsArgs, opts ...InvokeOption) (*GetManagedDatabaseOptimizerStatisticsCollectionAggregationsResult, error)
func GetManagedDatabaseOptimizerStatisticsCollectionAggregationsOutput(ctx *Context, args *GetManagedDatabaseOptimizerStatisticsCollectionAggregationsOutputArgs, opts ...InvokeOption) GetManagedDatabaseOptimizerStatisticsCollectionAggregationsResultOutput
> Note: This function is named GetManagedDatabaseOptimizerStatisticsCollectionAggregations
in the Go SDK.
public static class GetManagedDatabaseOptimizerStatisticsCollectionAggregations
{
public static Task<GetManagedDatabaseOptimizerStatisticsCollectionAggregationsResult> InvokeAsync(GetManagedDatabaseOptimizerStatisticsCollectionAggregationsArgs args, InvokeOptions? opts = null)
public static Output<GetManagedDatabaseOptimizerStatisticsCollectionAggregationsResult> Invoke(GetManagedDatabaseOptimizerStatisticsCollectionAggregationsInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetManagedDatabaseOptimizerStatisticsCollectionAggregationsResult> getManagedDatabaseOptimizerStatisticsCollectionAggregations(GetManagedDatabaseOptimizerStatisticsCollectionAggregationsArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
function: oci:DatabaseManagement/getManagedDatabaseOptimizerStatisticsCollectionAggregations:getManagedDatabaseOptimizerStatisticsCollectionAggregations
arguments:
# arguments dictionary
The following arguments are supported:
- Group
Type string - The optimizer statistics tasks grouped by type.
- Managed
Database stringId - The OCID of the Managed Database.
- End
Time stringLess Than Or Equal To - The end time of the time range to retrieve the optimizer statistics of a Managed Database in UTC in ISO-8601 format, which is "yyyy-MM-dd'T'hh:mm:ss.sss'Z'".
- Filters
List<Get
Managed Database Optimizer Statistics Collection Aggregations Filter> - Limit int
- Start
Time stringGreater Than Or Equal To - The start time of the time range to retrieve the optimizer statistics of a Managed Database in UTC in ISO-8601 format, which is "yyyy-MM-dd'T'hh:mm:ss.sss'Z'".
- Task
Type string - The filter types of the optimizer statistics tasks.
- Group
Type string - The optimizer statistics tasks grouped by type.
- Managed
Database stringId - The OCID of the Managed Database.
- End
Time stringLess Than Or Equal To - The end time of the time range to retrieve the optimizer statistics of a Managed Database in UTC in ISO-8601 format, which is "yyyy-MM-dd'T'hh:mm:ss.sss'Z'".
- Filters
[]Get
Managed Database Optimizer Statistics Collection Aggregations Filter - Limit int
- Start
Time stringGreater Than Or Equal To - The start time of the time range to retrieve the optimizer statistics of a Managed Database in UTC in ISO-8601 format, which is "yyyy-MM-dd'T'hh:mm:ss.sss'Z'".
- Task
Type string - The filter types of the optimizer statistics tasks.
- group
Type String - The optimizer statistics tasks grouped by type.
- managed
Database StringId - The OCID of the Managed Database.
- end
Time StringLess Than Or Equal To - The end time of the time range to retrieve the optimizer statistics of a Managed Database in UTC in ISO-8601 format, which is "yyyy-MM-dd'T'hh:mm:ss.sss'Z'".
- filters
List<Get
Managed Database Optimizer Statistics Collection Aggregations Filter> - limit Integer
- start
Time StringGreater Than Or Equal To - The start time of the time range to retrieve the optimizer statistics of a Managed Database in UTC in ISO-8601 format, which is "yyyy-MM-dd'T'hh:mm:ss.sss'Z'".
- task
Type String - The filter types of the optimizer statistics tasks.
- group
Type string - The optimizer statistics tasks grouped by type.
- managed
Database stringId - The OCID of the Managed Database.
- end
Time stringLess Than Or Equal To - The end time of the time range to retrieve the optimizer statistics of a Managed Database in UTC in ISO-8601 format, which is "yyyy-MM-dd'T'hh:mm:ss.sss'Z'".
- filters
Get
Managed Database Optimizer Statistics Collection Aggregations Filter[] - limit number
- start
Time stringGreater Than Or Equal To - The start time of the time range to retrieve the optimizer statistics of a Managed Database in UTC in ISO-8601 format, which is "yyyy-MM-dd'T'hh:mm:ss.sss'Z'".
- task
Type string - The filter types of the optimizer statistics tasks.
- group_
type str - The optimizer statistics tasks grouped by type.
- managed_
database_ strid - The OCID of the Managed Database.
- end_
time_ strless_ than_ or_ equal_ to - The end time of the time range to retrieve the optimizer statistics of a Managed Database in UTC in ISO-8601 format, which is "yyyy-MM-dd'T'hh:mm:ss.sss'Z'".
- filters
Sequence[databasemanagement.
Get Managed Database Optimizer Statistics Collection Aggregations Filter] - limit int
- start_
time_ strgreater_ than_ or_ equal_ to - The start time of the time range to retrieve the optimizer statistics of a Managed Database in UTC in ISO-8601 format, which is "yyyy-MM-dd'T'hh:mm:ss.sss'Z'".
- task_
type str - The filter types of the optimizer statistics tasks.
- group
Type String - The optimizer statistics tasks grouped by type.
- managed
Database StringId - The OCID of the Managed Database.
- end
Time StringLess Than Or Equal To - The end time of the time range to retrieve the optimizer statistics of a Managed Database in UTC in ISO-8601 format, which is "yyyy-MM-dd'T'hh:mm:ss.sss'Z'".
- filters List<Property Map>
- limit Number
- start
Time StringGreater Than Or Equal To - The start time of the time range to retrieve the optimizer statistics of a Managed Database in UTC in ISO-8601 format, which is "yyyy-MM-dd'T'hh:mm:ss.sss'Z'".
- task
Type String - The filter types of the optimizer statistics tasks.
getManagedDatabaseOptimizerStatisticsCollectionAggregations Result
The following output properties are available:
- Group
Type string - Id string
- The provider-assigned unique ID for this managed resource.
- Managed
Database stringId - Optimizer
Statistics List<GetCollection Aggregations Collections Managed Database Optimizer Statistics Collection Aggregations Optimizer Statistics Collection Aggregations Collection> - The list of optimizer_statistics_collection_aggregations_collection.
- End
Time stringLess Than Or Equal To - Filters
List<Get
Managed Database Optimizer Statistics Collection Aggregations Filter> - Limit int
- Start
Time stringGreater Than Or Equal To - Task
Type string
- Group
Type string - Id string
- The provider-assigned unique ID for this managed resource.
- Managed
Database stringId - Optimizer
Statistics []GetCollection Aggregations Collections Managed Database Optimizer Statistics Collection Aggregations Optimizer Statistics Collection Aggregations Collection - The list of optimizer_statistics_collection_aggregations_collection.
- End
Time stringLess Than Or Equal To - Filters
[]Get
Managed Database Optimizer Statistics Collection Aggregations Filter - Limit int
- Start
Time stringGreater Than Or Equal To - Task
Type string
- group
Type String - id String
- The provider-assigned unique ID for this managed resource.
- managed
Database StringId - optimizer
Statistics List<GetCollection Aggregations Collections Managed Database Optimizer Statistics Collection Aggregations Optimizer Statistics Collection Aggregations Collection> - The list of optimizer_statistics_collection_aggregations_collection.
- end
Time StringLess Than Or Equal To - filters
List<Get
Managed Database Optimizer Statistics Collection Aggregations Filter> - limit Integer
- start
Time StringGreater Than Or Equal To - task
Type String
- group
Type string - id string
- The provider-assigned unique ID for this managed resource.
- managed
Database stringId - optimizer
Statistics GetCollection Aggregations Collections Managed Database Optimizer Statistics Collection Aggregations Optimizer Statistics Collection Aggregations Collection[] - The list of optimizer_statistics_collection_aggregations_collection.
- end
Time stringLess Than Or Equal To - filters
Get
Managed Database Optimizer Statistics Collection Aggregations Filter[] - limit number
- start
Time stringGreater Than Or Equal To - task
Type string
- group_
type str - id str
- The provider-assigned unique ID for this managed resource.
- managed_
database_ strid - optimizer_
statistics_ Sequence[databasemanagement.collection_ aggregations_ collections Get Managed Database Optimizer Statistics Collection Aggregations Optimizer Statistics Collection Aggregations Collection] - The list of optimizer_statistics_collection_aggregations_collection.
- end_
time_ strless_ than_ or_ equal_ to - filters
Sequence[databasemanagement.
Get Managed Database Optimizer Statistics Collection Aggregations Filter] - limit int
- start_
time_ strgreater_ than_ or_ equal_ to - task_
type str
- group
Type String - id String
- The provider-assigned unique ID for this managed resource.
- managed
Database StringId - optimizer
Statistics List<Property Map>Collection Aggregations Collections - The list of optimizer_statistics_collection_aggregations_collection.
- end
Time StringLess Than Or Equal To - filters List<Property Map>
- limit Number
- start
Time StringGreater Than Or Equal To - task
Type String
Supporting Types
GetManagedDatabaseOptimizerStatisticsCollectionAggregationsFilter
GetManagedDatabaseOptimizerStatisticsCollectionAggregationsOptimizerStatisticsCollectionAggregationsCollection
- Items
List<Get
Managed Database Optimizer Statistics Collection Aggregations Optimizer Statistics Collection Aggregations Collection Item> - The list of Optimizer Statistics Collection details.
- Items
[]Get
Managed Database Optimizer Statistics Collection Aggregations Optimizer Statistics Collection Aggregations Collection Item - The list of Optimizer Statistics Collection details.
- items
List<Get
Managed Database Optimizer Statistics Collection Aggregations Optimizer Statistics Collection Aggregations Collection Item> - The list of Optimizer Statistics Collection details.
- items
Get
Managed Database Optimizer Statistics Collection Aggregations Optimizer Statistics Collection Aggregations Collection Item[] - The list of Optimizer Statistics Collection details.
- items
Sequence[databasemanagement.
Get Managed Database Optimizer Statistics Collection Aggregations Optimizer Statistics Collection Aggregations Collection Item] - The list of Optimizer Statistics Collection details.
- items List<Property Map>
- The list of Optimizer Statistics Collection details.
GetManagedDatabaseOptimizerStatisticsCollectionAggregationsOptimizerStatisticsCollectionAggregationsCollectionItem
- Completed int
- The number of tasks or objects for which statistics gathering is completed.
- Failed int
- The number of tasks or objects for which statistics gathering failed.
- Group
By string - The optimizer statistics tasks grouped by type.
- In
Progress int - The number of tasks or objects for which statistics gathering is in progress.
- Pending int
- The number of tasks or objects for which statistics are yet to be gathered.
- Skipped int
- The number of tasks or objects for which statistics gathering was skipped.
- Time
End string - Indicates the end of the hour as the statistics are aggregated per hour.
- Time
Start string - Indicates the start of the hour as the statistics are aggregated per hour.
- Timed
Out int - The number of tasks or objects for which statistics gathering timed out.
- Total int
- The total number of tasks or objects for which statistics collection is finished. This number is the sum of all the tasks or objects with various statuses: pending, inProgress, completed, failed, skipped, timedOut, and unknown.
- Unknown int
- The number of tasks or objects for which the status of statistics gathering is unknown.
- Completed int
- The number of tasks or objects for which statistics gathering is completed.
- Failed int
- The number of tasks or objects for which statistics gathering failed.
- Group
By string - The optimizer statistics tasks grouped by type.
- In
Progress int - The number of tasks or objects for which statistics gathering is in progress.
- Pending int
- The number of tasks or objects for which statistics are yet to be gathered.
- Skipped int
- The number of tasks or objects for which statistics gathering was skipped.
- Time
End string - Indicates the end of the hour as the statistics are aggregated per hour.
- Time
Start string - Indicates the start of the hour as the statistics are aggregated per hour.
- Timed
Out int - The number of tasks or objects for which statistics gathering timed out.
- Total int
- The total number of tasks or objects for which statistics collection is finished. This number is the sum of all the tasks or objects with various statuses: pending, inProgress, completed, failed, skipped, timedOut, and unknown.
- Unknown int
- The number of tasks or objects for which the status of statistics gathering is unknown.
- completed Integer
- The number of tasks or objects for which statistics gathering is completed.
- failed Integer
- The number of tasks or objects for which statistics gathering failed.
- group
By String - The optimizer statistics tasks grouped by type.
- in
Progress Integer - The number of tasks or objects for which statistics gathering is in progress.
- pending Integer
- The number of tasks or objects for which statistics are yet to be gathered.
- skipped Integer
- The number of tasks or objects for which statistics gathering was skipped.
- time
End String - Indicates the end of the hour as the statistics are aggregated per hour.
- time
Start String - Indicates the start of the hour as the statistics are aggregated per hour.
- timed
Out Integer - The number of tasks or objects for which statistics gathering timed out.
- total Integer
- The total number of tasks or objects for which statistics collection is finished. This number is the sum of all the tasks or objects with various statuses: pending, inProgress, completed, failed, skipped, timedOut, and unknown.
- unknown Integer
- The number of tasks or objects for which the status of statistics gathering is unknown.
- completed number
- The number of tasks or objects for which statistics gathering is completed.
- failed number
- The number of tasks or objects for which statistics gathering failed.
- group
By string - The optimizer statistics tasks grouped by type.
- in
Progress number - The number of tasks or objects for which statistics gathering is in progress.
- pending number
- The number of tasks or objects for which statistics are yet to be gathered.
- skipped number
- The number of tasks or objects for which statistics gathering was skipped.
- time
End string - Indicates the end of the hour as the statistics are aggregated per hour.
- time
Start string - Indicates the start of the hour as the statistics are aggregated per hour.
- timed
Out number - The number of tasks or objects for which statistics gathering timed out.
- total number
- The total number of tasks or objects for which statistics collection is finished. This number is the sum of all the tasks or objects with various statuses: pending, inProgress, completed, failed, skipped, timedOut, and unknown.
- unknown number
- The number of tasks or objects for which the status of statistics gathering is unknown.
- completed int
- The number of tasks or objects for which statistics gathering is completed.
- failed int
- The number of tasks or objects for which statistics gathering failed.
- group_
by str - The optimizer statistics tasks grouped by type.
- in_
progress int - The number of tasks or objects for which statistics gathering is in progress.
- pending int
- The number of tasks or objects for which statistics are yet to be gathered.
- skipped int
- The number of tasks or objects for which statistics gathering was skipped.
- time_
end str - Indicates the end of the hour as the statistics are aggregated per hour.
- time_
start str - Indicates the start of the hour as the statistics are aggregated per hour.
- timed_
out int - The number of tasks or objects for which statistics gathering timed out.
- total int
- The total number of tasks or objects for which statistics collection is finished. This number is the sum of all the tasks or objects with various statuses: pending, inProgress, completed, failed, skipped, timedOut, and unknown.
- unknown int
- The number of tasks or objects for which the status of statistics gathering is unknown.
- completed Number
- The number of tasks or objects for which statistics gathering is completed.
- failed Number
- The number of tasks or objects for which statistics gathering failed.
- group
By String - The optimizer statistics tasks grouped by type.
- in
Progress Number - The number of tasks or objects for which statistics gathering is in progress.
- pending Number
- The number of tasks or objects for which statistics are yet to be gathered.
- skipped Number
- The number of tasks or objects for which statistics gathering was skipped.
- time
End String - Indicates the end of the hour as the statistics are aggregated per hour.
- time
Start String - Indicates the start of the hour as the statistics are aggregated per hour.
- timed
Out Number - The number of tasks or objects for which statistics gathering timed out.
- total Number
- The total number of tasks or objects for which statistics collection is finished. This number is the sum of all the tasks or objects with various statuses: pending, inProgress, completed, failed, skipped, timedOut, and unknown.
- unknown Number
- The number of tasks or objects for which the status of statistics gathering is unknown.
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
oci
Terraform Provider.