@pulumi/oci 0.7.0 → 0.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/database/autonomousContainerDatabase.d.ts +44 -5
- package/database/autonomousContainerDatabase.js +10 -1
- package/database/autonomousContainerDatabase.js.map +1 -1
- package/database/autonomousContainerDatabaseDataguardAssociation.d.ts +21 -5
- package/database/autonomousContainerDatabaseDataguardAssociation.js +3 -1
- package/database/autonomousContainerDatabaseDataguardAssociation.js.map +1 -1
- package/database/autonomousContainerDatabaseDataguardRoleChange.d.ts +48 -0
- package/database/autonomousContainerDatabaseDataguardRoleChange.js +64 -0
- package/database/autonomousContainerDatabaseDataguardRoleChange.js.map +1 -0
- package/database/autonomousDatabase.d.ts +16 -0
- package/database/autonomousDatabase.js +4 -0
- package/database/autonomousDatabase.js.map +1 -1
- package/database/getAutonomousContainerDatabase.d.ts +9 -0
- package/database/getAutonomousContainerDatabase.js.map +1 -1
- package/database/getAutonomousContainerDatabaseDataguardAssociation.d.ts +5 -1
- package/database/getAutonomousContainerDatabaseDataguardAssociation.js.map +1 -1
- package/database/getAutonomousContainerDatabaseVersions.d.ts +83 -0
- package/database/getAutonomousContainerDatabaseVersions.js +55 -0
- package/database/getAutonomousContainerDatabaseVersions.js.map +1 -0
- package/database/getAutonomousDatabase.d.ts +8 -0
- package/database/getAutonomousDatabase.js.map +1 -1
- package/database/index.d.ts +6 -0
- package/database/index.js +14 -6
- package/database/index.js.map +1 -1
- package/devops/deployArtifact.d.ts +6 -0
- package/devops/deployArtifact.js +6 -0
- package/devops/deployArtifact.js.map +1 -1
- package/devops/deployStage.d.ts +147 -3
- package/devops/deployStage.js +24 -0
- package/devops/deployStage.js.map +1 -1
- package/devops/getDeployStage.d.ts +48 -0
- package/devops/getDeployStage.js.map +1 -1
- package/devops/repository.d.ts +3 -3
- package/opsi/getOpsiConfiguration.d.ts +166 -0
- package/opsi/getOpsiConfiguration.js +67 -0
- package/opsi/getOpsiConfiguration.js.map +1 -0
- package/opsi/getOpsiConfigurationConfigurationItem.d.ts +120 -0
- package/opsi/getOpsiConfigurationConfigurationItem.js +65 -0
- package/opsi/getOpsiConfigurationConfigurationItem.js.map +1 -0
- package/opsi/getOpsiConfigurations.d.ts +117 -0
- package/opsi/getOpsiConfigurations.js +61 -0
- package/opsi/getOpsiConfigurations.js.map +1 -0
- package/opsi/index.d.ts +12 -0
- package/opsi/index.js +15 -1
- package/opsi/index.js.map +1 -1
- package/opsi/opsiConfiguration.d.ts +275 -0
- package/opsi/opsiConfiguration.js +125 -0
- package/opsi/opsiConfiguration.js.map +1 -0
- package/package.json +2 -2
- package/package.json.dev +2 -2
- package/types/input.d.ts +172 -3
- package/types/output.d.ts +694 -13
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
|
+
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
+
exports.getOpsiConfigurationsOutput = exports.getOpsiConfigurations = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("../utilities");
|
|
8
|
+
/**
|
|
9
|
+
* This data source provides the list of Opsi Configurations in Oracle Cloud Infrastructure Opsi service.
|
|
10
|
+
*
|
|
11
|
+
* Gets a list of OPSI configuration resources based on the query parameters specified.
|
|
12
|
+
*
|
|
13
|
+
* ## Example Usage
|
|
14
|
+
*
|
|
15
|
+
* ```typescript
|
|
16
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
17
|
+
* import * as oci from "@pulumi/oci";
|
|
18
|
+
*
|
|
19
|
+
* const testOpsiConfigurations = oci.Opsi.getOpsiConfigurations({
|
|
20
|
+
* compartmentId: _var.compartment_id,
|
|
21
|
+
* displayName: _var.opsi_configuration_display_name,
|
|
22
|
+
* opsiConfigTypes: _var.opsi_configuration_opsi_config_type,
|
|
23
|
+
* states: _var.opsi_configuration_state,
|
|
24
|
+
* });
|
|
25
|
+
* ```
|
|
26
|
+
*/
|
|
27
|
+
function getOpsiConfigurations(args, opts) {
|
|
28
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
29
|
+
return pulumi.runtime.invoke("oci:Opsi/getOpsiConfigurations:getOpsiConfigurations", {
|
|
30
|
+
"compartmentId": args.compartmentId,
|
|
31
|
+
"displayName": args.displayName,
|
|
32
|
+
"filters": args.filters,
|
|
33
|
+
"opsiConfigTypes": args.opsiConfigTypes,
|
|
34
|
+
"states": args.states,
|
|
35
|
+
}, opts);
|
|
36
|
+
}
|
|
37
|
+
exports.getOpsiConfigurations = getOpsiConfigurations;
|
|
38
|
+
/**
|
|
39
|
+
* This data source provides the list of Opsi Configurations in Oracle Cloud Infrastructure Opsi service.
|
|
40
|
+
*
|
|
41
|
+
* Gets a list of OPSI configuration resources based on the query parameters specified.
|
|
42
|
+
*
|
|
43
|
+
* ## Example Usage
|
|
44
|
+
*
|
|
45
|
+
* ```typescript
|
|
46
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
47
|
+
* import * as oci from "@pulumi/oci";
|
|
48
|
+
*
|
|
49
|
+
* const testOpsiConfigurations = oci.Opsi.getOpsiConfigurations({
|
|
50
|
+
* compartmentId: _var.compartment_id,
|
|
51
|
+
* displayName: _var.opsi_configuration_display_name,
|
|
52
|
+
* opsiConfigTypes: _var.opsi_configuration_opsi_config_type,
|
|
53
|
+
* states: _var.opsi_configuration_state,
|
|
54
|
+
* });
|
|
55
|
+
* ```
|
|
56
|
+
*/
|
|
57
|
+
function getOpsiConfigurationsOutput(args, opts) {
|
|
58
|
+
return pulumi.output(args).apply((a) => getOpsiConfigurations(a, opts));
|
|
59
|
+
}
|
|
60
|
+
exports.getOpsiConfigurationsOutput = getOpsiConfigurationsOutput;
|
|
61
|
+
//# sourceMappingURL=getOpsiConfigurations.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getOpsiConfigurations.js","sourceRoot":"","sources":["../../opsi/getOpsiConfigurations.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;GAkBG;AACH,SAAgB,qBAAqB,CAAC,IAA+B,EAAE,IAA2B;IAE9F,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,sDAAsD,EAAE;QACjF,eAAe,EAAE,IAAI,CAAC,aAAa;QACnC,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,iBAAiB,EAAE,IAAI,CAAC,eAAe;QACvC,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAVD,sDAUC;AAuDD;;;;;;;;;;;;;;;;;;GAkBG;AACH,SAAgB,2BAA2B,CAAC,IAAqC,EAAE,IAA2B;IAC1G,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,qBAAqB,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAChF,CAAC;AAFD,kEAEC"}
|
package/opsi/index.d.ts
CHANGED
|
@@ -82,6 +82,15 @@ export declare const getOperationsInsightsWarehouseUsersOutput: typeof import(".
|
|
|
82
82
|
export { GetOperationsInsightsWarehousesArgs, GetOperationsInsightsWarehousesResult, GetOperationsInsightsWarehousesOutputArgs } from "./getOperationsInsightsWarehouses";
|
|
83
83
|
export declare const getOperationsInsightsWarehouses: typeof import("./getOperationsInsightsWarehouses").getOperationsInsightsWarehouses;
|
|
84
84
|
export declare const getOperationsInsightsWarehousesOutput: typeof import("./getOperationsInsightsWarehouses").getOperationsInsightsWarehousesOutput;
|
|
85
|
+
export { GetOpsiConfigurationArgs, GetOpsiConfigurationResult, GetOpsiConfigurationOutputArgs } from "./getOpsiConfiguration";
|
|
86
|
+
export declare const getOpsiConfiguration: typeof import("./getOpsiConfiguration").getOpsiConfiguration;
|
|
87
|
+
export declare const getOpsiConfigurationOutput: typeof import("./getOpsiConfiguration").getOpsiConfigurationOutput;
|
|
88
|
+
export { GetOpsiConfigurationConfigurationItemArgs, GetOpsiConfigurationConfigurationItemResult, GetOpsiConfigurationConfigurationItemOutputArgs } from "./getOpsiConfigurationConfigurationItem";
|
|
89
|
+
export declare const getOpsiConfigurationConfigurationItem: typeof import("./getOpsiConfigurationConfigurationItem").getOpsiConfigurationConfigurationItem;
|
|
90
|
+
export declare const getOpsiConfigurationConfigurationItemOutput: typeof import("./getOpsiConfigurationConfigurationItem").getOpsiConfigurationConfigurationItemOutput;
|
|
91
|
+
export { GetOpsiConfigurationsArgs, GetOpsiConfigurationsResult, GetOpsiConfigurationsOutputArgs } from "./getOpsiConfigurations";
|
|
92
|
+
export declare const getOpsiConfigurations: typeof import("./getOpsiConfigurations").getOpsiConfigurations;
|
|
93
|
+
export declare const getOpsiConfigurationsOutput: typeof import("./getOpsiConfigurations").getOpsiConfigurationsOutput;
|
|
85
94
|
export { HostInsightArgs, HostInsightState } from "./hostInsight";
|
|
86
95
|
export type HostInsight = import("./hostInsight").HostInsight;
|
|
87
96
|
export declare const HostInsight: typeof import("./hostInsight").HostInsight;
|
|
@@ -100,3 +109,6 @@ export declare const OperationsInsightsWarehouseRotateWarehouseWallet: typeof im
|
|
|
100
109
|
export { OperationsInsightsWarehouseUserArgs, OperationsInsightsWarehouseUserState } from "./operationsInsightsWarehouseUser";
|
|
101
110
|
export type OperationsInsightsWarehouseUser = import("./operationsInsightsWarehouseUser").OperationsInsightsWarehouseUser;
|
|
102
111
|
export declare const OperationsInsightsWarehouseUser: typeof import("./operationsInsightsWarehouseUser").OperationsInsightsWarehouseUser;
|
|
112
|
+
export { OpsiConfigurationArgs, OpsiConfigurationState } from "./opsiConfiguration";
|
|
113
|
+
export type OpsiConfiguration = import("./opsiConfiguration").OpsiConfiguration;
|
|
114
|
+
export declare const OpsiConfiguration: typeof import("./opsiConfiguration").OpsiConfiguration;
|
package/opsi/index.js
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
5
|
exports.getOperationsInsightsWarehouseUsersOutput = exports.getOperationsInsightsWarehouseUsers = exports.getOperationsInsightsWarehouseUserOutput = exports.getOperationsInsightsWarehouseUser = exports.getOperationsInsightsWarehouseResourceUsageSummaryOutput = exports.getOperationsInsightsWarehouseResourceUsageSummary = exports.getOperationsInsightsWarehouseOutput = exports.getOperationsInsightsWarehouse = exports.getOperationsInsightsPrivateEndpointsOutput = exports.getOperationsInsightsPrivateEndpoints = exports.getOperationsInsightsPrivateEndpointOutput = exports.getOperationsInsightsPrivateEndpoint = exports.getImportableComputeEntityOutput = exports.getImportableComputeEntity = exports.getImportableComputeEntitiesOutput = exports.getImportableComputeEntities = exports.getImportableAgentEntityOutput = exports.getImportableAgentEntity = exports.getImportableAgentEntitiesOutput = exports.getImportableAgentEntities = exports.getHostInsightsOutput = exports.getHostInsights = exports.getHostInsightOutput = exports.getHostInsight = exports.getExadataInsightsOutput = exports.getExadataInsights = exports.getExadataInsightOutput = exports.getExadataInsight = exports.getEnterpriseManagerBridgesOutput = exports.getEnterpriseManagerBridges = exports.getEnterpriseManagerBridgeOutput = exports.getEnterpriseManagerBridge = exports.getDatabaseInsightsOutput = exports.getDatabaseInsights = exports.getDatabaseInsightOutput = exports.getDatabaseInsight = exports.getAwrHubsOutput = exports.getAwrHubs = exports.getAwrHubAwrSourcesSummaryOutput = exports.getAwrHubAwrSourcesSummary = exports.getAwrHubAwrSnapshotsOutput = exports.getAwrHubAwrSnapshots = exports.getAwrHubAwrSnapshotOutput = exports.getAwrHubAwrSnapshot = exports.getAwrHubOutput = exports.getAwrHub = exports.ExadataInsight = exports.EnterpriseManagerBridge = exports.DatabaseInsight = exports.AwrHub = void 0;
|
|
6
|
-
exports.OperationsInsightsWarehouseUser = exports.OperationsInsightsWarehouseRotateWarehouseWallet = exports.OperationsInsightsWarehouseDownloadWarehouseWallet = exports.OperationsInsightsWarehouse = exports.OperationsInsightsPrivateEndpoint = exports.HostInsight = exports.getOperationsInsightsWarehousesOutput = exports.getOperationsInsightsWarehouses = void 0;
|
|
6
|
+
exports.OpsiConfiguration = exports.OperationsInsightsWarehouseUser = exports.OperationsInsightsWarehouseRotateWarehouseWallet = exports.OperationsInsightsWarehouseDownloadWarehouseWallet = exports.OperationsInsightsWarehouse = exports.OperationsInsightsPrivateEndpoint = exports.HostInsight = exports.getOpsiConfigurationsOutput = exports.getOpsiConfigurations = exports.getOpsiConfigurationConfigurationItemOutput = exports.getOpsiConfigurationConfigurationItem = exports.getOpsiConfigurationOutput = exports.getOpsiConfiguration = exports.getOperationsInsightsWarehousesOutput = exports.getOperationsInsightsWarehouses = void 0;
|
|
7
7
|
const pulumi = require("@pulumi/pulumi");
|
|
8
8
|
const utilities = require("../utilities");
|
|
9
9
|
exports.AwrHub = null;
|
|
@@ -86,6 +86,15 @@ utilities.lazyLoad(exports, ["getOperationsInsightsWarehouseUsers", "getOperatio
|
|
|
86
86
|
exports.getOperationsInsightsWarehouses = null;
|
|
87
87
|
exports.getOperationsInsightsWarehousesOutput = null;
|
|
88
88
|
utilities.lazyLoad(exports, ["getOperationsInsightsWarehouses", "getOperationsInsightsWarehousesOutput"], () => require("./getOperationsInsightsWarehouses"));
|
|
89
|
+
exports.getOpsiConfiguration = null;
|
|
90
|
+
exports.getOpsiConfigurationOutput = null;
|
|
91
|
+
utilities.lazyLoad(exports, ["getOpsiConfiguration", "getOpsiConfigurationOutput"], () => require("./getOpsiConfiguration"));
|
|
92
|
+
exports.getOpsiConfigurationConfigurationItem = null;
|
|
93
|
+
exports.getOpsiConfigurationConfigurationItemOutput = null;
|
|
94
|
+
utilities.lazyLoad(exports, ["getOpsiConfigurationConfigurationItem", "getOpsiConfigurationConfigurationItemOutput"], () => require("./getOpsiConfigurationConfigurationItem"));
|
|
95
|
+
exports.getOpsiConfigurations = null;
|
|
96
|
+
exports.getOpsiConfigurationsOutput = null;
|
|
97
|
+
utilities.lazyLoad(exports, ["getOpsiConfigurations", "getOpsiConfigurationsOutput"], () => require("./getOpsiConfigurations"));
|
|
89
98
|
exports.HostInsight = null;
|
|
90
99
|
utilities.lazyLoad(exports, ["HostInsight"], () => require("./hostInsight"));
|
|
91
100
|
exports.OperationsInsightsPrivateEndpoint = null;
|
|
@@ -98,6 +107,8 @@ exports.OperationsInsightsWarehouseRotateWarehouseWallet = null;
|
|
|
98
107
|
utilities.lazyLoad(exports, ["OperationsInsightsWarehouseRotateWarehouseWallet"], () => require("./operationsInsightsWarehouseRotateWarehouseWallet"));
|
|
99
108
|
exports.OperationsInsightsWarehouseUser = null;
|
|
100
109
|
utilities.lazyLoad(exports, ["OperationsInsightsWarehouseUser"], () => require("./operationsInsightsWarehouseUser"));
|
|
110
|
+
exports.OpsiConfiguration = null;
|
|
111
|
+
utilities.lazyLoad(exports, ["OpsiConfiguration"], () => require("./opsiConfiguration"));
|
|
101
112
|
const _module = {
|
|
102
113
|
version: utilities.getVersion(),
|
|
103
114
|
construct: (name, type, urn) => {
|
|
@@ -122,6 +133,8 @@ const _module = {
|
|
|
122
133
|
return new exports.OperationsInsightsWarehouseRotateWarehouseWallet(name, undefined, { urn });
|
|
123
134
|
case "oci:Opsi/operationsInsightsWarehouseUser:OperationsInsightsWarehouseUser":
|
|
124
135
|
return new exports.OperationsInsightsWarehouseUser(name, undefined, { urn });
|
|
136
|
+
case "oci:Opsi/opsiConfiguration:OpsiConfiguration":
|
|
137
|
+
return new exports.OpsiConfiguration(name, undefined, { urn });
|
|
125
138
|
default:
|
|
126
139
|
throw new Error(`unknown resource type ${type}`);
|
|
127
140
|
}
|
|
@@ -137,4 +150,5 @@ pulumi.runtime.registerResourceModule("oci", "Opsi/operationsInsightsWarehouse",
|
|
|
137
150
|
pulumi.runtime.registerResourceModule("oci", "Opsi/operationsInsightsWarehouseDownloadWarehouseWallet", _module);
|
|
138
151
|
pulumi.runtime.registerResourceModule("oci", "Opsi/operationsInsightsWarehouseRotateWarehouseWallet", _module);
|
|
139
152
|
pulumi.runtime.registerResourceModule("oci", "Opsi/operationsInsightsWarehouseUser", _module);
|
|
153
|
+
pulumi.runtime.registerResourceModule("oci", "Opsi/opsiConfiguration", _module);
|
|
140
154
|
//# sourceMappingURL=index.js.map
|
package/opsi/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../opsi/index.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../opsi/index.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,275 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as inputs from "../types/input";
|
|
3
|
+
import * as outputs from "../types/output";
|
|
4
|
+
/**
|
|
5
|
+
* This resource provides the Opsi Configuration resource in Oracle Cloud Infrastructure Opsi service.
|
|
6
|
+
*
|
|
7
|
+
* Create an OPSI configuration resource.
|
|
8
|
+
*
|
|
9
|
+
* ## Example Usage
|
|
10
|
+
*
|
|
11
|
+
* ```typescript
|
|
12
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
13
|
+
* import * as oci from "@pulumi/oci";
|
|
14
|
+
*
|
|
15
|
+
* const testOpsiConfiguration = new oci.opsi.OpsiConfiguration("testOpsiConfiguration", {
|
|
16
|
+
* opsiConfigType: _var.opsi_configuration_opsi_config_type,
|
|
17
|
+
* compartmentId: _var.compartment_id,
|
|
18
|
+
* configItemCustomStatuses: _var.opsi_configuration_config_item_custom_status,
|
|
19
|
+
* configItemFields: _var.opsi_configuration_config_item_field,
|
|
20
|
+
* configItems: [{
|
|
21
|
+
* configItemType: _var.opsi_configuration_config_items_config_item_type,
|
|
22
|
+
* name: _var.opsi_configuration_config_items_name,
|
|
23
|
+
* value: _var.opsi_configuration_config_items_value,
|
|
24
|
+
* }],
|
|
25
|
+
* configItemsApplicableContexts: _var.opsi_configuration_config_items_applicable_context,
|
|
26
|
+
* definedTags: {
|
|
27
|
+
* "foo-namespace.bar-key": "value",
|
|
28
|
+
* },
|
|
29
|
+
* description: _var.opsi_configuration_description,
|
|
30
|
+
* displayName: _var.opsi_configuration_display_name,
|
|
31
|
+
* freeformTags: {
|
|
32
|
+
* "bar-key": "value",
|
|
33
|
+
* },
|
|
34
|
+
* opsiConfigFields: _var.opsi_configuration_opsi_config_field,
|
|
35
|
+
* systemTags: _var.opsi_configuration_system_tags,
|
|
36
|
+
* });
|
|
37
|
+
* ```
|
|
38
|
+
*
|
|
39
|
+
* ## Import
|
|
40
|
+
*
|
|
41
|
+
* OpsiConfigurations can be imported using the `id`, e.g.
|
|
42
|
+
*
|
|
43
|
+
* ```sh
|
|
44
|
+
* $ pulumi import oci:Opsi/opsiConfiguration:OpsiConfiguration test_opsi_configuration "id"
|
|
45
|
+
* ```
|
|
46
|
+
*/
|
|
47
|
+
export declare class OpsiConfiguration extends pulumi.CustomResource {
|
|
48
|
+
/**
|
|
49
|
+
* Get an existing OpsiConfiguration resource's state with the given name, ID, and optional extra
|
|
50
|
+
* properties used to qualify the lookup.
|
|
51
|
+
*
|
|
52
|
+
* @param name The _unique_ name of the resulting resource.
|
|
53
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
54
|
+
* @param state Any extra arguments used during the lookup.
|
|
55
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
56
|
+
*/
|
|
57
|
+
static get(name: string, id: pulumi.Input<pulumi.ID>, state?: OpsiConfigurationState, opts?: pulumi.CustomResourceOptions): OpsiConfiguration;
|
|
58
|
+
/**
|
|
59
|
+
* Returns true if the given object is an instance of OpsiConfiguration. This is designed to work even
|
|
60
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
61
|
+
*/
|
|
62
|
+
static isInstance(obj: any): obj is OpsiConfiguration;
|
|
63
|
+
/**
|
|
64
|
+
* (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
|
|
65
|
+
*/
|
|
66
|
+
readonly compartmentId: pulumi.Output<string>;
|
|
67
|
+
/**
|
|
68
|
+
* Specifies whether only customized configuration items or only non-customized configuration items or both have to be returned. By default only customized configuration items are returned.
|
|
69
|
+
*/
|
|
70
|
+
readonly configItemCustomStatuses: pulumi.Output<string[] | undefined>;
|
|
71
|
+
/**
|
|
72
|
+
* Specifies the fields to return in a config item summary.
|
|
73
|
+
*/
|
|
74
|
+
readonly configItemFields: pulumi.Output<string[] | undefined>;
|
|
75
|
+
/**
|
|
76
|
+
* (Updatable) Array of configuration items with custom values. All and only configuration items requiring custom values should be part of this array.
|
|
77
|
+
*/
|
|
78
|
+
readonly configItems: pulumi.Output<outputs.Opsi.OpsiConfigurationConfigItem[]>;
|
|
79
|
+
/**
|
|
80
|
+
* Returns the configuration items filtered by applicable contexts sent in this param. By default configuration items of all applicable contexts are returned.
|
|
81
|
+
*/
|
|
82
|
+
readonly configItemsApplicableContexts: pulumi.Output<string[] | undefined>;
|
|
83
|
+
/**
|
|
84
|
+
* (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
|
85
|
+
*/
|
|
86
|
+
readonly definedTags: pulumi.Output<{
|
|
87
|
+
[key: string]: any;
|
|
88
|
+
}>;
|
|
89
|
+
/**
|
|
90
|
+
* (Updatable) Description of OPSI configuration.
|
|
91
|
+
*/
|
|
92
|
+
readonly description: pulumi.Output<string>;
|
|
93
|
+
/**
|
|
94
|
+
* (Updatable) User-friendly display name for the OPSI configuration. The name does not have to be unique.
|
|
95
|
+
*/
|
|
96
|
+
readonly displayName: pulumi.Output<string>;
|
|
97
|
+
/**
|
|
98
|
+
* (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
|
99
|
+
*/
|
|
100
|
+
readonly freeformTags: pulumi.Output<{
|
|
101
|
+
[key: string]: any;
|
|
102
|
+
}>;
|
|
103
|
+
/**
|
|
104
|
+
* A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
|
|
105
|
+
*/
|
|
106
|
+
readonly lifecycleDetails: pulumi.Output<string>;
|
|
107
|
+
/**
|
|
108
|
+
* Optional fields to return as part of OpsiConfiguration object. Unless requested, these fields will not be returned by default.
|
|
109
|
+
*/
|
|
110
|
+
readonly opsiConfigFields: pulumi.Output<string[] | undefined>;
|
|
111
|
+
/**
|
|
112
|
+
* (Updatable) OPSI configuration type.
|
|
113
|
+
*/
|
|
114
|
+
readonly opsiConfigType: pulumi.Output<string>;
|
|
115
|
+
/**
|
|
116
|
+
* OPSI configuration resource lifecycle state.
|
|
117
|
+
*/
|
|
118
|
+
readonly state: pulumi.Output<string>;
|
|
119
|
+
/**
|
|
120
|
+
* (Updatable) System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
|
121
|
+
*/
|
|
122
|
+
readonly systemTags: pulumi.Output<{
|
|
123
|
+
[key: string]: any;
|
|
124
|
+
}>;
|
|
125
|
+
/**
|
|
126
|
+
* The time at which the resource was first created. An RFC3339 formatted datetime string
|
|
127
|
+
*/
|
|
128
|
+
readonly timeCreated: pulumi.Output<string>;
|
|
129
|
+
/**
|
|
130
|
+
* The time at which the resource was last updated. An RFC3339 formatted datetime string
|
|
131
|
+
*/
|
|
132
|
+
readonly timeUpdated: pulumi.Output<string>;
|
|
133
|
+
/**
|
|
134
|
+
* Create a OpsiConfiguration resource with the given unique name, arguments, and options.
|
|
135
|
+
*
|
|
136
|
+
* @param name The _unique_ name of the resource.
|
|
137
|
+
* @param args The arguments to use to populate this resource's properties.
|
|
138
|
+
* @param opts A bag of options that control this resource's behavior.
|
|
139
|
+
*/
|
|
140
|
+
constructor(name: string, args: OpsiConfigurationArgs, opts?: pulumi.CustomResourceOptions);
|
|
141
|
+
}
|
|
142
|
+
/**
|
|
143
|
+
* Input properties used for looking up and filtering OpsiConfiguration resources.
|
|
144
|
+
*/
|
|
145
|
+
export interface OpsiConfigurationState {
|
|
146
|
+
/**
|
|
147
|
+
* (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
|
|
148
|
+
*/
|
|
149
|
+
compartmentId?: pulumi.Input<string>;
|
|
150
|
+
/**
|
|
151
|
+
* Specifies whether only customized configuration items or only non-customized configuration items or both have to be returned. By default only customized configuration items are returned.
|
|
152
|
+
*/
|
|
153
|
+
configItemCustomStatuses?: pulumi.Input<pulumi.Input<string>[]>;
|
|
154
|
+
/**
|
|
155
|
+
* Specifies the fields to return in a config item summary.
|
|
156
|
+
*/
|
|
157
|
+
configItemFields?: pulumi.Input<pulumi.Input<string>[]>;
|
|
158
|
+
/**
|
|
159
|
+
* (Updatable) Array of configuration items with custom values. All and only configuration items requiring custom values should be part of this array.
|
|
160
|
+
*/
|
|
161
|
+
configItems?: pulumi.Input<pulumi.Input<inputs.Opsi.OpsiConfigurationConfigItem>[]>;
|
|
162
|
+
/**
|
|
163
|
+
* Returns the configuration items filtered by applicable contexts sent in this param. By default configuration items of all applicable contexts are returned.
|
|
164
|
+
*/
|
|
165
|
+
configItemsApplicableContexts?: pulumi.Input<pulumi.Input<string>[]>;
|
|
166
|
+
/**
|
|
167
|
+
* (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
|
168
|
+
*/
|
|
169
|
+
definedTags?: pulumi.Input<{
|
|
170
|
+
[key: string]: any;
|
|
171
|
+
}>;
|
|
172
|
+
/**
|
|
173
|
+
* (Updatable) Description of OPSI configuration.
|
|
174
|
+
*/
|
|
175
|
+
description?: pulumi.Input<string>;
|
|
176
|
+
/**
|
|
177
|
+
* (Updatable) User-friendly display name for the OPSI configuration. The name does not have to be unique.
|
|
178
|
+
*/
|
|
179
|
+
displayName?: pulumi.Input<string>;
|
|
180
|
+
/**
|
|
181
|
+
* (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
|
182
|
+
*/
|
|
183
|
+
freeformTags?: pulumi.Input<{
|
|
184
|
+
[key: string]: any;
|
|
185
|
+
}>;
|
|
186
|
+
/**
|
|
187
|
+
* A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
|
|
188
|
+
*/
|
|
189
|
+
lifecycleDetails?: pulumi.Input<string>;
|
|
190
|
+
/**
|
|
191
|
+
* Optional fields to return as part of OpsiConfiguration object. Unless requested, these fields will not be returned by default.
|
|
192
|
+
*/
|
|
193
|
+
opsiConfigFields?: pulumi.Input<pulumi.Input<string>[]>;
|
|
194
|
+
/**
|
|
195
|
+
* (Updatable) OPSI configuration type.
|
|
196
|
+
*/
|
|
197
|
+
opsiConfigType?: pulumi.Input<string>;
|
|
198
|
+
/**
|
|
199
|
+
* OPSI configuration resource lifecycle state.
|
|
200
|
+
*/
|
|
201
|
+
state?: pulumi.Input<string>;
|
|
202
|
+
/**
|
|
203
|
+
* (Updatable) System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
|
204
|
+
*/
|
|
205
|
+
systemTags?: pulumi.Input<{
|
|
206
|
+
[key: string]: any;
|
|
207
|
+
}>;
|
|
208
|
+
/**
|
|
209
|
+
* The time at which the resource was first created. An RFC3339 formatted datetime string
|
|
210
|
+
*/
|
|
211
|
+
timeCreated?: pulumi.Input<string>;
|
|
212
|
+
/**
|
|
213
|
+
* The time at which the resource was last updated. An RFC3339 formatted datetime string
|
|
214
|
+
*/
|
|
215
|
+
timeUpdated?: pulumi.Input<string>;
|
|
216
|
+
}
|
|
217
|
+
/**
|
|
218
|
+
* The set of arguments for constructing a OpsiConfiguration resource.
|
|
219
|
+
*/
|
|
220
|
+
export interface OpsiConfigurationArgs {
|
|
221
|
+
/**
|
|
222
|
+
* (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
|
|
223
|
+
*/
|
|
224
|
+
compartmentId?: pulumi.Input<string>;
|
|
225
|
+
/**
|
|
226
|
+
* Specifies whether only customized configuration items or only non-customized configuration items or both have to be returned. By default only customized configuration items are returned.
|
|
227
|
+
*/
|
|
228
|
+
configItemCustomStatuses?: pulumi.Input<pulumi.Input<string>[]>;
|
|
229
|
+
/**
|
|
230
|
+
* Specifies the fields to return in a config item summary.
|
|
231
|
+
*/
|
|
232
|
+
configItemFields?: pulumi.Input<pulumi.Input<string>[]>;
|
|
233
|
+
/**
|
|
234
|
+
* (Updatable) Array of configuration items with custom values. All and only configuration items requiring custom values should be part of this array.
|
|
235
|
+
*/
|
|
236
|
+
configItems?: pulumi.Input<pulumi.Input<inputs.Opsi.OpsiConfigurationConfigItem>[]>;
|
|
237
|
+
/**
|
|
238
|
+
* Returns the configuration items filtered by applicable contexts sent in this param. By default configuration items of all applicable contexts are returned.
|
|
239
|
+
*/
|
|
240
|
+
configItemsApplicableContexts?: pulumi.Input<pulumi.Input<string>[]>;
|
|
241
|
+
/**
|
|
242
|
+
* (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
|
243
|
+
*/
|
|
244
|
+
definedTags?: pulumi.Input<{
|
|
245
|
+
[key: string]: any;
|
|
246
|
+
}>;
|
|
247
|
+
/**
|
|
248
|
+
* (Updatable) Description of OPSI configuration.
|
|
249
|
+
*/
|
|
250
|
+
description?: pulumi.Input<string>;
|
|
251
|
+
/**
|
|
252
|
+
* (Updatable) User-friendly display name for the OPSI configuration. The name does not have to be unique.
|
|
253
|
+
*/
|
|
254
|
+
displayName?: pulumi.Input<string>;
|
|
255
|
+
/**
|
|
256
|
+
* (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
|
257
|
+
*/
|
|
258
|
+
freeformTags?: pulumi.Input<{
|
|
259
|
+
[key: string]: any;
|
|
260
|
+
}>;
|
|
261
|
+
/**
|
|
262
|
+
* Optional fields to return as part of OpsiConfiguration object. Unless requested, these fields will not be returned by default.
|
|
263
|
+
*/
|
|
264
|
+
opsiConfigFields?: pulumi.Input<pulumi.Input<string>[]>;
|
|
265
|
+
/**
|
|
266
|
+
* (Updatable) OPSI configuration type.
|
|
267
|
+
*/
|
|
268
|
+
opsiConfigType: pulumi.Input<string>;
|
|
269
|
+
/**
|
|
270
|
+
* (Updatable) System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
|
271
|
+
*/
|
|
272
|
+
systemTags?: pulumi.Input<{
|
|
273
|
+
[key: string]: any;
|
|
274
|
+
}>;
|
|
275
|
+
}
|
|
@@ -0,0 +1,125 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
|
+
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
+
exports.OpsiConfiguration = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("../utilities");
|
|
8
|
+
/**
|
|
9
|
+
* This resource provides the Opsi Configuration resource in Oracle Cloud Infrastructure Opsi service.
|
|
10
|
+
*
|
|
11
|
+
* Create an OPSI configuration resource.
|
|
12
|
+
*
|
|
13
|
+
* ## Example Usage
|
|
14
|
+
*
|
|
15
|
+
* ```typescript
|
|
16
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
17
|
+
* import * as oci from "@pulumi/oci";
|
|
18
|
+
*
|
|
19
|
+
* const testOpsiConfiguration = new oci.opsi.OpsiConfiguration("testOpsiConfiguration", {
|
|
20
|
+
* opsiConfigType: _var.opsi_configuration_opsi_config_type,
|
|
21
|
+
* compartmentId: _var.compartment_id,
|
|
22
|
+
* configItemCustomStatuses: _var.opsi_configuration_config_item_custom_status,
|
|
23
|
+
* configItemFields: _var.opsi_configuration_config_item_field,
|
|
24
|
+
* configItems: [{
|
|
25
|
+
* configItemType: _var.opsi_configuration_config_items_config_item_type,
|
|
26
|
+
* name: _var.opsi_configuration_config_items_name,
|
|
27
|
+
* value: _var.opsi_configuration_config_items_value,
|
|
28
|
+
* }],
|
|
29
|
+
* configItemsApplicableContexts: _var.opsi_configuration_config_items_applicable_context,
|
|
30
|
+
* definedTags: {
|
|
31
|
+
* "foo-namespace.bar-key": "value",
|
|
32
|
+
* },
|
|
33
|
+
* description: _var.opsi_configuration_description,
|
|
34
|
+
* displayName: _var.opsi_configuration_display_name,
|
|
35
|
+
* freeformTags: {
|
|
36
|
+
* "bar-key": "value",
|
|
37
|
+
* },
|
|
38
|
+
* opsiConfigFields: _var.opsi_configuration_opsi_config_field,
|
|
39
|
+
* systemTags: _var.opsi_configuration_system_tags,
|
|
40
|
+
* });
|
|
41
|
+
* ```
|
|
42
|
+
*
|
|
43
|
+
* ## Import
|
|
44
|
+
*
|
|
45
|
+
* OpsiConfigurations can be imported using the `id`, e.g.
|
|
46
|
+
*
|
|
47
|
+
* ```sh
|
|
48
|
+
* $ pulumi import oci:Opsi/opsiConfiguration:OpsiConfiguration test_opsi_configuration "id"
|
|
49
|
+
* ```
|
|
50
|
+
*/
|
|
51
|
+
class OpsiConfiguration extends pulumi.CustomResource {
|
|
52
|
+
/**
|
|
53
|
+
* Get an existing OpsiConfiguration resource's state with the given name, ID, and optional extra
|
|
54
|
+
* properties used to qualify the lookup.
|
|
55
|
+
*
|
|
56
|
+
* @param name The _unique_ name of the resulting resource.
|
|
57
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
58
|
+
* @param state Any extra arguments used during the lookup.
|
|
59
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
60
|
+
*/
|
|
61
|
+
static get(name, id, state, opts) {
|
|
62
|
+
return new OpsiConfiguration(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
63
|
+
}
|
|
64
|
+
/**
|
|
65
|
+
* Returns true if the given object is an instance of OpsiConfiguration. This is designed to work even
|
|
66
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
67
|
+
*/
|
|
68
|
+
static isInstance(obj) {
|
|
69
|
+
if (obj === undefined || obj === null) {
|
|
70
|
+
return false;
|
|
71
|
+
}
|
|
72
|
+
return obj['__pulumiType'] === OpsiConfiguration.__pulumiType;
|
|
73
|
+
}
|
|
74
|
+
constructor(name, argsOrState, opts) {
|
|
75
|
+
let resourceInputs = {};
|
|
76
|
+
opts = opts || {};
|
|
77
|
+
if (opts.id) {
|
|
78
|
+
const state = argsOrState;
|
|
79
|
+
resourceInputs["compartmentId"] = state ? state.compartmentId : undefined;
|
|
80
|
+
resourceInputs["configItemCustomStatuses"] = state ? state.configItemCustomStatuses : undefined;
|
|
81
|
+
resourceInputs["configItemFields"] = state ? state.configItemFields : undefined;
|
|
82
|
+
resourceInputs["configItems"] = state ? state.configItems : undefined;
|
|
83
|
+
resourceInputs["configItemsApplicableContexts"] = state ? state.configItemsApplicableContexts : undefined;
|
|
84
|
+
resourceInputs["definedTags"] = state ? state.definedTags : undefined;
|
|
85
|
+
resourceInputs["description"] = state ? state.description : undefined;
|
|
86
|
+
resourceInputs["displayName"] = state ? state.displayName : undefined;
|
|
87
|
+
resourceInputs["freeformTags"] = state ? state.freeformTags : undefined;
|
|
88
|
+
resourceInputs["lifecycleDetails"] = state ? state.lifecycleDetails : undefined;
|
|
89
|
+
resourceInputs["opsiConfigFields"] = state ? state.opsiConfigFields : undefined;
|
|
90
|
+
resourceInputs["opsiConfigType"] = state ? state.opsiConfigType : undefined;
|
|
91
|
+
resourceInputs["state"] = state ? state.state : undefined;
|
|
92
|
+
resourceInputs["systemTags"] = state ? state.systemTags : undefined;
|
|
93
|
+
resourceInputs["timeCreated"] = state ? state.timeCreated : undefined;
|
|
94
|
+
resourceInputs["timeUpdated"] = state ? state.timeUpdated : undefined;
|
|
95
|
+
}
|
|
96
|
+
else {
|
|
97
|
+
const args = argsOrState;
|
|
98
|
+
if ((!args || args.opsiConfigType === undefined) && !opts.urn) {
|
|
99
|
+
throw new Error("Missing required property 'opsiConfigType'");
|
|
100
|
+
}
|
|
101
|
+
resourceInputs["compartmentId"] = args ? args.compartmentId : undefined;
|
|
102
|
+
resourceInputs["configItemCustomStatuses"] = args ? args.configItemCustomStatuses : undefined;
|
|
103
|
+
resourceInputs["configItemFields"] = args ? args.configItemFields : undefined;
|
|
104
|
+
resourceInputs["configItems"] = args ? args.configItems : undefined;
|
|
105
|
+
resourceInputs["configItemsApplicableContexts"] = args ? args.configItemsApplicableContexts : undefined;
|
|
106
|
+
resourceInputs["definedTags"] = args ? args.definedTags : undefined;
|
|
107
|
+
resourceInputs["description"] = args ? args.description : undefined;
|
|
108
|
+
resourceInputs["displayName"] = args ? args.displayName : undefined;
|
|
109
|
+
resourceInputs["freeformTags"] = args ? args.freeformTags : undefined;
|
|
110
|
+
resourceInputs["opsiConfigFields"] = args ? args.opsiConfigFields : undefined;
|
|
111
|
+
resourceInputs["opsiConfigType"] = args ? args.opsiConfigType : undefined;
|
|
112
|
+
resourceInputs["systemTags"] = args ? args.systemTags : undefined;
|
|
113
|
+
resourceInputs["lifecycleDetails"] = undefined /*out*/;
|
|
114
|
+
resourceInputs["state"] = undefined /*out*/;
|
|
115
|
+
resourceInputs["timeCreated"] = undefined /*out*/;
|
|
116
|
+
resourceInputs["timeUpdated"] = undefined /*out*/;
|
|
117
|
+
}
|
|
118
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
119
|
+
super(OpsiConfiguration.__pulumiType, name, resourceInputs, opts);
|
|
120
|
+
}
|
|
121
|
+
}
|
|
122
|
+
exports.OpsiConfiguration = OpsiConfiguration;
|
|
123
|
+
/** @internal */
|
|
124
|
+
OpsiConfiguration.__pulumiType = 'oci:Opsi/opsiConfiguration:OpsiConfiguration';
|
|
125
|
+
//# sourceMappingURL=opsiConfiguration.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"opsiConfiguration.js","sourceRoot":"","sources":["../../opsi/opsiConfiguration.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/oci",
|
|
3
|
-
"version": "v0.
|
|
3
|
+
"version": "v0.8.0",
|
|
4
4
|
"description": "A Pulumi package for creating and managing Oracle Cloud Infrastructure resources.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"license": "Apache-2.0",
|
|
14
14
|
"scripts": {
|
|
15
15
|
"build": "tsc",
|
|
16
|
-
"install": "node scripts/install-pulumi-plugin.js resource oci v0.
|
|
16
|
+
"install": "node scripts/install-pulumi-plugin.js resource oci v0.8.0"
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@pulumi/pulumi": "^3.0.0"
|
package/package.json.dev
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/oci",
|
|
3
|
-
"version": "v0.
|
|
3
|
+
"version": "v0.8.0",
|
|
4
4
|
"description": "A Pulumi package for creating and managing Oracle Cloud Infrastructure resources.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"license": "Apache-2.0",
|
|
14
14
|
"scripts": {
|
|
15
15
|
"build": "tsc",
|
|
16
|
-
"install": "node scripts/install-pulumi-plugin.js resource oci v0.
|
|
16
|
+
"install": "node scripts/install-pulumi-plugin.js resource oci v0.8.0"
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@pulumi/pulumi": "^3.0.0"
|