Socket
Socket
Sign inDemoInstall

oci-apigateway

Package Overview
Dependencies
Maintainers
2
Versions
191
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

oci-apigateway - npm Package Compare versions

Comparing version 1.5.2 to 1.5.3

lib/model/api-specification-route-response-policies.d.ts

21

lib/client.d.ts

@@ -33,5 +33,8 @@ /**

/**
* Sets the endpoint to call (ex, https://www.example.com).
* @param endpoint The endpoint of the service.
* Get the endpoint that is being used to call (ex, https://www.example.com).
*/
/**
* Sets the endpoint to call (ex, https://www.example.com).
* @param endpoint The endpoint of the service.
*/
endpoint: string;

@@ -127,5 +130,8 @@ readonly logger: import("oci-common/lib/log").Logger;

/**
* Sets the endpoint to call (ex, https://www.example.com).
* @param endpoint The endpoint of the service.
* Get the endpoint that is being used to call (ex, https://www.example.com).
*/
/**
* Sets the endpoint to call (ex, https://www.example.com).
* @param endpoint The endpoint of the service.
*/
endpoint: string;

@@ -221,5 +227,8 @@ readonly logger: import("oci-common/lib/log").Logger;

/**
* Sets the endpoint to call (ex, https://www.example.com).
* @param endpoint The endpoint of the service.
* Get the endpoint that is being used to call (ex, https://www.example.com).
*/
/**
* Sets the endpoint to call (ex, https://www.example.com).
* @param endpoint The endpoint of the service.
*/
endpoint: string;

@@ -226,0 +235,0 @@ readonly logger: import("oci-common/lib/log").Logger;

@@ -63,2 +63,8 @@ "use strict";

/**
* Get the endpoint that is being used to call (ex, https://www.example.com).
*/
get endpoint() {
return this._endpoint;
}
/**
* Sets the endpoint to call (ex, https://www.example.com).

@@ -502,2 +508,8 @@ * @param endpoint The endpoint of the service.

/**
* Get the endpoint that is being used to call (ex, https://www.example.com).
*/
get endpoint() {
return this._endpoint;
}
/**
* Sets the endpoint to call (ex, https://www.example.com).

@@ -940,2 +952,8 @@ * @param endpoint The endpoint of the service.

/**
* Get the endpoint that is being used to call (ex, https://www.example.com).
*/
get endpoint() {
return this._endpoint;
}
/**
* Sets the endpoint to call (ex, https://www.example.com).

@@ -942,0 +960,0 @@ * @param endpoint The endpoint of the service.

@@ -17,3 +17,3 @@ /**

/**
* Configures the pushing of access logs to OCI Public Logging.
* Configures the logging policies for the access logs of an API Deployment.
*

@@ -23,4 +23,13 @@ */

/**
* Enables pushing of access logs to OCI Public Logging.
*/
* Enables pushing of access logs to the legacy OCI Object Storage log archival bucket.
* <p>
Oracle recommends using the OCI Logging service to enable, retrieve, and query access logs
* for an API Deployment. If there is an active log object for the API Deployment and its
* category is set to 'access' in OCI Logging service, the logs will not be uploaded to the
* legacy OCI Object Storage log archival bucket.
* <p>
Please note that the functionality to push to the legacy OCI Object Storage log
* archival bucket has been deprecated and will be removed in the future.
*
*/
"isEnabled"?: boolean;

@@ -27,0 +36,0 @@ }

@@ -24,2 +24,4 @@ /**

"cors"?: model.CorsPolicy;
"headerTransformations"?: model.HeaderTransformationPolicy;
"queryParameterTransformations"?: model.QueryParameterTransformationPolicy;
}

@@ -26,0 +28,0 @@ export declare namespace ApiSpecificationRouteRequestPolicies {

@@ -33,3 +33,9 @@ "use strict";

: undefined,
"cors": obj.cors ? model.CorsPolicy.getJsonObj(obj.cors) : undefined
"cors": obj.cors ? model.CorsPolicy.getJsonObj(obj.cors) : undefined,
"headerTransformations": obj.headerTransformations
? model.HeaderTransformationPolicy.getJsonObj(obj.headerTransformations)
: undefined,
"queryParameterTransformations": obj.queryParameterTransformations
? model.QueryParameterTransformationPolicy.getJsonObj(obj.queryParameterTransformations)
: undefined
});

@@ -36,0 +42,0 @@ return jsonObj;

@@ -34,2 +34,3 @@ /**

"requestPolicies"?: model.ApiSpecificationRouteRequestPolicies;
"responsePolicies"?: model.ApiSpecificationRouteResponsePolicies;
"loggingPolicies"?: model.ApiSpecificationLoggingPolicies;

@@ -36,0 +37,0 @@ "backend": model.HTTPBackend | model.OracleFunctionBackend | model.StockResponseBackend;

@@ -49,2 +49,5 @@ "use strict";

: undefined,
"responsePolicies": obj.responsePolicies
? model.ApiSpecificationRouteResponsePolicies.getJsonObj(obj.responsePolicies)
: undefined,
"loggingPolicies": obj.loggingPolicies

@@ -51,0 +54,0 @@ ? model.ApiSpecificationLoggingPolicies.getJsonObj(obj.loggingPolicies)

@@ -35,4 +35,8 @@ /**

/**
* Gateway endpoint type.
*/
* Gateway endpoint type. `PUBLIC` will have a public ip address assigned to it, while `PRIVATE` will only be
* accessible on a private IP address on the subnet.
* <p>
Example: `PUBLIC` or `PRIVATE`
*
*/
"endpointType": string;

@@ -39,0 +43,0 @@ /**

@@ -17,3 +17,3 @@ /**

/**
* Configures the pushing of execution logs to OCI Public Logging.
* Configures the logging policies for the execution logs of an API Deployment.
*

@@ -23,8 +23,17 @@ */

/**
* Enables pushing of execution logs to OCI Public Logging.
*/
* Enables pushing of execution logs to the legacy OCI Object Storage log archival bucket.
* <p>
Oracle recommends using the OCI Logging service to enable, retrieve, and query execution logs
* for an API Deployment. If there is an active log object for the API Deployment and its
* category is set to 'execution' in OCI Logging service, the logs will not be uploaded to the legacy
* OCI Object Storage log archival bucket.
* <p>
Please note that the functionality to push to the legacy OCI Object Storage log
* archival bucket has been deprecated and will be removed in the future.
*
*/
"isEnabled"?: boolean;
/**
* Specifies the logging level, which affects the log entries pushed to
* OCI Public Logging if `isEnabled` is set to True.
* Specifies the log level used to control logging output of execution logs.
* Enabling logging at a given level also enables logging at all higher levels.
*

@@ -31,0 +40,0 @@ */

@@ -40,4 +40,8 @@ /**

/**
* Gateway endpoint type.
*/
* Gateway endpoint type. `PUBLIC` will have a public ip address assigned to it, while `PRIVATE` will only be
* accessible on a private IP address on the subnet.
* <p>
Example: `PUBLIC` or `PRIVATE`
*
*/
"endpointType": string;

@@ -44,0 +48,0 @@ /**

@@ -42,4 +42,8 @@ /**

/**
* Gateway endpoint type.
*/
* Gateway endpoint type. `PUBLIC` will have a public ip address assigned to it, while `PRIVATE` will only be
* accessible on a private IP address on the subnet.
* <p>
Example: `PUBLIC` or `PRIVATE`
*
*/
"endpointType": Gateway.EndpointType;

@@ -46,0 +50,0 @@ /**

@@ -30,2 +30,4 @@ /**

export import ApiSpecificationRouteRequestPolicies = ApiSpecificationRouteRequestPolicies.ApiSpecificationRouteRequestPolicies;
import * as ApiSpecificationRouteResponsePolicies from "./api-specification-route-response-policies";
export import ApiSpecificationRouteResponsePolicies = ApiSpecificationRouteResponsePolicies.ApiSpecificationRouteResponsePolicies;
import * as AuthenticationPolicy from "./authentication-policy";

@@ -51,2 +53,10 @@ export import AuthenticationPolicy = AuthenticationPolicy.AuthenticationPolicy;

export import ExecutionLogPolicy = ExecutionLogPolicy.ExecutionLogPolicy;
import * as FilterHeaderPolicy from "./filter-header-policy";
export import FilterHeaderPolicy = FilterHeaderPolicy.FilterHeaderPolicy;
import * as FilterHeaderPolicyItem from "./filter-header-policy-item";
export import FilterHeaderPolicyItem = FilterHeaderPolicyItem.FilterHeaderPolicyItem;
import * as FilterQueryParameterPolicy from "./filter-query-parameter-policy";
export import FilterQueryParameterPolicy = FilterQueryParameterPolicy.FilterQueryParameterPolicy;
import * as FilterQueryParameterPolicyItem from "./filter-query-parameter-policy-item";
export import FilterQueryParameterPolicyItem = FilterQueryParameterPolicyItem.FilterQueryParameterPolicyItem;
import * as Gateway from "./gateway";

@@ -60,2 +70,4 @@ export import Gateway = Gateway.Gateway;

export import HeaderFieldSpecification = HeaderFieldSpecification.HeaderFieldSpecification;
import * as HeaderTransformationPolicy from "./header-transformation-policy";
export import HeaderTransformationPolicy = HeaderTransformationPolicy.HeaderTransformationPolicy;
import * as JsonWebTokenClaim from "./json-web-token-claim";

@@ -65,6 +77,24 @@ export import JsonWebTokenClaim = JsonWebTokenClaim.JsonWebTokenClaim;

export import PublicKeySet = PublicKeySet.PublicKeySet;
import * as QueryParameterTransformationPolicy from "./query-parameter-transformation-policy";
export import QueryParameterTransformationPolicy = QueryParameterTransformationPolicy.QueryParameterTransformationPolicy;
import * as RateLimitingPolicy from "./rate-limiting-policy";
export import RateLimitingPolicy = RateLimitingPolicy.RateLimitingPolicy;
import * as RenameHeaderPolicy from "./rename-header-policy";
export import RenameHeaderPolicy = RenameHeaderPolicy.RenameHeaderPolicy;
import * as RenameHeaderPolicyItem from "./rename-header-policy-item";
export import RenameHeaderPolicyItem = RenameHeaderPolicyItem.RenameHeaderPolicyItem;
import * as RenameQueryParameterPolicy from "./rename-query-parameter-policy";
export import RenameQueryParameterPolicy = RenameQueryParameterPolicy.RenameQueryParameterPolicy;
import * as RenameQueryParameterPolicyItem from "./rename-query-parameter-policy-item";
export import RenameQueryParameterPolicyItem = RenameQueryParameterPolicyItem.RenameQueryParameterPolicyItem;
import * as RouteAuthorizationPolicy from "./route-authorization-policy";
export import RouteAuthorizationPolicy = RouteAuthorizationPolicy.RouteAuthorizationPolicy;
import * as SetHeaderPolicy from "./set-header-policy";
export import SetHeaderPolicy = SetHeaderPolicy.SetHeaderPolicy;
import * as SetHeaderPolicyItem from "./set-header-policy-item";
export import SetHeaderPolicyItem = SetHeaderPolicyItem.SetHeaderPolicyItem;
import * as SetQueryParameterPolicy from "./set-query-parameter-policy";
export import SetQueryParameterPolicy = SetQueryParameterPolicy.SetQueryParameterPolicy;
import * as SetQueryParameterPolicyItem from "./set-query-parameter-policy-item";
export import SetQueryParameterPolicyItem = SetQueryParameterPolicyItem.SetQueryParameterPolicyItem;
import * as StaticPublicKey from "./static-public-key";

@@ -71,0 +101,0 @@ export import StaticPublicKey = StaticPublicKey.StaticPublicKey;

@@ -39,2 +39,4 @@ "use strict";

exports.ApiSpecificationRouteRequestPolicies = ApiSpecificationRouteRequestPolicies.ApiSpecificationRouteRequestPolicies;
const ApiSpecificationRouteResponsePolicies = __importStar(require("./api-specification-route-response-policies"));
exports.ApiSpecificationRouteResponsePolicies = ApiSpecificationRouteResponsePolicies.ApiSpecificationRouteResponsePolicies;
const AuthenticationPolicy = __importStar(require("./authentication-policy"));

@@ -60,2 +62,10 @@ exports.AuthenticationPolicy = AuthenticationPolicy.AuthenticationPolicy;

exports.ExecutionLogPolicy = ExecutionLogPolicy.ExecutionLogPolicy;
const FilterHeaderPolicy = __importStar(require("./filter-header-policy"));
exports.FilterHeaderPolicy = FilterHeaderPolicy.FilterHeaderPolicy;
const FilterHeaderPolicyItem = __importStar(require("./filter-header-policy-item"));
exports.FilterHeaderPolicyItem = FilterHeaderPolicyItem.FilterHeaderPolicyItem;
const FilterQueryParameterPolicy = __importStar(require("./filter-query-parameter-policy"));
exports.FilterQueryParameterPolicy = FilterQueryParameterPolicy.FilterQueryParameterPolicy;
const FilterQueryParameterPolicyItem = __importStar(require("./filter-query-parameter-policy-item"));
exports.FilterQueryParameterPolicyItem = FilterQueryParameterPolicyItem.FilterQueryParameterPolicyItem;
const Gateway = __importStar(require("./gateway"));

@@ -69,2 +79,4 @@ exports.Gateway = Gateway.Gateway;

exports.HeaderFieldSpecification = HeaderFieldSpecification.HeaderFieldSpecification;
const HeaderTransformationPolicy = __importStar(require("./header-transformation-policy"));
exports.HeaderTransformationPolicy = HeaderTransformationPolicy.HeaderTransformationPolicy;
const JsonWebTokenClaim = __importStar(require("./json-web-token-claim"));

@@ -74,6 +86,24 @@ exports.JsonWebTokenClaim = JsonWebTokenClaim.JsonWebTokenClaim;

exports.PublicKeySet = PublicKeySet.PublicKeySet;
const QueryParameterTransformationPolicy = __importStar(require("./query-parameter-transformation-policy"));
exports.QueryParameterTransformationPolicy = QueryParameterTransformationPolicy.QueryParameterTransformationPolicy;
const RateLimitingPolicy = __importStar(require("./rate-limiting-policy"));
exports.RateLimitingPolicy = RateLimitingPolicy.RateLimitingPolicy;
const RenameHeaderPolicy = __importStar(require("./rename-header-policy"));
exports.RenameHeaderPolicy = RenameHeaderPolicy.RenameHeaderPolicy;
const RenameHeaderPolicyItem = __importStar(require("./rename-header-policy-item"));
exports.RenameHeaderPolicyItem = RenameHeaderPolicyItem.RenameHeaderPolicyItem;
const RenameQueryParameterPolicy = __importStar(require("./rename-query-parameter-policy"));
exports.RenameQueryParameterPolicy = RenameQueryParameterPolicy.RenameQueryParameterPolicy;
const RenameQueryParameterPolicyItem = __importStar(require("./rename-query-parameter-policy-item"));
exports.RenameQueryParameterPolicyItem = RenameQueryParameterPolicyItem.RenameQueryParameterPolicyItem;
const RouteAuthorizationPolicy = __importStar(require("./route-authorization-policy"));
exports.RouteAuthorizationPolicy = RouteAuthorizationPolicy.RouteAuthorizationPolicy;
const SetHeaderPolicy = __importStar(require("./set-header-policy"));
exports.SetHeaderPolicy = SetHeaderPolicy.SetHeaderPolicy;
const SetHeaderPolicyItem = __importStar(require("./set-header-policy-item"));
exports.SetHeaderPolicyItem = SetHeaderPolicyItem.SetHeaderPolicyItem;
const SetQueryParameterPolicy = __importStar(require("./set-query-parameter-policy"));
exports.SetQueryParameterPolicy = SetQueryParameterPolicy.SetQueryParameterPolicy;
const SetQueryParameterPolicyItem = __importStar(require("./set-query-parameter-policy-item"));
exports.SetQueryParameterPolicyItem = SetQueryParameterPolicyItem.SetQueryParameterPolicyItem;
const StaticPublicKey = __importStar(require("./static-public-key"));

@@ -80,0 +110,0 @@ exports.StaticPublicKey = StaticPublicKey.StaticPublicKey;

{
"name": "oci-apigateway",
"version": "1.5.2",
"version": "1.5.3",
"description": "OCI NodeJS client for API gateway service",

@@ -18,4 +18,4 @@ "repository": {

"dependencies": {
"oci-common": "1.5.2",
"oci-workrequests": "1.5.2"
"oci-common": "1.5.3",
"oci-workrequests": "1.5.3"
},

@@ -22,0 +22,0 @@ "publishConfig": {

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc