oci.Core.ComputeImageCapabilitySchema
This resource provides the Compute Image Capability Schema resource in Oracle Cloud Infrastructure Core service.
Creates compute image capability schema.
Example Usage
using System.Collections.Generic;
using Pulumi;
using Oci = Pulumi.Oci;
return await Deployment.RunAsync(() =>
{
var testComputeImageCapabilitySchema = new Oci.Core.ComputeImageCapabilitySchema("testComputeImageCapabilitySchema", new()
{
CompartmentId = @var.Compartment_id,
ComputeGlobalImageCapabilitySchemaVersionName = @var.Compute_image_capability_schema_compute_global_image_capability_schema_version_name,
ImageId = oci_core_image.Test_image.Id,
SchemaData = new[]
{
{
{ "descriptorType", @var.Compute_image_capability_schema_schema_data_descriptor_type },
{ "source", @var.Compute_image_capability_schema_schema_data_source },
{ "defaultValue", @var.Compute_image_capability_schema_schema_data_default_value },
{ "values", @var.Compute_image_capability_schema_schema_data_values },
},
},
DefinedTags =
{
{ "Operations.CostCenter", "42" },
},
DisplayName = @var.Compute_image_capability_schema_display_name,
FreeformTags =
{
{ "Department", "Finance" },
},
});
});
package main
import (
"github.com/pulumi/pulumi-oci/sdk/go/oci/Core"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := Core.NewComputeImageCapabilitySchema(ctx, "testComputeImageCapabilitySchema", &Core.ComputeImageCapabilitySchemaArgs{
CompartmentId: pulumi.Any(_var.Compartment_id),
ComputeGlobalImageCapabilitySchemaVersionName: pulumi.Any(_var.Compute_image_capability_schema_compute_global_image_capability_schema_version_name),
ImageId: pulumi.Any(oci_core_image.Test_image.Id),
SchemaData: pulumi.AnyMap{
pulumi.Any{
DescriptorType: _var.Compute_image_capability_schema_schema_data_descriptor_type,
Source: _var.Compute_image_capability_schema_schema_data_source,
DefaultValue: _var.Compute_image_capability_schema_schema_data_default_value,
Values: _var.Compute_image_capability_schema_schema_data_values,
},
},
DefinedTags: pulumi.AnyMap{
"Operations.CostCenter": pulumi.Any("42"),
},
DisplayName: pulumi.Any(_var.Compute_image_capability_schema_display_name),
FreeformTags: pulumi.AnyMap{
"Department": pulumi.Any("Finance"),
},
})
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.Core.ComputeImageCapabilitySchema;
import com.pulumi.oci.Core.ComputeImageCapabilitySchemaArgs;
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 testComputeImageCapabilitySchema = new ComputeImageCapabilitySchema("testComputeImageCapabilitySchema", ComputeImageCapabilitySchemaArgs.builder()
.compartmentId(var_.compartment_id())
.computeGlobalImageCapabilitySchemaVersionName(var_.compute_image_capability_schema_compute_global_image_capability_schema_version_name())
.imageId(oci_core_image.test_image().id())
.schemaData(Map.ofEntries(
Map.entry("descriptorType", var_.compute_image_capability_schema_schema_data_descriptor_type()),
Map.entry("source", var_.compute_image_capability_schema_schema_data_source()),
Map.entry("defaultValue", var_.compute_image_capability_schema_schema_data_default_value()),
Map.entry("values", var_.compute_image_capability_schema_schema_data_values())
))
.definedTags(Map.of("Operations.CostCenter", "42"))
.displayName(var_.compute_image_capability_schema_display_name())
.freeformTags(Map.of("Department", "Finance"))
.build());
}
}
import pulumi
import pulumi_oci as oci
test_compute_image_capability_schema = oci.core.ComputeImageCapabilitySchema("testComputeImageCapabilitySchema",
compartment_id=var["compartment_id"],
compute_global_image_capability_schema_version_name=var["compute_image_capability_schema_compute_global_image_capability_schema_version_name"],
image_id=oci_core_image["test_image"]["id"],
schema_data=[{
"descriptorType": var["compute_image_capability_schema_schema_data_descriptor_type"],
"source": var["compute_image_capability_schema_schema_data_source"],
"defaultValue": var["compute_image_capability_schema_schema_data_default_value"],
"values": var["compute_image_capability_schema_schema_data_values"],
}],
defined_tags={
"Operations.CostCenter": "42",
},
display_name=var["compute_image_capability_schema_display_name"],
freeform_tags={
"Department": "Finance",
})
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testComputeImageCapabilitySchema = new oci.core.ComputeImageCapabilitySchema("testComputeImageCapabilitySchema", {
compartmentId: _var.compartment_id,
computeGlobalImageCapabilitySchemaVersionName: _var.compute_image_capability_schema_compute_global_image_capability_schema_version_name,
imageId: oci_core_image.test_image.id,
schemaData: [{
descriptorType: _var.compute_image_capability_schema_schema_data_descriptor_type,
source: _var.compute_image_capability_schema_schema_data_source,
defaultValue: _var.compute_image_capability_schema_schema_data_default_value,
values: _var.compute_image_capability_schema_schema_data_values,
}],
definedTags: {
"Operations.CostCenter": "42",
},
displayName: _var.compute_image_capability_schema_display_name,
freeformTags: {
Department: "Finance",
},
});
resources:
testComputeImageCapabilitySchema:
type: oci:Core:ComputeImageCapabilitySchema
properties:
#Required
compartmentId: ${var.compartment_id}
computeGlobalImageCapabilitySchemaVersionName: ${var.compute_image_capability_schema_compute_global_image_capability_schema_version_name}
imageId: ${oci_core_image.test_image.id}
schemaData:
- descriptorType: ${var.compute_image_capability_schema_schema_data_descriptor_type}
source: ${var.compute_image_capability_schema_schema_data_source}
defaultValue: ${var.compute_image_capability_schema_schema_data_default_value}
values: ${var.compute_image_capability_schema_schema_data_values}
#Optional
definedTags:
Operations.CostCenter: '42'
displayName: ${var.compute_image_capability_schema_display_name}
freeformTags:
Department: Finance
Create ComputeImageCapabilitySchema Resource
new ComputeImageCapabilitySchema(name: string, args: ComputeImageCapabilitySchemaArgs, opts?: CustomResourceOptions);
@overload
def ComputeImageCapabilitySchema(resource_name: str,
opts: Optional[ResourceOptions] = None,
compartment_id: Optional[str] = None,
compute_global_image_capability_schema_version_name: Optional[str] = None,
defined_tags: Optional[Mapping[str, Any]] = None,
display_name: Optional[str] = None,
freeform_tags: Optional[Mapping[str, Any]] = None,
image_id: Optional[str] = None,
schema_data: Optional[Mapping[str, Any]] = None)
@overload
def ComputeImageCapabilitySchema(resource_name: str,
args: ComputeImageCapabilitySchemaArgs,
opts: Optional[ResourceOptions] = None)
func NewComputeImageCapabilitySchema(ctx *Context, name string, args ComputeImageCapabilitySchemaArgs, opts ...ResourceOption) (*ComputeImageCapabilitySchema, error)
public ComputeImageCapabilitySchema(string name, ComputeImageCapabilitySchemaArgs args, CustomResourceOptions? opts = null)
public ComputeImageCapabilitySchema(String name, ComputeImageCapabilitySchemaArgs args)
public ComputeImageCapabilitySchema(String name, ComputeImageCapabilitySchemaArgs args, CustomResourceOptions options)
type: oci:Core:ComputeImageCapabilitySchema
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ComputeImageCapabilitySchemaArgs
- 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 ComputeImageCapabilitySchemaArgs
- 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 ComputeImageCapabilitySchemaArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ComputeImageCapabilitySchemaArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ComputeImageCapabilitySchemaArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
ComputeImageCapabilitySchema 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 ComputeImageCapabilitySchema resource accepts the following input properties:
- Compartment
Id string (Updatable) The OCID of the compartment that contains the resource.
- Compute
Global stringImage Capability Schema Version Name The name of the compute global image capability schema version
- Image
Id string The ocid of the image
- Schema
Data Dictionary<string, object> (Updatable) The map of each capability name to its ImageCapabilitySchemaDescriptor.
- Dictionary<string, object>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- Display
Name string (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- Dictionary<string, object>
(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- Compartment
Id string (Updatable) The OCID of the compartment that contains the resource.
- Compute
Global stringImage Capability Schema Version Name The name of the compute global image capability schema version
- Image
Id string The ocid of the image
- Schema
Data map[string]interface{} (Updatable) The map of each capability name to its ImageCapabilitySchemaDescriptor.
- map[string]interface{}
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- Display
Name string (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- map[string]interface{}
(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- compartment
Id String (Updatable) The OCID of the compartment that contains the resource.
- compute
Global StringImage Capability Schema Version Name The name of the compute global image capability schema version
- image
Id String The ocid of the image
- schema
Data Map<String,Object> (Updatable) The map of each capability name to its ImageCapabilitySchemaDescriptor.
- Map<String,Object>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- display
Name String (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- Map<String,Object>
(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- compartment
Id string (Updatable) The OCID of the compartment that contains the resource.
- compute
Global stringImage Capability Schema Version Name The name of the compute global image capability schema version
- image
Id string The ocid of the image
- schema
Data {[key: string]: any} (Updatable) The map of each capability name to its ImageCapabilitySchemaDescriptor.
- {[key: string]: any}
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- display
Name string (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- {[key: string]: any}
(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- compartment_
id str (Updatable) The OCID of the compartment that contains the resource.
- compute_
global_ strimage_ capability_ schema_ version_ name The name of the compute global image capability schema version
- image_
id str The ocid of the image
- schema_
data Mapping[str, Any] (Updatable) The map of each capability name to its ImageCapabilitySchemaDescriptor.
- Mapping[str, Any]
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- display_
name str (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- Mapping[str, Any]
(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- compartment
Id String (Updatable) The OCID of the compartment that contains the resource.
- compute
Global StringImage Capability Schema Version Name The name of the compute global image capability schema version
- image
Id String The ocid of the image
- schema
Data Map<Any> (Updatable) The map of each capability name to its ImageCapabilitySchemaDescriptor.
- Map<Any>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- display
Name String (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- Map<Any>
(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
Outputs
All input properties are implicitly available as output properties. Additionally, the ComputeImageCapabilitySchema resource produces the following output properties:
- Compute
Global stringImage Capability Schema Id The ocid of the compute global image capability schema
- Id string
The provider-assigned unique ID for this managed resource.
- Time
Created string The date and time the compute image capability schema was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
- Compute
Global stringImage Capability Schema Id The ocid of the compute global image capability schema
- Id string
The provider-assigned unique ID for this managed resource.
- Time
Created string The date and time the compute image capability schema was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
- compute
Global StringImage Capability Schema Id The ocid of the compute global image capability schema
- id String
The provider-assigned unique ID for this managed resource.
- time
Created String The date and time the compute image capability schema was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
- compute
Global stringImage Capability Schema Id The ocid of the compute global image capability schema
- id string
The provider-assigned unique ID for this managed resource.
- time
Created string The date and time the compute image capability schema was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
- compute_
global_ strimage_ capability_ schema_ id The ocid of the compute global image capability schema
- id str
The provider-assigned unique ID for this managed resource.
- time_
created str The date and time the compute image capability schema was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
- compute
Global StringImage Capability Schema Id The ocid of the compute global image capability schema
- id String
The provider-assigned unique ID for this managed resource.
- time
Created String The date and time the compute image capability schema was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
Look up Existing ComputeImageCapabilitySchema Resource
Get an existing ComputeImageCapabilitySchema 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?: ComputeImageCapabilitySchemaState, opts?: CustomResourceOptions): ComputeImageCapabilitySchema
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
compartment_id: Optional[str] = None,
compute_global_image_capability_schema_id: Optional[str] = None,
compute_global_image_capability_schema_version_name: Optional[str] = None,
defined_tags: Optional[Mapping[str, Any]] = None,
display_name: Optional[str] = None,
freeform_tags: Optional[Mapping[str, Any]] = None,
image_id: Optional[str] = None,
schema_data: Optional[Mapping[str, Any]] = None,
time_created: Optional[str] = None) -> ComputeImageCapabilitySchema
func GetComputeImageCapabilitySchema(ctx *Context, name string, id IDInput, state *ComputeImageCapabilitySchemaState, opts ...ResourceOption) (*ComputeImageCapabilitySchema, error)
public static ComputeImageCapabilitySchema Get(string name, Input<string> id, ComputeImageCapabilitySchemaState? state, CustomResourceOptions? opts = null)
public static ComputeImageCapabilitySchema get(String name, Output<String> id, ComputeImageCapabilitySchemaState 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.
- Compartment
Id string (Updatable) The OCID of the compartment that contains the resource.
- Compute
Global stringImage Capability Schema Id The ocid of the compute global image capability schema
- Compute
Global stringImage Capability Schema Version Name The name of the compute global image capability schema version
- Dictionary<string, object>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- Display
Name string (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- Dictionary<string, object>
(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- Image
Id string The ocid of the image
- Schema
Data Dictionary<string, object> (Updatable) The map of each capability name to its ImageCapabilitySchemaDescriptor.
- Time
Created string The date and time the compute image capability schema was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
- Compartment
Id string (Updatable) The OCID of the compartment that contains the resource.
- Compute
Global stringImage Capability Schema Id The ocid of the compute global image capability schema
- Compute
Global stringImage Capability Schema Version Name The name of the compute global image capability schema version
- map[string]interface{}
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- Display
Name string (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- map[string]interface{}
(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- Image
Id string The ocid of the image
- Schema
Data map[string]interface{} (Updatable) The map of each capability name to its ImageCapabilitySchemaDescriptor.
- Time
Created string The date and time the compute image capability schema was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
- compartment
Id String (Updatable) The OCID of the compartment that contains the resource.
- compute
Global StringImage Capability Schema Id The ocid of the compute global image capability schema
- compute
Global StringImage Capability Schema Version Name The name of the compute global image capability schema version
- Map<String,Object>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- display
Name String (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- Map<String,Object>
(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- image
Id String The ocid of the image
- schema
Data Map<String,Object> (Updatable) The map of each capability name to its ImageCapabilitySchemaDescriptor.
- time
Created String The date and time the compute image capability schema was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
- compartment
Id string (Updatable) The OCID of the compartment that contains the resource.
- compute
Global stringImage Capability Schema Id The ocid of the compute global image capability schema
- compute
Global stringImage Capability Schema Version Name The name of the compute global image capability schema version
- {[key: string]: any}
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- display
Name string (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- {[key: string]: any}
(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- image
Id string The ocid of the image
- schema
Data {[key: string]: any} (Updatable) The map of each capability name to its ImageCapabilitySchemaDescriptor.
- time
Created string The date and time the compute image capability schema was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
- compartment_
id str (Updatable) The OCID of the compartment that contains the resource.
- compute_
global_ strimage_ capability_ schema_ id The ocid of the compute global image capability schema
- compute_
global_ strimage_ capability_ schema_ version_ name The name of the compute global image capability schema version
- Mapping[str, Any]
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- display_
name str (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- Mapping[str, Any]
(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- image_
id str The ocid of the image
- schema_
data Mapping[str, Any] (Updatable) The map of each capability name to its ImageCapabilitySchemaDescriptor.
- time_
created str The date and time the compute image capability schema was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
- compartment
Id String (Updatable) The OCID of the compartment that contains the resource.
- compute
Global StringImage Capability Schema Id The ocid of the compute global image capability schema
- compute
Global StringImage Capability Schema Version Name The name of the compute global image capability schema version
- Map<Any>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- display
Name String (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- Map<Any>
(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- image
Id String The ocid of the image
- schema
Data Map<Any> (Updatable) The map of each capability name to its ImageCapabilitySchemaDescriptor.
- time
Created String The date and time the compute image capability schema was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
Import
ComputeImageCapabilitySchemas can be imported using the id
, e.g.
$ pulumi import oci:Core/computeImageCapabilitySchema:ComputeImageCapabilitySchema test_compute_image_capability_schema "id"
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
This Pulumi package is based on the
oci
Terraform Provider.