@pulumi/oci 0.13.0 → 0.14.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.
Files changed (83) hide show
  1. package/containerengine/addon.d.ts +143 -0
  2. package/containerengine/addon.js +87 -0
  3. package/containerengine/addon.js.map +1 -0
  4. package/containerengine/cluster.d.ts +12 -0
  5. package/containerengine/cluster.js +2 -0
  6. package/containerengine/cluster.js.map +1 -1
  7. package/containerengine/getAddon.d.ts +100 -0
  8. package/containerengine/getAddon.js +54 -0
  9. package/containerengine/getAddon.js.map +1 -0
  10. package/containerengine/getAddonOptions.d.ts +83 -0
  11. package/containerengine/getAddonOptions.js +55 -0
  12. package/containerengine/getAddonOptions.js.map +1 -0
  13. package/containerengine/getAddons.d.ts +72 -0
  14. package/containerengine/getAddons.js +52 -0
  15. package/containerengine/getAddons.js.map +1 -0
  16. package/containerengine/getPodShapes.d.ts +97 -0
  17. package/containerengine/getPodShapes.js +58 -0
  18. package/containerengine/getPodShapes.js.map +1 -0
  19. package/containerengine/getVirtualNodePool.d.ts +142 -0
  20. package/containerengine/getVirtualNodePool.js +51 -0
  21. package/containerengine/getVirtualNodePool.js.map +1 -0
  22. package/containerengine/getVirtualNodePools.d.ts +89 -0
  23. package/containerengine/getVirtualNodePools.js +33 -0
  24. package/containerengine/getVirtualNodePools.js.map +1 -0
  25. package/containerengine/index.d.ts +24 -0
  26. package/containerengine/index.js +29 -1
  27. package/containerengine/index.js.map +1 -1
  28. package/containerengine/virtualNodePool.d.ts +307 -0
  29. package/containerengine/virtualNodePool.js +162 -0
  30. package/containerengine/virtualNodePool.js.map +1 -0
  31. package/core/clusterNetwork.d.ts +16 -0
  32. package/core/clusterNetwork.js +4 -0
  33. package/core/clusterNetwork.js.map +1 -1
  34. package/core/computeCapacityReservation.d.ts +4 -0
  35. package/core/computeCapacityReservation.js +4 -0
  36. package/core/computeCapacityReservation.js.map +1 -1
  37. package/core/computeCluster.d.ts +162 -0
  38. package/core/computeCluster.js +105 -0
  39. package/core/computeCluster.js.map +1 -0
  40. package/core/drgRouteTableRouteRule.d.ts +6 -6
  41. package/core/getClusterNetwork.d.ts +8 -0
  42. package/core/getClusterNetwork.js.map +1 -1
  43. package/core/getComputeCluster.d.ts +95 -0
  44. package/core/getComputeCluster.js +51 -0
  45. package/core/getComputeCluster.js.map +1 -0
  46. package/core/getComputeClusters.d.ts +105 -0
  47. package/core/getComputeClusters.js +60 -0
  48. package/core/getComputeClusters.js.map +1 -0
  49. package/core/getInstance.d.ts +1 -0
  50. package/core/getInstance.js.map +1 -1
  51. package/core/getInstances.d.ts +11 -0
  52. package/core/getInstances.js +3 -0
  53. package/core/getInstances.js.map +1 -1
  54. package/core/index.d.ts +9 -0
  55. package/core/index.js +18 -7
  56. package/core/index.js.map +1 -1
  57. package/core/instance.d.ts +13 -0
  58. package/core/instance.js +3 -0
  59. package/core/instance.js.map +1 -1
  60. package/core/vcn.d.ts +3 -0
  61. package/core/vcn.js.map +1 -1
  62. package/database/autonomousContainerDatabase.d.ts +12 -0
  63. package/database/autonomousContainerDatabase.js +2 -0
  64. package/database/autonomousContainerDatabase.js.map +1 -1
  65. package/database/getAutonomousContainerDatabase.d.ts +4 -0
  66. package/database/getAutonomousContainerDatabase.js.map +1 -1
  67. package/devops/connection.d.ts +8 -0
  68. package/devops/connection.js +2 -0
  69. package/devops/connection.js.map +1 -1
  70. package/devops/getConnection.d.ts +4 -0
  71. package/devops/getConnection.js.map +1 -1
  72. package/loganalytics/getLogAnalyticsObjectCollectionRule.d.ts +4 -0
  73. package/loganalytics/getLogAnalyticsObjectCollectionRule.js.map +1 -1
  74. package/loganalytics/getNamespaceScheduledTask.d.ts +6 -0
  75. package/loganalytics/getNamespaceScheduledTask.js.map +1 -1
  76. package/loganalytics/logAnalyticsObjectCollectionRule.d.ts +13 -0
  77. package/loganalytics/logAnalyticsObjectCollectionRule.js +3 -0
  78. package/loganalytics/logAnalyticsObjectCollectionRule.js.map +1 -1
  79. package/loganalytics/namespaceScheduledTask.d.ts +3 -3
  80. package/package.json +2 -2
  81. package/package.json.dev +2 -2
  82. package/types/input.d.ts +209 -1
  83. package/types/output.d.ts +1016 -204
@@ -0,0 +1,72 @@
1
+ import * as pulumi from "@pulumi/pulumi";
2
+ import * as inputs from "../types/input";
3
+ import * as outputs from "../types/output";
4
+ /**
5
+ * This data source provides the list of Addons in Oracle Cloud Infrastructure Container Engine service.
6
+ *
7
+ * List addon for a provisioned cluster.
8
+ *
9
+ * ## Example Usage
10
+ *
11
+ * ```typescript
12
+ * import * as pulumi from "@pulumi/pulumi";
13
+ * import * as oci from "@pulumi/oci";
14
+ *
15
+ * const testAddons = oci.ContainerEngine.getAddons({
16
+ * clusterId: oci_containerengine_cluster.test_cluster.id,
17
+ * });
18
+ * ```
19
+ */
20
+ export declare function getAddons(args: GetAddonsArgs, opts?: pulumi.InvokeOptions): Promise<GetAddonsResult>;
21
+ /**
22
+ * A collection of arguments for invoking getAddons.
23
+ */
24
+ export interface GetAddonsArgs {
25
+ /**
26
+ * The OCID of the cluster.
27
+ */
28
+ clusterId: string;
29
+ filters?: inputs.ContainerEngine.GetAddonsFilter[];
30
+ }
31
+ /**
32
+ * A collection of values returned by getAddons.
33
+ */
34
+ export interface GetAddonsResult {
35
+ /**
36
+ * The list of addons.
37
+ */
38
+ readonly addons: outputs.ContainerEngine.GetAddonsAddon[];
39
+ readonly clusterId: string;
40
+ readonly filters?: outputs.ContainerEngine.GetAddonsFilter[];
41
+ /**
42
+ * The provider-assigned unique ID for this managed resource.
43
+ */
44
+ readonly id: string;
45
+ }
46
+ /**
47
+ * This data source provides the list of Addons in Oracle Cloud Infrastructure Container Engine service.
48
+ *
49
+ * List addon for a provisioned cluster.
50
+ *
51
+ * ## Example Usage
52
+ *
53
+ * ```typescript
54
+ * import * as pulumi from "@pulumi/pulumi";
55
+ * import * as oci from "@pulumi/oci";
56
+ *
57
+ * const testAddons = oci.ContainerEngine.getAddons({
58
+ * clusterId: oci_containerengine_cluster.test_cluster.id,
59
+ * });
60
+ * ```
61
+ */
62
+ export declare function getAddonsOutput(args: GetAddonsOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetAddonsResult>;
63
+ /**
64
+ * A collection of arguments for invoking getAddons.
65
+ */
66
+ export interface GetAddonsOutputArgs {
67
+ /**
68
+ * The OCID of the cluster.
69
+ */
70
+ clusterId: pulumi.Input<string>;
71
+ filters?: pulumi.Input<pulumi.Input<inputs.ContainerEngine.GetAddonsFilterArgs>[]>;
72
+ }
@@ -0,0 +1,52 @@
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.getAddonsOutput = exports.getAddons = void 0;
6
+ const pulumi = require("@pulumi/pulumi");
7
+ const utilities = require("../utilities");
8
+ /**
9
+ * This data source provides the list of Addons in Oracle Cloud Infrastructure Container Engine service.
10
+ *
11
+ * List addon for a provisioned cluster.
12
+ *
13
+ * ## Example Usage
14
+ *
15
+ * ```typescript
16
+ * import * as pulumi from "@pulumi/pulumi";
17
+ * import * as oci from "@pulumi/oci";
18
+ *
19
+ * const testAddons = oci.ContainerEngine.getAddons({
20
+ * clusterId: oci_containerengine_cluster.test_cluster.id,
21
+ * });
22
+ * ```
23
+ */
24
+ function getAddons(args, opts) {
25
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
26
+ return pulumi.runtime.invoke("oci:ContainerEngine/getAddons:getAddons", {
27
+ "clusterId": args.clusterId,
28
+ "filters": args.filters,
29
+ }, opts);
30
+ }
31
+ exports.getAddons = getAddons;
32
+ /**
33
+ * This data source provides the list of Addons in Oracle Cloud Infrastructure Container Engine service.
34
+ *
35
+ * List addon for a provisioned cluster.
36
+ *
37
+ * ## Example Usage
38
+ *
39
+ * ```typescript
40
+ * import * as pulumi from "@pulumi/pulumi";
41
+ * import * as oci from "@pulumi/oci";
42
+ *
43
+ * const testAddons = oci.ContainerEngine.getAddons({
44
+ * clusterId: oci_containerengine_cluster.test_cluster.id,
45
+ * });
46
+ * ```
47
+ */
48
+ function getAddonsOutput(args, opts) {
49
+ return pulumi.output(args).apply((a) => getAddons(a, opts));
50
+ }
51
+ exports.getAddonsOutput = getAddonsOutput;
52
+ //# sourceMappingURL=getAddons.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"getAddons.js","sourceRoot":"","sources":["../../containerengine/getAddons.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;GAeG;AACH,SAAgB,SAAS,CAAC,IAAmB,EAAE,IAA2B;IAEtE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,yCAAyC,EAAE;QACpE,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,SAAS,EAAE,IAAI,CAAC,OAAO;KAC1B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,8BAOC;AA4BD;;;;;;;;;;;;;;;GAeG;AACH,SAAgB,eAAe,CAAC,IAAyB,EAAE,IAA2B;IAClF,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,SAAS,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACpE,CAAC;AAFD,0CAEC"}
@@ -0,0 +1,97 @@
1
+ import * as pulumi from "@pulumi/pulumi";
2
+ import * as inputs from "../types/input";
3
+ import * as outputs from "../types/output";
4
+ /**
5
+ * This data source provides the list of Pod Shapes in Oracle Cloud Infrastructure Container Engine service.
6
+ *
7
+ * List all the Pod Shapes in a compartment.
8
+ *
9
+ * ## Example Usage
10
+ *
11
+ * ```typescript
12
+ * import * as pulumi from "@pulumi/pulumi";
13
+ * import * as oci from "@pulumi/oci";
14
+ *
15
+ * const testPodShapes = oci.ContainerEngine.getPodShapes({
16
+ * compartmentId: _var.compartment_id,
17
+ * availabilityDomain: _var.pod_shape_availability_domain,
18
+ * name: _var.pod_shape_name,
19
+ * });
20
+ * ```
21
+ */
22
+ export declare function getPodShapes(args: GetPodShapesArgs, opts?: pulumi.InvokeOptions): Promise<GetPodShapesResult>;
23
+ /**
24
+ * A collection of arguments for invoking getPodShapes.
25
+ */
26
+ export interface GetPodShapesArgs {
27
+ /**
28
+ * The availability domain of the pod shape.
29
+ */
30
+ availabilityDomain?: string;
31
+ /**
32
+ * The OCID of the compartment.
33
+ */
34
+ compartmentId: string;
35
+ filters?: inputs.ContainerEngine.GetPodShapesFilter[];
36
+ /**
37
+ * The name to filter on.
38
+ */
39
+ name?: string;
40
+ }
41
+ /**
42
+ * A collection of values returned by getPodShapes.
43
+ */
44
+ export interface GetPodShapesResult {
45
+ readonly availabilityDomain?: string;
46
+ readonly compartmentId: string;
47
+ readonly filters?: outputs.ContainerEngine.GetPodShapesFilter[];
48
+ /**
49
+ * The provider-assigned unique ID for this managed resource.
50
+ */
51
+ readonly id: string;
52
+ /**
53
+ * The name of the identifying shape.
54
+ */
55
+ readonly name?: string;
56
+ /**
57
+ * The list of pod_shapes.
58
+ */
59
+ readonly podShapes: outputs.ContainerEngine.GetPodShapesPodShape[];
60
+ }
61
+ /**
62
+ * This data source provides the list of Pod Shapes in Oracle Cloud Infrastructure Container Engine service.
63
+ *
64
+ * List all the Pod Shapes in a compartment.
65
+ *
66
+ * ## Example Usage
67
+ *
68
+ * ```typescript
69
+ * import * as pulumi from "@pulumi/pulumi";
70
+ * import * as oci from "@pulumi/oci";
71
+ *
72
+ * const testPodShapes = oci.ContainerEngine.getPodShapes({
73
+ * compartmentId: _var.compartment_id,
74
+ * availabilityDomain: _var.pod_shape_availability_domain,
75
+ * name: _var.pod_shape_name,
76
+ * });
77
+ * ```
78
+ */
79
+ export declare function getPodShapesOutput(args: GetPodShapesOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetPodShapesResult>;
80
+ /**
81
+ * A collection of arguments for invoking getPodShapes.
82
+ */
83
+ export interface GetPodShapesOutputArgs {
84
+ /**
85
+ * The availability domain of the pod shape.
86
+ */
87
+ availabilityDomain?: pulumi.Input<string>;
88
+ /**
89
+ * The OCID of the compartment.
90
+ */
91
+ compartmentId: pulumi.Input<string>;
92
+ filters?: pulumi.Input<pulumi.Input<inputs.ContainerEngine.GetPodShapesFilterArgs>[]>;
93
+ /**
94
+ * The name to filter on.
95
+ */
96
+ name?: pulumi.Input<string>;
97
+ }
@@ -0,0 +1,58 @@
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.getPodShapesOutput = exports.getPodShapes = void 0;
6
+ const pulumi = require("@pulumi/pulumi");
7
+ const utilities = require("../utilities");
8
+ /**
9
+ * This data source provides the list of Pod Shapes in Oracle Cloud Infrastructure Container Engine service.
10
+ *
11
+ * List all the Pod Shapes in a compartment.
12
+ *
13
+ * ## Example Usage
14
+ *
15
+ * ```typescript
16
+ * import * as pulumi from "@pulumi/pulumi";
17
+ * import * as oci from "@pulumi/oci";
18
+ *
19
+ * const testPodShapes = oci.ContainerEngine.getPodShapes({
20
+ * compartmentId: _var.compartment_id,
21
+ * availabilityDomain: _var.pod_shape_availability_domain,
22
+ * name: _var.pod_shape_name,
23
+ * });
24
+ * ```
25
+ */
26
+ function getPodShapes(args, opts) {
27
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
28
+ return pulumi.runtime.invoke("oci:ContainerEngine/getPodShapes:getPodShapes", {
29
+ "availabilityDomain": args.availabilityDomain,
30
+ "compartmentId": args.compartmentId,
31
+ "filters": args.filters,
32
+ "name": args.name,
33
+ }, opts);
34
+ }
35
+ exports.getPodShapes = getPodShapes;
36
+ /**
37
+ * This data source provides the list of Pod Shapes in Oracle Cloud Infrastructure Container Engine service.
38
+ *
39
+ * List all the Pod Shapes in a compartment.
40
+ *
41
+ * ## Example Usage
42
+ *
43
+ * ```typescript
44
+ * import * as pulumi from "@pulumi/pulumi";
45
+ * import * as oci from "@pulumi/oci";
46
+ *
47
+ * const testPodShapes = oci.ContainerEngine.getPodShapes({
48
+ * compartmentId: _var.compartment_id,
49
+ * availabilityDomain: _var.pod_shape_availability_domain,
50
+ * name: _var.pod_shape_name,
51
+ * });
52
+ * ```
53
+ */
54
+ function getPodShapesOutput(args, opts) {
55
+ return pulumi.output(args).apply((a) => getPodShapes(a, opts));
56
+ }
57
+ exports.getPodShapesOutput = getPodShapesOutput;
58
+ //# sourceMappingURL=getPodShapes.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"getPodShapes.js","sourceRoot":"","sources":["../../containerengine/getPodShapes.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;GAiBG;AACH,SAAgB,YAAY,CAAC,IAAsB,EAAE,IAA2B;IAE5E,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,+CAA+C,EAAE;QAC1E,oBAAoB,EAAE,IAAI,CAAC,kBAAkB;QAC7C,eAAe,EAAE,IAAI,CAAC,aAAa;QACnC,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AATD,oCASC;AAyCD;;;;;;;;;;;;;;;;;GAiBG;AACH,SAAgB,kBAAkB,CAAC,IAA4B,EAAE,IAA2B;IACxF,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,YAAY,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACvE,CAAC;AAFD,gDAEC"}
@@ -0,0 +1,142 @@
1
+ import * as pulumi from "@pulumi/pulumi";
2
+ import * as outputs from "../types/output";
3
+ /**
4
+ * This data source provides details about a specific Virtual Node Pool resource in Oracle Cloud Infrastructure Container Engine service.
5
+ *
6
+ * Get the details of a virtual node pool.
7
+ *
8
+ * ## Example Usage
9
+ *
10
+ * ```typescript
11
+ * import * as pulumi from "@pulumi/pulumi";
12
+ * import * as oci from "@pulumi/oci";
13
+ *
14
+ * const testVirtualNodePool = oci.ContainerEngine.getVirtualNodePool({
15
+ * virtualNodePoolId: oci_containerengine_virtual_node_pool.test_virtual_node_pool.id,
16
+ * });
17
+ * ```
18
+ */
19
+ export declare function getVirtualNodePool(args: GetVirtualNodePoolArgs, opts?: pulumi.InvokeOptions): Promise<GetVirtualNodePoolResult>;
20
+ /**
21
+ * A collection of arguments for invoking getVirtualNodePool.
22
+ */
23
+ export interface GetVirtualNodePoolArgs {
24
+ /**
25
+ * The OCID of the virtual node pool.
26
+ */
27
+ virtualNodePoolId: string;
28
+ }
29
+ /**
30
+ * A collection of values returned by getVirtualNodePool.
31
+ */
32
+ export interface GetVirtualNodePoolResult {
33
+ /**
34
+ * The cluster the virtual node pool is associated with. A virtual node pool can only be associated with one cluster.
35
+ */
36
+ readonly clusterId: string;
37
+ /**
38
+ * Compartment of the virtual node pool.
39
+ */
40
+ readonly compartmentId: 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
+ };
47
+ /**
48
+ * Display name of the virtual node pool. This is a non-unique value.
49
+ */
50
+ readonly displayName: string;
51
+ /**
52
+ * 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"}`
53
+ */
54
+ readonly freeformTags: {
55
+ [key: string]: any;
56
+ };
57
+ /**
58
+ * The OCID of the virtual node pool.
59
+ */
60
+ readonly id: string;
61
+ /**
62
+ * Initial labels that will be added to the Kubernetes Virtual Node object when it registers. This is the same as virtualNodePool resources.
63
+ */
64
+ readonly initialVirtualNodeLabels: outputs.ContainerEngine.GetVirtualNodePoolInitialVirtualNodeLabel[];
65
+ /**
66
+ * The version of Kubernetes running on the nodes in the node pool.
67
+ */
68
+ readonly kubernetesVersion: string;
69
+ /**
70
+ * Details about the state of the Virtual Node Pool.
71
+ */
72
+ readonly lifecycleDetails: string;
73
+ /**
74
+ * List of network security group IDs applied to the Pod VNIC.
75
+ */
76
+ readonly nsgIds: string[];
77
+ /**
78
+ * The list of placement configurations which determines where Virtual Nodes will be provisioned across as it relates to the subnet and availability domains. The size attribute determines how many we evenly spread across these placement configurations
79
+ */
80
+ readonly placementConfigurations: outputs.ContainerEngine.GetVirtualNodePoolPlacementConfiguration[];
81
+ /**
82
+ * The pod configuration for pods run on virtual nodes of this virtual node pool.
83
+ */
84
+ readonly podConfigurations: outputs.ContainerEngine.GetVirtualNodePoolPodConfiguration[];
85
+ /**
86
+ * The number of Virtual Nodes that should be in the Virtual Node Pool. The placement configurations determine where these virtual nodes are placed.
87
+ */
88
+ readonly size: number;
89
+ /**
90
+ * The state of the Virtual Node Pool.
91
+ */
92
+ readonly state: string;
93
+ /**
94
+ * Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
95
+ */
96
+ readonly systemTags: {
97
+ [key: string]: any;
98
+ };
99
+ /**
100
+ * A taint is a collection of <key, value, effect>. These taints will be applied to the Virtual Nodes of this Virtual Node Pool for Kubernetes scheduling.
101
+ */
102
+ readonly taints: outputs.ContainerEngine.GetVirtualNodePoolTaint[];
103
+ /**
104
+ * The time the virtual node pool was created.
105
+ */
106
+ readonly timeCreated: string;
107
+ /**
108
+ * The time the virtual node pool was updated.
109
+ */
110
+ readonly timeUpdated: string;
111
+ readonly virtualNodePoolId: string;
112
+ /**
113
+ * The tags associated to the virtual nodes in this virtual node pool.
114
+ */
115
+ readonly virtualNodeTags: outputs.ContainerEngine.GetVirtualNodePoolVirtualNodeTag[];
116
+ }
117
+ /**
118
+ * This data source provides details about a specific Virtual Node Pool resource in Oracle Cloud Infrastructure Container Engine service.
119
+ *
120
+ * Get the details of a virtual node pool.
121
+ *
122
+ * ## Example Usage
123
+ *
124
+ * ```typescript
125
+ * import * as pulumi from "@pulumi/pulumi";
126
+ * import * as oci from "@pulumi/oci";
127
+ *
128
+ * const testVirtualNodePool = oci.ContainerEngine.getVirtualNodePool({
129
+ * virtualNodePoolId: oci_containerengine_virtual_node_pool.test_virtual_node_pool.id,
130
+ * });
131
+ * ```
132
+ */
133
+ export declare function getVirtualNodePoolOutput(args: GetVirtualNodePoolOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetVirtualNodePoolResult>;
134
+ /**
135
+ * A collection of arguments for invoking getVirtualNodePool.
136
+ */
137
+ export interface GetVirtualNodePoolOutputArgs {
138
+ /**
139
+ * The OCID of the virtual node pool.
140
+ */
141
+ virtualNodePoolId: pulumi.Input<string>;
142
+ }
@@ -0,0 +1,51 @@
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.getVirtualNodePoolOutput = exports.getVirtualNodePool = void 0;
6
+ const pulumi = require("@pulumi/pulumi");
7
+ const utilities = require("../utilities");
8
+ /**
9
+ * This data source provides details about a specific Virtual Node Pool resource in Oracle Cloud Infrastructure Container Engine service.
10
+ *
11
+ * Get the details of a virtual node pool.
12
+ *
13
+ * ## Example Usage
14
+ *
15
+ * ```typescript
16
+ * import * as pulumi from "@pulumi/pulumi";
17
+ * import * as oci from "@pulumi/oci";
18
+ *
19
+ * const testVirtualNodePool = oci.ContainerEngine.getVirtualNodePool({
20
+ * virtualNodePoolId: oci_containerengine_virtual_node_pool.test_virtual_node_pool.id,
21
+ * });
22
+ * ```
23
+ */
24
+ function getVirtualNodePool(args, opts) {
25
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
26
+ return pulumi.runtime.invoke("oci:ContainerEngine/getVirtualNodePool:getVirtualNodePool", {
27
+ "virtualNodePoolId": args.virtualNodePoolId,
28
+ }, opts);
29
+ }
30
+ exports.getVirtualNodePool = getVirtualNodePool;
31
+ /**
32
+ * This data source provides details about a specific Virtual Node Pool resource in Oracle Cloud Infrastructure Container Engine service.
33
+ *
34
+ * Get the details of a virtual node pool.
35
+ *
36
+ * ## Example Usage
37
+ *
38
+ * ```typescript
39
+ * import * as pulumi from "@pulumi/pulumi";
40
+ * import * as oci from "@pulumi/oci";
41
+ *
42
+ * const testVirtualNodePool = oci.ContainerEngine.getVirtualNodePool({
43
+ * virtualNodePoolId: oci_containerengine_virtual_node_pool.test_virtual_node_pool.id,
44
+ * });
45
+ * ```
46
+ */
47
+ function getVirtualNodePoolOutput(args, opts) {
48
+ return pulumi.output(args).apply((a) => getVirtualNodePool(a, opts));
49
+ }
50
+ exports.getVirtualNodePoolOutput = getVirtualNodePoolOutput;
51
+ //# sourceMappingURL=getVirtualNodePool.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"getVirtualNodePool.js","sourceRoot":"","sources":["../../containerengine/getVirtualNodePool.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;GAeG;AACH,SAAgB,kBAAkB,CAAC,IAA4B,EAAE,IAA2B;IAExF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,2DAA2D,EAAE;QACtF,mBAAmB,EAAE,IAAI,CAAC,iBAAiB;KAC9C,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,gDAMC;AA8FD;;;;;;;;;;;;;;;GAeG;AACH,SAAgB,wBAAwB,CAAC,IAAkC,EAAE,IAA2B;IACpG,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,kBAAkB,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAC7E,CAAC;AAFD,4DAEC"}
@@ -0,0 +1,89 @@
1
+ import * as pulumi from "@pulumi/pulumi";
2
+ import * as inputs from "../types/input";
3
+ import * as outputs from "../types/output";
4
+ /**
5
+ * This data source provides the list of Virtual Node Pools in Oracle Cloud Infrastructure Container Engine service.
6
+ *
7
+ * List all the virtual node pools in a compartment, and optionally filter by cluster.
8
+ */
9
+ export declare function getVirtualNodePools(args: GetVirtualNodePoolsArgs, opts?: pulumi.InvokeOptions): Promise<GetVirtualNodePoolsResult>;
10
+ /**
11
+ * A collection of arguments for invoking getVirtualNodePools.
12
+ */
13
+ export interface GetVirtualNodePoolsArgs {
14
+ /**
15
+ * The OCID of the cluster.
16
+ */
17
+ clusterId?: string;
18
+ /**
19
+ * The OCID of the compartment.
20
+ */
21
+ compartmentId: string;
22
+ /**
23
+ * Display name of the virtual node pool. This is a non-unique value.
24
+ */
25
+ displayName?: string;
26
+ filters?: inputs.ContainerEngine.GetVirtualNodePoolsFilter[];
27
+ /**
28
+ * A virtual node pool lifecycle state to filter on. Can have multiple parameters of this name.
29
+ */
30
+ states?: string[];
31
+ }
32
+ /**
33
+ * A collection of values returned by getVirtualNodePools.
34
+ */
35
+ export interface GetVirtualNodePoolsResult {
36
+ /**
37
+ * The cluster the virtual node pool is associated with. A virtual node pool can only be associated with one cluster.
38
+ */
39
+ readonly clusterId?: string;
40
+ /**
41
+ * Compartment of the virtual node pool.
42
+ */
43
+ readonly compartmentId: string;
44
+ /**
45
+ * Display name of the virtual node pool. This is a non-unique value.
46
+ */
47
+ readonly displayName?: string;
48
+ readonly filters?: outputs.ContainerEngine.GetVirtualNodePoolsFilter[];
49
+ /**
50
+ * The provider-assigned unique ID for this managed resource.
51
+ */
52
+ readonly id: string;
53
+ /**
54
+ * The state of the Virtual Node Pool.
55
+ */
56
+ readonly states?: string[];
57
+ /**
58
+ * The list of virtual_node_pools.
59
+ */
60
+ readonly virtualNodePools: outputs.ContainerEngine.GetVirtualNodePoolsVirtualNodePool[];
61
+ }
62
+ /**
63
+ * This data source provides the list of Virtual Node Pools in Oracle Cloud Infrastructure Container Engine service.
64
+ *
65
+ * List all the virtual node pools in a compartment, and optionally filter by cluster.
66
+ */
67
+ export declare function getVirtualNodePoolsOutput(args: GetVirtualNodePoolsOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetVirtualNodePoolsResult>;
68
+ /**
69
+ * A collection of arguments for invoking getVirtualNodePools.
70
+ */
71
+ export interface GetVirtualNodePoolsOutputArgs {
72
+ /**
73
+ * The OCID of the cluster.
74
+ */
75
+ clusterId?: pulumi.Input<string>;
76
+ /**
77
+ * The OCID of the compartment.
78
+ */
79
+ compartmentId: pulumi.Input<string>;
80
+ /**
81
+ * Display name of the virtual node pool. This is a non-unique value.
82
+ */
83
+ displayName?: pulumi.Input<string>;
84
+ filters?: pulumi.Input<pulumi.Input<inputs.ContainerEngine.GetVirtualNodePoolsFilterArgs>[]>;
85
+ /**
86
+ * A virtual node pool lifecycle state to filter on. Can have multiple parameters of this name.
87
+ */
88
+ states?: pulumi.Input<pulumi.Input<string>[]>;
89
+ }
@@ -0,0 +1,33 @@
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.getVirtualNodePoolsOutput = exports.getVirtualNodePools = void 0;
6
+ const pulumi = require("@pulumi/pulumi");
7
+ const utilities = require("../utilities");
8
+ /**
9
+ * This data source provides the list of Virtual Node Pools in Oracle Cloud Infrastructure Container Engine service.
10
+ *
11
+ * List all the virtual node pools in a compartment, and optionally filter by cluster.
12
+ */
13
+ function getVirtualNodePools(args, opts) {
14
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
15
+ return pulumi.runtime.invoke("oci:ContainerEngine/getVirtualNodePools:getVirtualNodePools", {
16
+ "clusterId": args.clusterId,
17
+ "compartmentId": args.compartmentId,
18
+ "displayName": args.displayName,
19
+ "filters": args.filters,
20
+ "states": args.states,
21
+ }, opts);
22
+ }
23
+ exports.getVirtualNodePools = getVirtualNodePools;
24
+ /**
25
+ * This data source provides the list of Virtual Node Pools in Oracle Cloud Infrastructure Container Engine service.
26
+ *
27
+ * List all the virtual node pools in a compartment, and optionally filter by cluster.
28
+ */
29
+ function getVirtualNodePoolsOutput(args, opts) {
30
+ return pulumi.output(args).apply((a) => getVirtualNodePools(a, opts));
31
+ }
32
+ exports.getVirtualNodePoolsOutput = getVirtualNodePoolsOutput;
33
+ //# sourceMappingURL=getVirtualNodePools.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"getVirtualNodePools.js","sourceRoot":"","sources":["../../containerengine/getVirtualNodePools.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;GAIG;AACH,SAAgB,mBAAmB,CAAC,IAA6B,EAAE,IAA2B;IAE1F,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,6DAA6D,EAAE;QACxF,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,eAAe,EAAE,IAAI,CAAC,aAAa;QACnC,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAVD,kDAUC;AAuDD;;;;GAIG;AACH,SAAgB,yBAAyB,CAAC,IAAmC,EAAE,IAA2B;IACtG,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,mBAAmB,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAC9E,CAAC;AAFD,8DAEC"}
@@ -1,9 +1,21 @@
1
+ export { AddonArgs, AddonState } from "./addon";
2
+ export type Addon = import("./addon").Addon;
3
+ export declare const Addon: typeof import("./addon").Addon;
1
4
  export { ClusterArgs, ClusterState } from "./cluster";
2
5
  export type Cluster = import("./cluster").Cluster;
3
6
  export declare const Cluster: typeof import("./cluster").Cluster;
4
7
  export { ContainerInstanceArgs, ContainerInstanceState } from "./containerInstance";
5
8
  export type ContainerInstance = import("./containerInstance").ContainerInstance;
6
9
  export declare const ContainerInstance: typeof import("./containerInstance").ContainerInstance;
10
+ export { GetAddonArgs, GetAddonResult, GetAddonOutputArgs } from "./getAddon";
11
+ export declare const getAddon: typeof import("./getAddon").getAddon;
12
+ export declare const getAddonOutput: typeof import("./getAddon").getAddonOutput;
13
+ export { GetAddonOptionsArgs, GetAddonOptionsResult, GetAddonOptionsOutputArgs } from "./getAddonOptions";
14
+ export declare const getAddonOptions: typeof import("./getAddonOptions").getAddonOptions;
15
+ export declare const getAddonOptionsOutput: typeof import("./getAddonOptions").getAddonOptionsOutput;
16
+ export { GetAddonsArgs, GetAddonsResult, GetAddonsOutputArgs } from "./getAddons";
17
+ export declare const getAddons: typeof import("./getAddons").getAddons;
18
+ export declare const getAddonsOutput: typeof import("./getAddons").getAddonsOutput;
7
19
  export { GetClusterKubeConfigArgs, GetClusterKubeConfigResult, GetClusterKubeConfigOutputArgs } from "./getClusterKubeConfig";
8
20
  export declare const getClusterKubeConfig: typeof import("./getClusterKubeConfig").getClusterKubeConfig;
9
21
  export declare const getClusterKubeConfigOutput: typeof import("./getClusterKubeConfig").getClusterKubeConfigOutput;
@@ -25,6 +37,15 @@ export declare const getNodePoolOptionOutput: typeof import("./getNodePoolOption
25
37
  export { GetNodePoolsArgs, GetNodePoolsResult, GetNodePoolsOutputArgs } from "./getNodePools";
26
38
  export declare const getNodePools: typeof import("./getNodePools").getNodePools;
27
39
  export declare const getNodePoolsOutput: typeof import("./getNodePools").getNodePoolsOutput;
40
+ export { GetPodShapesArgs, GetPodShapesResult, GetPodShapesOutputArgs } from "./getPodShapes";
41
+ export declare const getPodShapes: typeof import("./getPodShapes").getPodShapes;
42
+ export declare const getPodShapesOutput: typeof import("./getPodShapes").getPodShapesOutput;
43
+ export { GetVirtualNodePoolArgs, GetVirtualNodePoolResult, GetVirtualNodePoolOutputArgs } from "./getVirtualNodePool";
44
+ export declare const getVirtualNodePool: typeof import("./getVirtualNodePool").getVirtualNodePool;
45
+ export declare const getVirtualNodePoolOutput: typeof import("./getVirtualNodePool").getVirtualNodePoolOutput;
46
+ export { GetVirtualNodePoolsArgs, GetVirtualNodePoolsResult, GetVirtualNodePoolsOutputArgs } from "./getVirtualNodePools";
47
+ export declare const getVirtualNodePools: typeof import("./getVirtualNodePools").getVirtualNodePools;
48
+ export declare const getVirtualNodePoolsOutput: typeof import("./getVirtualNodePools").getVirtualNodePoolsOutput;
28
49
  export { GetWorkRequestErrorsArgs, GetWorkRequestErrorsResult, GetWorkRequestErrorsOutputArgs } from "./getWorkRequestErrors";
29
50
  export declare const getWorkRequestErrors: typeof import("./getWorkRequestErrors").getWorkRequestErrors;
30
51
  export declare const getWorkRequestErrorsOutput: typeof import("./getWorkRequestErrors").getWorkRequestErrorsOutput;
@@ -37,3 +58,6 @@ export declare const getWorkRequestsOutput: typeof import("./getWorkRequests").g
37
58
  export { NodePoolArgs, NodePoolState } from "./nodePool";
38
59
  export type NodePool = import("./nodePool").NodePool;
39
60
  export declare const NodePool: typeof import("./nodePool").NodePool;
61
+ export { VirtualNodePoolArgs, VirtualNodePoolState } from "./virtualNodePool";
62
+ export type VirtualNodePool = import("./virtualNodePool").VirtualNodePool;
63
+ export declare const VirtualNodePool: typeof import("./virtualNodePool").VirtualNodePool;