oci-usage 2.20.0 → 2.24.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 (37) hide show
  1. package/index.d.ts +2 -2
  2. package/index.js +2 -2
  3. package/lib/client.d.ts +13 -12
  4. package/lib/client.js +18 -18
  5. package/lib/client.js.map +1 -1
  6. package/lib/model/create-redeemable-user-details.d.ts +4 -4
  7. package/lib/model/create-redeemable-user-details.js +2 -2
  8. package/lib/model/index.d.ts +2 -2
  9. package/lib/model/index.js +2 -2
  10. package/lib/model/monthly-reward-summary.d.ts +8 -8
  11. package/lib/model/monthly-reward-summary.js +2 -2
  12. package/lib/model/product-collection.d.ts +2 -2
  13. package/lib/model/product-collection.js +2 -2
  14. package/lib/model/product-summary.d.ts +7 -7
  15. package/lib/model/product-summary.js +2 -2
  16. package/lib/model/redeemable-user-collection.d.ts +4 -4
  17. package/lib/model/redeemable-user-collection.js +2 -2
  18. package/lib/model/redeemable-user-summary.d.ts +4 -4
  19. package/lib/model/redeemable-user-summary.js +2 -2
  20. package/lib/model/redeemable-user.d.ts +4 -4
  21. package/lib/model/redeemable-user.js +2 -2
  22. package/lib/model/reward-collection.d.ts +3 -3
  23. package/lib/model/reward-collection.js +2 -2
  24. package/lib/model/reward-details.d.ts +9 -5
  25. package/lib/model/reward-details.js +2 -2
  26. package/lib/model/reward-details.js.map +1 -1
  27. package/lib/request/create-redeemable-user-request.d.ts +3 -3
  28. package/lib/request/delete-redeemable-user-request.d.ts +3 -3
  29. package/lib/request/index.d.ts +2 -2
  30. package/lib/request/index.js +2 -2
  31. package/lib/request/list-products-request.d.ts +4 -4
  32. package/lib/request/list-redeemable-users-request.d.ts +4 -4
  33. package/lib/request/list-rewards-request.d.ts +2 -2
  34. package/lib/response/index.d.ts +2 -2
  35. package/lib/response/index.js +2 -2
  36. package/lib/response/list-redeemable-users-response.d.ts +0 -4
  37. package/package.json +3 -3
package/index.d.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  /**
2
- * UsageApi API
3
- * A description of the UsageApi API.
2
+ * Usage Proxy API
3
+ * Use the Usage Proxy API to list Oracle Support Rewards, view related detailed usage information, and manage users who redeem rewards. For more information, see [Oracle Support Rewards Overview](/iaas/Content/Billing/Concepts/supportrewardsoverview.htm).
4
4
  * OpenAPI spec version: 20190111
5
5
  *
6
6
  *
package/index.js CHANGED
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
  /**
3
- * UsageApi API
4
- * A description of the UsageApi API.
3
+ * Usage Proxy API
4
+ * Use the Usage Proxy API to list Oracle Support Rewards, view related detailed usage information, and manage users who redeem rewards. For more information, see [Oracle Support Rewards Overview](/iaas/Content/Billing/Concepts/supportrewardsoverview.htm).
5
5
  * OpenAPI spec version: 20190111
6
6
  *
7
7
  *
package/lib/client.d.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  /**
2
- * UsageApi API
3
- * A description of the UsageApi API.
2
+ * Usage Proxy API
3
+ * Use the Usage Proxy API to list Oracle Support Rewards, view related detailed usage information, and manage users who redeem rewards. For more information, see [Oracle Support Rewards Overview](/iaas/Content/Billing/Concepts/supportrewardsoverview.htm).
4
4
  * OpenAPI spec version: 20190111
5
5
  *
6
6
  *
@@ -25,6 +25,7 @@ export declare class RewardsClient {
25
25
  protected "_defaultHeaders": any;
26
26
  protected "_clientConfiguration": common.ClientConfiguration;
27
27
  protected _circuitBreaker: null;
28
+ protected _httpOptions: any;
28
29
  protected _httpClient: common.HttpClient;
29
30
  constructor(params: common.AuthParams, clientConfiguration?: common.ClientConfiguration);
30
31
  /**
@@ -53,53 +54,53 @@ export declare class RewardsClient {
53
54
  */
54
55
  set regionId(regionId: string);
55
56
  /**
56
- * Add list of redeemable user email ids for a subscription Id
57
+ * Adds the list of redeemable user email IDs for a subscription ID.
57
58
  *
58
59
  * This operation does not retry by default if the user has not defined a retry configuration.
59
60
  * @param CreateRedeemableUserRequest
60
61
  * @return CreateRedeemableUserResponse
61
62
  * @throws OciError when an error occurs
62
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.20.0/usage/CreateRedeemableUser.ts.html |here} to see how to use CreateRedeemableUser API.
63
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/usage/CreateRedeemableUser.ts.html |here} to see how to use CreateRedeemableUser API.
63
64
  */
64
65
  createRedeemableUser(createRedeemableUserRequest: requests.CreateRedeemableUserRequest): Promise<responses.CreateRedeemableUserResponse>;
65
66
  /**
66
- * Delete list of redeemable user email ids for a subscription Id
67
+ * Deletes the list of redeemable user email IDs for a subscription ID.
67
68
  *
68
69
  * This operation does not retry by default if the user has not defined a retry configuration.
69
70
  * @param DeleteRedeemableUserRequest
70
71
  * @return DeleteRedeemableUserResponse
71
72
  * @throws OciError when an error occurs
72
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.20.0/usage/DeleteRedeemableUser.ts.html |here} to see how to use DeleteRedeemableUser API.
73
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/usage/DeleteRedeemableUser.ts.html |here} to see how to use DeleteRedeemableUser API.
73
74
  */
74
75
  deleteRedeemableUser(deleteRedeemableUserRequest: requests.DeleteRedeemableUserRequest): Promise<responses.DeleteRedeemableUserResponse>;
75
76
  /**
76
- * This API provides usage period specific product and its usage details.
77
+ * Provides product information that is specific to a reward usage period and its usage details.
77
78
  *
78
79
  * This operation does not retry by default if the user has not defined a retry configuration.
79
80
  * @param ListProductsRequest
80
81
  * @return ListProductsResponse
81
82
  * @throws OciError when an error occurs
82
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.20.0/usage/ListProducts.ts.html |here} to see how to use ListProducts API.
83
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/usage/ListProducts.ts.html |here} to see how to use ListProducts API.
83
84
  */
84
85
  listProducts(listProductsRequest: requests.ListProductsRequest): Promise<responses.ListProductsResponse>;
85
86
  /**
86
- * Provides emailids of redeemable users for the given subscriptionId
87
+ * Provides the email IDs of users that can redeem rewards for the given subscription ID.
87
88
  *
88
89
  * This operation does not retry by default if the user has not defined a retry configuration.
89
90
  * @param ListRedeemableUsersRequest
90
91
  * @return ListRedeemableUsersResponse
91
92
  * @throws OciError when an error occurs
92
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.20.0/usage/ListRedeemableUsers.ts.html |here} to see how to use ListRedeemableUsers API.
93
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/usage/ListRedeemableUsers.ts.html |here} to see how to use ListRedeemableUsers API.
93
94
  */
94
95
  listRedeemableUsers(listRedeemableUsersRequest: requests.ListRedeemableUsersRequest): Promise<responses.ListRedeemableUsersResponse>;
95
96
  /**
96
- * This API returns list of rewards for a subscription Id
97
+ * Returns the list of rewards for a subscription ID.
97
98
  *
98
99
  * This operation does not retry by default if the user has not defined a retry configuration.
99
100
  * @param ListRewardsRequest
100
101
  * @return ListRewardsResponse
101
102
  * @throws OciError when an error occurs
102
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.20.0/usage/ListRewards.ts.html |here} to see how to use ListRewards API.
103
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/usage/ListRewards.ts.html |here} to see how to use ListRewards API.
103
104
  */
104
105
  listRewards(listRewardsRequest: requests.ListRewardsRequest): Promise<responses.ListRewardsResponse>;
105
106
  }
package/lib/client.js CHANGED
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
  /**
3
- * UsageApi API
4
- * A description of the UsageApi API.
3
+ * Usage Proxy API
4
+ * Use the Usage Proxy API to list Oracle Support Rewards, view related detailed usage information, and manage users who redeem rewards. For more information, see [Oracle Support Rewards Overview](/iaas/Content/Billing/Concepts/supportrewardsoverview.htm).
5
5
  * OpenAPI spec version: 20190111
6
6
  *
7
7
  *
@@ -58,6 +58,7 @@ class RewardsClient {
58
58
  this["_endpoint"] = "";
59
59
  this["_defaultHeaders"] = {};
60
60
  this._circuitBreaker = null;
61
+ this._httpOptions = undefined;
61
62
  const requestSigner = params.authenticationDetailsProvider
62
63
  ? new common.DefaultRequestSigner(params.authenticationDetailsProvider)
63
64
  : null;
@@ -66,6 +67,9 @@ class RewardsClient {
66
67
  this._circuitBreaker = clientConfiguration.circuitBreaker
67
68
  ? clientConfiguration.circuitBreaker.circuit
68
69
  : null;
70
+ this._httpOptions = clientConfiguration.httpOptions
71
+ ? clientConfiguration.httpOptions
72
+ : undefined;
69
73
  }
70
74
  // if circuit breaker is not created, check if circuit breaker system is enabled to use default circuit breaker
71
75
  const specCircuitBreakerEnabled = true;
@@ -75,7 +79,8 @@ class RewardsClient {
75
79
  this._circuitBreaker = new common.CircuitBreaker().circuit;
76
80
  }
77
81
  this._httpClient =
78
- params.httpClient || new common.FetchHttpClient(requestSigner, this._circuitBreaker);
82
+ params.httpClient ||
83
+ new common.FetchHttpClient(requestSigner, this._circuitBreaker, this._httpOptions);
79
84
  if (params.authenticationDetailsProvider &&
80
85
  common.isRegionProvider(params.authenticationDetailsProvider)) {
81
86
  const provider = params.authenticationDetailsProvider;
@@ -123,13 +128,13 @@ class RewardsClient {
123
128
  this.endpoint = common.EndpointBuilder.createEndpointFromRegionId(RewardsClient.serviceEndpointTemplate, regionId, RewardsClient.endpointServiceName);
124
129
  }
125
130
  /**
126
- * Add list of redeemable user email ids for a subscription Id
131
+ * Adds the list of redeemable user email IDs for a subscription ID.
127
132
  *
128
133
  * This operation does not retry by default if the user has not defined a retry configuration.
129
134
  * @param CreateRedeemableUserRequest
130
135
  * @return CreateRedeemableUserResponse
131
136
  * @throws OciError when an error occurs
132
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.20.0/usage/CreateRedeemableUser.ts.html |here} to see how to use CreateRedeemableUser API.
137
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/usage/CreateRedeemableUser.ts.html |here} to see how to use CreateRedeemableUser API.
133
138
  */
134
139
  createRedeemableUser(createRedeemableUserRequest) {
135
140
  return __awaiter(this, void 0, void 0, function* () {
@@ -191,13 +196,13 @@ class RewardsClient {
191
196
  });
192
197
  }
193
198
  /**
194
- * Delete list of redeemable user email ids for a subscription Id
199
+ * Deletes the list of redeemable user email IDs for a subscription ID.
195
200
  *
196
201
  * This operation does not retry by default if the user has not defined a retry configuration.
197
202
  * @param DeleteRedeemableUserRequest
198
203
  * @return DeleteRedeemableUserResponse
199
204
  * @throws OciError when an error occurs
200
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.20.0/usage/DeleteRedeemableUser.ts.html |here} to see how to use DeleteRedeemableUser API.
205
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/usage/DeleteRedeemableUser.ts.html |here} to see how to use DeleteRedeemableUser API.
201
206
  */
202
207
  deleteRedeemableUser(deleteRedeemableUserRequest) {
203
208
  return __awaiter(this, void 0, void 0, function* () {
@@ -248,13 +253,13 @@ class RewardsClient {
248
253
  });
249
254
  }
250
255
  /**
251
- * This API provides usage period specific product and its usage details.
256
+ * Provides product information that is specific to a reward usage period and its usage details.
252
257
  *
253
258
  * This operation does not retry by default if the user has not defined a retry configuration.
254
259
  * @param ListProductsRequest
255
260
  * @return ListProductsResponse
256
261
  * @throws OciError when an error occurs
257
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.20.0/usage/ListProducts.ts.html |here} to see how to use ListProducts API.
262
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/usage/ListProducts.ts.html |here} to see how to use ListProducts API.
258
263
  */
259
264
  listProducts(listProductsRequest) {
260
265
  return __awaiter(this, void 0, void 0, function* () {
@@ -318,13 +323,13 @@ class RewardsClient {
318
323
  });
319
324
  }
320
325
  /**
321
- * Provides emailids of redeemable users for the given subscriptionId
326
+ * Provides the email IDs of users that can redeem rewards for the given subscription ID.
322
327
  *
323
328
  * This operation does not retry by default if the user has not defined a retry configuration.
324
329
  * @param ListRedeemableUsersRequest
325
330
  * @return ListRedeemableUsersResponse
326
331
  * @throws OciError when an error occurs
327
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.20.0/usage/ListRedeemableUsers.ts.html |here} to see how to use ListRedeemableUsers API.
332
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/usage/ListRedeemableUsers.ts.html |here} to see how to use ListRedeemableUsers API.
328
333
  */
329
334
  listRedeemableUsers(listRedeemableUsersRequest) {
330
335
  return __awaiter(this, void 0, void 0, function* () {
@@ -371,11 +376,6 @@ class RewardsClient {
371
376
  key: "opcRequestId",
372
377
  dataType: "string"
373
378
  },
374
- {
375
- value: response.headers.get("etag"),
376
- key: "etag",
377
- dataType: "string"
378
- },
379
379
  {
380
380
  value: response.headers.get("opc-next-page"),
381
381
  key: "opcNextPage",
@@ -391,13 +391,13 @@ class RewardsClient {
391
391
  });
392
392
  }
393
393
  /**
394
- * This API returns list of rewards for a subscription Id
394
+ * Returns the list of rewards for a subscription ID.
395
395
  *
396
396
  * This operation does not retry by default if the user has not defined a retry configuration.
397
397
  * @param ListRewardsRequest
398
398
  * @return ListRewardsResponse
399
399
  * @throws OciError when an error occurs
400
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.20.0/usage/ListRewards.ts.html |here} to see how to use ListRewards API.
400
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/usage/ListRewards.ts.html |here} to see how to use ListRewards API.
401
401
  */
402
402
  listRewards(listRewardsRequest) {
403
403
  return __awaiter(this, void 0, void 0, function* () {
package/lib/client.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"client.js","sourceRoot":"","sources":["../../../../lib/usage/lib/client.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"client.js","sourceRoot":"","sources":["../../../../lib/usage/lib/client.ts"],"names":[],"mappings":"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"}
@@ -1,6 +1,6 @@
1
1
  /**
2
- * UsageApi API
3
- * A description of the UsageApi API.
2
+ * Usage Proxy API
3
+ * Use the Usage Proxy API to list Oracle Support Rewards, view related detailed usage information, and manage users who redeem rewards. For more information, see [Oracle Support Rewards Overview](/iaas/Content/Billing/Concepts/supportrewardsoverview.htm).
4
4
  * OpenAPI spec version: 20190111
5
5
  *
6
6
  *
@@ -12,11 +12,11 @@
12
12
  */
13
13
  import * as model from "../model";
14
14
  /**
15
- * It contains a list of email Ids to be added to the redeemable users.
15
+ * A list of email IDs to be added to the list of users that can redeem rewards.
16
16
  */
17
17
  export interface CreateRedeemableUserDetails {
18
18
  /**
19
- * The list of email ids to be added to the redeemable users list.
19
+ * The list of email IDs to be added to the list of users that can redeem rewards.
20
20
  */
21
21
  "items"?: Array<model.RedeemableUser>;
22
22
  }
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
  /**
3
- * UsageApi API
4
- * A description of the UsageApi API.
3
+ * Usage Proxy API
4
+ * Use the Usage Proxy API to list Oracle Support Rewards, view related detailed usage information, and manage users who redeem rewards. For more information, see [Oracle Support Rewards Overview](/iaas/Content/Billing/Concepts/supportrewardsoverview.htm).
5
5
  * OpenAPI spec version: 20190111
6
6
  *
7
7
  *
@@ -1,6 +1,6 @@
1
1
  /**
2
- * UsageApi API
3
- * A description of the UsageApi API.
2
+ * Usage Proxy API
3
+ * Use the Usage Proxy API to list Oracle Support Rewards, view related detailed usage information, and manage users who redeem rewards. For more information, see [Oracle Support Rewards Overview](/iaas/Content/Billing/Concepts/supportrewardsoverview.htm).
4
4
  * OpenAPI spec version: 20190111
5
5
  *
6
6
  *
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
  /**
3
- * UsageApi API
4
- * A description of the UsageApi API.
3
+ * Usage Proxy API
4
+ * Use the Usage Proxy API to list Oracle Support Rewards, view related detailed usage information, and manage users who redeem rewards. For more information, see [Oracle Support Rewards Overview](/iaas/Content/Billing/Concepts/supportrewardsoverview.htm).
5
5
  * OpenAPI spec version: 20190111
6
6
  *
7
7
  *
@@ -1,6 +1,6 @@
1
1
  /**
2
- * UsageApi API
3
- * A description of the UsageApi API.
2
+ * Usage Proxy API
3
+ * Use the Usage Proxy API to list Oracle Support Rewards, view related detailed usage information, and manage users who redeem rewards. For more information, see [Oracle Support Rewards Overview](/iaas/Content/Billing/Concepts/supportrewardsoverview.htm).
4
4
  * OpenAPI spec version: 20190111
5
5
  *
6
6
  *
@@ -11,7 +11,7 @@
11
11
  * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
12
12
  */
13
13
  /**
14
- * Object describing the rewards summary for a month for the requested subscriptionId.
14
+ * Object describing the monthly rewards summary for the requested subscription ID.
15
15
  */
16
16
  export interface MonthlyRewardSummary {
17
17
  /**
@@ -27,15 +27,15 @@ export interface MonthlyRewardSummary {
27
27
  */
28
28
  "earnedRewards"?: number;
29
29
  /**
30
- * The boolean flag to tell if the available rewards are posted manually or not.
30
+ * The boolean parameter to indicate whether or not the available rewards are manually posted.
31
31
  */
32
32
  "isManual"?: boolean;
33
33
  /**
34
- * The date and time on which rewards are expired.
34
+ * The date and time when rewards expire.
35
35
  */
36
36
  "timeRewardsExpired"?: Date;
37
37
  /**
38
- * The date and time on which rewards are accrued.
38
+ * The date and time when rewards accrue.
39
39
  *
40
40
  */
41
41
  "timeRewardsEarned"?: Date;
@@ -60,12 +60,12 @@ export interface MonthlyRewardSummary {
60
60
  */
61
61
  "eligibleUsageAmount"?: number;
62
62
  /**
63
- * The in eligible usage amount for the usage period.
63
+ * The ineligible usage amount for the usage period.
64
64
  * Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
65
65
  */
66
66
  "ineligibleUsageAmount"?: number;
67
67
  /**
68
- * The id for the usage period.
68
+ * The usage period ID.
69
69
  *
70
70
  */
71
71
  "usagePeriodKey"?: string;
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
  /**
3
- * UsageApi API
4
- * A description of the UsageApi API.
3
+ * Usage Proxy API
4
+ * Use the Usage Proxy API to list Oracle Support Rewards, view related detailed usage information, and manage users who redeem rewards. For more information, see [Oracle Support Rewards Overview](/iaas/Content/Billing/Concepts/supportrewardsoverview.htm).
5
5
  * OpenAPI spec version: 20190111
6
6
  *
7
7
  *
@@ -1,6 +1,6 @@
1
1
  /**
2
- * UsageApi API
3
- * A description of the UsageApi API.
2
+ * Usage Proxy API
3
+ * Use the Usage Proxy API to list Oracle Support Rewards, view related detailed usage information, and manage users who redeem rewards. For more information, see [Oracle Support Rewards Overview](/iaas/Content/Billing/Concepts/supportrewardsoverview.htm).
4
4
  * OpenAPI spec version: 20190111
5
5
  *
6
6
  *
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
  /**
3
- * UsageApi API
4
- * A description of the UsageApi API.
3
+ * Usage Proxy API
4
+ * Use the Usage Proxy API to list Oracle Support Rewards, view related detailed usage information, and manage users who redeem rewards. For more information, see [Oracle Support Rewards Overview](/iaas/Content/Billing/Concepts/supportrewardsoverview.htm).
5
5
  * OpenAPI spec version: 20190111
6
6
  *
7
7
  *
@@ -1,6 +1,6 @@
1
1
  /**
2
- * UsageApi API
3
- * A description of the UsageApi API.
2
+ * Usage Proxy API
3
+ * Use the Usage Proxy API to list Oracle Support Rewards, view related detailed usage information, and manage users who redeem rewards. For more information, see [Oracle Support Rewards Overview](/iaas/Content/Billing/Concepts/supportrewardsoverview.htm).
4
4
  * OpenAPI spec version: 20190111
5
5
  *
6
6
  *
@@ -11,19 +11,19 @@
11
11
  * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
12
12
  */
13
13
  /**
14
- * It provides details about a product rewards and usage amount.
14
+ * Provides details about product rewards and the usage amount.
15
15
  */
16
16
  export interface ProductSummary {
17
17
  /**
18
- * The ratecard product number.
18
+ * The rate card product number.
19
19
  */
20
20
  "productNumber"?: string;
21
21
  /**
22
- * The ratecard product Name.
22
+ * The rate card product name.
23
23
  */
24
24
  "productName"?: string;
25
25
  /**
26
- * The ratecard product usage amount. Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
26
+ * The rate card product usage amount. Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
27
27
  */
28
28
  "usageAmount"?: number;
29
29
  /**
@@ -31,7 +31,7 @@ export interface ProductSummary {
31
31
  */
32
32
  "earnedRewards"?: number;
33
33
  /**
34
- * The boolean flag to tell if the product is eligible for earning rewards.
34
+ * The boolean parameter to indicate if the product is eligible to earn rewards.
35
35
  */
36
36
  "isEligibleToEarnRewards"?: boolean;
37
37
  }
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
  /**
3
- * UsageApi API
4
- * A description of the UsageApi API.
3
+ * Usage Proxy API
4
+ * Use the Usage Proxy API to list Oracle Support Rewards, view related detailed usage information, and manage users who redeem rewards. For more information, see [Oracle Support Rewards Overview](/iaas/Content/Billing/Concepts/supportrewardsoverview.htm).
5
5
  * OpenAPI spec version: 20190111
6
6
  *
7
7
  *
@@ -1,6 +1,6 @@
1
1
  /**
2
- * UsageApi API
3
- * A description of the UsageApi API.
2
+ * Usage Proxy API
3
+ * Use the Usage Proxy API to list Oracle Support Rewards, view related detailed usage information, and manage users who redeem rewards. For more information, see [Oracle Support Rewards Overview](/iaas/Content/Billing/Concepts/supportrewardsoverview.htm).
4
4
  * OpenAPI spec version: 20190111
5
5
  *
6
6
  *
@@ -12,11 +12,11 @@
12
12
  */
13
13
  import * as model from "../model";
14
14
  /**
15
- * It provides email Ids of redeemable users.
15
+ * The email IDs of users that can redeem rewards.
16
16
  */
17
17
  export interface RedeemableUserCollection {
18
18
  /**
19
- * The list of redeemable users email Ids.
19
+ * The list of user email IDs that can redeem rewards.
20
20
  */
21
21
  "items": Array<model.RedeemableUserSummary>;
22
22
  }
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
  /**
3
- * UsageApi API
4
- * A description of the UsageApi API.
3
+ * Usage Proxy API
4
+ * Use the Usage Proxy API to list Oracle Support Rewards, view related detailed usage information, and manage users who redeem rewards. For more information, see [Oracle Support Rewards Overview](/iaas/Content/Billing/Concepts/supportrewardsoverview.htm).
5
5
  * OpenAPI spec version: 20190111
6
6
  *
7
7
  *
@@ -1,6 +1,6 @@
1
1
  /**
2
- * UsageApi API
3
- * A description of the UsageApi API.
2
+ * Usage Proxy API
3
+ * Use the Usage Proxy API to list Oracle Support Rewards, view related detailed usage information, and manage users who redeem rewards. For more information, see [Oracle Support Rewards Overview](/iaas/Content/Billing/Concepts/supportrewardsoverview.htm).
4
4
  * OpenAPI spec version: 20190111
5
5
  *
6
6
  *
@@ -11,11 +11,11 @@
11
11
  * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
12
12
  */
13
13
  /**
14
- * It provides email Id information.
14
+ * Email ID information.
15
15
  */
16
16
  export interface RedeemableUserSummary {
17
17
  /**
18
- * The email Id of Redeemable User.
18
+ * The email ID of a user that can redeem rewards.
19
19
  */
20
20
  "emailId"?: string;
21
21
  }
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
  /**
3
- * UsageApi API
4
- * A description of the UsageApi API.
3
+ * Usage Proxy API
4
+ * Use the Usage Proxy API to list Oracle Support Rewards, view related detailed usage information, and manage users who redeem rewards. For more information, see [Oracle Support Rewards Overview](/iaas/Content/Billing/Concepts/supportrewardsoverview.htm).
5
5
  * OpenAPI spec version: 20190111
6
6
  *
7
7
  *
@@ -1,6 +1,6 @@
1
1
  /**
2
- * UsageApi API
3
- * A description of the UsageApi API.
2
+ * Usage Proxy API
3
+ * Use the Usage Proxy API to list Oracle Support Rewards, view related detailed usage information, and manage users who redeem rewards. For more information, see [Oracle Support Rewards Overview](/iaas/Content/Billing/Concepts/supportrewardsoverview.htm).
4
4
  * OpenAPI spec version: 20190111
5
5
  *
6
6
  *
@@ -11,11 +11,11 @@
11
11
  * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
12
12
  */
13
13
  /**
14
- * The Email object for redeemable user.
14
+ * The email object for a user that can redeem rewards.
15
15
  */
16
16
  export interface RedeemableUser {
17
17
  /**
18
- * The Email Id for redeemable user.
18
+ * The email ID for a user that can redeem rewards.
19
19
  */
20
20
  "emailId": string;
21
21
  }
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
  /**
3
- * UsageApi API
4
- * A description of the UsageApi API.
3
+ * Usage Proxy API
4
+ * Use the Usage Proxy API to list Oracle Support Rewards, view related detailed usage information, and manage users who redeem rewards. For more information, see [Oracle Support Rewards Overview](/iaas/Content/Billing/Concepts/supportrewardsoverview.htm).
5
5
  * OpenAPI spec version: 20190111
6
6
  *
7
7
  *
@@ -1,6 +1,6 @@
1
1
  /**
2
- * UsageApi API
3
- * A description of the UsageApi API.
2
+ * Usage Proxy API
3
+ * Use the Usage Proxy API to list Oracle Support Rewards, view related detailed usage information, and manage users who redeem rewards. For more information, see [Oracle Support Rewards Overview](/iaas/Content/Billing/Concepts/supportrewardsoverview.htm).
4
4
  * OpenAPI spec version: 20190111
5
5
  *
6
6
  *
@@ -12,7 +12,7 @@
12
12
  */
13
13
  import * as model from "../model";
14
14
  /**
15
- * The response object for the ListRewards API call. It provides information about the rewards for a subscription.
15
+ * The response object for the ListRewards API call. Provides information about the subscription rewards.
16
16
  */
17
17
  export interface RewardCollection {
18
18
  "summary": model.RewardDetails;
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
  /**
3
- * UsageApi API
4
- * A description of the UsageApi API.
3
+ * Usage Proxy API
4
+ * Use the Usage Proxy API to list Oracle Support Rewards, view related detailed usage information, and manage users who redeem rewards. For more information, see [Oracle Support Rewards Overview](/iaas/Content/Billing/Concepts/supportrewardsoverview.htm).
5
5
  * OpenAPI spec version: 20190111
6
6
  *
7
7
  *
@@ -1,6 +1,6 @@
1
1
  /**
2
- * UsageApi API
3
- * A description of the UsageApi API.
2
+ * Usage Proxy API
3
+ * Use the Usage Proxy API to list Oracle Support Rewards, view related detailed usage information, and manage users who redeem rewards. For more information, see [Oracle Support Rewards Overview](/iaas/Content/Billing/Concepts/supportrewardsoverview.htm).
4
4
  * OpenAPI spec version: 20190111
5
5
  *
6
6
  *
@@ -11,7 +11,7 @@
11
11
  * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
12
12
  */
13
13
  /**
14
- * The overrall reward summary of the monthly summary rewards.
14
+ * The overall monthly reward summary.
15
15
  */
16
16
  export interface RewardDetails {
17
17
  /**
@@ -19,7 +19,7 @@ export interface RewardDetails {
19
19
  */
20
20
  "tenancyId"?: string;
21
21
  /**
22
- * The entitlement id from MQS and it is same as subcription id.
22
+ * The entitlement ID from MQS, which is the same as the subcription ID.
23
23
  */
24
24
  "subscriptionId"?: string;
25
25
  /**
@@ -31,9 +31,13 @@ export interface RewardDetails {
31
31
  */
32
32
  "rewardsRate"?: number;
33
33
  /**
34
- * The total number of available rewards for a given subscription Id. Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
34
+ * The total number of available rewards for a given subscription ID. Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
35
35
  */
36
36
  "totalRewardsAvailable"?: number;
37
+ /**
38
+ * The redemption code used in the billing center during the reward redemption process
39
+ */
40
+ "redemptionCode"?: string;
37
41
  }
38
42
  export declare namespace RewardDetails {
39
43
  function getJsonObj(obj: RewardDetails): object;
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
  /**
3
- * UsageApi API
4
- * A description of the UsageApi API.
3
+ * Usage Proxy API
4
+ * Use the Usage Proxy API to list Oracle Support Rewards, view related detailed usage information, and manage users who redeem rewards. For more information, see [Oracle Support Rewards Overview](/iaas/Content/Billing/Concepts/supportrewardsoverview.htm).
5
5
  * OpenAPI spec version: 20190111
6
6
  *
7
7
  *
@@ -1 +1 @@
1
- {"version":3,"file":"reward-details.js","sourceRoot":"","sources":["../../../../../lib/usage/lib/model/reward-details.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;AA+BH,IAAiB,aAAa,CAW7B;AAXD,WAAiB,aAAa;IAC5B,SAAgB,UAAU,CAAC,GAAkB;QAC3C,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,wBAAU,aAIzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAAkB;QACvD,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,oCAAsB,yBAIrC,CAAA;AACH,CAAC,EAXgB,aAAa,GAAb,qBAAa,KAAb,qBAAa,QAW7B"}
1
+ {"version":3,"file":"reward-details.js","sourceRoot":"","sources":["../../../../../lib/usage/lib/model/reward-details.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;AAmCH,IAAiB,aAAa,CAW7B;AAXD,WAAiB,aAAa;IAC5B,SAAgB,UAAU,CAAC,GAAkB;QAC3C,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,wBAAU,aAIzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAAkB;QACvD,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,oCAAsB,yBAIrC,CAAA;AACH,CAAC,EAXgB,aAAa,GAAb,qBAAa,KAAb,qBAAa,QAW7B"}
@@ -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.20.0/usage/CreateRedeemableUser.ts.html |here} to see how to use CreateRedeemableUserRequest.
16
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/usage/CreateRedeemableUser.ts.html |here} to see how to use CreateRedeemableUserRequest.
17
17
  */
18
18
  export interface CreateRedeemableUserRequest extends common.BaseRequest {
19
19
  /**
@@ -26,11 +26,11 @@ export interface CreateRedeemableUserRequest extends common.BaseRequest {
26
26
  */
27
27
  "tenancyId": string;
28
28
  /**
29
- * The subscriptionId for which rewards information is requested for.
29
+ * The subscription ID for which rewards information is requested for.
30
30
  */
31
31
  "subscriptionId": string;
32
32
  /**
33
- * The user Id of the person whose email we cc
33
+ * The user ID of the person to send a copy of an email.
34
34
  */
35
35
  "userId"?: string;
36
36
  /**
@@ -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.20.0/usage/DeleteRedeemableUser.ts.html |here} to see how to use DeleteRedeemableUserRequest.
15
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/usage/DeleteRedeemableUser.ts.html |here} to see how to use DeleteRedeemableUserRequest.
16
16
  */
17
17
  export interface DeleteRedeemableUserRequest extends common.BaseRequest {
18
18
  /**
19
- * The EmailId that needs to be deleted
19
+ * The email ID that needs to be deleted.
20
20
  */
21
21
  "emailId": string;
22
22
  /**
@@ -24,7 +24,7 @@ export interface DeleteRedeemableUserRequest extends common.BaseRequest {
24
24
  */
25
25
  "tenancyId": string;
26
26
  /**
27
- * The subscriptionId for which rewards information is requested for.
27
+ * The subscription ID for which rewards information is requested for.
28
28
  */
29
29
  "subscriptionId": string;
30
30
  /**
@@ -1,6 +1,6 @@
1
1
  /**
2
- * UsageApi API
3
- * A description of the UsageApi API.
2
+ * Usage Proxy API
3
+ * Use the Usage Proxy API to list Oracle Support Rewards, view related detailed usage information, and manage users who redeem rewards. For more information, see [Oracle Support Rewards Overview](/iaas/Content/Billing/Concepts/supportrewardsoverview.htm).
4
4
  * OpenAPI spec version: 20190111
5
5
  *
6
6
  *
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
  /**
3
- * UsageApi API
4
- * A description of the UsageApi API.
3
+ * Usage Proxy API
4
+ * Use the Usage Proxy API to list Oracle Support Rewards, view related detailed usage information, and manage users who redeem rewards. For more information, see [Oracle Support Rewards Overview](/iaas/Content/Billing/Concepts/supportrewardsoverview.htm).
5
5
  * OpenAPI spec version: 20190111
6
6
  *
7
7
  *
@@ -12,7 +12,7 @@
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.20.0/usage/ListProducts.ts.html |here} to see how to use ListProductsRequest.
15
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/usage/ListProducts.ts.html |here} to see how to use ListProductsRequest.
16
16
  */
17
17
  export interface ListProductsRequest extends common.BaseRequest {
18
18
  /**
@@ -20,7 +20,7 @@ export interface ListProductsRequest extends common.BaseRequest {
20
20
  */
21
21
  "tenancyId": string;
22
22
  /**
23
- * The subscriptionId for which rewards information is requested for.
23
+ * The subscription ID for which rewards information is requested for.
24
24
  */
25
25
  "subscriptionId": string;
26
26
  /**
@@ -40,11 +40,11 @@ export interface ListProductsRequest extends common.BaseRequest {
40
40
  */
41
41
  "limit"?: number;
42
42
  /**
43
- * The sort order to use, can be ascending (ASC) or descending (DESC).
43
+ * The sort order to use, which can be ascending (ASC) or descending (DESC).
44
44
  */
45
45
  "sortOrder"?: ListProductsRequest.SortOrder;
46
46
  /**
47
- * The field to sort by, supports one sort Order.
47
+ * The field to sort by. Supports one sort order.
48
48
  */
49
49
  "sortBy"?: ListProductsRequest.SortBy;
50
50
  /**
@@ -12,7 +12,7 @@
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.20.0/usage/ListRedeemableUsers.ts.html |here} to see how to use ListRedeemableUsersRequest.
15
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/usage/ListRedeemableUsers.ts.html |here} to see how to use ListRedeemableUsersRequest.
16
16
  */
17
17
  export interface ListRedeemableUsersRequest extends common.BaseRequest {
18
18
  /**
@@ -20,7 +20,7 @@ export interface ListRedeemableUsersRequest extends common.BaseRequest {
20
20
  */
21
21
  "tenancyId": string;
22
22
  /**
23
- * The subscriptionId for which rewards information is requested for.
23
+ * The subscription ID for which rewards information is requested for.
24
24
  */
25
25
  "subscriptionId": string;
26
26
  /**
@@ -36,11 +36,11 @@ export interface ListRedeemableUsersRequest extends common.BaseRequest {
36
36
  */
37
37
  "limit"?: number;
38
38
  /**
39
- * The sort order to use, can be ascending (ASC) or descending (DESC).
39
+ * The sort order to use, which can be ascending (ASC) or descending (DESC).
40
40
  */
41
41
  "sortOrder"?: ListRedeemableUsersRequest.SortOrder;
42
42
  /**
43
- * The field to sort by, supports one sort Order.
43
+ * The field to sort by. Supports one sort order.
44
44
  */
45
45
  "sortBy"?: ListRedeemableUsersRequest.SortBy;
46
46
  }
@@ -12,7 +12,7 @@
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.20.0/usage/ListRewards.ts.html |here} to see how to use ListRewardsRequest.
15
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/usage/ListRewards.ts.html |here} to see how to use ListRewardsRequest.
16
16
  */
17
17
  export interface ListRewardsRequest extends common.BaseRequest {
18
18
  /**
@@ -20,7 +20,7 @@ export interface ListRewardsRequest extends common.BaseRequest {
20
20
  */
21
21
  "tenancyId": string;
22
22
  /**
23
- * The subscriptionId for which rewards information is requested for.
23
+ * The subscription ID for which rewards information is requested for.
24
24
  */
25
25
  "subscriptionId": string;
26
26
  /**
@@ -1,6 +1,6 @@
1
1
  /**
2
- * UsageApi API
3
- * A description of the UsageApi API.
2
+ * Usage Proxy API
3
+ * Use the Usage Proxy API to list Oracle Support Rewards, view related detailed usage information, and manage users who redeem rewards. For more information, see [Oracle Support Rewards Overview](/iaas/Content/Billing/Concepts/supportrewardsoverview.htm).
4
4
  * OpenAPI spec version: 20190111
5
5
  *
6
6
  *
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
  /**
3
- * UsageApi API
4
- * A description of the UsageApi API.
3
+ * Usage Proxy API
4
+ * Use the Usage Proxy API to list Oracle Support Rewards, view related detailed usage information, and manage users who redeem rewards. For more information, see [Oracle Support Rewards Overview](/iaas/Content/Billing/Concepts/supportrewardsoverview.htm).
5
5
  * OpenAPI spec version: 20190111
6
6
  *
7
7
  *
@@ -18,10 +18,6 @@ export interface ListRedeemableUsersResponse {
18
18
  *
19
19
  */
20
20
  "opcRequestId": string;
21
- /**
22
- * For optimistic concurrency control. See `if-match`.
23
- */
24
- "etag": string;
25
21
  /**
26
22
  * For pagination of a list of items. When paging through a list, if this header appears in the response,
27
23
  * then a partial list might have been returned. Include this value as the `page` parameter for the
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "oci-usage",
3
- "version": "2.20.0",
3
+ "version": "2.24.0",
4
4
  "description": "OCI NodeJS client for Usage 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.20.0",
19
- "oci-workrequests": "2.20.0"
18
+ "oci-common": "2.24.0",
19
+ "oci-workrequests": "2.24.0"
20
20
  },
21
21
  "publishConfig": {
22
22
  "registry": "https://registry.npmjs.org"