GithubHelp home page GithubHelp logo

Comments (3)

VidhiBhansali avatar VidhiBhansali commented on August 15, 2024

Hi @heinGertenbach - The endpoint requires the region to be defined. Can you please provide the region and try again? You can set the region in one of the following two ways:

  • when you are defining the provider
AuthenticationDetailsProvider provider = SimpleAuthenticationDetailsProvider.builder()
        .tenantId(ociConfig.get("tenancy"))
        .userId(ociConfig.get("user"))
        .fingerprint(ociConfig.get("fingerprint"))
        .privateKeySupplier(privateKeySupplier)
        .region(Region.US_PHOENIX_1)     // please add your region here
        .build();
  • when you are setting up the client
objectStorageClient = ObjectStorageClient
        .builder()
        .region(Region.US_PHOENIX_1)      // please add your region here
        .build(provider);

I've used the config file with the python sdk and it was successful

I believe that the config file that was used for Python SDK had information about the region. You can try to use the same config file for OCI Java SDK by using ConfigFileAuthenticationDetailsProvider instead of SimpleAuthenticationDetailsProvider. For example on how to use ConfigFileAuthenticationDetailsProvider for Object Storage client, please refer ObjectStorageGetNamespaceExample.java

from oci-java-sdk.

heinGertenbach avatar heinGertenbach commented on August 15, 2024

Thank you for the response. Indeed it worked after that, I didn't add it since it wasn't in the documentation?

from oci-java-sdk.

VidhiBhansali avatar VidhiBhansali commented on August 15, 2024

Glad it worked! The Requirements section in SDK for Java docs has details on how to configure the SDK. You can also directly take a look at the basic entries that are required for the configuration file here which states that region is a required information
Another documentation that can help regarding the endpoints is Setting the Endpoints

from oci-java-sdk.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.