@pulumi/oci 2.6.0 → 2.7.0-alpha.1723624751

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 (47) hide show
  1. package/database/autonomousDatabase.d.ts +3 -3
  2. package/database/getAutonomousDatabase.d.ts +1 -1
  3. package/database/getAutonomousDatabases.d.ts +4 -2
  4. package/database/getAutonomousDatabases.js +4 -2
  5. package/database/getAutonomousDatabases.js.map +1 -1
  6. package/datasafe/calculateAuditVolumeAvailable.d.ts +133 -0
  7. package/datasafe/calculateAuditVolumeAvailable.js +87 -0
  8. package/datasafe/calculateAuditVolumeAvailable.js.map +1 -0
  9. package/datasafe/calculateAuditVolumeCollected.d.ts +120 -0
  10. package/datasafe/calculateAuditVolumeCollected.js +87 -0
  11. package/datasafe/calculateAuditVolumeCollected.js.map +1 -0
  12. package/datasafe/index.d.ts +6 -0
  13. package/datasafe/index.js +16 -6
  14. package/datasafe/index.js.map +1 -1
  15. package/disasterrecovery/getDrPlanExecutions.d.ts +0 -39
  16. package/disasterrecovery/getDrPlanExecutions.js +0 -31
  17. package/disasterrecovery/getDrPlanExecutions.js.map +1 -1
  18. package/integration/getIntegrationInstance.d.ts +6 -0
  19. package/integration/getIntegrationInstance.js.map +1 -1
  20. package/integration/integrationInstance.d.ts +12 -0
  21. package/integration/integrationInstance.js +2 -0
  22. package/integration/integrationInstance.js.map +1 -1
  23. package/limits/getLimitDefinitions.d.ts +13 -2
  24. package/limits/getLimitDefinitions.js +5 -2
  25. package/limits/getLimitDefinitions.js.map +1 -1
  26. package/limits/getLimitValues.d.ts +13 -2
  27. package/limits/getLimitValues.js +5 -2
  28. package/limits/getLimitValues.js.map +1 -1
  29. package/limits/getResourceAvailability.d.ts +15 -2
  30. package/limits/getResourceAvailability.js +7 -2
  31. package/limits/getResourceAvailability.js.map +1 -1
  32. package/limits/getServices.d.ts +13 -2
  33. package/limits/getServices.js +5 -2
  34. package/limits/getServices.js.map +1 -1
  35. package/networkloadbalancer/backendSet.d.ts +1 -1
  36. package/networkloadbalancer/backendSet.js +1 -1
  37. package/networkloadbalancer/getListener.d.ts +8 -0
  38. package/networkloadbalancer/getListener.js.map +1 -1
  39. package/networkloadbalancer/listener.d.ts +29 -3
  40. package/networkloadbalancer/listener.js +6 -0
  41. package/networkloadbalancer/listener.js.map +1 -1
  42. package/networkloadbalancer/networkLoadBalancer.d.ts +3 -3
  43. package/networkloadbalancer/networkLoadBalancersBackendSetsUnified.d.ts +1 -1
  44. package/networkloadbalancer/networkLoadBalancersBackendSetsUnified.js +1 -1
  45. package/package.json +2 -2
  46. package/types/input.d.ts +18 -0
  47. package/types/output.d.ts +48 -4
@@ -4,7 +4,7 @@ import * as outputs from "../types/output";
4
4
  /**
5
5
  * This data source provides the list of Limit Values in Oracle Cloud Infrastructure Limits service.
6
6
  *
7
- * Includes a full list of resource limits belonging to a given service.
7
+ * Includes a full list of resource limits belonging to a given service. If subscription Id is provided, limit value for subscription will be returned.
8
8
  *
9
9
  * ## Example Usage
10
10
  *
@@ -18,6 +18,7 @@ import * as outputs from "../types/output";
18
18
  * availabilityDomain: limitValueAvailabilityDomain,
19
19
  * name: limitValueName,
20
20
  * scopeType: limitValueScopeType,
21
+ * subscriptionId: subscriptionOcid,
21
22
  * });
22
23
  * ```
23
24
  */
@@ -47,6 +48,10 @@ export interface GetLimitValuesArgs {
47
48
  * The target service name.
48
49
  */
49
50
  serviceName: string;
51
+ /**
52
+ * The OCID of the subscription assigned to tenant
53
+ */
54
+ subscriptionId?: string;
50
55
  }
51
56
  /**
52
57
  * A collection of values returned by getLimitValues.
@@ -75,11 +80,12 @@ export interface GetLimitValuesResult {
75
80
  */
76
81
  readonly scopeType?: string;
77
82
  readonly serviceName: string;
83
+ readonly subscriptionId?: string;
78
84
  }
79
85
  /**
80
86
  * This data source provides the list of Limit Values in Oracle Cloud Infrastructure Limits service.
81
87
  *
82
- * Includes a full list of resource limits belonging to a given service.
88
+ * Includes a full list of resource limits belonging to a given service. If subscription Id is provided, limit value for subscription will be returned.
83
89
  *
84
90
  * ## Example Usage
85
91
  *
@@ -93,6 +99,7 @@ export interface GetLimitValuesResult {
93
99
  * availabilityDomain: limitValueAvailabilityDomain,
94
100
  * name: limitValueName,
95
101
  * scopeType: limitValueScopeType,
102
+ * subscriptionId: subscriptionOcid,
96
103
  * });
97
104
  * ```
98
105
  */
@@ -122,4 +129,8 @@ export interface GetLimitValuesOutputArgs {
122
129
  * The target service name.
123
130
  */
124
131
  serviceName: pulumi.Input<string>;
132
+ /**
133
+ * The OCID of the subscription assigned to tenant
134
+ */
135
+ subscriptionId?: pulumi.Input<string>;
125
136
  }
@@ -8,7 +8,7 @@ const utilities = require("../utilities");
8
8
  /**
9
9
  * This data source provides the list of Limit Values in Oracle Cloud Infrastructure Limits service.
10
10
  *
11
- * Includes a full list of resource limits belonging to a given service.
11
+ * Includes a full list of resource limits belonging to a given service. If subscription Id is provided, limit value for subscription will be returned.
12
12
  *
13
13
  * ## Example Usage
14
14
  *
@@ -22,6 +22,7 @@ const utilities = require("../utilities");
22
22
  * availabilityDomain: limitValueAvailabilityDomain,
23
23
  * name: limitValueName,
24
24
  * scopeType: limitValueScopeType,
25
+ * subscriptionId: subscriptionOcid,
25
26
  * });
26
27
  * ```
27
28
  */
@@ -34,13 +35,14 @@ function getLimitValues(args, opts) {
34
35
  "name": args.name,
35
36
  "scopeType": args.scopeType,
36
37
  "serviceName": args.serviceName,
38
+ "subscriptionId": args.subscriptionId,
37
39
  }, opts);
38
40
  }
39
41
  exports.getLimitValues = getLimitValues;
40
42
  /**
41
43
  * This data source provides the list of Limit Values in Oracle Cloud Infrastructure Limits service.
42
44
  *
43
- * Includes a full list of resource limits belonging to a given service.
45
+ * Includes a full list of resource limits belonging to a given service. If subscription Id is provided, limit value for subscription will be returned.
44
46
  *
45
47
  * ## Example Usage
46
48
  *
@@ -54,6 +56,7 @@ exports.getLimitValues = getLimitValues;
54
56
  * availabilityDomain: limitValueAvailabilityDomain,
55
57
  * name: limitValueName,
56
58
  * scopeType: limitValueScopeType,
59
+ * subscriptionId: subscriptionOcid,
57
60
  * });
58
61
  * ```
59
62
  */
@@ -1 +1 @@
1
- {"version":3,"file":"getLimitValues.js","sourceRoot":"","sources":["../../limits/getLimitValues.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;GAmBG;AACH,SAAgB,cAAc,CAAC,IAAwB,EAAE,IAA2B;IAEhF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,0CAA0C,EAAE;QACrE,oBAAoB,EAAE,IAAI,CAAC,kBAAkB;QAC7C,eAAe,EAAE,IAAI,CAAC,aAAa;QACnC,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,aAAa,EAAE,IAAI,CAAC,WAAW;KAClC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAXD,wCAWC;AAyDD;;;;;;;;;;;;;;;;;;;GAmBG;AACH,SAAgB,oBAAoB,CAAC,IAA8B,EAAE,IAA2B;IAC5F,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,cAAc,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACzE,CAAC;AAFD,oDAEC"}
1
+ {"version":3,"file":"getLimitValues.js","sourceRoot":"","sources":["../../limits/getLimitValues.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;GAoBG;AACH,SAAgB,cAAc,CAAC,IAAwB,EAAE,IAA2B;IAEhF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,0CAA0C,EAAE;QACrE,oBAAoB,EAAE,IAAI,CAAC,kBAAkB;QAC7C,eAAe,EAAE,IAAI,CAAC,aAAa;QACnC,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,gBAAgB,EAAE,IAAI,CAAC,cAAc;KACxC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAZD,wCAYC;AA8DD;;;;;;;;;;;;;;;;;;;;GAoBG;AACH,SAAgB,oBAAoB,CAAC,IAA8B,EAAE,IAA2B;IAC5F,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,cAAc,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACzE,CAAC;AAFD,oDAEC"}
@@ -5,7 +5,8 @@ import * as pulumi from "@pulumi/pulumi";
5
5
  * For a given compartmentId, resource limit name, and scope, returns the following:
6
6
  * * The number of available resources associated with the given limit.
7
7
  * * The usage in the selected compartment for the given limit.
8
- * Note that not all resource limits support this API. If the value is not available, the API returns a 404 response.
8
+ * If Subscription Id is provided, then usage for resource created in that subscription will be returned
9
+ * Note that not all resource limits support this API. If the value is not available, the API returns a 404 response.
9
10
  *
10
11
  * ## Example Usage
11
12
  *
@@ -18,6 +19,7 @@ import * as pulumi from "@pulumi/pulumi";
18
19
  * limitName: resourceAvailabilityLimitName,
19
20
  * serviceName: testService.name,
20
21
  * availabilityDomain: resourceAvailabilityAvailabilityDomain,
22
+ * subscriptionId: subscriptionOcid,
21
23
  * });
22
24
  * ```
23
25
  */
@@ -42,6 +44,10 @@ export interface GetResourceAvailabilityArgs {
42
44
  * The service name of the target quota.
43
45
  */
44
46
  serviceName: string;
47
+ /**
48
+ * The OCID of the subscription assigned to tenant
49
+ */
50
+ subscriptionId?: string;
45
51
  }
46
52
  /**
47
53
  * A collection of values returned by getResourceAvailability.
@@ -71,6 +77,7 @@ export interface GetResourceAvailabilityResult {
71
77
  readonly id: string;
72
78
  readonly limitName: string;
73
79
  readonly serviceName: string;
80
+ readonly subscriptionId?: string;
74
81
  /**
75
82
  * The current usage in the given compartment. To support resources with fractional counts, the field rounds up to the nearest integer.
76
83
  */
@@ -82,7 +89,8 @@ export interface GetResourceAvailabilityResult {
82
89
  * For a given compartmentId, resource limit name, and scope, returns the following:
83
90
  * * The number of available resources associated with the given limit.
84
91
  * * The usage in the selected compartment for the given limit.
85
- * Note that not all resource limits support this API. If the value is not available, the API returns a 404 response.
92
+ * If Subscription Id is provided, then usage for resource created in that subscription will be returned
93
+ * Note that not all resource limits support this API. If the value is not available, the API returns a 404 response.
86
94
  *
87
95
  * ## Example Usage
88
96
  *
@@ -95,6 +103,7 @@ export interface GetResourceAvailabilityResult {
95
103
  * limitName: resourceAvailabilityLimitName,
96
104
  * serviceName: testService.name,
97
105
  * availabilityDomain: resourceAvailabilityAvailabilityDomain,
106
+ * subscriptionId: subscriptionOcid,
98
107
  * });
99
108
  * ```
100
109
  */
@@ -119,4 +128,8 @@ export interface GetResourceAvailabilityOutputArgs {
119
128
  * The service name of the target quota.
120
129
  */
121
130
  serviceName: pulumi.Input<string>;
131
+ /**
132
+ * The OCID of the subscription assigned to tenant
133
+ */
134
+ subscriptionId?: pulumi.Input<string>;
122
135
  }
@@ -11,7 +11,8 @@ const utilities = require("../utilities");
11
11
  * For a given compartmentId, resource limit name, and scope, returns the following:
12
12
  * * The number of available resources associated with the given limit.
13
13
  * * The usage in the selected compartment for the given limit.
14
- * Note that not all resource limits support this API. If the value is not available, the API returns a 404 response.
14
+ * If Subscription Id is provided, then usage for resource created in that subscription will be returned
15
+ * Note that not all resource limits support this API. If the value is not available, the API returns a 404 response.
15
16
  *
16
17
  * ## Example Usage
17
18
  *
@@ -24,6 +25,7 @@ const utilities = require("../utilities");
24
25
  * limitName: resourceAvailabilityLimitName,
25
26
  * serviceName: testService.name,
26
27
  * availabilityDomain: resourceAvailabilityAvailabilityDomain,
28
+ * subscriptionId: subscriptionOcid,
27
29
  * });
28
30
  * ```
29
31
  */
@@ -34,6 +36,7 @@ function getResourceAvailability(args, opts) {
34
36
  "compartmentId": args.compartmentId,
35
37
  "limitName": args.limitName,
36
38
  "serviceName": args.serviceName,
39
+ "subscriptionId": args.subscriptionId,
37
40
  }, opts);
38
41
  }
39
42
  exports.getResourceAvailability = getResourceAvailability;
@@ -43,7 +46,8 @@ exports.getResourceAvailability = getResourceAvailability;
43
46
  * For a given compartmentId, resource limit name, and scope, returns the following:
44
47
  * * The number of available resources associated with the given limit.
45
48
  * * The usage in the selected compartment for the given limit.
46
- * Note that not all resource limits support this API. If the value is not available, the API returns a 404 response.
49
+ * If Subscription Id is provided, then usage for resource created in that subscription will be returned
50
+ * Note that not all resource limits support this API. If the value is not available, the API returns a 404 response.
47
51
  *
48
52
  * ## Example Usage
49
53
  *
@@ -56,6 +60,7 @@ exports.getResourceAvailability = getResourceAvailability;
56
60
  * limitName: resourceAvailabilityLimitName,
57
61
  * serviceName: testService.name,
58
62
  * availabilityDomain: resourceAvailabilityAvailabilityDomain,
63
+ * subscriptionId: subscriptionOcid,
59
64
  * });
60
65
  * ```
61
66
  */
@@ -1 +1 @@
1
- {"version":3,"file":"getResourceAvailability.js","sourceRoot":"","sources":["../../limits/getResourceAvailability.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;GAqBG;AACH,SAAgB,uBAAuB,CAAC,IAAiC,EAAE,IAA2B;IAElG,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,4DAA4D,EAAE;QACvF,oBAAoB,EAAE,IAAI,CAAC,kBAAkB;QAC7C,eAAe,EAAE,IAAI,CAAC,aAAa;QACnC,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,aAAa,EAAE,IAAI,CAAC,WAAW;KAClC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AATD,0DASC;AAyDD;;;;;;;;;;;;;;;;;;;;;GAqBG;AACH,SAAgB,6BAA6B,CAAC,IAAuC,EAAE,IAA2B;IAC9G,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,uBAAuB,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAClF,CAAC;AAFD,sEAEC"}
1
+ {"version":3,"file":"getResourceAvailability.js","sourceRoot":"","sources":["../../limits/getResourceAvailability.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;GAuBG;AACH,SAAgB,uBAAuB,CAAC,IAAiC,EAAE,IAA2B;IAElG,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,4DAA4D,EAAE;QACvF,oBAAoB,EAAE,IAAI,CAAC,kBAAkB;QAC7C,eAAe,EAAE,IAAI,CAAC,aAAa;QACnC,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,gBAAgB,EAAE,IAAI,CAAC,cAAc;KACxC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAVD,0DAUC;AA8DD;;;;;;;;;;;;;;;;;;;;;;;GAuBG;AACH,SAAgB,6BAA6B,CAAC,IAAuC,EAAE,IAA2B;IAC9G,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,uBAAuB,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAClF,CAAC;AAFD,sEAEC"}
@@ -4,7 +4,7 @@ import * as outputs from "../types/output";
4
4
  /**
5
5
  * This data source provides the list of Services in Oracle Cloud Infrastructure Limits service.
6
6
  *
7
- * Returns the list of supported services.
7
+ * Returns the list of supported services. If subscription ID is provided then only services supported by subscription will be returned.
8
8
  * This includes the programmatic service name, along with the friendly service name.
9
9
  *
10
10
  * ## Example Usage
@@ -15,6 +15,7 @@ import * as outputs from "../types/output";
15
15
  *
16
16
  * const testServices = oci.Limits.getServices({
17
17
  * compartmentId: tenancyOcid,
18
+ * subscriptionId: subscriptionOcid,
18
19
  * });
19
20
  * ```
20
21
  */
@@ -28,6 +29,10 @@ export interface GetServicesArgs {
28
29
  */
29
30
  compartmentId: string;
30
31
  filters?: inputs.Limits.GetServicesFilter[];
32
+ /**
33
+ * The OCID of the subscription assigned to tenant
34
+ */
35
+ subscriptionId?: string;
31
36
  }
32
37
  /**
33
38
  * A collection of values returned by getServices.
@@ -43,11 +48,12 @@ export interface GetServicesResult {
43
48
  * The list of services.
44
49
  */
45
50
  readonly services: outputs.Limits.GetServicesService[];
51
+ readonly subscriptionId?: string;
46
52
  }
47
53
  /**
48
54
  * This data source provides the list of Services in Oracle Cloud Infrastructure Limits service.
49
55
  *
50
- * Returns the list of supported services.
56
+ * Returns the list of supported services. If subscription ID is provided then only services supported by subscription will be returned.
51
57
  * This includes the programmatic service name, along with the friendly service name.
52
58
  *
53
59
  * ## Example Usage
@@ -58,6 +64,7 @@ export interface GetServicesResult {
58
64
  *
59
65
  * const testServices = oci.Limits.getServices({
60
66
  * compartmentId: tenancyOcid,
67
+ * subscriptionId: subscriptionOcid,
61
68
  * });
62
69
  * ```
63
70
  */
@@ -71,4 +78,8 @@ export interface GetServicesOutputArgs {
71
78
  */
72
79
  compartmentId: pulumi.Input<string>;
73
80
  filters?: pulumi.Input<pulumi.Input<inputs.Limits.GetServicesFilterArgs>[]>;
81
+ /**
82
+ * The OCID of the subscription assigned to tenant
83
+ */
84
+ subscriptionId?: pulumi.Input<string>;
74
85
  }
@@ -8,7 +8,7 @@ const utilities = require("../utilities");
8
8
  /**
9
9
  * This data source provides the list of Services in Oracle Cloud Infrastructure Limits service.
10
10
  *
11
- * Returns the list of supported services.
11
+ * Returns the list of supported services. If subscription ID is provided then only services supported by subscription will be returned.
12
12
  * This includes the programmatic service name, along with the friendly service name.
13
13
  *
14
14
  * ## Example Usage
@@ -19,6 +19,7 @@ const utilities = require("../utilities");
19
19
  *
20
20
  * const testServices = oci.Limits.getServices({
21
21
  * compartmentId: tenancyOcid,
22
+ * subscriptionId: subscriptionOcid,
22
23
  * });
23
24
  * ```
24
25
  */
@@ -27,13 +28,14 @@ function getServices(args, opts) {
27
28
  return pulumi.runtime.invoke("oci:Limits/getServices:getServices", {
28
29
  "compartmentId": args.compartmentId,
29
30
  "filters": args.filters,
31
+ "subscriptionId": args.subscriptionId,
30
32
  }, opts);
31
33
  }
32
34
  exports.getServices = getServices;
33
35
  /**
34
36
  * This data source provides the list of Services in Oracle Cloud Infrastructure Limits service.
35
37
  *
36
- * Returns the list of supported services.
38
+ * Returns the list of supported services. If subscription ID is provided then only services supported by subscription will be returned.
37
39
  * This includes the programmatic service name, along with the friendly service name.
38
40
  *
39
41
  * ## Example Usage
@@ -44,6 +46,7 @@ exports.getServices = getServices;
44
46
  *
45
47
  * const testServices = oci.Limits.getServices({
46
48
  * compartmentId: tenancyOcid,
49
+ * subscriptionId: subscriptionOcid,
47
50
  * });
48
51
  * ```
49
52
  */
@@ -1 +1 @@
1
- {"version":3,"file":"getServices.js","sourceRoot":"","sources":["../../limits/getServices.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;GAgBG;AACH,SAAgB,WAAW,CAAC,IAAqB,EAAE,IAA2B;IAE1E,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,oCAAoC,EAAE;QAC/D,eAAe,EAAE,IAAI,CAAC,aAAa;QACnC,SAAS,EAAE,IAAI,CAAC,OAAO;KAC1B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,kCAOC;AA4BD;;;;;;;;;;;;;;;;GAgBG;AACH,SAAgB,iBAAiB,CAAC,IAA2B,EAAE,IAA2B;IACtF,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,WAAW,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACtE,CAAC;AAFD,8CAEC"}
1
+ {"version":3,"file":"getServices.js","sourceRoot":"","sources":["../../limits/getServices.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;GAiBG;AACH,SAAgB,WAAW,CAAC,IAAqB,EAAE,IAA2B;IAE1E,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,oCAAoC,EAAE;QAC/D,eAAe,EAAE,IAAI,CAAC,aAAa;QACnC,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,gBAAgB,EAAE,IAAI,CAAC,cAAc;KACxC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AARD,kCAQC;AAiCD;;;;;;;;;;;;;;;;;GAiBG;AACH,SAAgB,iBAAiB,CAAC,IAA2B,EAAE,IAA2B;IACtF,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,WAAW,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACtE,CAAC;AAFD,8CAEC"}
@@ -36,8 +36,8 @@ import * as outputs from "../types/output";
36
36
  * networkLoadBalancerId: testNetworkLoadBalancer.id,
37
37
  * policy: backendSetPolicy,
38
38
  * ipVersion: backendSetIpVersion,
39
- * isInstantFailoverEnabled: backendSetIsInstantFailoverEnabled,
40
39
  * isFailOpen: backendSetIsFailOpen,
40
+ * isInstantFailoverEnabled: backendSetIsInstantFailoverEnabled,
41
41
  * isPreserveSource: backendSetIsPreserveSource,
42
42
  * });
43
43
  * ```
@@ -40,8 +40,8 @@ const utilities = require("../utilities");
40
40
  * networkLoadBalancerId: testNetworkLoadBalancer.id,
41
41
  * policy: backendSetPolicy,
42
42
  * ipVersion: backendSetIpVersion,
43
- * isInstantFailoverEnabled: backendSetIsInstantFailoverEnabled,
44
43
  * isFailOpen: backendSetIsFailOpen,
44
+ * isInstantFailoverEnabled: backendSetIsInstantFailoverEnabled,
45
45
  * isPreserveSource: backendSetIsPreserveSource,
46
46
  * });
47
47
  * ```
@@ -61,6 +61,14 @@ export interface GetListenerResult {
61
61
  * The protocol on which the listener accepts connection requests. For public network load balancers, ANY protocol refers to TCP/UDP with the wildcard port. For private network load balancers, ANY protocol refers to TCP/UDP/ICMP (note that ICMP requires isPreserveSourceDestination to be set to true). "ListNetworkLoadBalancersProtocols" API is deprecated and it will not return the updated values. Use the allowed values for the protocol instead. Example: `TCP`
62
62
  */
63
63
  readonly protocol: string;
64
+ /**
65
+ * The duration for TCP idle timeout in seconds. Example: `300`
66
+ */
67
+ readonly tcpIdleTimeout: number;
68
+ /**
69
+ * The duration for UDP idle timeout in seconds. Example: `120`
70
+ */
71
+ readonly udpIdleTimeout: number;
64
72
  }
65
73
  /**
66
74
  * This data source provides details about a specific Listener resource in Oracle Cloud Infrastructure Network Load Balancer service.
@@ -1 +1 @@
1
- {"version":3,"file":"getListener.js","sourceRoot":"","sources":["../../networkloadbalancer/getListener.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;GAgBG;AACH,SAAgB,WAAW,CAAC,IAAqB,EAAE,IAA2B;IAE1E,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,iDAAiD,EAAE;QAC5E,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,uBAAuB,EAAE,IAAI,CAAC,qBAAqB;KACtD,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,kCAOC;AAgDD;;;;;;;;;;;;;;;;GAgBG;AACH,SAAgB,iBAAiB,CAAC,IAA2B,EAAE,IAA2B;IACtF,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,WAAW,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACtE,CAAC;AAFD,8CAEC"}
1
+ {"version":3,"file":"getListener.js","sourceRoot":"","sources":["../../networkloadbalancer/getListener.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;GAgBG;AACH,SAAgB,WAAW,CAAC,IAAqB,EAAE,IAA2B;IAE1E,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,iDAAiD,EAAE;QAC5E,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,uBAAuB,EAAE,IAAI,CAAC,qBAAqB;KACtD,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,kCAOC;AAwDD;;;;;;;;;;;;;;;;GAgBG;AACH,SAAgB,iBAAiB,CAAC,IAA2B,EAAE,IAA2B;IACtF,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,WAAW,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACtE,CAAC;AAFD,8CAEC"}
@@ -18,6 +18,8 @@ import * as pulumi from "@pulumi/pulumi";
18
18
  * protocol: listenerProtocol,
19
19
  * ipVersion: listenerIpVersion,
20
20
  * isPpv2enabled: listenerIsPpv2enabled,
21
+ * tcpIdleTimeout: listenerTcpIdleTimeout,
22
+ * udpIdleTimeout: listenerUdpIdleTimeout,
21
23
  * });
22
24
  * ```
23
25
  *
@@ -71,12 +73,20 @@ export declare class Listener extends pulumi.CustomResource {
71
73
  readonly port: pulumi.Output<number>;
72
74
  /**
73
75
  * (Updatable) The protocol on which the listener accepts connection requests. For public network load balancers, ANY protocol refers to TCP/UDP with the wildcard port. For private network load balancers, ANY protocol refers to TCP/UDP/ICMP (note that ICMP requires isPreserveSourceDestination to be set to true). "ListNetworkLoadBalancersProtocols" API is deprecated and it will not return the updated values. Use the allowed values for the protocol instead. Example: `TCP`
76
+ */
77
+ readonly protocol: pulumi.Output<string>;
78
+ /**
79
+ * (Updatable) The duration for TCP idle timeout in seconds. Example: `300`
80
+ */
81
+ readonly tcpIdleTimeout: pulumi.Output<number>;
82
+ /**
83
+ * (Updatable) The duration for UDP idle timeout in seconds. Example: `120`
74
84
  *
75
85
  *
76
86
  * ** IMPORTANT **
77
87
  * Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
78
88
  */
79
- readonly protocol: pulumi.Output<string>;
89
+ readonly udpIdleTimeout: pulumi.Output<number>;
80
90
  /**
81
91
  * Create a Listener resource with the given unique name, arguments, and options.
82
92
  *
@@ -116,12 +126,20 @@ export interface ListenerState {
116
126
  port?: pulumi.Input<number>;
117
127
  /**
118
128
  * (Updatable) The protocol on which the listener accepts connection requests. For public network load balancers, ANY protocol refers to TCP/UDP with the wildcard port. For private network load balancers, ANY protocol refers to TCP/UDP/ICMP (note that ICMP requires isPreserveSourceDestination to be set to true). "ListNetworkLoadBalancersProtocols" API is deprecated and it will not return the updated values. Use the allowed values for the protocol instead. Example: `TCP`
129
+ */
130
+ protocol?: pulumi.Input<string>;
131
+ /**
132
+ * (Updatable) The duration for TCP idle timeout in seconds. Example: `300`
133
+ */
134
+ tcpIdleTimeout?: pulumi.Input<number>;
135
+ /**
136
+ * (Updatable) The duration for UDP idle timeout in seconds. Example: `120`
119
137
  *
120
138
  *
121
139
  * ** IMPORTANT **
122
140
  * Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
123
141
  */
124
- protocol?: pulumi.Input<string>;
142
+ udpIdleTimeout?: pulumi.Input<number>;
125
143
  }
126
144
  /**
127
145
  * The set of arguments for constructing a Listener resource.
@@ -153,10 +171,18 @@ export interface ListenerArgs {
153
171
  port: pulumi.Input<number>;
154
172
  /**
155
173
  * (Updatable) The protocol on which the listener accepts connection requests. For public network load balancers, ANY protocol refers to TCP/UDP with the wildcard port. For private network load balancers, ANY protocol refers to TCP/UDP/ICMP (note that ICMP requires isPreserveSourceDestination to be set to true). "ListNetworkLoadBalancersProtocols" API is deprecated and it will not return the updated values. Use the allowed values for the protocol instead. Example: `TCP`
174
+ */
175
+ protocol: pulumi.Input<string>;
176
+ /**
177
+ * (Updatable) The duration for TCP idle timeout in seconds. Example: `300`
178
+ */
179
+ tcpIdleTimeout?: pulumi.Input<number>;
180
+ /**
181
+ * (Updatable) The duration for UDP idle timeout in seconds. Example: `120`
156
182
  *
157
183
  *
158
184
  * ** IMPORTANT **
159
185
  * Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
160
186
  */
161
- protocol: pulumi.Input<string>;
187
+ udpIdleTimeout?: pulumi.Input<number>;
162
188
  }
@@ -24,6 +24,8 @@ const utilities = require("../utilities");
24
24
  * protocol: listenerProtocol,
25
25
  * ipVersion: listenerIpVersion,
26
26
  * isPpv2enabled: listenerIsPpv2enabled,
27
+ * tcpIdleTimeout: listenerTcpIdleTimeout,
28
+ * udpIdleTimeout: listenerUdpIdleTimeout,
27
29
  * });
28
30
  * ```
29
31
  *
@@ -70,6 +72,8 @@ class Listener extends pulumi.CustomResource {
70
72
  resourceInputs["networkLoadBalancerId"] = state ? state.networkLoadBalancerId : undefined;
71
73
  resourceInputs["port"] = state ? state.port : undefined;
72
74
  resourceInputs["protocol"] = state ? state.protocol : undefined;
75
+ resourceInputs["tcpIdleTimeout"] = state ? state.tcpIdleTimeout : undefined;
76
+ resourceInputs["udpIdleTimeout"] = state ? state.udpIdleTimeout : undefined;
73
77
  }
74
78
  else {
75
79
  const args = argsOrState;
@@ -92,6 +96,8 @@ class Listener extends pulumi.CustomResource {
92
96
  resourceInputs["networkLoadBalancerId"] = args ? args.networkLoadBalancerId : undefined;
93
97
  resourceInputs["port"] = args ? args.port : undefined;
94
98
  resourceInputs["protocol"] = args ? args.protocol : undefined;
99
+ resourceInputs["tcpIdleTimeout"] = args ? args.tcpIdleTimeout : undefined;
100
+ resourceInputs["udpIdleTimeout"] = args ? args.udpIdleTimeout : undefined;
95
101
  }
96
102
  opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
97
103
  super(Listener.__pulumiType, name, resourceInputs, opts);
@@ -1 +1 @@
1
- {"version":3,"file":"listener.js","sourceRoot":"","sources":["../../networkloadbalancer/listener.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"listener.js","sourceRoot":"","sources":["../../networkloadbalancer/listener.ts"],"names":[],"mappings":"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"}
@@ -73,7 +73,7 @@ export declare class NetworkLoadBalancer extends pulumi.CustomResource {
73
73
  *
74
74
  * If "false", then the service assigns a public IP address to the network load balancer.
75
75
  *
76
- * A public network load balancer is accessible from the internet, depending on the [security list rules](https://docs.cloud.oracle.com/iaas/Content/network/Concepts/securitylists.htm) for your virtual cloud network. For more information about public and private network load balancers, see [How Network Load Balancing Works](https://docs.cloud.oracle.com/iaas/Content/NetworkLoadBalancer/overview.htm). This value is true by default.
76
+ * A public network load balancer is accessible from the internet, depending on the [security list rules](https://docs.cloud.oracle.com/iaas/Content/network/Concepts/securitylists.htm) for your virtual cloud network. For more information about public and private network load balancers, see [How Network Load Balancing Works](https://docs.cloud.oracle.com/iaas/Content/Balance/Concepts/balanceoverview.htm#how-network-load-balancing-works). This value is true by default.
77
77
  *
78
78
  * Example: `true`
79
79
  */
@@ -195,7 +195,7 @@ export interface NetworkLoadBalancerState {
195
195
  *
196
196
  * If "false", then the service assigns a public IP address to the network load balancer.
197
197
  *
198
- * A public network load balancer is accessible from the internet, depending on the [security list rules](https://docs.cloud.oracle.com/iaas/Content/network/Concepts/securitylists.htm) for your virtual cloud network. For more information about public and private network load balancers, see [How Network Load Balancing Works](https://docs.cloud.oracle.com/iaas/Content/NetworkLoadBalancer/overview.htm). This value is true by default.
198
+ * A public network load balancer is accessible from the internet, depending on the [security list rules](https://docs.cloud.oracle.com/iaas/Content/network/Concepts/securitylists.htm) for your virtual cloud network. For more information about public and private network load balancers, see [How Network Load Balancing Works](https://docs.cloud.oracle.com/iaas/Content/Balance/Concepts/balanceoverview.htm#how-network-load-balancing-works). This value is true by default.
199
199
  *
200
200
  * Example: `true`
201
201
  */
@@ -305,7 +305,7 @@ export interface NetworkLoadBalancerArgs {
305
305
  *
306
306
  * If "false", then the service assigns a public IP address to the network load balancer.
307
307
  *
308
- * A public network load balancer is accessible from the internet, depending on the [security list rules](https://docs.cloud.oracle.com/iaas/Content/network/Concepts/securitylists.htm) for your virtual cloud network. For more information about public and private network load balancers, see [How Network Load Balancing Works](https://docs.cloud.oracle.com/iaas/Content/NetworkLoadBalancer/overview.htm). This value is true by default.
308
+ * A public network load balancer is accessible from the internet, depending on the [security list rules](https://docs.cloud.oracle.com/iaas/Content/network/Concepts/securitylists.htm) for your virtual cloud network. For more information about public and private network load balancers, see [How Network Load Balancing Works](https://docs.cloud.oracle.com/iaas/Content/Balance/Concepts/balanceoverview.htm#how-network-load-balancing-works). This value is true by default.
309
309
  *
310
310
  * Example: `true`
311
311
  */
@@ -46,8 +46,8 @@ import * as outputs from "../types/output";
46
46
  * weight: networkLoadBalancersBackendSetsUnifiedBackendsWeight,
47
47
  * }],
48
48
  * ipVersion: networkLoadBalancersBackendSetsUnifiedIpVersion,
49
- * isInstantFailoverEnabled: networkLoadBalancersBackendSetsUnifiedIsInstantFailoverEnabled,
50
49
  * isFailOpen: networkLoadBalancersBackendSetsUnifiedIsFailOpen,
50
+ * isInstantFailoverEnabled: networkLoadBalancersBackendSetsUnifiedIsInstantFailoverEnabled,
51
51
  * isPreserveSource: networkLoadBalancersBackendSetsUnifiedIsPreserveSource,
52
52
  * });
53
53
  * ```
@@ -50,8 +50,8 @@ const utilities = require("../utilities");
50
50
  * weight: networkLoadBalancersBackendSetsUnifiedBackendsWeight,
51
51
  * }],
52
52
  * ipVersion: networkLoadBalancersBackendSetsUnifiedIpVersion,
53
- * isInstantFailoverEnabled: networkLoadBalancersBackendSetsUnifiedIsInstantFailoverEnabled,
54
53
  * isFailOpen: networkLoadBalancersBackendSetsUnifiedIsFailOpen,
54
+ * isInstantFailoverEnabled: networkLoadBalancersBackendSetsUnifiedIsInstantFailoverEnabled,
55
55
  * isPreserveSource: networkLoadBalancersBackendSetsUnifiedIsPreserveSource,
56
56
  * });
57
57
  * ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pulumi/oci",
3
- "version": "2.6.0",
3
+ "version": "2.7.0-alpha.1723624751",
4
4
  "description": "A Pulumi package for creating and managing Oracle Cloud Infrastructure resources.",
5
5
  "keywords": [
6
6
  "pulumi",
@@ -25,6 +25,6 @@
25
25
  "pulumi": {
26
26
  "resource": true,
27
27
  "name": "oci",
28
- "version": "2.6.0"
28
+ "version": "2.7.0-alpha.1723624751"
29
29
  }
30
30
  }
package/types/input.d.ts CHANGED
@@ -19128,6 +19128,24 @@ export declare namespace DataSafe {
19128
19128
  */
19129
19129
  workRequestId?: pulumi.Input<string>;
19130
19130
  }
19131
+ interface CalculateAuditVolumeAvailableAvailableAuditVolume {
19132
+ /**
19133
+ * The OCID of the audit.
19134
+ */
19135
+ auditProfileId?: pulumi.Input<string>;
19136
+ monthInConsideration?: pulumi.Input<string>;
19137
+ trailLocation?: pulumi.Input<string>;
19138
+ volume?: pulumi.Input<string>;
19139
+ }
19140
+ interface CalculateAuditVolumeCollectedCollectedAuditVolume {
19141
+ archivedVolume?: pulumi.Input<string>;
19142
+ /**
19143
+ * The OCID of the audit.
19144
+ */
19145
+ auditProfileId?: pulumi.Input<string>;
19146
+ monthInConsideration?: pulumi.Input<string>;
19147
+ onlineVolume?: pulumi.Input<string>;
19148
+ }
19131
19149
  interface DataSafeConfigurationGlobalSetting {
19132
19150
  /**
19133
19151
  * The paid usage option chosen by the customer admin.