oci-apigateway 2.27.0 → 2.30.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 (198) hide show
  1. package/index.d.ts +6 -0
  2. package/index.js +7 -1
  3. package/index.js.map +1 -1
  4. package/lib/client.d.ts +287 -61
  5. package/lib/client.js +1302 -222
  6. package/lib/client.js.map +1 -1
  7. package/lib/model/api-specification-request-policies.d.ts +1 -0
  8. package/lib/model/api-specification-request-policies.js +5 -1
  9. package/lib/model/api-specification-request-policies.js.map +1 -1
  10. package/lib/model/change-subscriber-compartment-details.d.ts +30 -0
  11. package/lib/model/change-subscriber-compartment-details.js +32 -0
  12. package/lib/model/change-subscriber-compartment-details.js.map +1 -0
  13. package/lib/model/change-usage-plan-compartment-details.d.ts +30 -0
  14. package/lib/model/change-usage-plan-compartment-details.js +32 -0
  15. package/lib/model/change-usage-plan-compartment-details.js.map +1 -0
  16. package/lib/model/client-summary.d.ts +28 -0
  17. package/lib/model/client-summary.js +32 -0
  18. package/lib/model/client-summary.js.map +1 -0
  19. package/lib/model/client.d.ts +32 -0
  20. package/lib/model/client.js +32 -0
  21. package/lib/model/client.js.map +1 -0
  22. package/lib/model/create-deployment-details.d.ts +1 -1
  23. package/lib/model/create-subscriber-details.d.ts +73 -0
  24. package/lib/model/create-subscriber-details.js +64 -0
  25. package/lib/model/create-subscriber-details.js.map +1 -0
  26. package/lib/model/create-usage-plan-details.d.ts +68 -0
  27. package/lib/model/create-usage-plan-details.js +64 -0
  28. package/lib/model/create-usage-plan-details.js.map +1 -0
  29. package/lib/model/deployment.d.ts +1 -1
  30. package/lib/model/entitlement-summary.d.ts +39 -0
  31. package/lib/model/entitlement-summary.js +60 -0
  32. package/lib/model/entitlement-summary.js.map +1 -0
  33. package/lib/model/entitlement-target.d.ts +31 -0
  34. package/lib/model/entitlement-target.js +32 -0
  35. package/lib/model/entitlement-target.js.map +1 -0
  36. package/lib/model/entitlement.d.ts +44 -0
  37. package/lib/model/entitlement.js +70 -0
  38. package/lib/model/entitlement.js.map +1 -0
  39. package/lib/model/index.d.ts +40 -0
  40. package/lib/model/index.js +43 -3
  41. package/lib/model/index.js.map +1 -1
  42. package/lib/model/quota.d.ts +78 -0
  43. package/lib/model/quota.js +64 -0
  44. package/lib/model/quota.js.map +1 -0
  45. package/lib/model/rate-limit.d.ts +44 -0
  46. package/lib/model/rate-limit.js +41 -0
  47. package/lib/model/rate-limit.js.map +1 -0
  48. package/lib/model/subscriber-collection.d.ts +29 -0
  49. package/lib/model/subscriber-collection.js +64 -0
  50. package/lib/model/subscriber-collection.js.map +1 -0
  51. package/lib/model/subscriber-summary.d.ts +97 -0
  52. package/lib/model/subscriber-summary.js +64 -0
  53. package/lib/model/subscriber-summary.js.map +1 -0
  54. package/lib/model/subscriber.d.ts +111 -0
  55. package/lib/model/subscriber.js +78 -0
  56. package/lib/model/subscriber.js.map +1 -0
  57. package/lib/model/update-subscriber-details.d.ts +67 -0
  58. package/lib/model/update-subscriber-details.js +64 -0
  59. package/lib/model/update-subscriber-details.js.map +1 -0
  60. package/lib/model/update-usage-plan-details.d.ts +62 -0
  61. package/lib/model/update-usage-plan-details.js +64 -0
  62. package/lib/model/update-usage-plan-details.js.map +1 -0
  63. package/lib/model/usage-plan-collection.d.ts +29 -0
  64. package/lib/model/usage-plan-collection.js +64 -0
  65. package/lib/model/usage-plan-collection.js.map +1 -0
  66. package/lib/model/usage-plan-summary.d.ts +92 -0
  67. package/lib/model/usage-plan-summary.js +64 -0
  68. package/lib/model/usage-plan-summary.js.map +1 -0
  69. package/lib/model/usage-plan.d.ts +106 -0
  70. package/lib/model/usage-plan.js +78 -0
  71. package/lib/model/usage-plan.js.map +1 -0
  72. package/lib/model/usage-plans-policy.d.ts +34 -0
  73. package/lib/model/usage-plans-policy.js +32 -0
  74. package/lib/model/usage-plans-policy.js.map +1 -0
  75. package/lib/model/work-request.d.ts +6 -0
  76. package/lib/model/work-request.js +6 -0
  77. package/lib/model/work-request.js.map +1 -1
  78. package/lib/request/cancel-work-request-request.d.ts +1 -1
  79. package/lib/request/change-api-compartment-request.d.ts +1 -1
  80. package/lib/request/change-certificate-compartment-request.d.ts +1 -1
  81. package/lib/request/change-deployment-compartment-request.d.ts +1 -1
  82. package/lib/request/change-gateway-compartment-request.d.ts +1 -1
  83. package/lib/request/change-subscriber-compartment-request.d.ts +49 -0
  84. package/lib/request/change-subscriber-compartment-request.js +15 -0
  85. package/lib/request/change-subscriber-compartment-request.js.map +1 -0
  86. package/lib/request/change-usage-plan-compartment-request.d.ts +49 -0
  87. package/lib/request/change-usage-plan-compartment-request.js +15 -0
  88. package/lib/request/change-usage-plan-compartment-request.js.map +1 -0
  89. package/lib/request/create-api-request.d.ts +1 -1
  90. package/lib/request/create-certificate-request.d.ts +1 -1
  91. package/lib/request/create-deployment-request.d.ts +1 -1
  92. package/lib/request/create-gateway-request.d.ts +1 -1
  93. package/lib/request/create-sdk-request.d.ts +1 -1
  94. package/lib/request/create-subscriber-request.d.ts +36 -0
  95. package/lib/request/create-subscriber-request.js +15 -0
  96. package/lib/request/create-subscriber-request.js.map +1 -0
  97. package/lib/request/create-usage-plan-request.d.ts +36 -0
  98. package/lib/request/create-usage-plan-request.js +15 -0
  99. package/lib/request/create-usage-plan-request.js.map +1 -0
  100. package/lib/request/delete-api-request.d.ts +1 -1
  101. package/lib/request/delete-certificate-request.d.ts +1 -1
  102. package/lib/request/delete-deployment-request.d.ts +1 -1
  103. package/lib/request/delete-gateway-request.d.ts +1 -1
  104. package/lib/request/delete-sdk-request.d.ts +1 -1
  105. package/lib/request/delete-subscriber-request.d.ts +35 -0
  106. package/lib/request/delete-subscriber-request.js +15 -0
  107. package/lib/request/delete-subscriber-request.js.map +1 -0
  108. package/lib/request/delete-usage-plan-request.d.ts +35 -0
  109. package/lib/request/delete-usage-plan-request.js +15 -0
  110. package/lib/request/delete-usage-plan-request.js.map +1 -0
  111. package/lib/request/get-api-content-request.d.ts +1 -1
  112. package/lib/request/get-api-deployment-specification-request.d.ts +1 -1
  113. package/lib/request/get-api-request.d.ts +1 -1
  114. package/lib/request/get-api-validations-request.d.ts +1 -1
  115. package/lib/request/get-certificate-request.d.ts +1 -1
  116. package/lib/request/get-deployment-request.d.ts +1 -1
  117. package/lib/request/get-gateway-request.d.ts +1 -1
  118. package/lib/request/get-sdk-request.d.ts +1 -1
  119. package/lib/request/get-subscriber-request.d.ts +26 -0
  120. package/lib/request/get-subscriber-request.js +15 -0
  121. package/lib/request/get-subscriber-request.js.map +1 -0
  122. package/lib/request/get-usage-plan-request.d.ts +26 -0
  123. package/lib/request/get-usage-plan-request.js +15 -0
  124. package/lib/request/get-usage-plan-request.js.map +1 -0
  125. package/lib/request/get-work-request-request.d.ts +1 -1
  126. package/lib/request/index.d.ts +24 -0
  127. package/lib/request/index.js +5 -1
  128. package/lib/request/index.js.map +1 -1
  129. package/lib/request/list-apis-request.d.ts +1 -1
  130. package/lib/request/list-certificates-request.d.ts +1 -1
  131. package/lib/request/list-deployments-request.d.ts +1 -1
  132. package/lib/request/list-gateways-request.d.ts +1 -1
  133. package/lib/request/list-sdk-language-types-request.d.ts +1 -1
  134. package/lib/request/list-sdks-request.d.ts +1 -1
  135. package/lib/request/list-subscribers-request.d.ts +69 -0
  136. package/lib/request/list-subscribers-request.js +29 -0
  137. package/lib/request/list-subscribers-request.js.map +1 -0
  138. package/lib/request/list-usage-plans-request.d.ts +69 -0
  139. package/lib/request/list-usage-plans-request.js +29 -0
  140. package/lib/request/list-usage-plans-request.js.map +1 -0
  141. package/lib/request/list-work-request-errors-request.d.ts +1 -1
  142. package/lib/request/list-work-request-logs-request.d.ts +1 -1
  143. package/lib/request/list-work-requests-request.d.ts +1 -1
  144. package/lib/request/update-api-request.d.ts +1 -1
  145. package/lib/request/update-certificate-request.d.ts +1 -1
  146. package/lib/request/update-deployment-request.d.ts +1 -1
  147. package/lib/request/update-gateway-request.d.ts +1 -1
  148. package/lib/request/update-sdk-request.d.ts +1 -1
  149. package/lib/request/update-subscriber-request.d.ts +40 -0
  150. package/lib/request/update-subscriber-request.js +15 -0
  151. package/lib/request/update-subscriber-request.js.map +1 -0
  152. package/lib/request/update-usage-plan-request.d.ts +40 -0
  153. package/lib/request/update-usage-plan-request.js +15 -0
  154. package/lib/request/update-usage-plan-request.js.map +1 -0
  155. package/lib/response/change-subscriber-compartment-response.d.ts +29 -0
  156. package/lib/response/change-subscriber-compartment-response.js +15 -0
  157. package/lib/response/change-subscriber-compartment-response.js.map +1 -0
  158. package/lib/response/change-usage-plan-compartment-response.d.ts +29 -0
  159. package/lib/response/change-usage-plan-compartment-response.js +15 -0
  160. package/lib/response/change-usage-plan-compartment-response.js.map +1 -0
  161. package/lib/response/create-subscriber-response.d.ts +44 -0
  162. package/lib/response/create-subscriber-response.js +15 -0
  163. package/lib/response/create-subscriber-response.js.map +1 -0
  164. package/lib/response/create-usage-plan-response.d.ts +44 -0
  165. package/lib/response/create-usage-plan-response.js +15 -0
  166. package/lib/response/create-usage-plan-response.js.map +1 -0
  167. package/lib/response/delete-subscriber-response.d.ts +29 -0
  168. package/lib/response/delete-subscriber-response.js +15 -0
  169. package/lib/response/delete-subscriber-response.js.map +1 -0
  170. package/lib/response/delete-usage-plan-response.d.ts +29 -0
  171. package/lib/response/delete-usage-plan-response.js +15 -0
  172. package/lib/response/delete-usage-plan-response.js.map +1 -0
  173. package/lib/response/get-subscriber-response.d.ts +31 -0
  174. package/lib/response/get-subscriber-response.js +15 -0
  175. package/lib/response/get-subscriber-response.js.map +1 -0
  176. package/lib/response/get-usage-plan-response.d.ts +31 -0
  177. package/lib/response/get-usage-plan-response.js +15 -0
  178. package/lib/response/get-usage-plan-response.js.map +1 -0
  179. package/lib/response/index.d.ts +24 -0
  180. package/lib/response/list-subscribers-response.d.ts +42 -0
  181. package/lib/response/list-subscribers-response.js +15 -0
  182. package/lib/response/list-subscribers-response.js.map +1 -0
  183. package/lib/response/list-usage-plans-response.d.ts +42 -0
  184. package/lib/response/list-usage-plans-response.js +15 -0
  185. package/lib/response/list-usage-plans-response.js.map +1 -0
  186. package/lib/response/update-subscriber-response.d.ts +29 -0
  187. package/lib/response/update-subscriber-response.js +15 -0
  188. package/lib/response/update-subscriber-response.js.map +1 -0
  189. package/lib/response/update-usage-plan-response.d.ts +29 -0
  190. package/lib/response/update-usage-plan-response.js +15 -0
  191. package/lib/response/update-usage-plan-response.js.map +1 -0
  192. package/lib/subscribers-waiter.d.ts +32 -0
  193. package/lib/subscribers-waiter.js +68 -0
  194. package/lib/subscribers-waiter.js.map +1 -0
  195. package/lib/usageplans-waiter.d.ts +32 -0
  196. package/lib/usageplans-waiter.js +68 -0
  197. package/lib/usageplans-waiter.js.map +1 -0
  198. package/package.json +3 -3
@@ -0,0 +1,70 @@
1
+ "use strict";
2
+ /**
3
+ * API Gateway API
4
+ * API for the API Gateway service. Use this API to manage gateways, deployments, and related items.
5
+ For more information, see
6
+ [Overview of API Gateway](/iaas/Content/APIGateway/Concepts/apigatewayoverview.htm).
7
+
8
+ * OpenAPI spec version: 20190501
9
+ *
10
+ *
11
+ * NOTE: This class is auto generated by OracleSDKGenerator.
12
+ * Do not edit the class manually.
13
+ *
14
+ * Copyright (c) 2020, 2022, Oracle and/or its affiliates. All rights reserved.
15
+ * 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.
16
+ */
17
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
18
+ if (k2 === undefined) k2 = k;
19
+ Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
20
+ }) : (function(o, m, k, k2) {
21
+ if (k2 === undefined) k2 = k;
22
+ o[k2] = m[k];
23
+ }));
24
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
25
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
26
+ }) : function(o, v) {
27
+ o["default"] = v;
28
+ });
29
+ var __importStar = (this && this.__importStar) || function (mod) {
30
+ if (mod && mod.__esModule) return mod;
31
+ var result = {};
32
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
33
+ __setModuleDefault(result, mod);
34
+ return result;
35
+ };
36
+ Object.defineProperty(exports, "__esModule", { value: true });
37
+ exports.Entitlement = void 0;
38
+ const model = __importStar(require("../model"));
39
+ var Entitlement;
40
+ (function (Entitlement) {
41
+ function getJsonObj(obj) {
42
+ const jsonObj = Object.assign(Object.assign({}, obj), {
43
+ "rateLimit": obj.rateLimit ? model.RateLimit.getJsonObj(obj.rateLimit) : undefined,
44
+ "quota": obj.quota ? model.Quota.getJsonObj(obj.quota) : undefined,
45
+ "targets": obj.targets
46
+ ? obj.targets.map(item => {
47
+ return model.EntitlementTarget.getJsonObj(item);
48
+ })
49
+ : undefined
50
+ });
51
+ return jsonObj;
52
+ }
53
+ Entitlement.getJsonObj = getJsonObj;
54
+ function getDeserializedJsonObj(obj) {
55
+ const jsonObj = Object.assign(Object.assign({}, obj), {
56
+ "rateLimit": obj.rateLimit
57
+ ? model.RateLimit.getDeserializedJsonObj(obj.rateLimit)
58
+ : undefined,
59
+ "quota": obj.quota ? model.Quota.getDeserializedJsonObj(obj.quota) : undefined,
60
+ "targets": obj.targets
61
+ ? obj.targets.map(item => {
62
+ return model.EntitlementTarget.getDeserializedJsonObj(item);
63
+ })
64
+ : undefined
65
+ });
66
+ return jsonObj;
67
+ }
68
+ Entitlement.getDeserializedJsonObj = getDeserializedJsonObj;
69
+ })(Entitlement = exports.Entitlement || (exports.Entitlement = {}));
70
+ //# sourceMappingURL=entitlement.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"entitlement.js","sourceRoot":"","sources":["../../../../../lib/apigateway/lib/model/entitlement.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;GAcG;;;;;;;;;;;;;;;;;;;;;;AAEH,gDAAkC;AA4BlC,IAAiB,WAAW,CAmC3B;AAnCD,WAAiB,WAAW;IAC1B,SAAgB,UAAU,CAAC,GAAgB;QACzC,MAAM,OAAO,mCACR,GAAG,GACH;YACD,WAAW,EAAE,GAAG,CAAC,SAAS,CAAC,CAAC,CAAC,KAAK,CAAC,SAAS,CAAC,UAAU,CAAC,GAAG,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,SAAS;YAClF,OAAO,EAAE,GAAG,CAAC,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,KAAK,CAAC,UAAU,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,SAAS;YAClE,SAAS,EAAE,GAAG,CAAC,OAAO;gBACpB,CAAC,CAAC,GAAG,CAAC,OAAO,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE;oBACrB,OAAO,KAAK,CAAC,iBAAiB,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;gBAClD,CAAC,CAAC;gBACJ,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAfe,sBAAU,aAezB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAAgB;QACrD,MAAM,OAAO,mCACR,GAAG,GACH;YACD,WAAW,EAAE,GAAG,CAAC,SAAS;gBACxB,CAAC,CAAC,KAAK,CAAC,SAAS,CAAC,sBAAsB,CAAC,GAAG,CAAC,SAAS,CAAC;gBACvD,CAAC,CAAC,SAAS;YACb,OAAO,EAAE,GAAG,CAAC,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,KAAK,CAAC,sBAAsB,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,SAAS;YAC9E,SAAS,EAAE,GAAG,CAAC,OAAO;gBACpB,CAAC,CAAC,GAAG,CAAC,OAAO,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE;oBACrB,OAAO,KAAK,CAAC,iBAAiB,CAAC,sBAAsB,CAAC,IAAI,CAAC,CAAC;gBAC9D,CAAC,CAAC;gBACJ,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAjBe,kCAAsB,yBAiBrC,CAAA;AACH,CAAC,EAnCgB,WAAW,GAAX,mBAAW,KAAX,mBAAW,QAmC3B"}
@@ -63,6 +63,14 @@ import * as ChangeDeploymentCompartmentDetails from "./change-deployment-compart
63
63
  export import ChangeDeploymentCompartmentDetails = ChangeDeploymentCompartmentDetails.ChangeDeploymentCompartmentDetails;
64
64
  import * as ChangeGatewayCompartmentDetails from "./change-gateway-compartment-details";
65
65
  export import ChangeGatewayCompartmentDetails = ChangeGatewayCompartmentDetails.ChangeGatewayCompartmentDetails;
66
+ import * as ChangeSubscriberCompartmentDetails from "./change-subscriber-compartment-details";
67
+ export import ChangeSubscriberCompartmentDetails = ChangeSubscriberCompartmentDetails.ChangeSubscriberCompartmentDetails;
68
+ import * as ChangeUsagePlanCompartmentDetails from "./change-usage-plan-compartment-details";
69
+ export import ChangeUsagePlanCompartmentDetails = ChangeUsagePlanCompartmentDetails.ChangeUsagePlanCompartmentDetails;
70
+ import * as Client from "./client";
71
+ export import Client = Client.Client;
72
+ import * as ClientSummary from "./client-summary";
73
+ export import ClientSummary = ClientSummary.ClientSummary;
66
74
  import * as ContentValidation from "./content-validation";
67
75
  export import ContentValidation = ContentValidation.ContentValidation;
68
76
  import * as CorsPolicy from "./cors-policy";
@@ -77,12 +85,22 @@ import * as CreateGatewayDetails from "./create-gateway-details";
77
85
  export import CreateGatewayDetails = CreateGatewayDetails.CreateGatewayDetails;
78
86
  import * as CreateSdkDetails from "./create-sdk-details";
79
87
  export import CreateSdkDetails = CreateSdkDetails.CreateSdkDetails;
88
+ import * as CreateSubscriberDetails from "./create-subscriber-details";
89
+ export import CreateSubscriberDetails = CreateSubscriberDetails.CreateSubscriberDetails;
90
+ import * as CreateUsagePlanDetails from "./create-usage-plan-details";
91
+ export import CreateUsagePlanDetails = CreateUsagePlanDetails.CreateUsagePlanDetails;
80
92
  import * as Deployment from "./deployment";
81
93
  export import Deployment = Deployment.Deployment;
82
94
  import * as DeploymentCollection from "./deployment-collection";
83
95
  export import DeploymentCollection = DeploymentCollection.DeploymentCollection;
84
96
  import * as DeploymentSummary from "./deployment-summary";
85
97
  export import DeploymentSummary = DeploymentSummary.DeploymentSummary;
98
+ import * as Entitlement from "./entitlement";
99
+ export import Entitlement = Entitlement.Entitlement;
100
+ import * as EntitlementSummary from "./entitlement-summary";
101
+ export import EntitlementSummary = EntitlementSummary.EntitlementSummary;
102
+ import * as EntitlementTarget from "./entitlement-target";
103
+ export import EntitlementTarget = EntitlementTarget.EntitlementTarget;
86
104
  import * as ExecutionLogPolicy from "./execution-log-policy";
87
105
  export import ExecutionLogPolicy = ExecutionLogPolicy.ExecutionLogPolicy;
88
106
  import * as FilterHeaderPolicy from "./filter-header-policy";
@@ -121,6 +139,10 @@ import * as QueryParameterValidationItem from "./query-parameter-validation-item
121
139
  export import QueryParameterValidationItem = QueryParameterValidationItem.QueryParameterValidationItem;
122
140
  import * as QueryParameterValidationRequestPolicy from "./query-parameter-validation-request-policy";
123
141
  export import QueryParameterValidationRequestPolicy = QueryParameterValidationRequestPolicy.QueryParameterValidationRequestPolicy;
142
+ import * as Quota from "./quota";
143
+ export import Quota = Quota.Quota;
144
+ import * as RateLimit from "./rate-limit";
145
+ export import RateLimit = RateLimit.RateLimit;
124
146
  import * as RateLimitingPolicy from "./rate-limiting-policy";
125
147
  export import RateLimitingPolicy = RateLimitingPolicy.RateLimitingPolicy;
126
148
  import * as RenameHeaderPolicy from "./rename-header-policy";
@@ -169,6 +191,12 @@ import * as SetQueryParameterPolicyItem from "./set-query-parameter-policy-item"
169
191
  export import SetQueryParameterPolicyItem = SetQueryParameterPolicyItem.SetQueryParameterPolicyItem;
170
192
  import * as StaticPublicKey from "./static-public-key";
171
193
  export import StaticPublicKey = StaticPublicKey.StaticPublicKey;
194
+ import * as Subscriber from "./subscriber";
195
+ export import Subscriber = Subscriber.Subscriber;
196
+ import * as SubscriberCollection from "./subscriber-collection";
197
+ export import SubscriberCollection = SubscriberCollection.SubscriberCollection;
198
+ import * as SubscriberSummary from "./subscriber-summary";
199
+ export import SubscriberSummary = SubscriberSummary.SubscriberSummary;
172
200
  import * as UpdateApiDetails from "./update-api-details";
173
201
  export import UpdateApiDetails = UpdateApiDetails.UpdateApiDetails;
174
202
  import * as UpdateCertificateDetails from "./update-certificate-details";
@@ -179,6 +207,18 @@ import * as UpdateGatewayDetails from "./update-gateway-details";
179
207
  export import UpdateGatewayDetails = UpdateGatewayDetails.UpdateGatewayDetails;
180
208
  import * as UpdateSdkDetails from "./update-sdk-details";
181
209
  export import UpdateSdkDetails = UpdateSdkDetails.UpdateSdkDetails;
210
+ import * as UpdateSubscriberDetails from "./update-subscriber-details";
211
+ export import UpdateSubscriberDetails = UpdateSubscriberDetails.UpdateSubscriberDetails;
212
+ import * as UpdateUsagePlanDetails from "./update-usage-plan-details";
213
+ export import UpdateUsagePlanDetails = UpdateUsagePlanDetails.UpdateUsagePlanDetails;
214
+ import * as UsagePlan from "./usage-plan";
215
+ export import UsagePlan = UsagePlan.UsagePlan;
216
+ import * as UsagePlanCollection from "./usage-plan-collection";
217
+ export import UsagePlanCollection = UsagePlanCollection.UsagePlanCollection;
218
+ import * as UsagePlanSummary from "./usage-plan-summary";
219
+ export import UsagePlanSummary = UsagePlanSummary.UsagePlanSummary;
220
+ import * as UsagePlansPolicy from "./usage-plans-policy";
221
+ export import UsagePlansPolicy = UsagePlansPolicy.UsagePlansPolicy;
182
222
  import * as ValidationRequestPolicy from "./validation-request-policy";
183
223
  export import ValidationRequestPolicy = ValidationRequestPolicy.ValidationRequestPolicy;
184
224
  import * as WorkRequest from "./work-request";
@@ -34,9 +34,9 @@ var __importStar = (this && this.__importStar) || function (mod) {
34
34
  return result;
35
35
  };
36
36
  Object.defineProperty(exports, "__esModule", { value: true });
37
- exports.MutualTlsDetails = exports.JsonWebTokenClaim = exports.IpAddress = exports.HeaderValidationRequestPolicy = exports.HeaderValidationItem = exports.HeaderTransformationPolicy = exports.HeaderFieldSpecification = exports.GatewaySummary = exports.GatewayCollection = exports.Gateway = exports.FilterQueryParameterPolicyItem = exports.FilterQueryParameterPolicy = exports.FilterHeaderPolicyItem = exports.FilterHeaderPolicy = exports.ExecutionLogPolicy = exports.DeploymentSummary = exports.DeploymentCollection = exports.Deployment = exports.CreateSdkDetails = exports.CreateGatewayDetails = exports.CreateDeploymentDetails = exports.CreateCertificateDetails = exports.CreateApiDetails = exports.CorsPolicy = exports.ContentValidation = exports.ChangeGatewayCompartmentDetails = exports.ChangeDeploymentCompartmentDetails = exports.ChangeCertificateCompartmentDetails = exports.ChangeApiCompartmentDetails = exports.CertificateSummary = exports.CertificateCollection = exports.Certificate = exports.CaBundle = exports.BodyValidationRequestPolicy = exports.AuthenticationPolicy = exports.ApiValidations = exports.ApiValidationResult = exports.ApiValidationDetails = exports.ApiValidationDetail = exports.ApiSummary = exports.ApiSpecificationRouteResponsePolicies = exports.ApiSpecificationRouteRequestPolicies = exports.ApiSpecificationRouteBackend = exports.ApiSpecificationRoute = exports.ApiSpecificationRequestPolicies = exports.ApiSpecificationLoggingPolicies = exports.ApiSpecification = exports.ApiCollection = exports.Api = exports.AccessLogPolicy = void 0;
38
- exports.FixedTTLResponseCacheStorePolicy = exports.ExternalRespCache = exports.CustomAuthenticationPolicy = exports.CertificatesCertificateAuthority = exports.CertificatesCaBundle = exports.AuthenticationOnlyRouteAuthorizationPolicy = exports.AnyOfRouteAuthorizationPolicy = exports.AnonymousRouteAuthorizationPolicy = exports.WorkRequestSummary = exports.WorkRequestResource = exports.WorkRequestLogCollection = exports.WorkRequestLog = exports.WorkRequestErrorCollection = exports.WorkRequestError = exports.WorkRequestCollection = exports.WorkRequest = exports.ValidationRequestPolicy = exports.UpdateSdkDetails = exports.UpdateGatewayDetails = exports.UpdateDeploymentDetails = exports.UpdateCertificateDetails = exports.UpdateApiDetails = exports.StaticPublicKey = exports.SetQueryParameterPolicyItem = exports.SetQueryParameterPolicy = exports.SetHeaderPolicyItem = exports.SetHeaderPolicy = exports.SdkSummary = exports.SdkLanguageTypes = exports.SdkLanguageTypeSummary = exports.SdkLanguageTypeCollection = exports.SdkLanguageOptionalParametersAllowedValue = exports.SdkLanguageOptionalParameters = exports.SdkCollection = exports.Sdk = exports.RouteAuthorizationPolicy = exports.ResponseCacheStorePolicy = exports.ResponseCacheRespServer = exports.ResponseCacheLookupPolicy = exports.ResponseCacheDetails = exports.RequestParameterValidation = exports.RenameQueryParameterPolicyItem = exports.RenameQueryParameterPolicy = exports.RenameHeaderPolicyItem = exports.RenameHeaderPolicy = exports.RateLimitingPolicy = exports.QueryParameterValidationRequestPolicy = exports.QueryParameterValidationItem = exports.QueryParameterTransformationPolicy = exports.PublicKeySet = void 0;
39
- exports.StockResponseBackend = exports.StaticPublicKeySet = exports.SimpleLookupPolicy = exports.RemoteJsonWebKeySet = exports.PemEncodedPublicKey = exports.OracleFunctionBackend = exports.NoContentValidation = exports.NoCache = exports.JwtAuthenticationPolicy = exports.JsonWebKey = exports.HTTPBackend = void 0;
37
+ exports.Gateway = exports.FilterQueryParameterPolicyItem = exports.FilterQueryParameterPolicy = exports.FilterHeaderPolicyItem = exports.FilterHeaderPolicy = exports.ExecutionLogPolicy = exports.EntitlementTarget = exports.EntitlementSummary = exports.Entitlement = exports.DeploymentSummary = exports.DeploymentCollection = exports.Deployment = exports.CreateUsagePlanDetails = exports.CreateSubscriberDetails = exports.CreateSdkDetails = exports.CreateGatewayDetails = exports.CreateDeploymentDetails = exports.CreateCertificateDetails = exports.CreateApiDetails = exports.CorsPolicy = exports.ContentValidation = exports.ClientSummary = exports.Client = exports.ChangeUsagePlanCompartmentDetails = exports.ChangeSubscriberCompartmentDetails = exports.ChangeGatewayCompartmentDetails = exports.ChangeDeploymentCompartmentDetails = exports.ChangeCertificateCompartmentDetails = exports.ChangeApiCompartmentDetails = exports.CertificateSummary = exports.CertificateCollection = exports.Certificate = exports.CaBundle = exports.BodyValidationRequestPolicy = exports.AuthenticationPolicy = exports.ApiValidations = exports.ApiValidationResult = exports.ApiValidationDetails = exports.ApiValidationDetail = exports.ApiSummary = exports.ApiSpecificationRouteResponsePolicies = exports.ApiSpecificationRouteRequestPolicies = exports.ApiSpecificationRouteBackend = exports.ApiSpecificationRoute = exports.ApiSpecificationRequestPolicies = exports.ApiSpecificationLoggingPolicies = exports.ApiSpecification = exports.ApiCollection = exports.Api = exports.AccessLogPolicy = void 0;
38
+ exports.UsagePlan = exports.UpdateUsagePlanDetails = exports.UpdateSubscriberDetails = exports.UpdateSdkDetails = exports.UpdateGatewayDetails = exports.UpdateDeploymentDetails = exports.UpdateCertificateDetails = exports.UpdateApiDetails = exports.SubscriberSummary = exports.SubscriberCollection = exports.Subscriber = exports.StaticPublicKey = exports.SetQueryParameterPolicyItem = exports.SetQueryParameterPolicy = exports.SetHeaderPolicyItem = exports.SetHeaderPolicy = exports.SdkSummary = exports.SdkLanguageTypes = exports.SdkLanguageTypeSummary = exports.SdkLanguageTypeCollection = exports.SdkLanguageOptionalParametersAllowedValue = exports.SdkLanguageOptionalParameters = exports.SdkCollection = exports.Sdk = exports.RouteAuthorizationPolicy = exports.ResponseCacheStorePolicy = exports.ResponseCacheRespServer = exports.ResponseCacheLookupPolicy = exports.ResponseCacheDetails = exports.RequestParameterValidation = exports.RenameQueryParameterPolicyItem = exports.RenameQueryParameterPolicy = exports.RenameHeaderPolicyItem = exports.RenameHeaderPolicy = exports.RateLimitingPolicy = exports.RateLimit = exports.Quota = exports.QueryParameterValidationRequestPolicy = exports.QueryParameterValidationItem = exports.QueryParameterTransformationPolicy = exports.PublicKeySet = exports.MutualTlsDetails = exports.JsonWebTokenClaim = exports.IpAddress = exports.HeaderValidationRequestPolicy = exports.HeaderValidationItem = exports.HeaderTransformationPolicy = exports.HeaderFieldSpecification = exports.GatewaySummary = exports.GatewayCollection = void 0;
39
+ exports.StockResponseBackend = exports.StaticPublicKeySet = exports.SimpleLookupPolicy = exports.RemoteJsonWebKeySet = exports.PemEncodedPublicKey = exports.OracleFunctionBackend = exports.NoContentValidation = exports.NoCache = exports.JwtAuthenticationPolicy = exports.JsonWebKey = exports.HTTPBackend = exports.FixedTTLResponseCacheStorePolicy = exports.ExternalRespCache = exports.CustomAuthenticationPolicy = exports.CertificatesCertificateAuthority = exports.CertificatesCaBundle = exports.AuthenticationOnlyRouteAuthorizationPolicy = exports.AnyOfRouteAuthorizationPolicy = exports.AnonymousRouteAuthorizationPolicy = exports.WorkRequestSummary = exports.WorkRequestResource = exports.WorkRequestLogCollection = exports.WorkRequestLog = exports.WorkRequestErrorCollection = exports.WorkRequestError = exports.WorkRequestCollection = exports.WorkRequest = exports.ValidationRequestPolicy = exports.UsagePlansPolicy = exports.UsagePlanSummary = exports.UsagePlanCollection = void 0;
40
40
  const AccessLogPolicy = __importStar(require("./access-log-policy"));
41
41
  exports.AccessLogPolicy = AccessLogPolicy.AccessLogPolicy;
42
42
  const Api = __importStar(require("./api"));
@@ -87,6 +87,14 @@ const ChangeDeploymentCompartmentDetails = __importStar(require("./change-deploy
87
87
  exports.ChangeDeploymentCompartmentDetails = ChangeDeploymentCompartmentDetails.ChangeDeploymentCompartmentDetails;
88
88
  const ChangeGatewayCompartmentDetails = __importStar(require("./change-gateway-compartment-details"));
89
89
  exports.ChangeGatewayCompartmentDetails = ChangeGatewayCompartmentDetails.ChangeGatewayCompartmentDetails;
90
+ const ChangeSubscriberCompartmentDetails = __importStar(require("./change-subscriber-compartment-details"));
91
+ exports.ChangeSubscriberCompartmentDetails = ChangeSubscriberCompartmentDetails.ChangeSubscriberCompartmentDetails;
92
+ const ChangeUsagePlanCompartmentDetails = __importStar(require("./change-usage-plan-compartment-details"));
93
+ exports.ChangeUsagePlanCompartmentDetails = ChangeUsagePlanCompartmentDetails.ChangeUsagePlanCompartmentDetails;
94
+ const Client = __importStar(require("./client"));
95
+ exports.Client = Client.Client;
96
+ const ClientSummary = __importStar(require("./client-summary"));
97
+ exports.ClientSummary = ClientSummary.ClientSummary;
90
98
  const ContentValidation = __importStar(require("./content-validation"));
91
99
  exports.ContentValidation = ContentValidation.ContentValidation;
92
100
  const CorsPolicy = __importStar(require("./cors-policy"));
@@ -101,12 +109,22 @@ const CreateGatewayDetails = __importStar(require("./create-gateway-details"));
101
109
  exports.CreateGatewayDetails = CreateGatewayDetails.CreateGatewayDetails;
102
110
  const CreateSdkDetails = __importStar(require("./create-sdk-details"));
103
111
  exports.CreateSdkDetails = CreateSdkDetails.CreateSdkDetails;
112
+ const CreateSubscriberDetails = __importStar(require("./create-subscriber-details"));
113
+ exports.CreateSubscriberDetails = CreateSubscriberDetails.CreateSubscriberDetails;
114
+ const CreateUsagePlanDetails = __importStar(require("./create-usage-plan-details"));
115
+ exports.CreateUsagePlanDetails = CreateUsagePlanDetails.CreateUsagePlanDetails;
104
116
  const Deployment = __importStar(require("./deployment"));
105
117
  exports.Deployment = Deployment.Deployment;
106
118
  const DeploymentCollection = __importStar(require("./deployment-collection"));
107
119
  exports.DeploymentCollection = DeploymentCollection.DeploymentCollection;
108
120
  const DeploymentSummary = __importStar(require("./deployment-summary"));
109
121
  exports.DeploymentSummary = DeploymentSummary.DeploymentSummary;
122
+ const Entitlement = __importStar(require("./entitlement"));
123
+ exports.Entitlement = Entitlement.Entitlement;
124
+ const EntitlementSummary = __importStar(require("./entitlement-summary"));
125
+ exports.EntitlementSummary = EntitlementSummary.EntitlementSummary;
126
+ const EntitlementTarget = __importStar(require("./entitlement-target"));
127
+ exports.EntitlementTarget = EntitlementTarget.EntitlementTarget;
110
128
  const ExecutionLogPolicy = __importStar(require("./execution-log-policy"));
111
129
  exports.ExecutionLogPolicy = ExecutionLogPolicy.ExecutionLogPolicy;
112
130
  const FilterHeaderPolicy = __importStar(require("./filter-header-policy"));
@@ -145,6 +163,10 @@ const QueryParameterValidationItem = __importStar(require("./query-parameter-val
145
163
  exports.QueryParameterValidationItem = QueryParameterValidationItem.QueryParameterValidationItem;
146
164
  const QueryParameterValidationRequestPolicy = __importStar(require("./query-parameter-validation-request-policy"));
147
165
  exports.QueryParameterValidationRequestPolicy = QueryParameterValidationRequestPolicy.QueryParameterValidationRequestPolicy;
166
+ const Quota = __importStar(require("./quota"));
167
+ exports.Quota = Quota.Quota;
168
+ const RateLimit = __importStar(require("./rate-limit"));
169
+ exports.RateLimit = RateLimit.RateLimit;
148
170
  const RateLimitingPolicy = __importStar(require("./rate-limiting-policy"));
149
171
  exports.RateLimitingPolicy = RateLimitingPolicy.RateLimitingPolicy;
150
172
  const RenameHeaderPolicy = __importStar(require("./rename-header-policy"));
@@ -193,6 +215,12 @@ const SetQueryParameterPolicyItem = __importStar(require("./set-query-parameter-
193
215
  exports.SetQueryParameterPolicyItem = SetQueryParameterPolicyItem.SetQueryParameterPolicyItem;
194
216
  const StaticPublicKey = __importStar(require("./static-public-key"));
195
217
  exports.StaticPublicKey = StaticPublicKey.StaticPublicKey;
218
+ const Subscriber = __importStar(require("./subscriber"));
219
+ exports.Subscriber = Subscriber.Subscriber;
220
+ const SubscriberCollection = __importStar(require("./subscriber-collection"));
221
+ exports.SubscriberCollection = SubscriberCollection.SubscriberCollection;
222
+ const SubscriberSummary = __importStar(require("./subscriber-summary"));
223
+ exports.SubscriberSummary = SubscriberSummary.SubscriberSummary;
196
224
  const UpdateApiDetails = __importStar(require("./update-api-details"));
197
225
  exports.UpdateApiDetails = UpdateApiDetails.UpdateApiDetails;
198
226
  const UpdateCertificateDetails = __importStar(require("./update-certificate-details"));
@@ -203,6 +231,18 @@ const UpdateGatewayDetails = __importStar(require("./update-gateway-details"));
203
231
  exports.UpdateGatewayDetails = UpdateGatewayDetails.UpdateGatewayDetails;
204
232
  const UpdateSdkDetails = __importStar(require("./update-sdk-details"));
205
233
  exports.UpdateSdkDetails = UpdateSdkDetails.UpdateSdkDetails;
234
+ const UpdateSubscriberDetails = __importStar(require("./update-subscriber-details"));
235
+ exports.UpdateSubscriberDetails = UpdateSubscriberDetails.UpdateSubscriberDetails;
236
+ const UpdateUsagePlanDetails = __importStar(require("./update-usage-plan-details"));
237
+ exports.UpdateUsagePlanDetails = UpdateUsagePlanDetails.UpdateUsagePlanDetails;
238
+ const UsagePlan = __importStar(require("./usage-plan"));
239
+ exports.UsagePlan = UsagePlan.UsagePlan;
240
+ const UsagePlanCollection = __importStar(require("./usage-plan-collection"));
241
+ exports.UsagePlanCollection = UsagePlanCollection.UsagePlanCollection;
242
+ const UsagePlanSummary = __importStar(require("./usage-plan-summary"));
243
+ exports.UsagePlanSummary = UsagePlanSummary.UsagePlanSummary;
244
+ const UsagePlansPolicy = __importStar(require("./usage-plans-policy"));
245
+ exports.UsagePlansPolicy = UsagePlansPolicy.UsagePlansPolicy;
206
246
  const ValidationRequestPolicy = __importStar(require("./validation-request-policy"));
207
247
  exports.ValidationRequestPolicy = ValidationRequestPolicy.ValidationRequestPolicy;
208
248
  const WorkRequest = __importStar(require("./work-request"));
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../lib/apigateway/lib/model/index.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../lib/apigateway/lib/model/index.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;GAcG;;;;;;;;;;;;;;;;;;;;;;;;AAEH,qEAAuD;AACzC,QAAA,eAAe,GAAG,eAAe,CAAC,eAAe,CAAC;AAChE,2CAA6B;AACf,QAAA,GAAG,GAAG,GAAG,CAAC,GAAG,CAAC;AAC5B,gEAAkD;AACpC,QAAA,aAAa,GAAG,aAAa,CAAC,aAAa,CAAC;AAC1D,sEAAwD;AAC1C,QAAA,gBAAgB,GAAG,gBAAgB,CAAC,gBAAgB,CAAC;AACnE,sGAAwF;AAC1E,QAAA,+BAA+B,GAAG,+BAA+B,CAAC,+BAA+B,CAAC;AAChH,sGAAwF;AAC1E,QAAA,+BAA+B,GAAG,+BAA+B,CAAC,+BAA+B,CAAC;AAChH,iFAAmE;AACrD,QAAA,qBAAqB,GAAG,qBAAqB,CAAC,qBAAqB,CAAC;AAClF,gGAAkF;AACpE,QAAA,4BAA4B,GAAG,4BAA4B,CAAC,4BAA4B,CAAC;AACvG,iHAAmG;AACrF,QAAA,oCAAoC,GAAG,oCAAoC,CAAC,oCAAoC,CAAC;AAC/H,mHAAqG;AACvF,QAAA,qCAAqC,GAAG,qCAAqC,CAAC,qCAAqC,CAAC;AAClI,0DAA4C;AAC9B,QAAA,UAAU,GAAG,UAAU,CAAC,UAAU,CAAC;AACjD,6EAA+D;AACjD,QAAA,mBAAmB,GAAG,mBAAmB,CAAC,mBAAmB,CAAC;AAC5E,+EAAiE;AACnD,QAAA,oBAAoB,GAAG,oBAAoB,CAAC,oBAAoB,CAAC;AAC/E,6EAA+D;AACjD,QAAA,mBAAmB,GAAG,mBAAmB,CAAC,mBAAmB,CAAC;AAC5E,kEAAoD;AACtC,QAAA,cAAc,GAAG,cAAc,CAAC,cAAc,CAAC;AAC7D,8EAAgE;AAClD,QAAA,oBAAoB,GAAG,oBAAoB,CAAC,oBAAoB,CAAC;AAC/E,8FAAgF;AAClE,QAAA,2BAA2B,GAAG,2BAA2B,CAAC,2BAA2B,CAAC;AACpG,sDAAwC;AAC1B,QAAA,QAAQ,GAAG,QAAQ,CAAC,QAAQ,CAAC;AAC3C,2DAA6C;AAC/B,QAAA,WAAW,GAAG,WAAW,CAAC,WAAW,CAAC;AACpD,gFAAkE;AACpD,QAAA,qBAAqB,GAAG,qBAAqB,CAAC,qBAAqB,CAAC;AAClF,0EAA4D;AAC9C,QAAA,kBAAkB,GAAG,kBAAkB,CAAC,kBAAkB,CAAC;AACzE,8FAAgF;AAClE,QAAA,2BAA2B,GAAG,2BAA2B,CAAC,2BAA2B,CAAC;AACpG,8GAAgG;AAClF,QAAA,mCAAmC,GAAG,mCAAmC,CAAC,mCAAmC,CAAC;AAC5H,4GAA8F;AAChF,QAAA,kCAAkC,GAAG,kCAAkC,CAAC,kCAAkC,CAAC;AACzH,sGAAwF;AAC1E,QAAA,+BAA+B,GAAG,+BAA+B,CAAC,+BAA+B,CAAC;AAChH,4GAA8F;AAChF,QAAA,kCAAkC,GAAG,kCAAkC,CAAC,kCAAkC,CAAC;AACzH,2GAA6F;AAC/E,QAAA,iCAAiC,GAAG,iCAAiC,CAAC,iCAAiC,CAAC;AACtH,iDAAmC;AACrB,QAAA,MAAM,GAAG,MAAM,CAAC,MAAM,CAAC;AACrC,gEAAkD;AACpC,QAAA,aAAa,GAAG,aAAa,CAAC,aAAa,CAAC;AAC1D,wEAA0D;AAC5C,QAAA,iBAAiB,GAAG,iBAAiB,CAAC,iBAAiB,CAAC;AACtE,0DAA4C;AAC9B,QAAA,UAAU,GAAG,UAAU,CAAC,UAAU,CAAC;AACjD,uEAAyD;AAC3C,QAAA,gBAAgB,GAAG,gBAAgB,CAAC,gBAAgB,CAAC;AACnE,uFAAyE;AAC3D,QAAA,wBAAwB,GAAG,wBAAwB,CAAC,wBAAwB,CAAC;AAC3F,qFAAuE;AACzD,QAAA,uBAAuB,GAAG,uBAAuB,CAAC,uBAAuB,CAAC;AACxF,+EAAiE;AACnD,QAAA,oBAAoB,GAAG,oBAAoB,CAAC,oBAAoB,CAAC;AAC/E,uEAAyD;AAC3C,QAAA,gBAAgB,GAAG,gBAAgB,CAAC,gBAAgB,CAAC;AACnE,qFAAuE;AACzD,QAAA,uBAAuB,GAAG,uBAAuB,CAAC,uBAAuB,CAAC;AACxF,oFAAsE;AACxD,QAAA,sBAAsB,GAAG,sBAAsB,CAAC,sBAAsB,CAAC;AACrF,yDAA2C;AAC7B,QAAA,UAAU,GAAG,UAAU,CAAC,UAAU,CAAC;AACjD,8EAAgE;AAClD,QAAA,oBAAoB,GAAG,oBAAoB,CAAC,oBAAoB,CAAC;AAC/E,wEAA0D;AAC5C,QAAA,iBAAiB,GAAG,iBAAiB,CAAC,iBAAiB,CAAC;AACtE,2DAA6C;AAC/B,QAAA,WAAW,GAAG,WAAW,CAAC,WAAW,CAAC;AACpD,0EAA4D;AAC9C,QAAA,kBAAkB,GAAG,kBAAkB,CAAC,kBAAkB,CAAC;AACzE,wEAA0D;AAC5C,QAAA,iBAAiB,GAAG,iBAAiB,CAAC,iBAAiB,CAAC;AACtE,2EAA6D;AAC/C,QAAA,kBAAkB,GAAG,kBAAkB,CAAC,kBAAkB,CAAC;AACzE,2EAA6D;AAC/C,QAAA,kBAAkB,GAAG,kBAAkB,CAAC,kBAAkB,CAAC;AACzE,oFAAsE;AACxD,QAAA,sBAAsB,GAAG,sBAAsB,CAAC,sBAAsB,CAAC;AACrF,4FAA8E;AAChE,QAAA,0BAA0B,GAAG,0BAA0B,CAAC,0BAA0B,CAAC;AACjG,qGAAuF;AACzE,QAAA,8BAA8B,GAAG,8BAA8B,CAAC,8BAA8B,CAAC;AAC7G,mDAAqC;AACvB,QAAA,OAAO,GAAG,OAAO,CAAC,OAAO,CAAC;AACxC,wEAA0D;AAC5C,QAAA,iBAAiB,GAAG,iBAAiB,CAAC,iBAAiB,CAAC;AACtE,kEAAoD;AACtC,QAAA,cAAc,GAAG,cAAc,CAAC,cAAc,CAAC;AAC7D,uFAAyE;AAC3D,QAAA,wBAAwB,GAAG,wBAAwB,CAAC,wBAAwB,CAAC;AAC3F,2FAA6E;AAC/D,QAAA,0BAA0B,GAAG,0BAA0B,CAAC,0BAA0B,CAAC;AACjG,+EAAiE;AACnD,QAAA,oBAAoB,GAAG,oBAAoB,CAAC,oBAAoB,CAAC;AAC/E,kGAAoF;AACtE,QAAA,6BAA6B,GAAG,6BAA6B,CAAC,6BAA6B,CAAC;AAC1G,wDAA0C;AAC5B,QAAA,SAAS,GAAG,SAAS,CAAC,SAAS,CAAC;AAC9C,0EAA4D;AAC9C,QAAA,iBAAiB,GAAG,iBAAiB,CAAC,iBAAiB,CAAC;AACtE,uEAAyD;AAC3C,QAAA,gBAAgB,GAAG,gBAAgB,CAAC,gBAAgB,CAAC;AACnE,+DAAiD;AACnC,QAAA,YAAY,GAAG,YAAY,CAAC,YAAY,CAAC;AACvD,4GAA8F;AAChF,QAAA,kCAAkC,GAAG,kCAAkC,CAAC,kCAAkC,CAAC;AACzH,gGAAkF;AACpE,QAAA,4BAA4B,GAAG,4BAA4B,CAAC,4BAA4B,CAAC;AACvG,mHAAqG;AACvF,QAAA,qCAAqC,GAAG,qCAAqC,CAAC,qCAAqC,CAAC;AAClI,+CAAiC;AACnB,QAAA,KAAK,GAAG,KAAK,CAAC,KAAK,CAAC;AAClC,wDAA0C;AAC5B,QAAA,SAAS,GAAG,SAAS,CAAC,SAAS,CAAC;AAC9C,2EAA6D;AAC/C,QAAA,kBAAkB,GAAG,kBAAkB,CAAC,kBAAkB,CAAC;AACzE,2EAA6D;AAC/C,QAAA,kBAAkB,GAAG,kBAAkB,CAAC,kBAAkB,CAAC;AACzE,oFAAsE;AACxD,QAAA,sBAAsB,GAAG,sBAAsB,CAAC,sBAAsB,CAAC;AACrF,4FAA8E;AAChE,QAAA,0BAA0B,GAAG,0BAA0B,CAAC,0BAA0B,CAAC;AACjG,qGAAuF;AACzE,QAAA,8BAA8B,GAAG,8BAA8B,CAAC,8BAA8B,CAAC;AAC7G,2FAA6E;AAC/D,QAAA,0BAA0B,GAAG,0BAA0B,CAAC,0BAA0B,CAAC;AACjG,+EAAiE;AACnD,QAAA,oBAAoB,GAAG,oBAAoB,CAAC,oBAAoB,CAAC;AAC/E,0FAA4E;AAC9D,QAAA,yBAAyB,GAAG,yBAAyB,CAAC,yBAAyB,CAAC;AAC9F,sFAAwE;AAC1D,QAAA,uBAAuB,GAAG,uBAAuB,CAAC,uBAAuB,CAAC;AACxF,wFAA0E;AAC5D,QAAA,wBAAwB,GAAG,wBAAwB,CAAC,wBAAwB,CAAC;AAC3F,uFAAyE;AAC3D,QAAA,wBAAwB,GAAG,wBAAwB,CAAC,wBAAwB,CAAC;AAC3F,2CAA6B;AACf,QAAA,GAAG,GAAG,GAAG,CAAC,GAAG,CAAC;AAC5B,gEAAkD;AACpC,QAAA,aAAa,GAAG,aAAa,CAAC,aAAa,CAAC;AAC1D,kGAAoF;AACtE,QAAA,6BAA6B,GAAG,6BAA6B,CAAC,6BAA6B,CAAC;AAC1G,4HAA8G;AAChG,QAAA,yCAAyC,GAAG,yCAAyC,CAAC,yCAAyC,CAAC;AAC9I,0FAA4E;AAC9D,QAAA,yBAAyB,GAAG,yBAAyB,CAAC,yBAAyB,CAAC;AAC9F,oFAAsE;AACxD,QAAA,sBAAsB,GAAG,sBAAsB,CAAC,sBAAsB,CAAC;AACrF,uEAAyD;AAC3C,QAAA,gBAAgB,GAAG,gBAAgB,CAAC,gBAAgB,CAAC;AACnE,0DAA4C;AAC9B,QAAA,UAAU,GAAG,UAAU,CAAC,UAAU,CAAC;AACjD,qEAAuD;AACzC,QAAA,eAAe,GAAG,eAAe,CAAC,eAAe,CAAC;AAChE,8EAAgE;AAClD,QAAA,mBAAmB,GAAG,mBAAmB,CAAC,mBAAmB,CAAC;AAC5E,sFAAwE;AAC1D,QAAA,uBAAuB,GAAG,uBAAuB,CAAC,uBAAuB,CAAC;AACxF,+FAAiF;AACnE,QAAA,2BAA2B,GAAG,2BAA2B,CAAC,2BAA2B,CAAC;AACpG,qEAAuD;AACzC,QAAA,eAAe,GAAG,eAAe,CAAC,eAAe,CAAC;AAChE,yDAA2C;AAC7B,QAAA,UAAU,GAAG,UAAU,CAAC,UAAU,CAAC;AACjD,8EAAgE;AAClD,QAAA,oBAAoB,GAAG,oBAAoB,CAAC,oBAAoB,CAAC;AAC/E,wEAA0D;AAC5C,QAAA,iBAAiB,GAAG,iBAAiB,CAAC,iBAAiB,CAAC;AACtE,uEAAyD;AAC3C,QAAA,gBAAgB,GAAG,gBAAgB,CAAC,gBAAgB,CAAC;AACnE,uFAAyE;AAC3D,QAAA,wBAAwB,GAAG,wBAAwB,CAAC,wBAAwB,CAAC;AAC3F,qFAAuE;AACzD,QAAA,uBAAuB,GAAG,uBAAuB,CAAC,uBAAuB,CAAC;AACxF,+EAAiE;AACnD,QAAA,oBAAoB,GAAG,oBAAoB,CAAC,oBAAoB,CAAC;AAC/E,uEAAyD;AAC3C,QAAA,gBAAgB,GAAG,gBAAgB,CAAC,gBAAgB,CAAC;AACnE,qFAAuE;AACzD,QAAA,uBAAuB,GAAG,uBAAuB,CAAC,uBAAuB,CAAC;AACxF,oFAAsE;AACxD,QAAA,sBAAsB,GAAG,sBAAsB,CAAC,sBAAsB,CAAC;AACrF,wDAA0C;AAC5B,QAAA,SAAS,GAAG,SAAS,CAAC,SAAS,CAAC;AAC9C,6EAA+D;AACjD,QAAA,mBAAmB,GAAG,mBAAmB,CAAC,mBAAmB,CAAC;AAC5E,uEAAyD;AAC3C,QAAA,gBAAgB,GAAG,gBAAgB,CAAC,gBAAgB,CAAC;AACnE,uEAAyD;AAC3C,QAAA,gBAAgB,GAAG,gBAAgB,CAAC,gBAAgB,CAAC;AACnE,qFAAuE;AACzD,QAAA,uBAAuB,GAAG,uBAAuB,CAAC,uBAAuB,CAAC;AACxF,4DAA8C;AAChC,QAAA,WAAW,GAAG,WAAW,CAAC,WAAW,CAAC;AACpD,iFAAmE;AACrD,QAAA,qBAAqB,GAAG,qBAAqB,CAAC,qBAAqB,CAAC;AAClF,uEAAyD;AAC3C,QAAA,gBAAgB,GAAG,gBAAgB,CAAC,gBAAgB,CAAC;AACnE,4FAA8E;AAChE,QAAA,0BAA0B,GAAG,0BAA0B,CAAC,0BAA0B,CAAC;AACjG,mEAAqD;AACvC,QAAA,cAAc,GAAG,cAAc,CAAC,cAAc,CAAC;AAC7D,wFAA0E;AAC5D,QAAA,wBAAwB,GAAG,wBAAwB,CAAC,wBAAwB,CAAC;AAC3F,6EAA+D;AACjD,QAAA,mBAAmB,GAAG,mBAAmB,CAAC,mBAAmB,CAAC;AAC5E,2EAA6D;AAC/C,QAAA,kBAAkB,GAAG,kBAAkB,CAAC,kBAAkB,CAAC;AAEzE,0GAA4F;AAC9E,QAAA,iCAAiC,GAAG,iCAAiC,CAAC,iCAAiC,CAAC;AACtH,mGAAqF;AACvE,QAAA,6BAA6B,GAAG,6BAA6B,CAAC,6BAA6B,CAAC;AAC1G,6HAA+G;AACjG,QAAA,0CAA0C,GAAG,0CAA0C,CAAC,0CAA0C,CAAC;AACjJ,+EAAiE;AACnD,QAAA,oBAAoB,GAAG,oBAAoB,CAAC,oBAAoB,CAAC;AAC/E,uGAAyF;AAC3E,QAAA,gCAAgC,GAAG,gCAAgC,CAAC,gCAAgC,CAAC;AACnH,2FAA6E;AAC/D,QAAA,0BAA0B,GAAG,0BAA0B,CAAC,0BAA0B,CAAC;AACjG,yEAA2D;AAC7C,QAAA,iBAAiB,GAAG,iBAAiB,CAAC,iBAAiB,CAAC;AACtE,0GAA4F;AAC9E,QAAA,gCAAgC,GAAG,gCAAgC,CAAC,gCAAgC,CAAC;AACnH,6DAA+C;AACjC,QAAA,WAAW,GAAG,WAAW,CAAC,WAAW,CAAC;AACpD,2DAA6C;AAC/B,QAAA,UAAU,GAAG,UAAU,CAAC,UAAU,CAAC;AACjD,qFAAuE;AACzD,QAAA,uBAAuB,GAAG,uBAAuB,CAAC,uBAAuB,CAAC;AACxF,oDAAsC;AACxB,QAAA,OAAO,GAAG,OAAO,CAAC,OAAO,CAAC;AACxC,6EAA+D;AACjD,QAAA,mBAAmB,GAAG,mBAAmB,CAAC,mBAAmB,CAAC;AAC5E,iFAAmE;AACrD,QAAA,qBAAqB,GAAG,qBAAqB,CAAC,qBAAqB,CAAC;AAClF,8EAAgE;AAClD,QAAA,mBAAmB,GAAG,mBAAmB,CAAC,mBAAmB,CAAC;AAC5E,+EAAiE;AACnD,QAAA,mBAAmB,GAAG,mBAAmB,CAAC,mBAAmB,CAAC;AAC5E,2EAA6D;AAC/C,QAAA,kBAAkB,GAAG,kBAAkB,CAAC,kBAAkB,CAAC;AACzE,4EAA8D;AAChD,QAAA,kBAAkB,GAAG,kBAAkB,CAAC,kBAAkB,CAAC;AACzE,+EAAiE;AACnD,QAAA,oBAAoB,GAAG,oBAAoB,CAAC,oBAAoB,CAAC"}
@@ -0,0 +1,78 @@
1
+ /**
2
+ * API Gateway API
3
+ * API for the API Gateway service. Use this API to manage gateways, deployments, and related items.
4
+ For more information, see
5
+ [Overview of API Gateway](/iaas/Content/APIGateway/Concepts/apigatewayoverview.htm).
6
+
7
+ * OpenAPI spec version: 20190501
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OracleSDKGenerator.
11
+ * Do not edit the class manually.
12
+ *
13
+ * Copyright (c) 2020, 2022, Oracle and/or its affiliates. All rights reserved.
14
+ * 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.
15
+ */
16
+ /**
17
+ * Quota policy for a usage plan.
18
+ *
19
+ */
20
+ export interface Quota {
21
+ /**
22
+ * The number of requests that can be made per time period.
23
+ * Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
24
+ */
25
+ "value": number;
26
+ /**
27
+ * The unit of time over which quotas are calculated.
28
+ * Example: `MINUTE` or `MONTH`
29
+ *
30
+ */
31
+ "unit": Quota.Unit;
32
+ /**
33
+ * The policy that controls when quotas will reset.
34
+ * Example: `CALENDAR`
35
+ *
36
+ */
37
+ "resetPolicy": Quota.ResetPolicy;
38
+ /**
39
+ * What the usage plan will do when a quota is breached:
40
+ * `REJECT` will allow no further requests
41
+ * `ALLOW` will continue to allow further requests
42
+ *
43
+ */
44
+ "operationOnBreach": Quota.OperationOnBreach;
45
+ }
46
+ export declare namespace Quota {
47
+ enum Unit {
48
+ Minute = "MINUTE",
49
+ Hour = "HOUR",
50
+ Day = "DAY",
51
+ Week = "WEEK",
52
+ Month = "MONTH",
53
+ /**
54
+ * This value is used if a service returns a value for this enum that is not recognized by this
55
+ * version of the SDK.
56
+ */
57
+ UnknownValue = "UNKNOWN_VALUE"
58
+ }
59
+ enum ResetPolicy {
60
+ Calendar = "CALENDAR",
61
+ /**
62
+ * This value is used if a service returns a value for this enum that is not recognized by this
63
+ * version of the SDK.
64
+ */
65
+ UnknownValue = "UNKNOWN_VALUE"
66
+ }
67
+ enum OperationOnBreach {
68
+ Reject = "REJECT",
69
+ Allow = "ALLOW",
70
+ /**
71
+ * This value is used if a service returns a value for this enum that is not recognized by this
72
+ * version of the SDK.
73
+ */
74
+ UnknownValue = "UNKNOWN_VALUE"
75
+ }
76
+ function getJsonObj(obj: Quota): object;
77
+ function getDeserializedJsonObj(obj: Quota): object;
78
+ }
@@ -0,0 +1,64 @@
1
+ "use strict";
2
+ /**
3
+ * API Gateway API
4
+ * API for the API Gateway service. Use this API to manage gateways, deployments, and related items.
5
+ For more information, see
6
+ [Overview of API Gateway](/iaas/Content/APIGateway/Concepts/apigatewayoverview.htm).
7
+
8
+ * OpenAPI spec version: 20190501
9
+ *
10
+ *
11
+ * NOTE: This class is auto generated by OracleSDKGenerator.
12
+ * Do not edit the class manually.
13
+ *
14
+ * Copyright (c) 2020, 2022, Oracle and/or its affiliates. All rights reserved.
15
+ * 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.
16
+ */
17
+ Object.defineProperty(exports, "__esModule", { value: true });
18
+ exports.Quota = void 0;
19
+ var Quota;
20
+ (function (Quota) {
21
+ let Unit;
22
+ (function (Unit) {
23
+ Unit["Minute"] = "MINUTE";
24
+ Unit["Hour"] = "HOUR";
25
+ Unit["Day"] = "DAY";
26
+ Unit["Week"] = "WEEK";
27
+ Unit["Month"] = "MONTH";
28
+ /**
29
+ * This value is used if a service returns a value for this enum that is not recognized by this
30
+ * version of the SDK.
31
+ */
32
+ Unit["UnknownValue"] = "UNKNOWN_VALUE";
33
+ })(Unit = Quota.Unit || (Quota.Unit = {}));
34
+ let ResetPolicy;
35
+ (function (ResetPolicy) {
36
+ ResetPolicy["Calendar"] = "CALENDAR";
37
+ /**
38
+ * This value is used if a service returns a value for this enum that is not recognized by this
39
+ * version of the SDK.
40
+ */
41
+ ResetPolicy["UnknownValue"] = "UNKNOWN_VALUE";
42
+ })(ResetPolicy = Quota.ResetPolicy || (Quota.ResetPolicy = {}));
43
+ let OperationOnBreach;
44
+ (function (OperationOnBreach) {
45
+ OperationOnBreach["Reject"] = "REJECT";
46
+ OperationOnBreach["Allow"] = "ALLOW";
47
+ /**
48
+ * This value is used if a service returns a value for this enum that is not recognized by this
49
+ * version of the SDK.
50
+ */
51
+ OperationOnBreach["UnknownValue"] = "UNKNOWN_VALUE";
52
+ })(OperationOnBreach = Quota.OperationOnBreach || (Quota.OperationOnBreach = {}));
53
+ function getJsonObj(obj) {
54
+ const jsonObj = Object.assign(Object.assign({}, obj), {});
55
+ return jsonObj;
56
+ }
57
+ Quota.getJsonObj = getJsonObj;
58
+ function getDeserializedJsonObj(obj) {
59
+ const jsonObj = Object.assign(Object.assign({}, obj), {});
60
+ return jsonObj;
61
+ }
62
+ Quota.getDeserializedJsonObj = getDeserializedJsonObj;
63
+ })(Quota = exports.Quota || (exports.Quota = {}));
64
+ //# sourceMappingURL=quota.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"quota.js","sourceRoot":"","sources":["../../../../../lib/apigateway/lib/model/quota.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;GAcG;;;AAoCH,IAAiB,KAAK,CA2CrB;AA3CD,WAAiB,KAAK;IACpB,IAAY,IAWX;IAXD,WAAY,IAAI;QACd,yBAAiB,CAAA;QACjB,qBAAa,CAAA;QACb,mBAAW,CAAA;QACX,qBAAa,CAAA;QACb,uBAAe,CAAA;QACf;;;WAGG;QACH,sCAA8B,CAAA;IAChC,CAAC,EAXW,IAAI,GAAJ,UAAI,KAAJ,UAAI,QAWf;IAED,IAAY,WAOX;IAPD,WAAY,WAAW;QACrB,oCAAqB,CAAA;QACrB;;;WAGG;QACH,6CAA8B,CAAA;IAChC,CAAC,EAPW,WAAW,GAAX,iBAAW,KAAX,iBAAW,QAOtB;IAED,IAAY,iBAQX;IARD,WAAY,iBAAiB;QAC3B,sCAAiB,CAAA;QACjB,oCAAe,CAAA;QACf;;;WAGG;QACH,mDAA8B,CAAA;IAChC,CAAC,EARW,iBAAiB,GAAjB,uBAAiB,KAAjB,uBAAiB,QAQ5B;IAED,SAAgB,UAAU,CAAC,GAAU;QACnC,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,gBAAU,aAIzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAAU;QAC/C,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,4BAAsB,yBAIrC,CAAA;AACH,CAAC,EA3CgB,KAAK,GAAL,aAAK,KAAL,aAAK,QA2CrB"}
@@ -0,0 +1,44 @@
1
+ /**
2
+ * API Gateway API
3
+ * API for the API Gateway service. Use this API to manage gateways, deployments, and related items.
4
+ For more information, see
5
+ [Overview of API Gateway](/iaas/Content/APIGateway/Concepts/apigatewayoverview.htm).
6
+
7
+ * OpenAPI spec version: 20190501
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OracleSDKGenerator.
11
+ * Do not edit the class manually.
12
+ *
13
+ * Copyright (c) 2020, 2022, Oracle and/or its affiliates. All rights reserved.
14
+ * 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.
15
+ */
16
+ /**
17
+ * Rate-limiting policy for a usage plan.
18
+ *
19
+ */
20
+ export interface RateLimit {
21
+ /**
22
+ * The number of requests that can be made per time period.
23
+ * Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
24
+ */
25
+ "value": number;
26
+ /**
27
+ * The unit of time over which rate limits are calculated.
28
+ * Example: `SECOND`
29
+ *
30
+ */
31
+ "unit": RateLimit.Unit;
32
+ }
33
+ export declare namespace RateLimit {
34
+ enum Unit {
35
+ Second = "SECOND",
36
+ /**
37
+ * This value is used if a service returns a value for this enum that is not recognized by this
38
+ * version of the SDK.
39
+ */
40
+ UnknownValue = "UNKNOWN_VALUE"
41
+ }
42
+ function getJsonObj(obj: RateLimit): object;
43
+ function getDeserializedJsonObj(obj: RateLimit): object;
44
+ }
@@ -0,0 +1,41 @@
1
+ "use strict";
2
+ /**
3
+ * API Gateway API
4
+ * API for the API Gateway service. Use this API to manage gateways, deployments, and related items.
5
+ For more information, see
6
+ [Overview of API Gateway](/iaas/Content/APIGateway/Concepts/apigatewayoverview.htm).
7
+
8
+ * OpenAPI spec version: 20190501
9
+ *
10
+ *
11
+ * NOTE: This class is auto generated by OracleSDKGenerator.
12
+ * Do not edit the class manually.
13
+ *
14
+ * Copyright (c) 2020, 2022, Oracle and/or its affiliates. All rights reserved.
15
+ * 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.
16
+ */
17
+ Object.defineProperty(exports, "__esModule", { value: true });
18
+ exports.RateLimit = void 0;
19
+ var RateLimit;
20
+ (function (RateLimit) {
21
+ let Unit;
22
+ (function (Unit) {
23
+ Unit["Second"] = "SECOND";
24
+ /**
25
+ * This value is used if a service returns a value for this enum that is not recognized by this
26
+ * version of the SDK.
27
+ */
28
+ Unit["UnknownValue"] = "UNKNOWN_VALUE";
29
+ })(Unit = RateLimit.Unit || (RateLimit.Unit = {}));
30
+ function getJsonObj(obj) {
31
+ const jsonObj = Object.assign(Object.assign({}, obj), {});
32
+ return jsonObj;
33
+ }
34
+ RateLimit.getJsonObj = getJsonObj;
35
+ function getDeserializedJsonObj(obj) {
36
+ const jsonObj = Object.assign(Object.assign({}, obj), {});
37
+ return jsonObj;
38
+ }
39
+ RateLimit.getDeserializedJsonObj = getDeserializedJsonObj;
40
+ })(RateLimit = exports.RateLimit || (exports.RateLimit = {}));
41
+ //# sourceMappingURL=rate-limit.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"rate-limit.js","sourceRoot":"","sources":["../../../../../lib/apigateway/lib/model/rate-limit.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;GAcG;;;AAuBH,IAAiB,SAAS,CAoBzB;AApBD,WAAiB,SAAS;IACxB,IAAY,IAOX;IAPD,WAAY,IAAI;QACd,yBAAiB,CAAA;QACjB;;;WAGG;QACH,sCAA8B,CAAA;IAChC,CAAC,EAPW,IAAI,GAAJ,cAAI,KAAJ,cAAI,QAOf;IAED,SAAgB,UAAU,CAAC,GAAc;QACvC,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,oBAAU,aAIzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAAc;QACnD,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,gCAAsB,yBAIrC,CAAA;AACH,CAAC,EApBgB,SAAS,GAAT,iBAAS,KAAT,iBAAS,QAoBzB"}
@@ -0,0 +1,29 @@
1
+ /**
2
+ * API Gateway API
3
+ * API for the API Gateway service. Use this API to manage gateways, deployments, and related items.
4
+ For more information, see
5
+ [Overview of API Gateway](/iaas/Content/APIGateway/Concepts/apigatewayoverview.htm).
6
+
7
+ * OpenAPI spec version: 20190501
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OracleSDKGenerator.
11
+ * Do not edit the class manually.
12
+ *
13
+ * Copyright (c) 2020, 2022, Oracle and/or its affiliates. All rights reserved.
14
+ * 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.
15
+ */
16
+ import * as model from "../model";
17
+ /**
18
+ * Collection of subscriber summaries.
19
+ */
20
+ export interface SubscriberCollection {
21
+ /**
22
+ * Subscriber summaries.
23
+ */
24
+ "items": Array<model.SubscriberSummary>;
25
+ }
26
+ export declare namespace SubscriberCollection {
27
+ function getJsonObj(obj: SubscriberCollection): object;
28
+ function getDeserializedJsonObj(obj: SubscriberCollection): object;
29
+ }
@@ -0,0 +1,64 @@
1
+ "use strict";
2
+ /**
3
+ * API Gateway API
4
+ * API for the API Gateway service. Use this API to manage gateways, deployments, and related items.
5
+ For more information, see
6
+ [Overview of API Gateway](/iaas/Content/APIGateway/Concepts/apigatewayoverview.htm).
7
+
8
+ * OpenAPI spec version: 20190501
9
+ *
10
+ *
11
+ * NOTE: This class is auto generated by OracleSDKGenerator.
12
+ * Do not edit the class manually.
13
+ *
14
+ * Copyright (c) 2020, 2022, Oracle and/or its affiliates. All rights reserved.
15
+ * 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.
16
+ */
17
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
18
+ if (k2 === undefined) k2 = k;
19
+ Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
20
+ }) : (function(o, m, k, k2) {
21
+ if (k2 === undefined) k2 = k;
22
+ o[k2] = m[k];
23
+ }));
24
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
25
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
26
+ }) : function(o, v) {
27
+ o["default"] = v;
28
+ });
29
+ var __importStar = (this && this.__importStar) || function (mod) {
30
+ if (mod && mod.__esModule) return mod;
31
+ var result = {};
32
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
33
+ __setModuleDefault(result, mod);
34
+ return result;
35
+ };
36
+ Object.defineProperty(exports, "__esModule", { value: true });
37
+ exports.SubscriberCollection = void 0;
38
+ const model = __importStar(require("../model"));
39
+ var SubscriberCollection;
40
+ (function (SubscriberCollection) {
41
+ function getJsonObj(obj) {
42
+ const jsonObj = Object.assign(Object.assign({}, obj), {
43
+ "items": obj.items
44
+ ? obj.items.map(item => {
45
+ return model.SubscriberSummary.getJsonObj(item);
46
+ })
47
+ : undefined
48
+ });
49
+ return jsonObj;
50
+ }
51
+ SubscriberCollection.getJsonObj = getJsonObj;
52
+ function getDeserializedJsonObj(obj) {
53
+ const jsonObj = Object.assign(Object.assign({}, obj), {
54
+ "items": obj.items
55
+ ? obj.items.map(item => {
56
+ return model.SubscriberSummary.getDeserializedJsonObj(item);
57
+ })
58
+ : undefined
59
+ });
60
+ return jsonObj;
61
+ }
62
+ SubscriberCollection.getDeserializedJsonObj = getDeserializedJsonObj;
63
+ })(SubscriberCollection = exports.SubscriberCollection || (exports.SubscriberCollection = {}));
64
+ //# sourceMappingURL=subscriber-collection.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"subscriber-collection.js","sourceRoot":"","sources":["../../../../../lib/apigateway/lib/model/subscriber-collection.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;GAcG;;;;;;;;;;;;;;;;;;;;;;AAEH,gDAAkC;AAalC,IAAiB,oBAAoB,CA6BpC;AA7BD,WAAiB,oBAAoB;IACnC,SAAgB,UAAU,CAAC,GAAyB;QAClD,MAAM,OAAO,mCACR,GAAG,GACH;YACD,OAAO,EAAE,GAAG,CAAC,KAAK;gBAChB,CAAC,CAAC,GAAG,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE;oBACnB,OAAO,KAAK,CAAC,iBAAiB,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;gBAClD,CAAC,CAAC;gBACJ,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAbe,+BAAU,aAazB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAAyB;QAC9D,MAAM,OAAO,mCACR,GAAG,GACH;YACD,OAAO,EAAE,GAAG,CAAC,KAAK;gBAChB,CAAC,CAAC,GAAG,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE;oBACnB,OAAO,KAAK,CAAC,iBAAiB,CAAC,sBAAsB,CAAC,IAAI,CAAC,CAAC;gBAC9D,CAAC,CAAC;gBACJ,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAbe,2CAAsB,yBAarC,CAAA;AACH,CAAC,EA7BgB,oBAAoB,GAApB,4BAAoB,KAApB,4BAAoB,QA6BpC"}