oci-budget 2.22.0 → 2.26.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 (40) hide show
  1. package/lib/client.d.ts +22 -23
  2. package/lib/client.js +27 -24
  3. package/lib/client.js.map +1 -1
  4. package/lib/model/alert-rule-summary.d.ts +11 -11
  5. package/lib/model/alert-rule.d.ts +12 -12
  6. package/lib/model/alert-type.d.ts +2 -2
  7. package/lib/model/alert-type.js +2 -2
  8. package/lib/model/budget-summary.d.ts +21 -16
  9. package/lib/model/budget-summary.js.map +1 -1
  10. package/lib/model/budget.d.ts +19 -14
  11. package/lib/model/budget.js.map +1 -1
  12. package/lib/model/create-alert-rule-details.d.ts +8 -8
  13. package/lib/model/create-budget-details.d.ts +15 -10
  14. package/lib/model/create-budget-details.js.map +1 -1
  15. package/lib/model/index.d.ts +2 -0
  16. package/lib/model/index.js +3 -1
  17. package/lib/model/index.js.map +1 -1
  18. package/lib/model/processing-period-type.d.ts +28 -0
  19. package/lib/model/processing-period-type.js +39 -0
  20. package/lib/model/processing-period-type.js.map +1 -0
  21. package/lib/model/reset-period.d.ts +1 -1
  22. package/lib/model/reset-period.js +1 -1
  23. package/lib/model/target-type.d.ts +1 -1
  24. package/lib/model/target-type.js +1 -1
  25. package/lib/model/update-alert-rule-details.d.ts +9 -9
  26. package/lib/model/update-budget-details.d.ts +6 -1
  27. package/lib/model/update-budget-details.js.map +1 -1
  28. package/lib/request/create-alert-rule-request.d.ts +4 -4
  29. package/lib/request/create-budget-request.d.ts +4 -4
  30. package/lib/request/delete-alert-rule-request.d.ts +3 -3
  31. package/lib/request/delete-budget-request.d.ts +2 -2
  32. package/lib/request/get-alert-rule-request.d.ts +3 -3
  33. package/lib/request/get-budget-request.d.ts +2 -2
  34. package/lib/request/list-alert-rules-request.d.ts +3 -3
  35. package/lib/request/list-budgets-request.d.ts +3 -3
  36. package/lib/request/update-alert-rule-request.d.ts +3 -3
  37. package/lib/request/update-budget-request.d.ts +2 -2
  38. package/lib/response/list-alert-rules-response.d.ts +1 -1
  39. package/lib/response/list-budgets-response.d.ts +2 -2
  40. package/package.json +3 -3
@@ -12,15 +12,15 @@
12
12
  */
13
13
  import common = require("oci-common");
14
14
  /**
15
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.22.0/budget/GetAlertRule.ts.html |here} to see how to use GetAlertRuleRequest.
15
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/budget/GetAlertRule.ts.html |here} to see how to use GetAlertRuleRequest.
16
16
  */
17
17
  export interface GetAlertRuleRequest extends common.BaseRequest {
18
18
  /**
19
- * The unique Budget OCID
19
+ * The unique budget OCID.
20
20
  */
21
21
  "budgetId": string;
22
22
  /**
23
- * The unique Alert Rule OCID
23
+ * The unique Alert Rule OCID.
24
24
  */
25
25
  "alertRuleId": string;
26
26
  /**
@@ -12,11 +12,11 @@
12
12
  */
13
13
  import common = require("oci-common");
14
14
  /**
15
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.22.0/budget/GetBudget.ts.html |here} to see how to use GetBudgetRequest.
15
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/budget/GetBudget.ts.html |here} to see how to use GetBudgetRequest.
16
16
  */
17
17
  export interface GetBudgetRequest extends common.BaseRequest {
18
18
  /**
19
- * The unique Budget OCID
19
+ * The unique budget OCID.
20
20
  */
21
21
  "budgetId": string;
22
22
  /**
@@ -13,11 +13,11 @@
13
13
  import * as model from "../model";
14
14
  import common = require("oci-common");
15
15
  /**
16
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.22.0/budget/ListAlertRules.ts.html |here} to see how to use ListAlertRulesRequest.
16
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/budget/ListAlertRules.ts.html |here} to see how to use ListAlertRulesRequest.
17
17
  */
18
18
  export interface ListAlertRulesRequest extends common.BaseRequest {
19
19
  /**
20
- * The unique Budget OCID
20
+ * The unique budget OCID.
21
21
  */
22
22
  "budgetId": string;
23
23
  /**
@@ -44,7 +44,7 @@ export interface ListAlertRulesRequest extends common.BaseRequest {
44
44
  */
45
45
  "lifecycleState"?: model.LifecycleState;
46
46
  /**
47
- * A user-friendly name. Does not have to be unique, and it's changeable.
47
+ * A user-friendly name. This does not have to be unique, and it's changeable.
48
48
  * <p>
49
49
  Example: `My new resource`
50
50
  *
@@ -13,7 +13,7 @@
13
13
  import * as model from "../model";
14
14
  import common = require("oci-common");
15
15
  /**
16
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.22.0/budget/ListBudgets.ts.html |here} to see how to use ListBudgetsRequest.
16
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/budget/ListBudgets.ts.html |here} to see how to use ListBudgetsRequest.
17
17
  */
18
18
  export interface ListBudgetsRequest extends common.BaseRequest {
19
19
  /**
@@ -44,14 +44,14 @@ export interface ListBudgetsRequest extends common.BaseRequest {
44
44
  */
45
45
  "lifecycleState"?: model.LifecycleState;
46
46
  /**
47
- * A user-friendly name. Does not have to be unique, and it's changeable.
47
+ * A user-friendly name. This does not have to be unique, and it's changeable.
48
48
  * <p>
49
49
  Example: `My new resource`
50
50
  *
51
51
  */
52
52
  "displayName"?: string;
53
53
  /**
54
- * The type of target to filter by.
54
+ * The type of target to filter by:
55
55
  * * ALL - List all budgets
56
56
  * * COMPARTMENT - List all budgets with targetType == \"COMPARTMENT\"
57
57
  * * TAG - List all budgets with targetType == \"TAG\"
@@ -13,15 +13,15 @@
13
13
  import * as model from "../model";
14
14
  import common = require("oci-common");
15
15
  /**
16
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.22.0/budget/UpdateAlertRule.ts.html |here} to see how to use UpdateAlertRuleRequest.
16
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/budget/UpdateAlertRule.ts.html |here} to see how to use UpdateAlertRuleRequest.
17
17
  */
18
18
  export interface UpdateAlertRuleRequest extends common.BaseRequest {
19
19
  /**
20
- * The unique Budget OCID
20
+ * The unique budget OCID.
21
21
  */
22
22
  "budgetId": string;
23
23
  /**
24
- * The unique Alert Rule OCID
24
+ * The unique Alert Rule OCID.
25
25
  */
26
26
  "alertRuleId": string;
27
27
  /**
@@ -13,11 +13,11 @@
13
13
  import * as model from "../model";
14
14
  import common = require("oci-common");
15
15
  /**
16
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.22.0/budget/UpdateBudget.ts.html |here} to see how to use UpdateBudgetRequest.
16
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/budget/UpdateBudget.ts.html |here} to see how to use UpdateBudgetRequest.
17
17
  */
18
18
  export interface UpdateBudgetRequest extends common.BaseRequest {
19
19
  /**
20
- * The unique Budget OCID
20
+ * The unique budget OCID.
21
21
  */
22
22
  "budgetId": string;
23
23
  /**
@@ -20,7 +20,7 @@ export interface ListAlertRulesResponse {
20
20
  */
21
21
  "opcRequestId": string;
22
22
  /**
23
- * For pagination of a list of `AlertRuleSummary`s. If this header appears in the response, then this
23
+ * For pagination of a list of `AlertRuleSummary`. If this header appears in the response, then this
24
24
  * is a partial list of AlertRuleSummaries. Include this value as the `page` parameter in a subsequent
25
25
  * GET request to get the next batch of AlertRuleSummaries.
26
26
  *
@@ -21,8 +21,8 @@ export interface ListBudgetsResponse {
21
21
  "opcRequestId": string;
22
22
  /**
23
23
  * For pagination of a list of `Budget`s. If this header appears in the response, then this
24
- * is a partial list of Budgets. Include this value as the `page` parameter in a subsequent
25
- * GET request to get the next batch of Budgets.
24
+ * is a partial list of budgets. Include this value as the `page` parameter in a subsequent
25
+ * GET request to get the next batch of budgets.
26
26
  *
27
27
  */
28
28
  "opcNextPage": string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "oci-budget",
3
- "version": "2.22.0",
3
+ "version": "2.26.0",
4
4
  "description": "OCI NodeJS client for Budget Service",
5
5
  "repository": {
6
6
  "type": "git",
@@ -15,8 +15,8 @@
15
15
  },
16
16
  "license": "(UPL-1.0 OR Apache-2.0)",
17
17
  "dependencies": {
18
- "oci-common": "2.22.0",
19
- "oci-workrequests": "2.22.0"
18
+ "oci-common": "2.26.0",
19
+ "oci-workrequests": "2.26.0"
20
20
  },
21
21
  "publishConfig": {
22
22
  "registry": "https://registry.npmjs.org"