All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.ibm.cloud.objectstorage.auth.ContainerCredentialsProvider Maven / Gradle / Ivy

Go to download

A single bundled dependency that includes all service and dependent JARs with third-party libraries relocated to different namespaces.

There is a newer version: 2.13.4
Show newest version
/*
 * Copyright 2011-2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at:
 *
 *    http://aws.amazon.com/apache2.0
 *
 * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES
 * OR CONDITIONS OF ANY KIND, either express or implied. See the
 * License for the specific language governing permissions and
 * limitations under the License.
 */
package com.ibm.cloud.objectstorage.auth;

import java.net.URI;
import java.net.URISyntaxException;
import java.util.Date;

import com.ibm.cloud.objectstorage.SdkClientException;
import com.ibm.cloud.objectstorage.annotation.SdkInternalApi;
import com.ibm.cloud.objectstorage.internal.CredentialsEndpointProvider;
import com.ibm.cloud.objectstorage.retry.internal.CredentialsEndpointRetryPolicy;

/**
 * 

* {@link AWSCredentialsProvider} implementation that loads credentials * from an Amazon Elastic Container. *

*

* By default, the URI path is retrieved from the environment variable * "AWS_CONTAINER_CREDENTIALS_RELATIVE_URI" in the container's environment. *

*/ public class ContainerCredentialsProvider implements AWSCredentialsProvider { /** Environment variable to get the Amazon ECS credentials resource path. */ static final String ECS_CONTAINER_CREDENTIALS_PATH = "AWS_CONTAINER_CREDENTIALS_RELATIVE_URI"; /** Default endpoint to retreive the Amazon ECS Credentials. */ private static final String ECS_CREDENTIALS_ENDPOINT = "http://169.254.170.2"; private final EC2CredentialsFetcher credentialsFetcher; public ContainerCredentialsProvider() { this(new ECSCredentialsEndpointProvider()); } @SdkInternalApi public ContainerCredentialsProvider(CredentialsEndpointProvider credentailsEndpointProvider) { this.credentialsFetcher = new EC2CredentialsFetcher(credentailsEndpointProvider); } @Override public AWSCredentials getCredentials() { return credentialsFetcher.getCredentials(); } @Override public void refresh() { credentialsFetcher.refresh(); } public Date getCredentialsExpiration() { return credentialsFetcher.getCredentialsExpiration(); } private static class ECSCredentialsEndpointProvider extends CredentialsEndpointProvider { @Override public URI getCredentialsEndpoint() throws URISyntaxException { String path = System.getenv(ECS_CONTAINER_CREDENTIALS_PATH); if (path == null) { throw new SdkClientException( "The environment variable " + ECS_CONTAINER_CREDENTIALS_PATH + " is empty"); } return new URI(ECS_CREDENTIALS_ENDPOINT + path); } @Override public CredentialsEndpointRetryPolicy getRetryPolicy() { return ContainerCredentialsRetryPolicy.getInstance(); } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy