You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Update: This has been fixed in v2.95.2. If you are not able to upgrade to a non-affected version at this time, please use the workaround mentioned below
If you are using or want to use ZprClient in OCI Typescript SDK then you have to manually update the endpoint.
Description
Users of the OCI Typescript SDK who wish to utilize ZprClient must manually update the endpoint due to an incorrect configuration in the service endpoint. This issue affects the Zero Trust Packet Routing Service (ZPR) released in version 2.95.1.
Workaround
To resolve this issue, users need to manually set the endpoint when creating a ZprClient instance. Here's an example of how to do this:
const common = require("oci-common");
const zpr = require("oci-zpr");
const zprClient = new zpr.ZprClient({
authenticationDetailsProvider: provider
});
zprClient.endpoint ="https://zpr./{region}.oci.oraclecloud.com";
Replace {region} with the appropriate region for your OCI deployment
The correct endpoint for your specific region can be found in the Oracle Cloud Infrastructure API documentation here.
The text was updated successfully, but these errors were encountered:
rkumarpa
added
the
SDK
Issue pertains to the SDK itself and not specific to any service
label
Oct 1, 2024
Update: This has been fixed in v2.95.2. If you are not able to upgrade to a non-affected version at this time, please use the workaround mentioned below
If you are using or want to use ZprClient in OCI Typescript SDK then you have to manually update the endpoint.
Description
Users of the OCI Typescript SDK who wish to utilize ZprClient must manually update the endpoint due to an incorrect configuration in the service endpoint. This issue affects the Zero Trust Packet Routing Service (ZPR) released in version 2.95.1.
Workaround
To resolve this issue, users need to manually set the endpoint when creating a ZprClient instance. Here's an example of how to do this:
Replace {region} with the appropriate region for your OCI deployment
The correct endpoint for your specific region can be found in the Oracle Cloud Infrastructure API documentation here.
The text was updated successfully, but these errors were encountered: