@pulumi/oci 1.2.0-alpha.1687673610 → 1.2.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/apmsynthetics/config.d.ts +10 -7
- package/apmsynthetics/config.js +4 -1
- package/apmsynthetics/config.js.map +1 -1
- package/apmsynthetics/getMonitor.d.ts +1 -1
- package/artifacts/containerImageSignature.d.ts +62 -0
- package/artifacts/containerImageSignature.js +14 -0
- package/artifacts/containerImageSignature.js.map +1 -1
- package/artifacts/containerRepository.d.ts +62 -0
- package/artifacts/containerRepository.js +14 -0
- package/artifacts/containerRepository.js.map +1 -1
- package/artifacts/getContainerImage.d.ts +18 -0
- package/artifacts/getContainerImage.js.map +1 -1
- package/artifacts/getContainerImageSignature.d.ts +22 -0
- package/artifacts/getContainerImageSignature.js.map +1 -1
- package/artifacts/getContainerRepository.d.ts +22 -0
- package/artifacts/getContainerRepository.js.map +1 -1
- package/database/backup.d.ts +16 -0
- package/database/backup.js +4 -0
- package/database/backup.js.map +1 -1
- package/database/database.d.ts +20 -0
- package/database/database.js +4 -0
- package/database/database.js.map +1 -1
- package/database/databaseUpgrade.d.ts +16 -0
- package/database/databaseUpgrade.js +4 -0
- package/database/databaseUpgrade.js.map +1 -1
- package/database/getDatabase.d.ts +8 -0
- package/database/getDatabase.js.map +1 -1
- package/database/getPluggableDatabase.d.ts +1 -0
- package/database/getPluggableDatabase.js.map +1 -1
- package/database/pluggableDatabase.d.ts +24 -12
- package/database/pluggableDatabase.js +2 -0
- package/database/pluggableDatabase.js.map +1 -1
- package/databasemanagement/externalDbSystem.d.ts +16 -12
- package/databasemanagement/externalDbSystem.js +6 -0
- package/databasemanagement/externalDbSystem.js.map +1 -1
- package/databasemanagement/externalDbSystemStackMonitoringsManagement.d.ts +116 -0
- package/databasemanagement/externalDbSystemStackMonitoringsManagement.js +81 -0
- package/databasemanagement/externalDbSystemStackMonitoringsManagement.js.map +1 -0
- package/databasemanagement/getExternalDbSystem.d.ts +4 -0
- package/databasemanagement/getExternalDbSystem.js.map +1 -1
- package/databasemanagement/getManagedDatabaseCursorCacheStatements.d.ts +89 -0
- package/databasemanagement/getManagedDatabaseCursorCacheStatements.js +56 -0
- package/databasemanagement/getManagedDatabaseCursorCacheStatements.js.map +1 -0
- package/databasemanagement/getManagedDatabaseSqlPlanBaseline.d.ts +137 -0
- package/databasemanagement/getManagedDatabaseSqlPlanBaseline.js +54 -0
- package/databasemanagement/getManagedDatabaseSqlPlanBaseline.js.map +1 -0
- package/databasemanagement/getManagedDatabaseSqlPlanBaselineConfiguration.d.ts +108 -0
- package/databasemanagement/getManagedDatabaseSqlPlanBaselineConfiguration.js +55 -0
- package/databasemanagement/getManagedDatabaseSqlPlanBaselineConfiguration.js.map +1 -0
- package/databasemanagement/getManagedDatabaseSqlPlanBaselineJobs.d.ts +86 -0
- package/databasemanagement/getManagedDatabaseSqlPlanBaselineJobs.js +55 -0
- package/databasemanagement/getManagedDatabaseSqlPlanBaselineJobs.js.map +1 -0
- package/databasemanagement/getManagedDatabaseSqlPlanBaselines.d.ts +186 -0
- package/databasemanagement/getManagedDatabaseSqlPlanBaselines.js +80 -0
- package/databasemanagement/getManagedDatabaseSqlPlanBaselines.js.map +1 -0
- package/databasemanagement/index.d.ts +18 -0
- package/databasemanagement/index.js +25 -4
- package/databasemanagement/index.js.map +1 -1
- package/dataflow/getSqlEndpoint.d.ts +168 -0
- package/dataflow/getSqlEndpoint.js +51 -0
- package/dataflow/getSqlEndpoint.js.map +1 -0
- package/dataflow/getSqlEndpoints.d.ts +118 -0
- package/dataflow/getSqlEndpoints.js +66 -0
- package/dataflow/getSqlEndpoints.js.map +1 -0
- package/dataflow/index.d.ts +9 -0
- package/dataflow/index.js +12 -1
- package/dataflow/index.js.map +1 -1
- package/dataflow/sqlEndpoint.d.ts +336 -0
- package/dataflow/sqlEndpoint.js +138 -0
- package/dataflow/sqlEndpoint.js.map +1 -0
- package/marketplace/getListingPackage.d.ts +1 -1
- package/package.json +2 -2
- package/types/input.d.ts +150 -0
- package/types/output.d.ts +686 -2
|
@@ -17,7 +17,10 @@ import * as outputs from "../types/output";
|
|
|
17
17
|
* displayName: _var.monitor_display_name,
|
|
18
18
|
* monitorType: _var.monitor_monitor_type,
|
|
19
19
|
* repeatIntervalInSeconds: _var.monitor_repeat_interval_in_seconds,
|
|
20
|
-
* vantagePoints:
|
|
20
|
+
* vantagePoints: [{
|
|
21
|
+
* name: _var.monitor_vantage_points_name,
|
|
22
|
+
* displayName: _var.monitor_vantage_points_param_display_name,
|
|
23
|
+
* }],
|
|
21
24
|
* availabilityConfiguration: {
|
|
22
25
|
* maxAllowedFailuresPerInterval: _var.monitor_availability_configuration_max_allowed_failures_per_interval,
|
|
23
26
|
* minAllowedRunsPerInterval: _var.monitor_availability_configuration_min_allowed_runs_per_interval,
|
|
@@ -140,7 +143,7 @@ export declare class Config extends pulumi.CustomResource {
|
|
|
140
143
|
[key: string]: any;
|
|
141
144
|
}>;
|
|
142
145
|
/**
|
|
143
|
-
*
|
|
146
|
+
* Unique name that can be edited. The name should not contain any confidential information.
|
|
144
147
|
*/
|
|
145
148
|
readonly displayName: pulumi.Output<string>;
|
|
146
149
|
/**
|
|
@@ -216,7 +219,7 @@ export declare class Config extends pulumi.CustomResource {
|
|
|
216
219
|
* ** IMPORTANT **
|
|
217
220
|
* Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
|
218
221
|
*/
|
|
219
|
-
readonly vantagePoints: pulumi.Output<
|
|
222
|
+
readonly vantagePoints: pulumi.Output<outputs.ApmSynthetics.ConfigVantagePoint[]>;
|
|
220
223
|
/**
|
|
221
224
|
* Create a Config resource with the given unique name, arguments, and options.
|
|
222
225
|
*
|
|
@@ -253,7 +256,7 @@ export interface ConfigState {
|
|
|
253
256
|
[key: string]: any;
|
|
254
257
|
}>;
|
|
255
258
|
/**
|
|
256
|
-
*
|
|
259
|
+
* Unique name that can be edited. The name should not contain any confidential information.
|
|
257
260
|
*/
|
|
258
261
|
displayName?: pulumi.Input<string>;
|
|
259
262
|
/**
|
|
@@ -329,7 +332,7 @@ export interface ConfigState {
|
|
|
329
332
|
* ** IMPORTANT **
|
|
330
333
|
* Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
|
331
334
|
*/
|
|
332
|
-
vantagePoints?: pulumi.Input<pulumi.Input<
|
|
335
|
+
vantagePoints?: pulumi.Input<pulumi.Input<inputs.ApmSynthetics.ConfigVantagePoint>[]>;
|
|
333
336
|
}
|
|
334
337
|
/**
|
|
335
338
|
* The set of arguments for constructing a Config resource.
|
|
@@ -358,7 +361,7 @@ export interface ConfigArgs {
|
|
|
358
361
|
[key: string]: any;
|
|
359
362
|
}>;
|
|
360
363
|
/**
|
|
361
|
-
*
|
|
364
|
+
* Unique name that can be edited. The name should not contain any confidential information.
|
|
362
365
|
*/
|
|
363
366
|
displayName: pulumi.Input<string>;
|
|
364
367
|
/**
|
|
@@ -422,5 +425,5 @@ export interface ConfigArgs {
|
|
|
422
425
|
* ** IMPORTANT **
|
|
423
426
|
* Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
|
424
427
|
*/
|
|
425
|
-
vantagePoints: pulumi.Input<pulumi.Input<
|
|
428
|
+
vantagePoints: pulumi.Input<pulumi.Input<inputs.ApmSynthetics.ConfigVantagePoint>[]>;
|
|
426
429
|
}
|
package/apmsynthetics/config.js
CHANGED
|
@@ -21,7 +21,10 @@ const utilities = require("../utilities");
|
|
|
21
21
|
* displayName: _var.monitor_display_name,
|
|
22
22
|
* monitorType: _var.monitor_monitor_type,
|
|
23
23
|
* repeatIntervalInSeconds: _var.monitor_repeat_interval_in_seconds,
|
|
24
|
-
* vantagePoints:
|
|
24
|
+
* vantagePoints: [{
|
|
25
|
+
* name: _var.monitor_vantage_points_name,
|
|
26
|
+
* displayName: _var.monitor_vantage_points_param_display_name,
|
|
27
|
+
* }],
|
|
25
28
|
* availabilityConfiguration: {
|
|
26
29
|
* maxAllowedFailuresPerInterval: _var.monitor_availability_configuration_max_allowed_failures_per_interval,
|
|
27
30
|
* minAllowedRunsPerInterval: _var.monitor_availability_configuration_min_allowed_runs_per_interval,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"config.js","sourceRoot":"","sources":["../../apmsynthetics/config.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C
|
|
1
|
+
{"version":3,"file":"config.js","sourceRoot":"","sources":["../../apmsynthetics/config.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAsGG;AACH,MAAa,MAAO,SAAQ,MAAM,CAAC,cAAc;IAC7C;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAmB,EAAE,IAAmC;QACjH,OAAO,IAAI,MAAM,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAC7D,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,MAAM,CAAC,YAAY,CAAC;IACvD,CAAC;IA2GD,YAAY,IAAY,EAAE,WAAsC,EAAE,IAAmC;QACjG,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAsC,CAAC;YACrD,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,2BAA2B,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,yBAAyB,CAAC,CAAC,CAAC,SAAS,CAAC;YAClG,cAAc,CAAC,wBAAwB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,sBAAsB,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5F,cAAc,CAAC,eAAe,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,aAAa,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1E,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,cAAc,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,YAAY,CAAC,CAAC,CAAC,SAAS,CAAC;YACxE,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAClE,cAAc,CAAC,2BAA2B,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,yBAAyB,CAAC,CAAC,CAAC,SAAS,CAAC;YAClG,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,yBAAyB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,uBAAuB,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9F,cAAc,CAAC,kBAAkB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,gBAAgB,CAAC,CAAC,CAAC,SAAS,CAAC;YAChF,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,YAAY,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,kBAAkB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,gBAAgB,CAAC,CAAC,CAAC,SAAS,CAAC;YAChF,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,kBAAkB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,gBAAgB,CAAC,CAAC,CAAC,SAAS,CAAC;YAChF,cAAc,CAAC,mBAAmB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,iBAAiB,CAAC,CAAC,CAAC,SAAS,CAAC;YAClF,cAAc,CAAC,eAAe,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,aAAa,CAAC,CAAC,CAAC,SAAS,CAAC;SAC7E;aAAM;YACH,MAAM,IAAI,GAAG,WAAqC,CAAC;YACnD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,WAAW,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACxD,MAAM,IAAI,KAAK,CAAC,yCAAyC,CAAC,CAAC;aAC9D;YACD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,WAAW,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACxD,MAAM,IAAI,KAAK,CAAC,yCAAyC,CAAC,CAAC;aAC9D;YACD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,WAAW,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACxD,MAAM,IAAI,KAAK,CAAC,yCAAyC,CAAC,CAAC;aAC9D;YACD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,uBAAuB,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACpE,MAAM,IAAI,KAAK,CAAC,qDAAqD,CAAC,CAAC;aAC1E;YACD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,aAAa,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAC1D,MAAM,IAAI,KAAK,CAAC,2CAA2C,CAAC,CAAC;aAChE;YACD,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,2BAA2B,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,yBAAyB,CAAC,CAAC,CAAC,SAAS,CAAC;YAChG,cAAc,CAAC,wBAAwB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,sBAAsB,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1F,cAAc,CAAC,eAAe,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC,CAAC,SAAS,CAAC;YACxE,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,cAAc,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,WAAW,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,2BAA2B,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,yBAAyB,CAAC,CAAC,CAAC,SAAS,CAAC;YAChG,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,yBAAyB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,uBAAuB,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5F,cAAc,CAAC,kBAAkB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,gBAAgB,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9E,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,YAAY,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC;YAClE,cAAc,CAAC,kBAAkB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,gBAAgB,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9E,cAAc,CAAC,QAAQ,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1D,cAAc,CAAC,QAAQ,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1D,cAAc,CAAC,kBAAkB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,gBAAgB,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9E,cAAc,CAAC,eAAe,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC,CAAC,SAAS,CAAC;YACxE,cAAc,CAAC,aAAa,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAClD,cAAc,CAAC,aAAa,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAClD,cAAc,CAAC,mBAAmB,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;SAC3D;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,MAAM,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAC3D,CAAC;;AA5ML,wBA6MC;AA/LG,gBAAgB;AACO,mBAAY,GAAG,iCAAiC,CAAC"}
|
|
@@ -132,7 +132,7 @@ export interface GetMonitorResult {
|
|
|
132
132
|
/**
|
|
133
133
|
* List of public and dedicated vantage points where the monitor is running.
|
|
134
134
|
*/
|
|
135
|
-
readonly vantagePoints:
|
|
135
|
+
readonly vantagePoints: outputs.ApmSynthetics.GetMonitorVantagePoint[];
|
|
136
136
|
}
|
|
137
137
|
/**
|
|
138
138
|
* This data source provides details about a specific Monitor resource in Oracle Cloud Infrastructure Apm Synthetics service.
|
|
@@ -18,6 +18,12 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
18
18
|
* message: _var.container_image_signature_message,
|
|
19
19
|
* signature: _var.container_image_signature_signature,
|
|
20
20
|
* signingAlgorithm: _var.container_image_signature_signing_algorithm,
|
|
21
|
+
* definedTags: {
|
|
22
|
+
* "Operations.CostCenter": "42",
|
|
23
|
+
* },
|
|
24
|
+
* freeformTags: {
|
|
25
|
+
* Department: "Finance",
|
|
26
|
+
* },
|
|
21
27
|
* });
|
|
22
28
|
* ```
|
|
23
29
|
*
|
|
@@ -53,10 +59,22 @@ export declare class ContainerImageSignature extends pulumi.CustomResource {
|
|
|
53
59
|
* The id of the user or principal that created the resource.
|
|
54
60
|
*/
|
|
55
61
|
readonly createdBy: pulumi.Output<string>;
|
|
62
|
+
/**
|
|
63
|
+
* (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
|
|
64
|
+
*/
|
|
65
|
+
readonly definedTags: pulumi.Output<{
|
|
66
|
+
[key: string]: any;
|
|
67
|
+
}>;
|
|
56
68
|
/**
|
|
57
69
|
* The last 10 characters of the kmsKeyId, the last 10 characters of the kmsKeyVersionId, the signingAlgorithm, and the last 10 characters of the signatureId. Example: `wrmz22sixa::qdwyc2ptun::SHA_256_RSA_PKCS_PSS::2vwmobasva`
|
|
58
70
|
*/
|
|
59
71
|
readonly displayName: pulumi.Output<string>;
|
|
72
|
+
/**
|
|
73
|
+
* (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](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
|
74
|
+
*/
|
|
75
|
+
readonly freeformTags: pulumi.Output<{
|
|
76
|
+
[key: string]: any;
|
|
77
|
+
}>;
|
|
60
78
|
/**
|
|
61
79
|
* The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the container image. Example: `ocid1.containerimage.oc1..exampleuniqueID`
|
|
62
80
|
*/
|
|
@@ -85,6 +103,16 @@ export declare class ContainerImageSignature extends pulumi.CustomResource {
|
|
|
85
103
|
* Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
|
86
104
|
*/
|
|
87
105
|
readonly signingAlgorithm: pulumi.Output<string>;
|
|
106
|
+
/**
|
|
107
|
+
* The current state of the container image signature.
|
|
108
|
+
*/
|
|
109
|
+
readonly state: pulumi.Output<string>;
|
|
110
|
+
/**
|
|
111
|
+
* The system tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
|
112
|
+
*/
|
|
113
|
+
readonly systemTags: pulumi.Output<{
|
|
114
|
+
[key: string]: any;
|
|
115
|
+
}>;
|
|
88
116
|
/**
|
|
89
117
|
* An RFC 3339 timestamp indicating when the image was created.
|
|
90
118
|
*/
|
|
@@ -110,10 +138,22 @@ export interface ContainerImageSignatureState {
|
|
|
110
138
|
* The id of the user or principal that created the resource.
|
|
111
139
|
*/
|
|
112
140
|
createdBy?: pulumi.Input<string>;
|
|
141
|
+
/**
|
|
142
|
+
* (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
|
|
143
|
+
*/
|
|
144
|
+
definedTags?: pulumi.Input<{
|
|
145
|
+
[key: string]: any;
|
|
146
|
+
}>;
|
|
113
147
|
/**
|
|
114
148
|
* The last 10 characters of the kmsKeyId, the last 10 characters of the kmsKeyVersionId, the signingAlgorithm, and the last 10 characters of the signatureId. Example: `wrmz22sixa::qdwyc2ptun::SHA_256_RSA_PKCS_PSS::2vwmobasva`
|
|
115
149
|
*/
|
|
116
150
|
displayName?: pulumi.Input<string>;
|
|
151
|
+
/**
|
|
152
|
+
* (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](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
|
153
|
+
*/
|
|
154
|
+
freeformTags?: pulumi.Input<{
|
|
155
|
+
[key: string]: any;
|
|
156
|
+
}>;
|
|
117
157
|
/**
|
|
118
158
|
* The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the container image. Example: `ocid1.containerimage.oc1..exampleuniqueID`
|
|
119
159
|
*/
|
|
@@ -142,6 +182,16 @@ export interface ContainerImageSignatureState {
|
|
|
142
182
|
* Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
|
143
183
|
*/
|
|
144
184
|
signingAlgorithm?: pulumi.Input<string>;
|
|
185
|
+
/**
|
|
186
|
+
* The current state of the container image signature.
|
|
187
|
+
*/
|
|
188
|
+
state?: pulumi.Input<string>;
|
|
189
|
+
/**
|
|
190
|
+
* The system tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
|
191
|
+
*/
|
|
192
|
+
systemTags?: pulumi.Input<{
|
|
193
|
+
[key: string]: any;
|
|
194
|
+
}>;
|
|
145
195
|
/**
|
|
146
196
|
* An RFC 3339 timestamp indicating when the image was created.
|
|
147
197
|
*/
|
|
@@ -155,6 +205,18 @@ export interface ContainerImageSignatureArgs {
|
|
|
155
205
|
* The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment in which the container repository exists.
|
|
156
206
|
*/
|
|
157
207
|
compartmentId: pulumi.Input<string>;
|
|
208
|
+
/**
|
|
209
|
+
* (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
|
|
210
|
+
*/
|
|
211
|
+
definedTags?: pulumi.Input<{
|
|
212
|
+
[key: string]: any;
|
|
213
|
+
}>;
|
|
214
|
+
/**
|
|
215
|
+
* (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](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
|
216
|
+
*/
|
|
217
|
+
freeformTags?: pulumi.Input<{
|
|
218
|
+
[key: string]: any;
|
|
219
|
+
}>;
|
|
158
220
|
/**
|
|
159
221
|
* The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the container image. Example: `ocid1.containerimage.oc1..exampleuniqueID`
|
|
160
222
|
*/
|
|
@@ -24,6 +24,12 @@ const utilities = require("../utilities");
|
|
|
24
24
|
* message: _var.container_image_signature_message,
|
|
25
25
|
* signature: _var.container_image_signature_signature,
|
|
26
26
|
* signingAlgorithm: _var.container_image_signature_signing_algorithm,
|
|
27
|
+
* definedTags: {
|
|
28
|
+
* "Operations.CostCenter": "42",
|
|
29
|
+
* },
|
|
30
|
+
* freeformTags: {
|
|
31
|
+
* Department: "Finance",
|
|
32
|
+
* },
|
|
27
33
|
* });
|
|
28
34
|
* ```
|
|
29
35
|
*
|
|
@@ -65,13 +71,17 @@ class ContainerImageSignature extends pulumi.CustomResource {
|
|
|
65
71
|
const state = argsOrState;
|
|
66
72
|
resourceInputs["compartmentId"] = state ? state.compartmentId : undefined;
|
|
67
73
|
resourceInputs["createdBy"] = state ? state.createdBy : undefined;
|
|
74
|
+
resourceInputs["definedTags"] = state ? state.definedTags : undefined;
|
|
68
75
|
resourceInputs["displayName"] = state ? state.displayName : undefined;
|
|
76
|
+
resourceInputs["freeformTags"] = state ? state.freeformTags : undefined;
|
|
69
77
|
resourceInputs["imageId"] = state ? state.imageId : undefined;
|
|
70
78
|
resourceInputs["kmsKeyId"] = state ? state.kmsKeyId : undefined;
|
|
71
79
|
resourceInputs["kmsKeyVersionId"] = state ? state.kmsKeyVersionId : undefined;
|
|
72
80
|
resourceInputs["message"] = state ? state.message : undefined;
|
|
73
81
|
resourceInputs["signature"] = state ? state.signature : undefined;
|
|
74
82
|
resourceInputs["signingAlgorithm"] = state ? state.signingAlgorithm : undefined;
|
|
83
|
+
resourceInputs["state"] = state ? state.state : undefined;
|
|
84
|
+
resourceInputs["systemTags"] = state ? state.systemTags : undefined;
|
|
75
85
|
resourceInputs["timeCreated"] = state ? state.timeCreated : undefined;
|
|
76
86
|
}
|
|
77
87
|
else {
|
|
@@ -98,6 +108,8 @@ class ContainerImageSignature extends pulumi.CustomResource {
|
|
|
98
108
|
throw new Error("Missing required property 'signingAlgorithm'");
|
|
99
109
|
}
|
|
100
110
|
resourceInputs["compartmentId"] = args ? args.compartmentId : undefined;
|
|
111
|
+
resourceInputs["definedTags"] = args ? args.definedTags : undefined;
|
|
112
|
+
resourceInputs["freeformTags"] = args ? args.freeformTags : undefined;
|
|
101
113
|
resourceInputs["imageId"] = args ? args.imageId : undefined;
|
|
102
114
|
resourceInputs["kmsKeyId"] = args ? args.kmsKeyId : undefined;
|
|
103
115
|
resourceInputs["kmsKeyVersionId"] = args ? args.kmsKeyVersionId : undefined;
|
|
@@ -106,6 +118,8 @@ class ContainerImageSignature extends pulumi.CustomResource {
|
|
|
106
118
|
resourceInputs["signingAlgorithm"] = args ? args.signingAlgorithm : undefined;
|
|
107
119
|
resourceInputs["createdBy"] = undefined /*out*/;
|
|
108
120
|
resourceInputs["displayName"] = undefined /*out*/;
|
|
121
|
+
resourceInputs["state"] = undefined /*out*/;
|
|
122
|
+
resourceInputs["systemTags"] = undefined /*out*/;
|
|
109
123
|
resourceInputs["timeCreated"] = undefined /*out*/;
|
|
110
124
|
}
|
|
111
125
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"containerImageSignature.js","sourceRoot":"","sources":["../../artifacts/containerImageSignature.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C
|
|
1
|
+
{"version":3,"file":"containerImageSignature.js","sourceRoot":"","sources":["../../artifacts/containerImageSignature.ts"],"names":[],"mappings":"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"}
|
|
@@ -15,6 +15,12 @@ import * as outputs from "../types/output";
|
|
|
15
15
|
* const testContainerRepository = new oci.artifacts.ContainerRepository("testContainerRepository", {
|
|
16
16
|
* compartmentId: _var.compartment_id,
|
|
17
17
|
* displayName: _var.container_repository_display_name,
|
|
18
|
+
* definedTags: {
|
|
19
|
+
* "Operations.CostCenter": "42",
|
|
20
|
+
* },
|
|
21
|
+
* freeformTags: {
|
|
22
|
+
* Department: "Finance",
|
|
23
|
+
* },
|
|
18
24
|
* isImmutable: _var.container_repository_is_immutable,
|
|
19
25
|
* isPublic: _var.container_repository_is_public,
|
|
20
26
|
* readme: {
|
|
@@ -60,10 +66,22 @@ export declare class ContainerRepository extends pulumi.CustomResource {
|
|
|
60
66
|
* The id of the user or principal that created the resource.
|
|
61
67
|
*/
|
|
62
68
|
readonly createdBy: pulumi.Output<string>;
|
|
69
|
+
/**
|
|
70
|
+
* (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
|
|
71
|
+
*/
|
|
72
|
+
readonly definedTags: pulumi.Output<{
|
|
73
|
+
[key: string]: any;
|
|
74
|
+
}>;
|
|
63
75
|
/**
|
|
64
76
|
* The container repository name.
|
|
65
77
|
*/
|
|
66
78
|
readonly displayName: pulumi.Output<string>;
|
|
79
|
+
/**
|
|
80
|
+
* (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](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
|
81
|
+
*/
|
|
82
|
+
readonly freeformTags: pulumi.Output<{
|
|
83
|
+
[key: string]: any;
|
|
84
|
+
}>;
|
|
67
85
|
/**
|
|
68
86
|
* Total number of images.
|
|
69
87
|
*/
|
|
@@ -84,6 +102,10 @@ export declare class ContainerRepository extends pulumi.CustomResource {
|
|
|
84
102
|
* Total storage in bytes consumed by layers.
|
|
85
103
|
*/
|
|
86
104
|
readonly layersSizeInBytes: pulumi.Output<string>;
|
|
105
|
+
/**
|
|
106
|
+
* The tenancy namespace used in the container repository path.
|
|
107
|
+
*/
|
|
108
|
+
readonly namespace: pulumi.Output<string>;
|
|
87
109
|
/**
|
|
88
110
|
* (Updatable) Container repository readme.
|
|
89
111
|
*/
|
|
@@ -92,6 +114,12 @@ export declare class ContainerRepository extends pulumi.CustomResource {
|
|
|
92
114
|
* The current state of the container repository.
|
|
93
115
|
*/
|
|
94
116
|
readonly state: pulumi.Output<string>;
|
|
117
|
+
/**
|
|
118
|
+
* The system tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
|
119
|
+
*/
|
|
120
|
+
readonly systemTags: pulumi.Output<{
|
|
121
|
+
[key: string]: any;
|
|
122
|
+
}>;
|
|
95
123
|
/**
|
|
96
124
|
* An RFC 3339 timestamp indicating when the repository was created.
|
|
97
125
|
*/
|
|
@@ -125,10 +153,22 @@ export interface ContainerRepositoryState {
|
|
|
125
153
|
* The id of the user or principal that created the resource.
|
|
126
154
|
*/
|
|
127
155
|
createdBy?: pulumi.Input<string>;
|
|
156
|
+
/**
|
|
157
|
+
* (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
|
|
158
|
+
*/
|
|
159
|
+
definedTags?: pulumi.Input<{
|
|
160
|
+
[key: string]: any;
|
|
161
|
+
}>;
|
|
128
162
|
/**
|
|
129
163
|
* The container repository name.
|
|
130
164
|
*/
|
|
131
165
|
displayName?: pulumi.Input<string>;
|
|
166
|
+
/**
|
|
167
|
+
* (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](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
|
168
|
+
*/
|
|
169
|
+
freeformTags?: pulumi.Input<{
|
|
170
|
+
[key: string]: any;
|
|
171
|
+
}>;
|
|
132
172
|
/**
|
|
133
173
|
* Total number of images.
|
|
134
174
|
*/
|
|
@@ -149,6 +189,10 @@ export interface ContainerRepositoryState {
|
|
|
149
189
|
* Total storage in bytes consumed by layers.
|
|
150
190
|
*/
|
|
151
191
|
layersSizeInBytes?: pulumi.Input<string>;
|
|
192
|
+
/**
|
|
193
|
+
* The tenancy namespace used in the container repository path.
|
|
194
|
+
*/
|
|
195
|
+
namespace?: pulumi.Input<string>;
|
|
152
196
|
/**
|
|
153
197
|
* (Updatable) Container repository readme.
|
|
154
198
|
*/
|
|
@@ -157,6 +201,12 @@ export interface ContainerRepositoryState {
|
|
|
157
201
|
* The current state of the container repository.
|
|
158
202
|
*/
|
|
159
203
|
state?: pulumi.Input<string>;
|
|
204
|
+
/**
|
|
205
|
+
* The system tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
|
206
|
+
*/
|
|
207
|
+
systemTags?: pulumi.Input<{
|
|
208
|
+
[key: string]: any;
|
|
209
|
+
}>;
|
|
160
210
|
/**
|
|
161
211
|
* An RFC 3339 timestamp indicating when the repository was created.
|
|
162
212
|
*/
|
|
@@ -174,10 +224,22 @@ export interface ContainerRepositoryArgs {
|
|
|
174
224
|
* (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment in which to create the resource.
|
|
175
225
|
*/
|
|
176
226
|
compartmentId: pulumi.Input<string>;
|
|
227
|
+
/**
|
|
228
|
+
* (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
|
|
229
|
+
*/
|
|
230
|
+
definedTags?: pulumi.Input<{
|
|
231
|
+
[key: string]: any;
|
|
232
|
+
}>;
|
|
177
233
|
/**
|
|
178
234
|
* The container repository name.
|
|
179
235
|
*/
|
|
180
236
|
displayName: pulumi.Input<string>;
|
|
237
|
+
/**
|
|
238
|
+
* (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](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
|
239
|
+
*/
|
|
240
|
+
freeformTags?: pulumi.Input<{
|
|
241
|
+
[key: string]: any;
|
|
242
|
+
}>;
|
|
181
243
|
/**
|
|
182
244
|
* (Updatable) Whether the repository is immutable. Images cannot be overwritten in an immutable repository.
|
|
183
245
|
*/
|
|
@@ -19,6 +19,12 @@ const utilities = require("../utilities");
|
|
|
19
19
|
* const testContainerRepository = new oci.artifacts.ContainerRepository("testContainerRepository", {
|
|
20
20
|
* compartmentId: _var.compartment_id,
|
|
21
21
|
* displayName: _var.container_repository_display_name,
|
|
22
|
+
* definedTags: {
|
|
23
|
+
* "Operations.CostCenter": "42",
|
|
24
|
+
* },
|
|
25
|
+
* freeformTags: {
|
|
26
|
+
* Department: "Finance",
|
|
27
|
+
* },
|
|
22
28
|
* isImmutable: _var.container_repository_is_immutable,
|
|
23
29
|
* isPublic: _var.container_repository_is_public,
|
|
24
30
|
* readme: {
|
|
@@ -67,14 +73,18 @@ class ContainerRepository extends pulumi.CustomResource {
|
|
|
67
73
|
resourceInputs["billableSizeInGbs"] = state ? state.billableSizeInGbs : undefined;
|
|
68
74
|
resourceInputs["compartmentId"] = state ? state.compartmentId : undefined;
|
|
69
75
|
resourceInputs["createdBy"] = state ? state.createdBy : undefined;
|
|
76
|
+
resourceInputs["definedTags"] = state ? state.definedTags : undefined;
|
|
70
77
|
resourceInputs["displayName"] = state ? state.displayName : undefined;
|
|
78
|
+
resourceInputs["freeformTags"] = state ? state.freeformTags : undefined;
|
|
71
79
|
resourceInputs["imageCount"] = state ? state.imageCount : undefined;
|
|
72
80
|
resourceInputs["isImmutable"] = state ? state.isImmutable : undefined;
|
|
73
81
|
resourceInputs["isPublic"] = state ? state.isPublic : undefined;
|
|
74
82
|
resourceInputs["layerCount"] = state ? state.layerCount : undefined;
|
|
75
83
|
resourceInputs["layersSizeInBytes"] = state ? state.layersSizeInBytes : undefined;
|
|
84
|
+
resourceInputs["namespace"] = state ? state.namespace : undefined;
|
|
76
85
|
resourceInputs["readme"] = state ? state.readme : undefined;
|
|
77
86
|
resourceInputs["state"] = state ? state.state : undefined;
|
|
87
|
+
resourceInputs["systemTags"] = state ? state.systemTags : undefined;
|
|
78
88
|
resourceInputs["timeCreated"] = state ? state.timeCreated : undefined;
|
|
79
89
|
resourceInputs["timeLastPushed"] = state ? state.timeLastPushed : undefined;
|
|
80
90
|
}
|
|
@@ -87,7 +97,9 @@ class ContainerRepository extends pulumi.CustomResource {
|
|
|
87
97
|
throw new Error("Missing required property 'displayName'");
|
|
88
98
|
}
|
|
89
99
|
resourceInputs["compartmentId"] = args ? args.compartmentId : undefined;
|
|
100
|
+
resourceInputs["definedTags"] = args ? args.definedTags : undefined;
|
|
90
101
|
resourceInputs["displayName"] = args ? args.displayName : undefined;
|
|
102
|
+
resourceInputs["freeformTags"] = args ? args.freeformTags : undefined;
|
|
91
103
|
resourceInputs["isImmutable"] = args ? args.isImmutable : undefined;
|
|
92
104
|
resourceInputs["isPublic"] = args ? args.isPublic : undefined;
|
|
93
105
|
resourceInputs["readme"] = args ? args.readme : undefined;
|
|
@@ -96,7 +108,9 @@ class ContainerRepository extends pulumi.CustomResource {
|
|
|
96
108
|
resourceInputs["imageCount"] = undefined /*out*/;
|
|
97
109
|
resourceInputs["layerCount"] = undefined /*out*/;
|
|
98
110
|
resourceInputs["layersSizeInBytes"] = undefined /*out*/;
|
|
111
|
+
resourceInputs["namespace"] = undefined /*out*/;
|
|
99
112
|
resourceInputs["state"] = undefined /*out*/;
|
|
113
|
+
resourceInputs["systemTags"] = undefined /*out*/;
|
|
100
114
|
resourceInputs["timeCreated"] = undefined /*out*/;
|
|
101
115
|
resourceInputs["timeLastPushed"] = undefined /*out*/;
|
|
102
116
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"containerRepository.js","sourceRoot":"","sources":["../../artifacts/containerRepository.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C
|
|
1
|
+
{"version":3,"file":"containerRepository.js","sourceRoot":"","sources":["../../artifacts/containerRepository.ts"],"names":[],"mappings":"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"}
|
|
@@ -38,6 +38,12 @@ export interface GetContainerImageResult {
|
|
|
38
38
|
* The OCID of the user or principal that pushed the version.
|
|
39
39
|
*/
|
|
40
40
|
readonly createdBy: string;
|
|
41
|
+
/**
|
|
42
|
+
* Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
|
|
43
|
+
*/
|
|
44
|
+
readonly definedTags: {
|
|
45
|
+
[key: string]: any;
|
|
46
|
+
};
|
|
41
47
|
/**
|
|
42
48
|
* The sha256 digest of the image layer.
|
|
43
49
|
*/
|
|
@@ -46,6 +52,12 @@ export interface GetContainerImageResult {
|
|
|
46
52
|
* The repository name and the most recent version associated with the image. If there are no versions associated with the image, then last known version and digest are used instead. If the last known version is unavailable, then 'unknown' is used instead of the version. Example: `ubuntu:latest` or `ubuntu:latest@sha256:45b23dee08af5e43a7fea6c4cf9c25ccf269ee113168c19722f87876677c5cb2`
|
|
47
53
|
*/
|
|
48
54
|
readonly displayName: string;
|
|
55
|
+
/**
|
|
56
|
+
* 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](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
|
57
|
+
*/
|
|
58
|
+
readonly freeformTags: {
|
|
59
|
+
[key: string]: any;
|
|
60
|
+
};
|
|
49
61
|
/**
|
|
50
62
|
* The provider-assigned unique ID for this managed resource.
|
|
51
63
|
*/
|
|
@@ -79,6 +91,12 @@ export interface GetContainerImageResult {
|
|
|
79
91
|
* The current state of the container image.
|
|
80
92
|
*/
|
|
81
93
|
readonly state: string;
|
|
94
|
+
/**
|
|
95
|
+
* The system tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
|
96
|
+
*/
|
|
97
|
+
readonly systemTags: {
|
|
98
|
+
[key: string]: any;
|
|
99
|
+
};
|
|
82
100
|
/**
|
|
83
101
|
* The creation time of the version.
|
|
84
102
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getContainerImage.js","sourceRoot":"","sources":["../../artifacts/getContainerImage.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;GAeG;AACH,SAAgB,iBAAiB,CAAC,IAA2B,EAAE,IAA2B;IAEtF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,mDAAmD,EAAE;QAC9E,SAAS,EAAE,IAAI,CAAC,OAAO;KAC1B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,8CAMC;
|
|
1
|
+
{"version":3,"file":"getContainerImage.js","sourceRoot":"","sources":["../../artifacts/getContainerImage.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;GAeG;AACH,SAAgB,iBAAiB,CAAC,IAA2B,EAAE,IAA2B;IAEtF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,mDAAmD,EAAE;QAC9E,SAAS,EAAE,IAAI,CAAC,OAAO;KAC1B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,8CAMC;AA8FD;;;;;;;;;;;;;;;GAeG;AACH,SAAgB,uBAAuB,CAAC,IAAiC,EAAE,IAA2B;IAClG,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,iBAAiB,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAC5E,CAAC;AAFD,0DAEC"}
|
|
@@ -37,10 +37,22 @@ export interface GetContainerImageSignatureResult {
|
|
|
37
37
|
* The id of the user or principal that created the resource.
|
|
38
38
|
*/
|
|
39
39
|
readonly createdBy: string;
|
|
40
|
+
/**
|
|
41
|
+
* Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
|
|
42
|
+
*/
|
|
43
|
+
readonly definedTags: {
|
|
44
|
+
[key: string]: any;
|
|
45
|
+
};
|
|
40
46
|
/**
|
|
41
47
|
* The last 10 characters of the kmsKeyId, the last 10 characters of the kmsKeyVersionId, the signingAlgorithm, and the last 10 characters of the signatureId. Example: `wrmz22sixa::qdwyc2ptun::SHA_256_RSA_PKCS_PSS::2vwmobasva`
|
|
42
48
|
*/
|
|
43
49
|
readonly displayName: string;
|
|
50
|
+
/**
|
|
51
|
+
* 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](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
|
52
|
+
*/
|
|
53
|
+
readonly freeformTags: {
|
|
54
|
+
[key: string]: any;
|
|
55
|
+
};
|
|
44
56
|
/**
|
|
45
57
|
* The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the container image signature. Example: `ocid1.containerimagesignature.oc1..exampleuniqueID`
|
|
46
58
|
*/
|
|
@@ -70,6 +82,16 @@ export interface GetContainerImageSignatureResult {
|
|
|
70
82
|
* The algorithm to be used for signing. These are the only supported signing algorithms for container images.
|
|
71
83
|
*/
|
|
72
84
|
readonly signingAlgorithm: string;
|
|
85
|
+
/**
|
|
86
|
+
* The current state of the container image signature.
|
|
87
|
+
*/
|
|
88
|
+
readonly state: string;
|
|
89
|
+
/**
|
|
90
|
+
* The system tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
|
91
|
+
*/
|
|
92
|
+
readonly systemTags: {
|
|
93
|
+
[key: string]: any;
|
|
94
|
+
};
|
|
73
95
|
/**
|
|
74
96
|
* An RFC 3339 timestamp indicating when the image was created.
|
|
75
97
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getContainerImageSignature.js","sourceRoot":"","sources":["../../artifacts/getContainerImageSignature.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;GAeG;AACH,SAAgB,0BAA0B,CAAC,IAAoC,EAAE,IAA2B;IAExG,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,qEAAqE,EAAE;QAChG,kBAAkB,EAAE,IAAI,CAAC,gBAAgB;KAC5C,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,gEAMC;
|
|
1
|
+
{"version":3,"file":"getContainerImageSignature.js","sourceRoot":"","sources":["../../artifacts/getContainerImageSignature.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;GAeG;AACH,SAAgB,0BAA0B,CAAC,IAAoC,EAAE,IAA2B;IAExG,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,qEAAqE,EAAE;QAChG,kBAAkB,EAAE,IAAI,CAAC,gBAAgB;KAC5C,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,gEAMC;AA8ED;;;;;;;;;;;;;;;GAeG;AACH,SAAgB,gCAAgC,CAAC,IAA0C,EAAE,IAA2B;IACpH,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,0BAA0B,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACrF,CAAC;AAFD,4EAEC"}
|
|
@@ -42,10 +42,22 @@ export interface GetContainerRepositoryResult {
|
|
|
42
42
|
* The id of the user or principal that created the resource.
|
|
43
43
|
*/
|
|
44
44
|
readonly createdBy: string;
|
|
45
|
+
/**
|
|
46
|
+
* Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
|
|
47
|
+
*/
|
|
48
|
+
readonly definedTags: {
|
|
49
|
+
[key: string]: any;
|
|
50
|
+
};
|
|
45
51
|
/**
|
|
46
52
|
* The container repository name.
|
|
47
53
|
*/
|
|
48
54
|
readonly displayName: string;
|
|
55
|
+
/**
|
|
56
|
+
* 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](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
|
57
|
+
*/
|
|
58
|
+
readonly freeformTags: {
|
|
59
|
+
[key: string]: any;
|
|
60
|
+
};
|
|
49
61
|
/**
|
|
50
62
|
* The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the container repository. Example: `ocid1.containerrepo.oc1..exampleuniqueID`
|
|
51
63
|
*/
|
|
@@ -70,6 +82,10 @@ export interface GetContainerRepositoryResult {
|
|
|
70
82
|
* Total storage in bytes consumed by layers.
|
|
71
83
|
*/
|
|
72
84
|
readonly layersSizeInBytes: string;
|
|
85
|
+
/**
|
|
86
|
+
* The tenancy namespace used in the container repository path.
|
|
87
|
+
*/
|
|
88
|
+
readonly namespace: string;
|
|
73
89
|
/**
|
|
74
90
|
* Container repository readme.
|
|
75
91
|
*/
|
|
@@ -79,6 +95,12 @@ export interface GetContainerRepositoryResult {
|
|
|
79
95
|
* The current state of the container repository.
|
|
80
96
|
*/
|
|
81
97
|
readonly state: string;
|
|
98
|
+
/**
|
|
99
|
+
* The system tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
|
100
|
+
*/
|
|
101
|
+
readonly systemTags: {
|
|
102
|
+
[key: string]: any;
|
|
103
|
+
};
|
|
82
104
|
/**
|
|
83
105
|
* An RFC 3339 timestamp indicating when the repository was created.
|
|
84
106
|
*/
|