oci-apigateway 2.56.0 → 2.58.1
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.
- package/lib/client.d.ts +110 -50
- package/lib/client.js +188 -50
- package/lib/client.js.map +1 -1
- package/lib/request/cancel-work-request-request.d.ts +1 -1
- package/lib/request/change-api-compartment-request.d.ts +1 -1
- package/lib/request/change-certificate-compartment-request.d.ts +1 -1
- package/lib/request/change-deployment-compartment-request.d.ts +1 -1
- package/lib/request/change-gateway-compartment-request.d.ts +1 -1
- package/lib/request/change-subscriber-compartment-request.d.ts +1 -1
- package/lib/request/change-usage-plan-compartment-request.d.ts +1 -1
- package/lib/request/create-api-request.d.ts +1 -1
- package/lib/request/create-certificate-request.d.ts +1 -1
- package/lib/request/create-deployment-request.d.ts +1 -1
- package/lib/request/create-gateway-request.d.ts +1 -1
- package/lib/request/create-sdk-request.d.ts +1 -1
- package/lib/request/create-subscriber-request.d.ts +1 -1
- package/lib/request/create-usage-plan-request.d.ts +1 -1
- package/lib/request/delete-api-request.d.ts +1 -1
- package/lib/request/delete-certificate-request.d.ts +1 -1
- package/lib/request/delete-deployment-request.d.ts +1 -1
- package/lib/request/delete-gateway-request.d.ts +1 -1
- package/lib/request/delete-sdk-request.d.ts +1 -1
- package/lib/request/delete-subscriber-request.d.ts +1 -1
- package/lib/request/delete-usage-plan-request.d.ts +1 -1
- package/lib/request/get-api-content-request.d.ts +1 -1
- package/lib/request/get-api-deployment-specification-request.d.ts +1 -1
- package/lib/request/get-api-request.d.ts +1 -1
- package/lib/request/get-api-validations-request.d.ts +1 -1
- package/lib/request/get-certificate-request.d.ts +1 -1
- package/lib/request/get-deployment-request.d.ts +1 -1
- package/lib/request/get-gateway-request.d.ts +1 -1
- package/lib/request/get-sdk-request.d.ts +1 -1
- package/lib/request/get-subscriber-request.d.ts +1 -1
- package/lib/request/get-usage-plan-request.d.ts +1 -1
- package/lib/request/get-work-request-request.d.ts +1 -1
- package/lib/request/list-apis-request.d.ts +1 -1
- package/lib/request/list-certificates-request.d.ts +1 -1
- package/lib/request/list-deployments-request.d.ts +1 -1
- package/lib/request/list-gateways-request.d.ts +1 -1
- package/lib/request/list-sdk-language-types-request.d.ts +1 -1
- package/lib/request/list-sdks-request.d.ts +1 -1
- package/lib/request/list-subscribers-request.d.ts +1 -1
- package/lib/request/list-usage-plans-request.d.ts +1 -1
- package/lib/request/list-work-request-errors-request.d.ts +1 -1
- package/lib/request/list-work-request-logs-request.d.ts +1 -1
- package/lib/request/list-work-requests-request.d.ts +1 -1
- package/lib/request/update-api-request.d.ts +1 -1
- package/lib/request/update-certificate-request.d.ts +1 -1
- package/lib/request/update-deployment-request.d.ts +1 -1
- package/lib/request/update-gateway-request.d.ts +1 -1
- package/lib/request/update-sdk-request.d.ts +1 -1
- package/lib/request/update-subscriber-request.d.ts +1 -1
- package/lib/request/update-usage-plan-request.d.ts +1 -1
- package/package.json +3 -3
package/lib/client.d.ts
CHANGED
|
@@ -30,6 +30,7 @@ export declare enum ApiGatewayApiKeys {
|
|
|
30
30
|
export declare class ApiGatewayClient {
|
|
31
31
|
protected static serviceEndpointTemplate: string;
|
|
32
32
|
protected static endpointServiceName: string;
|
|
33
|
+
protected "_realmSpecificEndpointTemplateEnabled": boolean;
|
|
33
34
|
protected "_endpoint": string;
|
|
34
35
|
protected "_defaultHeaders": any;
|
|
35
36
|
protected "_waiters": ApiGatewayWaiter;
|
|
@@ -37,6 +38,9 @@ export declare class ApiGatewayClient {
|
|
|
37
38
|
protected _circuitBreaker: null;
|
|
38
39
|
protected _httpOptions: any;
|
|
39
40
|
targetService: string;
|
|
41
|
+
protected _regionId: string;
|
|
42
|
+
protected "_region": common.Region;
|
|
43
|
+
protected _lastSetRegionOrRegionId: string;
|
|
40
44
|
protected _httpClient: common.HttpClient;
|
|
41
45
|
constructor(params: common.AuthParams, clientConfiguration?: common.ClientConfiguration);
|
|
42
46
|
/**
|
|
@@ -49,6 +53,12 @@ export declare class ApiGatewayClient {
|
|
|
49
53
|
*/
|
|
50
54
|
set endpoint(endpoint: string);
|
|
51
55
|
get logger(): import("oci-common/lib/log").Logger;
|
|
56
|
+
/**
|
|
57
|
+
* Determines whether realm specific endpoint should be used or not.
|
|
58
|
+
* Set realmSpecificEndpointTemplateEnabled to "true" if the user wants to enable use of realm specific endpoint template, otherwise set it to "false"
|
|
59
|
+
* @param realmSpecificEndpointTemplateEnabled flag to enable the use of realm specific endpoint template
|
|
60
|
+
*/
|
|
61
|
+
set useRealmSpecificEndpointTemplate(realmSpecificEndpointTemplateEnabled: boolean);
|
|
52
62
|
/**
|
|
53
63
|
* Sets the region to call (ex, Region.US_PHOENIX_1).
|
|
54
64
|
* Note, this will call {@link #endpoint(String) endpoint} after resolving the endpoint.
|
|
@@ -83,7 +93,7 @@ export declare class ApiGatewayClient {
|
|
|
83
93
|
* @param ChangeApiCompartmentRequest
|
|
84
94
|
* @return ChangeApiCompartmentResponse
|
|
85
95
|
* @throws OciError when an error occurs
|
|
86
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
96
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/apigateway/ChangeApiCompartment.ts.html |here} to see how to use ChangeApiCompartment API.
|
|
87
97
|
*/
|
|
88
98
|
changeApiCompartment(changeApiCompartmentRequest: requests.ChangeApiCompartmentRequest): Promise<responses.ChangeApiCompartmentResponse>;
|
|
89
99
|
/**
|
|
@@ -92,7 +102,7 @@ export declare class ApiGatewayClient {
|
|
|
92
102
|
* @param ChangeCertificateCompartmentRequest
|
|
93
103
|
* @return ChangeCertificateCompartmentResponse
|
|
94
104
|
* @throws OciError when an error occurs
|
|
95
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
105
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/apigateway/ChangeCertificateCompartment.ts.html |here} to see how to use ChangeCertificateCompartment API.
|
|
96
106
|
*/
|
|
97
107
|
changeCertificateCompartment(changeCertificateCompartmentRequest: requests.ChangeCertificateCompartmentRequest): Promise<responses.ChangeCertificateCompartmentResponse>;
|
|
98
108
|
/**
|
|
@@ -102,7 +112,7 @@ export declare class ApiGatewayClient {
|
|
|
102
112
|
* @param CreateApiRequest
|
|
103
113
|
* @return CreateApiResponse
|
|
104
114
|
* @throws OciError when an error occurs
|
|
105
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
115
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/apigateway/CreateApi.ts.html |here} to see how to use CreateApi API.
|
|
106
116
|
*/
|
|
107
117
|
createApi(createApiRequest: requests.CreateApiRequest): Promise<responses.CreateApiResponse>;
|
|
108
118
|
/**
|
|
@@ -112,7 +122,7 @@ export declare class ApiGatewayClient {
|
|
|
112
122
|
* @param CreateCertificateRequest
|
|
113
123
|
* @return CreateCertificateResponse
|
|
114
124
|
* @throws OciError when an error occurs
|
|
115
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
125
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/apigateway/CreateCertificate.ts.html |here} to see how to use CreateCertificate API.
|
|
116
126
|
*/
|
|
117
127
|
createCertificate(createCertificateRequest: requests.CreateCertificateRequest): Promise<responses.CreateCertificateResponse>;
|
|
118
128
|
/**
|
|
@@ -121,7 +131,7 @@ export declare class ApiGatewayClient {
|
|
|
121
131
|
* @param CreateSdkRequest
|
|
122
132
|
* @return CreateSdkResponse
|
|
123
133
|
* @throws OciError when an error occurs
|
|
124
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
134
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/apigateway/CreateSdk.ts.html |here} to see how to use CreateSdk API.
|
|
125
135
|
*/
|
|
126
136
|
createSdk(createSdkRequest: requests.CreateSdkRequest): Promise<responses.CreateSdkResponse>;
|
|
127
137
|
/**
|
|
@@ -130,7 +140,7 @@ export declare class ApiGatewayClient {
|
|
|
130
140
|
* @param DeleteApiRequest
|
|
131
141
|
* @return DeleteApiResponse
|
|
132
142
|
* @throws OciError when an error occurs
|
|
133
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
143
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/apigateway/DeleteApi.ts.html |here} to see how to use DeleteApi API.
|
|
134
144
|
*/
|
|
135
145
|
deleteApi(deleteApiRequest: requests.DeleteApiRequest): Promise<responses.DeleteApiResponse>;
|
|
136
146
|
/**
|
|
@@ -139,7 +149,7 @@ export declare class ApiGatewayClient {
|
|
|
139
149
|
* @param DeleteCertificateRequest
|
|
140
150
|
* @return DeleteCertificateResponse
|
|
141
151
|
* @throws OciError when an error occurs
|
|
142
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
152
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/apigateway/DeleteCertificate.ts.html |here} to see how to use DeleteCertificate API.
|
|
143
153
|
*/
|
|
144
154
|
deleteCertificate(deleteCertificateRequest: requests.DeleteCertificateRequest): Promise<responses.DeleteCertificateResponse>;
|
|
145
155
|
/**
|
|
@@ -148,7 +158,7 @@ export declare class ApiGatewayClient {
|
|
|
148
158
|
* @param DeleteSdkRequest
|
|
149
159
|
* @return DeleteSdkResponse
|
|
150
160
|
* @throws OciError when an error occurs
|
|
151
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
161
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/apigateway/DeleteSdk.ts.html |here} to see how to use DeleteSdk API.
|
|
152
162
|
*/
|
|
153
163
|
deleteSdk(deleteSdkRequest: requests.DeleteSdkRequest): Promise<responses.DeleteSdkResponse>;
|
|
154
164
|
/**
|
|
@@ -157,7 +167,7 @@ export declare class ApiGatewayClient {
|
|
|
157
167
|
* @param GetApiRequest
|
|
158
168
|
* @return GetApiResponse
|
|
159
169
|
* @throws OciError when an error occurs
|
|
160
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
170
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/apigateway/GetApi.ts.html |here} to see how to use GetApi API.
|
|
161
171
|
*/
|
|
162
172
|
getApi(getApiRequest: requests.GetApiRequest): Promise<responses.GetApiResponse>;
|
|
163
173
|
/**
|
|
@@ -166,7 +176,7 @@ export declare class ApiGatewayClient {
|
|
|
166
176
|
* @param GetApiContentRequest
|
|
167
177
|
* @return GetApiContentResponse
|
|
168
178
|
* @throws OciError when an error occurs
|
|
169
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
179
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/apigateway/GetApiContent.ts.html |here} to see how to use GetApiContent API.
|
|
170
180
|
*/
|
|
171
181
|
getApiContent(getApiContentRequest: requests.GetApiContentRequest): Promise<responses.GetApiContentResponse>;
|
|
172
182
|
/**
|
|
@@ -175,7 +185,7 @@ export declare class ApiGatewayClient {
|
|
|
175
185
|
* @param GetApiDeploymentSpecificationRequest
|
|
176
186
|
* @return GetApiDeploymentSpecificationResponse
|
|
177
187
|
* @throws OciError when an error occurs
|
|
178
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
188
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/apigateway/GetApiDeploymentSpecification.ts.html |here} to see how to use GetApiDeploymentSpecification API.
|
|
179
189
|
*/
|
|
180
190
|
getApiDeploymentSpecification(getApiDeploymentSpecificationRequest: requests.GetApiDeploymentSpecificationRequest): Promise<responses.GetApiDeploymentSpecificationResponse>;
|
|
181
191
|
/**
|
|
@@ -184,7 +194,7 @@ export declare class ApiGatewayClient {
|
|
|
184
194
|
* @param GetApiValidationsRequest
|
|
185
195
|
* @return GetApiValidationsResponse
|
|
186
196
|
* @throws OciError when an error occurs
|
|
187
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
197
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/apigateway/GetApiValidations.ts.html |here} to see how to use GetApiValidations API.
|
|
188
198
|
*/
|
|
189
199
|
getApiValidations(getApiValidationsRequest: requests.GetApiValidationsRequest): Promise<responses.GetApiValidationsResponse>;
|
|
190
200
|
/**
|
|
@@ -193,7 +203,7 @@ export declare class ApiGatewayClient {
|
|
|
193
203
|
* @param GetCertificateRequest
|
|
194
204
|
* @return GetCertificateResponse
|
|
195
205
|
* @throws OciError when an error occurs
|
|
196
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
206
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/apigateway/GetCertificate.ts.html |here} to see how to use GetCertificate API.
|
|
197
207
|
*/
|
|
198
208
|
getCertificate(getCertificateRequest: requests.GetCertificateRequest): Promise<responses.GetCertificateResponse>;
|
|
199
209
|
/**
|
|
@@ -202,7 +212,7 @@ export declare class ApiGatewayClient {
|
|
|
202
212
|
* @param GetSdkRequest
|
|
203
213
|
* @return GetSdkResponse
|
|
204
214
|
* @throws OciError when an error occurs
|
|
205
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
215
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/apigateway/GetSdk.ts.html |here} to see how to use GetSdk API.
|
|
206
216
|
*/
|
|
207
217
|
getSdk(getSdkRequest: requests.GetSdkRequest): Promise<responses.GetSdkResponse>;
|
|
208
218
|
/**
|
|
@@ -212,7 +222,7 @@ export declare class ApiGatewayClient {
|
|
|
212
222
|
* @param ListApisRequest
|
|
213
223
|
* @return ListApisResponse
|
|
214
224
|
* @throws OciError when an error occurs
|
|
215
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
225
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/apigateway/ListApis.ts.html |here} to see how to use ListApis API.
|
|
216
226
|
*/
|
|
217
227
|
listApis(listApisRequest: requests.ListApisRequest): Promise<responses.ListApisResponse>;
|
|
218
228
|
/**
|
|
@@ -222,7 +232,7 @@ export declare class ApiGatewayClient {
|
|
|
222
232
|
* @param ListCertificatesRequest
|
|
223
233
|
* @return ListCertificatesResponse
|
|
224
234
|
* @throws OciError when an error occurs
|
|
225
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
235
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/apigateway/ListCertificates.ts.html |here} to see how to use ListCertificates API.
|
|
226
236
|
*/
|
|
227
237
|
listCertificates(listCertificatesRequest: requests.ListCertificatesRequest): Promise<responses.ListCertificatesResponse>;
|
|
228
238
|
/**
|
|
@@ -231,7 +241,7 @@ export declare class ApiGatewayClient {
|
|
|
231
241
|
* @param ListSdkLanguageTypesRequest
|
|
232
242
|
* @return ListSdkLanguageTypesResponse
|
|
233
243
|
* @throws OciError when an error occurs
|
|
234
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
244
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/apigateway/ListSdkLanguageTypes.ts.html |here} to see how to use ListSdkLanguageTypes API.
|
|
235
245
|
*/
|
|
236
246
|
listSdkLanguageTypes(listSdkLanguageTypesRequest: requests.ListSdkLanguageTypesRequest): Promise<responses.ListSdkLanguageTypesResponse>;
|
|
237
247
|
/**
|
|
@@ -240,7 +250,7 @@ export declare class ApiGatewayClient {
|
|
|
240
250
|
* @param ListSdksRequest
|
|
241
251
|
* @return ListSdksResponse
|
|
242
252
|
* @throws OciError when an error occurs
|
|
243
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
253
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/apigateway/ListSdks.ts.html |here} to see how to use ListSdks API.
|
|
244
254
|
*/
|
|
245
255
|
listSdks(listSdksRequest: requests.ListSdksRequest): Promise<responses.ListSdksResponse>;
|
|
246
256
|
/**
|
|
@@ -249,7 +259,7 @@ export declare class ApiGatewayClient {
|
|
|
249
259
|
* @param UpdateApiRequest
|
|
250
260
|
* @return UpdateApiResponse
|
|
251
261
|
* @throws OciError when an error occurs
|
|
252
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
262
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/apigateway/UpdateApi.ts.html |here} to see how to use UpdateApi API.
|
|
253
263
|
*/
|
|
254
264
|
updateApi(updateApiRequest: requests.UpdateApiRequest): Promise<responses.UpdateApiResponse>;
|
|
255
265
|
/**
|
|
@@ -258,7 +268,7 @@ export declare class ApiGatewayClient {
|
|
|
258
268
|
* @param UpdateCertificateRequest
|
|
259
269
|
* @return UpdateCertificateResponse
|
|
260
270
|
* @throws OciError when an error occurs
|
|
261
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
271
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/apigateway/UpdateCertificate.ts.html |here} to see how to use UpdateCertificate API.
|
|
262
272
|
*/
|
|
263
273
|
updateCertificate(updateCertificateRequest: requests.UpdateCertificateRequest): Promise<responses.UpdateCertificateResponse>;
|
|
264
274
|
/**
|
|
@@ -267,7 +277,7 @@ export declare class ApiGatewayClient {
|
|
|
267
277
|
* @param UpdateSdkRequest
|
|
268
278
|
* @return UpdateSdkResponse
|
|
269
279
|
* @throws OciError when an error occurs
|
|
270
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
280
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/apigateway/UpdateSdk.ts.html |here} to see how to use UpdateSdk API.
|
|
271
281
|
*/
|
|
272
282
|
updateSdk(updateSdkRequest: requests.UpdateSdkRequest): Promise<responses.UpdateSdkResponse>;
|
|
273
283
|
}
|
|
@@ -279,6 +289,7 @@ export declare enum DeploymentApiKeys {
|
|
|
279
289
|
export declare class DeploymentClient {
|
|
280
290
|
protected static serviceEndpointTemplate: string;
|
|
281
291
|
protected static endpointServiceName: string;
|
|
292
|
+
protected "_realmSpecificEndpointTemplateEnabled": boolean;
|
|
282
293
|
protected "_endpoint": string;
|
|
283
294
|
protected "_defaultHeaders": any;
|
|
284
295
|
protected "_waiters": DeploymentWaiter;
|
|
@@ -286,6 +297,9 @@ export declare class DeploymentClient {
|
|
|
286
297
|
protected _circuitBreaker: null;
|
|
287
298
|
protected _httpOptions: any;
|
|
288
299
|
targetService: string;
|
|
300
|
+
protected _regionId: string;
|
|
301
|
+
protected "_region": common.Region;
|
|
302
|
+
protected _lastSetRegionOrRegionId: string;
|
|
289
303
|
protected _httpClient: common.HttpClient;
|
|
290
304
|
constructor(params: common.AuthParams, clientConfiguration?: common.ClientConfiguration);
|
|
291
305
|
/**
|
|
@@ -298,6 +312,12 @@ export declare class DeploymentClient {
|
|
|
298
312
|
*/
|
|
299
313
|
set endpoint(endpoint: string);
|
|
300
314
|
get logger(): import("oci-common/lib/log").Logger;
|
|
315
|
+
/**
|
|
316
|
+
* Determines whether realm specific endpoint should be used or not.
|
|
317
|
+
* Set realmSpecificEndpointTemplateEnabled to "true" if the user wants to enable use of realm specific endpoint template, otherwise set it to "false"
|
|
318
|
+
* @param realmSpecificEndpointTemplateEnabled flag to enable the use of realm specific endpoint template
|
|
319
|
+
*/
|
|
320
|
+
set useRealmSpecificEndpointTemplate(realmSpecificEndpointTemplateEnabled: boolean);
|
|
301
321
|
/**
|
|
302
322
|
* Sets the region to call (ex, Region.US_PHOENIX_1).
|
|
303
323
|
* Note, this will call {@link #endpoint(String) endpoint} after resolving the endpoint.
|
|
@@ -332,7 +352,7 @@ export declare class DeploymentClient {
|
|
|
332
352
|
* @param ChangeDeploymentCompartmentRequest
|
|
333
353
|
* @return ChangeDeploymentCompartmentResponse
|
|
334
354
|
* @throws OciError when an error occurs
|
|
335
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
355
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/apigateway/ChangeDeploymentCompartment.ts.html |here} to see how to use ChangeDeploymentCompartment API.
|
|
336
356
|
*/
|
|
337
357
|
changeDeploymentCompartment(changeDeploymentCompartmentRequest: requests.ChangeDeploymentCompartmentRequest): Promise<responses.ChangeDeploymentCompartmentResponse>;
|
|
338
358
|
/**
|
|
@@ -342,7 +362,7 @@ export declare class DeploymentClient {
|
|
|
342
362
|
* @param CreateDeploymentRequest
|
|
343
363
|
* @return CreateDeploymentResponse
|
|
344
364
|
* @throws OciError when an error occurs
|
|
345
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
365
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/apigateway/CreateDeployment.ts.html |here} to see how to use CreateDeployment API.
|
|
346
366
|
*/
|
|
347
367
|
createDeployment(createDeploymentRequest: requests.CreateDeploymentRequest): Promise<responses.CreateDeploymentResponse>;
|
|
348
368
|
/**
|
|
@@ -351,7 +371,7 @@ export declare class DeploymentClient {
|
|
|
351
371
|
* @param DeleteDeploymentRequest
|
|
352
372
|
* @return DeleteDeploymentResponse
|
|
353
373
|
* @throws OciError when an error occurs
|
|
354
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
374
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/apigateway/DeleteDeployment.ts.html |here} to see how to use DeleteDeployment API.
|
|
355
375
|
*/
|
|
356
376
|
deleteDeployment(deleteDeploymentRequest: requests.DeleteDeploymentRequest): Promise<responses.DeleteDeploymentResponse>;
|
|
357
377
|
/**
|
|
@@ -360,7 +380,7 @@ export declare class DeploymentClient {
|
|
|
360
380
|
* @param GetDeploymentRequest
|
|
361
381
|
* @return GetDeploymentResponse
|
|
362
382
|
* @throws OciError when an error occurs
|
|
363
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
383
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/apigateway/GetDeployment.ts.html |here} to see how to use GetDeployment API.
|
|
364
384
|
*/
|
|
365
385
|
getDeployment(getDeploymentRequest: requests.GetDeploymentRequest): Promise<responses.GetDeploymentResponse>;
|
|
366
386
|
/**
|
|
@@ -370,7 +390,7 @@ export declare class DeploymentClient {
|
|
|
370
390
|
* @param ListDeploymentsRequest
|
|
371
391
|
* @return ListDeploymentsResponse
|
|
372
392
|
* @throws OciError when an error occurs
|
|
373
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
393
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/apigateway/ListDeployments.ts.html |here} to see how to use ListDeployments API.
|
|
374
394
|
*/
|
|
375
395
|
listDeployments(listDeploymentsRequest: requests.ListDeploymentsRequest): Promise<responses.ListDeploymentsResponse>;
|
|
376
396
|
/**
|
|
@@ -379,7 +399,7 @@ export declare class DeploymentClient {
|
|
|
379
399
|
* @param UpdateDeploymentRequest
|
|
380
400
|
* @return UpdateDeploymentResponse
|
|
381
401
|
* @throws OciError when an error occurs
|
|
382
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
402
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/apigateway/UpdateDeployment.ts.html |here} to see how to use UpdateDeployment API.
|
|
383
403
|
*/
|
|
384
404
|
updateDeployment(updateDeploymentRequest: requests.UpdateDeploymentRequest): Promise<responses.UpdateDeploymentResponse>;
|
|
385
405
|
}
|
|
@@ -391,6 +411,7 @@ export declare enum GatewayApiKeys {
|
|
|
391
411
|
export declare class GatewayClient {
|
|
392
412
|
protected static serviceEndpointTemplate: string;
|
|
393
413
|
protected static endpointServiceName: string;
|
|
414
|
+
protected "_realmSpecificEndpointTemplateEnabled": boolean;
|
|
394
415
|
protected "_endpoint": string;
|
|
395
416
|
protected "_defaultHeaders": any;
|
|
396
417
|
protected "_waiters": GatewayWaiter;
|
|
@@ -398,6 +419,9 @@ export declare class GatewayClient {
|
|
|
398
419
|
protected _circuitBreaker: null;
|
|
399
420
|
protected _httpOptions: any;
|
|
400
421
|
targetService: string;
|
|
422
|
+
protected _regionId: string;
|
|
423
|
+
protected "_region": common.Region;
|
|
424
|
+
protected _lastSetRegionOrRegionId: string;
|
|
401
425
|
protected _httpClient: common.HttpClient;
|
|
402
426
|
constructor(params: common.AuthParams, clientConfiguration?: common.ClientConfiguration);
|
|
403
427
|
/**
|
|
@@ -410,6 +434,12 @@ export declare class GatewayClient {
|
|
|
410
434
|
*/
|
|
411
435
|
set endpoint(endpoint: string);
|
|
412
436
|
get logger(): import("oci-common/lib/log").Logger;
|
|
437
|
+
/**
|
|
438
|
+
* Determines whether realm specific endpoint should be used or not.
|
|
439
|
+
* Set realmSpecificEndpointTemplateEnabled to "true" if the user wants to enable use of realm specific endpoint template, otherwise set it to "false"
|
|
440
|
+
* @param realmSpecificEndpointTemplateEnabled flag to enable the use of realm specific endpoint template
|
|
441
|
+
*/
|
|
442
|
+
set useRealmSpecificEndpointTemplate(realmSpecificEndpointTemplateEnabled: boolean);
|
|
413
443
|
/**
|
|
414
444
|
* Sets the region to call (ex, Region.US_PHOENIX_1).
|
|
415
445
|
* Note, this will call {@link #endpoint(String) endpoint} after resolving the endpoint.
|
|
@@ -444,7 +474,7 @@ export declare class GatewayClient {
|
|
|
444
474
|
* @param ChangeGatewayCompartmentRequest
|
|
445
475
|
* @return ChangeGatewayCompartmentResponse
|
|
446
476
|
* @throws OciError when an error occurs
|
|
447
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
477
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/apigateway/ChangeGatewayCompartment.ts.html |here} to see how to use ChangeGatewayCompartment API.
|
|
448
478
|
*/
|
|
449
479
|
changeGatewayCompartment(changeGatewayCompartmentRequest: requests.ChangeGatewayCompartmentRequest): Promise<responses.ChangeGatewayCompartmentResponse>;
|
|
450
480
|
/**
|
|
@@ -454,7 +484,7 @@ export declare class GatewayClient {
|
|
|
454
484
|
* @param CreateGatewayRequest
|
|
455
485
|
* @return CreateGatewayResponse
|
|
456
486
|
* @throws OciError when an error occurs
|
|
457
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
487
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/apigateway/CreateGateway.ts.html |here} to see how to use CreateGateway API.
|
|
458
488
|
*/
|
|
459
489
|
createGateway(createGatewayRequest: requests.CreateGatewayRequest): Promise<responses.CreateGatewayResponse>;
|
|
460
490
|
/**
|
|
@@ -463,7 +493,7 @@ export declare class GatewayClient {
|
|
|
463
493
|
* @param DeleteGatewayRequest
|
|
464
494
|
* @return DeleteGatewayResponse
|
|
465
495
|
* @throws OciError when an error occurs
|
|
466
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
496
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/apigateway/DeleteGateway.ts.html |here} to see how to use DeleteGateway API.
|
|
467
497
|
*/
|
|
468
498
|
deleteGateway(deleteGatewayRequest: requests.DeleteGatewayRequest): Promise<responses.DeleteGatewayResponse>;
|
|
469
499
|
/**
|
|
@@ -472,7 +502,7 @@ export declare class GatewayClient {
|
|
|
472
502
|
* @param GetGatewayRequest
|
|
473
503
|
* @return GetGatewayResponse
|
|
474
504
|
* @throws OciError when an error occurs
|
|
475
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
505
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/apigateway/GetGateway.ts.html |here} to see how to use GetGateway API.
|
|
476
506
|
*/
|
|
477
507
|
getGateway(getGatewayRequest: requests.GetGatewayRequest): Promise<responses.GetGatewayResponse>;
|
|
478
508
|
/**
|
|
@@ -482,7 +512,7 @@ export declare class GatewayClient {
|
|
|
482
512
|
* @param ListGatewaysRequest
|
|
483
513
|
* @return ListGatewaysResponse
|
|
484
514
|
* @throws OciError when an error occurs
|
|
485
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
515
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/apigateway/ListGateways.ts.html |here} to see how to use ListGateways API.
|
|
486
516
|
*/
|
|
487
517
|
listGateways(listGatewaysRequest: requests.ListGatewaysRequest): Promise<responses.ListGatewaysResponse>;
|
|
488
518
|
/**
|
|
@@ -491,7 +521,7 @@ export declare class GatewayClient {
|
|
|
491
521
|
* @param UpdateGatewayRequest
|
|
492
522
|
* @return UpdateGatewayResponse
|
|
493
523
|
* @throws OciError when an error occurs
|
|
494
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
524
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/apigateway/UpdateGateway.ts.html |here} to see how to use UpdateGateway API.
|
|
495
525
|
*/
|
|
496
526
|
updateGateway(updateGatewayRequest: requests.UpdateGatewayRequest): Promise<responses.UpdateGatewayResponse>;
|
|
497
527
|
}
|
|
@@ -503,6 +533,7 @@ export declare enum SubscribersApiKeys {
|
|
|
503
533
|
export declare class SubscribersClient {
|
|
504
534
|
protected static serviceEndpointTemplate: string;
|
|
505
535
|
protected static endpointServiceName: string;
|
|
536
|
+
protected "_realmSpecificEndpointTemplateEnabled": boolean;
|
|
506
537
|
protected "_endpoint": string;
|
|
507
538
|
protected "_defaultHeaders": any;
|
|
508
539
|
protected "_waiters": SubscribersWaiter;
|
|
@@ -510,6 +541,9 @@ export declare class SubscribersClient {
|
|
|
510
541
|
protected _circuitBreaker: null;
|
|
511
542
|
protected _httpOptions: any;
|
|
512
543
|
targetService: string;
|
|
544
|
+
protected _regionId: string;
|
|
545
|
+
protected "_region": common.Region;
|
|
546
|
+
protected _lastSetRegionOrRegionId: string;
|
|
513
547
|
protected _httpClient: common.HttpClient;
|
|
514
548
|
constructor(params: common.AuthParams, clientConfiguration?: common.ClientConfiguration);
|
|
515
549
|
/**
|
|
@@ -522,6 +556,12 @@ export declare class SubscribersClient {
|
|
|
522
556
|
*/
|
|
523
557
|
set endpoint(endpoint: string);
|
|
524
558
|
get logger(): import("oci-common/lib/log").Logger;
|
|
559
|
+
/**
|
|
560
|
+
* Determines whether realm specific endpoint should be used or not.
|
|
561
|
+
* Set realmSpecificEndpointTemplateEnabled to "true" if the user wants to enable use of realm specific endpoint template, otherwise set it to "false"
|
|
562
|
+
* @param realmSpecificEndpointTemplateEnabled flag to enable the use of realm specific endpoint template
|
|
563
|
+
*/
|
|
564
|
+
set useRealmSpecificEndpointTemplate(realmSpecificEndpointTemplateEnabled: boolean);
|
|
525
565
|
/**
|
|
526
566
|
* Sets the region to call (ex, Region.US_PHOENIX_1).
|
|
527
567
|
* Note, this will call {@link #endpoint(String) endpoint} after resolving the endpoint.
|
|
@@ -556,7 +596,7 @@ export declare class SubscribersClient {
|
|
|
556
596
|
* @param ChangeSubscriberCompartmentRequest
|
|
557
597
|
* @return ChangeSubscriberCompartmentResponse
|
|
558
598
|
* @throws OciError when an error occurs
|
|
559
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
599
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/apigateway/ChangeSubscriberCompartment.ts.html |here} to see how to use ChangeSubscriberCompartment API.
|
|
560
600
|
*/
|
|
561
601
|
changeSubscriberCompartment(changeSubscriberCompartmentRequest: requests.ChangeSubscriberCompartmentRequest): Promise<responses.ChangeSubscriberCompartmentResponse>;
|
|
562
602
|
/**
|
|
@@ -565,7 +605,7 @@ export declare class SubscribersClient {
|
|
|
565
605
|
* @param CreateSubscriberRequest
|
|
566
606
|
* @return CreateSubscriberResponse
|
|
567
607
|
* @throws OciError when an error occurs
|
|
568
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
608
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/apigateway/CreateSubscriber.ts.html |here} to see how to use CreateSubscriber API.
|
|
569
609
|
*/
|
|
570
610
|
createSubscriber(createSubscriberRequest: requests.CreateSubscriberRequest): Promise<responses.CreateSubscriberResponse>;
|
|
571
611
|
/**
|
|
@@ -574,7 +614,7 @@ export declare class SubscribersClient {
|
|
|
574
614
|
* @param DeleteSubscriberRequest
|
|
575
615
|
* @return DeleteSubscriberResponse
|
|
576
616
|
* @throws OciError when an error occurs
|
|
577
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
617
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/apigateway/DeleteSubscriber.ts.html |here} to see how to use DeleteSubscriber API.
|
|
578
618
|
*/
|
|
579
619
|
deleteSubscriber(deleteSubscriberRequest: requests.DeleteSubscriberRequest): Promise<responses.DeleteSubscriberResponse>;
|
|
580
620
|
/**
|
|
@@ -583,7 +623,7 @@ export declare class SubscribersClient {
|
|
|
583
623
|
* @param GetSubscriberRequest
|
|
584
624
|
* @return GetSubscriberResponse
|
|
585
625
|
* @throws OciError when an error occurs
|
|
586
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
626
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/apigateway/GetSubscriber.ts.html |here} to see how to use GetSubscriber API.
|
|
587
627
|
*/
|
|
588
628
|
getSubscriber(getSubscriberRequest: requests.GetSubscriberRequest): Promise<responses.GetSubscriberResponse>;
|
|
589
629
|
/**
|
|
@@ -592,7 +632,7 @@ export declare class SubscribersClient {
|
|
|
592
632
|
* @param ListSubscribersRequest
|
|
593
633
|
* @return ListSubscribersResponse
|
|
594
634
|
* @throws OciError when an error occurs
|
|
595
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
635
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/apigateway/ListSubscribers.ts.html |here} to see how to use ListSubscribers API.
|
|
596
636
|
*/
|
|
597
637
|
listSubscribers(listSubscribersRequest: requests.ListSubscribersRequest): Promise<responses.ListSubscribersResponse>;
|
|
598
638
|
/**
|
|
@@ -601,7 +641,7 @@ export declare class SubscribersClient {
|
|
|
601
641
|
* @param UpdateSubscriberRequest
|
|
602
642
|
* @return UpdateSubscriberResponse
|
|
603
643
|
* @throws OciError when an error occurs
|
|
604
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
644
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/apigateway/UpdateSubscriber.ts.html |here} to see how to use UpdateSubscriber API.
|
|
605
645
|
*/
|
|
606
646
|
updateSubscriber(updateSubscriberRequest: requests.UpdateSubscriberRequest): Promise<responses.UpdateSubscriberResponse>;
|
|
607
647
|
}
|
|
@@ -613,6 +653,7 @@ export declare enum UsagePlansApiKeys {
|
|
|
613
653
|
export declare class UsagePlansClient {
|
|
614
654
|
protected static serviceEndpointTemplate: string;
|
|
615
655
|
protected static endpointServiceName: string;
|
|
656
|
+
protected "_realmSpecificEndpointTemplateEnabled": boolean;
|
|
616
657
|
protected "_endpoint": string;
|
|
617
658
|
protected "_defaultHeaders": any;
|
|
618
659
|
protected "_waiters": UsagePlansWaiter;
|
|
@@ -620,6 +661,9 @@ export declare class UsagePlansClient {
|
|
|
620
661
|
protected _circuitBreaker: null;
|
|
621
662
|
protected _httpOptions: any;
|
|
622
663
|
targetService: string;
|
|
664
|
+
protected _regionId: string;
|
|
665
|
+
protected "_region": common.Region;
|
|
666
|
+
protected _lastSetRegionOrRegionId: string;
|
|
623
667
|
protected _httpClient: common.HttpClient;
|
|
624
668
|
constructor(params: common.AuthParams, clientConfiguration?: common.ClientConfiguration);
|
|
625
669
|
/**
|
|
@@ -632,6 +676,12 @@ export declare class UsagePlansClient {
|
|
|
632
676
|
*/
|
|
633
677
|
set endpoint(endpoint: string);
|
|
634
678
|
get logger(): import("oci-common/lib/log").Logger;
|
|
679
|
+
/**
|
|
680
|
+
* Determines whether realm specific endpoint should be used or not.
|
|
681
|
+
* Set realmSpecificEndpointTemplateEnabled to "true" if the user wants to enable use of realm specific endpoint template, otherwise set it to "false"
|
|
682
|
+
* @param realmSpecificEndpointTemplateEnabled flag to enable the use of realm specific endpoint template
|
|
683
|
+
*/
|
|
684
|
+
set useRealmSpecificEndpointTemplate(realmSpecificEndpointTemplateEnabled: boolean);
|
|
635
685
|
/**
|
|
636
686
|
* Sets the region to call (ex, Region.US_PHOENIX_1).
|
|
637
687
|
* Note, this will call {@link #endpoint(String) endpoint} after resolving the endpoint.
|
|
@@ -666,7 +716,7 @@ export declare class UsagePlansClient {
|
|
|
666
716
|
* @param ChangeUsagePlanCompartmentRequest
|
|
667
717
|
* @return ChangeUsagePlanCompartmentResponse
|
|
668
718
|
* @throws OciError when an error occurs
|
|
669
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
719
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/apigateway/ChangeUsagePlanCompartment.ts.html |here} to see how to use ChangeUsagePlanCompartment API.
|
|
670
720
|
*/
|
|
671
721
|
changeUsagePlanCompartment(changeUsagePlanCompartmentRequest: requests.ChangeUsagePlanCompartmentRequest): Promise<responses.ChangeUsagePlanCompartmentResponse>;
|
|
672
722
|
/**
|
|
@@ -675,7 +725,7 @@ export declare class UsagePlansClient {
|
|
|
675
725
|
* @param CreateUsagePlanRequest
|
|
676
726
|
* @return CreateUsagePlanResponse
|
|
677
727
|
* @throws OciError when an error occurs
|
|
678
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
728
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/apigateway/CreateUsagePlan.ts.html |here} to see how to use CreateUsagePlan API.
|
|
679
729
|
*/
|
|
680
730
|
createUsagePlan(createUsagePlanRequest: requests.CreateUsagePlanRequest): Promise<responses.CreateUsagePlanResponse>;
|
|
681
731
|
/**
|
|
@@ -684,7 +734,7 @@ export declare class UsagePlansClient {
|
|
|
684
734
|
* @param DeleteUsagePlanRequest
|
|
685
735
|
* @return DeleteUsagePlanResponse
|
|
686
736
|
* @throws OciError when an error occurs
|
|
687
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
737
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/apigateway/DeleteUsagePlan.ts.html |here} to see how to use DeleteUsagePlan API.
|
|
688
738
|
*/
|
|
689
739
|
deleteUsagePlan(deleteUsagePlanRequest: requests.DeleteUsagePlanRequest): Promise<responses.DeleteUsagePlanResponse>;
|
|
690
740
|
/**
|
|
@@ -693,7 +743,7 @@ export declare class UsagePlansClient {
|
|
|
693
743
|
* @param GetUsagePlanRequest
|
|
694
744
|
* @return GetUsagePlanResponse
|
|
695
745
|
* @throws OciError when an error occurs
|
|
696
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
746
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/apigateway/GetUsagePlan.ts.html |here} to see how to use GetUsagePlan API.
|
|
697
747
|
*/
|
|
698
748
|
getUsagePlan(getUsagePlanRequest: requests.GetUsagePlanRequest): Promise<responses.GetUsagePlanResponse>;
|
|
699
749
|
/**
|
|
@@ -702,7 +752,7 @@ export declare class UsagePlansClient {
|
|
|
702
752
|
* @param ListUsagePlansRequest
|
|
703
753
|
* @return ListUsagePlansResponse
|
|
704
754
|
* @throws OciError when an error occurs
|
|
705
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
755
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/apigateway/ListUsagePlans.ts.html |here} to see how to use ListUsagePlans API.
|
|
706
756
|
*/
|
|
707
757
|
listUsagePlans(listUsagePlansRequest: requests.ListUsagePlansRequest): Promise<responses.ListUsagePlansResponse>;
|
|
708
758
|
/**
|
|
@@ -711,7 +761,7 @@ export declare class UsagePlansClient {
|
|
|
711
761
|
* @param UpdateUsagePlanRequest
|
|
712
762
|
* @return UpdateUsagePlanResponse
|
|
713
763
|
* @throws OciError when an error occurs
|
|
714
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
764
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/apigateway/UpdateUsagePlan.ts.html |here} to see how to use UpdateUsagePlan API.
|
|
715
765
|
*/
|
|
716
766
|
updateUsagePlan(updateUsagePlanRequest: requests.UpdateUsagePlanRequest): Promise<responses.UpdateUsagePlanResponse>;
|
|
717
767
|
}
|
|
@@ -723,6 +773,7 @@ export declare enum WorkRequestsApiKeys {
|
|
|
723
773
|
export declare class WorkRequestsClient {
|
|
724
774
|
protected static serviceEndpointTemplate: string;
|
|
725
775
|
protected static endpointServiceName: string;
|
|
776
|
+
protected "_realmSpecificEndpointTemplateEnabled": boolean;
|
|
726
777
|
protected "_endpoint": string;
|
|
727
778
|
protected "_defaultHeaders": any;
|
|
728
779
|
protected "_waiters": WorkRequestsWaiter;
|
|
@@ -730,6 +781,9 @@ export declare class WorkRequestsClient {
|
|
|
730
781
|
protected _circuitBreaker: null;
|
|
731
782
|
protected _httpOptions: any;
|
|
732
783
|
targetService: string;
|
|
784
|
+
protected _regionId: string;
|
|
785
|
+
protected "_region": common.Region;
|
|
786
|
+
protected _lastSetRegionOrRegionId: string;
|
|
733
787
|
protected _httpClient: common.HttpClient;
|
|
734
788
|
constructor(params: common.AuthParams, clientConfiguration?: common.ClientConfiguration);
|
|
735
789
|
/**
|
|
@@ -742,6 +796,12 @@ export declare class WorkRequestsClient {
|
|
|
742
796
|
*/
|
|
743
797
|
set endpoint(endpoint: string);
|
|
744
798
|
get logger(): import("oci-common/lib/log").Logger;
|
|
799
|
+
/**
|
|
800
|
+
* Determines whether realm specific endpoint should be used or not.
|
|
801
|
+
* Set realmSpecificEndpointTemplateEnabled to "true" if the user wants to enable use of realm specific endpoint template, otherwise set it to "false"
|
|
802
|
+
* @param realmSpecificEndpointTemplateEnabled flag to enable the use of realm specific endpoint template
|
|
803
|
+
*/
|
|
804
|
+
set useRealmSpecificEndpointTemplate(realmSpecificEndpointTemplateEnabled: boolean);
|
|
745
805
|
/**
|
|
746
806
|
* Sets the region to call (ex, Region.US_PHOENIX_1).
|
|
747
807
|
* Note, this will call {@link #endpoint(String) endpoint} after resolving the endpoint.
|
|
@@ -776,7 +836,7 @@ export declare class WorkRequestsClient {
|
|
|
776
836
|
* @param CancelWorkRequestRequest
|
|
777
837
|
* @return CancelWorkRequestResponse
|
|
778
838
|
* @throws OciError when an error occurs
|
|
779
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
839
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/apigateway/CancelWorkRequest.ts.html |here} to see how to use CancelWorkRequest API.
|
|
780
840
|
*/
|
|
781
841
|
cancelWorkRequest(cancelWorkRequestRequest: requests.CancelWorkRequestRequest): Promise<responses.CancelWorkRequestResponse>;
|
|
782
842
|
/**
|
|
@@ -785,7 +845,7 @@ export declare class WorkRequestsClient {
|
|
|
785
845
|
* @param GetWorkRequestRequest
|
|
786
846
|
* @return GetWorkRequestResponse
|
|
787
847
|
* @throws OciError when an error occurs
|
|
788
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
848
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/apigateway/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
|
|
789
849
|
*/
|
|
790
850
|
getWorkRequest(getWorkRequestRequest: requests.GetWorkRequestRequest): Promise<responses.GetWorkRequestResponse>;
|
|
791
851
|
/**
|
|
@@ -795,7 +855,7 @@ export declare class WorkRequestsClient {
|
|
|
795
855
|
* @param ListWorkRequestErrorsRequest
|
|
796
856
|
* @return ListWorkRequestErrorsResponse
|
|
797
857
|
* @throws OciError when an error occurs
|
|
798
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
858
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/apigateway/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
|
|
799
859
|
*/
|
|
800
860
|
listWorkRequestErrors(listWorkRequestErrorsRequest: requests.ListWorkRequestErrorsRequest): Promise<responses.ListWorkRequestErrorsResponse>;
|
|
801
861
|
/**
|
|
@@ -805,7 +865,7 @@ export declare class WorkRequestsClient {
|
|
|
805
865
|
* @param ListWorkRequestLogsRequest
|
|
806
866
|
* @return ListWorkRequestLogsResponse
|
|
807
867
|
* @throws OciError when an error occurs
|
|
808
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
868
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/apigateway/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
|
|
809
869
|
*/
|
|
810
870
|
listWorkRequestLogs(listWorkRequestLogsRequest: requests.ListWorkRequestLogsRequest): Promise<responses.ListWorkRequestLogsResponse>;
|
|
811
871
|
/**
|
|
@@ -815,7 +875,7 @@ export declare class WorkRequestsClient {
|
|
|
815
875
|
* @param ListWorkRequestsRequest
|
|
816
876
|
* @return ListWorkRequestsResponse
|
|
817
877
|
* @throws OciError when an error occurs
|
|
818
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
878
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/apigateway/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
|
|
819
879
|
*/
|
|
820
880
|
listWorkRequests(listWorkRequestsRequest: requests.ListWorkRequestsRequest): Promise<responses.ListWorkRequestsResponse>;
|
|
821
881
|
}
|