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

software.amazon.awssdk.services.sagemakeredge.SagemakerEdgeClient Maven / Gradle / Ivy

Go to download

The AWS Java SDK for Sagemaker Edge module holds the client classes that are used for communicating with Sagemaker Edge.

There is a newer version: 2.29.15
Show newest version
/*
 * Copyright 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. A copy of the License is located at
 * 
 * http://aws.amazon.com/apache2.0
 * 
 * or in the "license" file accompanying this file. 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 software.amazon.awssdk.services.sagemakeredge;

import java.util.function.Consumer;
import software.amazon.awssdk.annotations.Generated;
import software.amazon.awssdk.annotations.SdkPublicApi;
import software.amazon.awssdk.annotations.ThreadSafe;
import software.amazon.awssdk.awscore.AwsClient;
import software.amazon.awssdk.awscore.exception.AwsServiceException;
import software.amazon.awssdk.core.exception.SdkClientException;
import software.amazon.awssdk.regions.ServiceMetadata;
import software.amazon.awssdk.services.sagemakeredge.model.GetDeploymentsRequest;
import software.amazon.awssdk.services.sagemakeredge.model.GetDeploymentsResponse;
import software.amazon.awssdk.services.sagemakeredge.model.GetDeviceRegistrationRequest;
import software.amazon.awssdk.services.sagemakeredge.model.GetDeviceRegistrationResponse;
import software.amazon.awssdk.services.sagemakeredge.model.InternalServiceException;
import software.amazon.awssdk.services.sagemakeredge.model.SagemakerEdgeException;
import software.amazon.awssdk.services.sagemakeredge.model.SendHeartbeatRequest;
import software.amazon.awssdk.services.sagemakeredge.model.SendHeartbeatResponse;

/**
 * Service client for accessing Amazon Sagemaker Edge Manager. This can be created using the static {@link #builder()}
 * method.
 *
 * 

* SageMaker Edge Manager dataplane service for communicating with active agents. *

*/ @Generated("software.amazon.awssdk:codegen") @SdkPublicApi @ThreadSafe public interface SagemakerEdgeClient extends AwsClient { String SERVICE_NAME = "sagemaker"; /** * Value for looking up the service's metadata from the * {@link software.amazon.awssdk.regions.ServiceMetadataProvider}. */ String SERVICE_METADATA_ID = "edge.sagemaker"; /** *

* Use to get the active deployments from a device. *

* * @param getDeploymentsRequest * @return Result of the GetDeployments operation returned by the service. * @throws InternalServiceException * An internal failure occurred. Try your request again. If the problem persists, contact Amazon Web * Services customer support. * @throws SdkException * Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for * catch all scenarios. * @throws SdkClientException * If any client side error occurs such as an IO related failure, failure to get credentials, etc. * @throws SagemakerEdgeException * Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type. * @sample SagemakerEdgeClient.GetDeployments * @see AWS * API Documentation */ default GetDeploymentsResponse getDeployments(GetDeploymentsRequest getDeploymentsRequest) throws InternalServiceException, AwsServiceException, SdkClientException, SagemakerEdgeException { throw new UnsupportedOperationException(); } /** *

* Use to get the active deployments from a device. *

*
*

* This is a convenience which creates an instance of the {@link GetDeploymentsRequest.Builder} avoiding the need to * create one manually via {@link GetDeploymentsRequest#builder()} *

* * @param getDeploymentsRequest * A {@link Consumer} that will call methods on * {@link software.amazon.awssdk.services.sagemakeredge.model.GetDeploymentsRequest.Builder} to create a * request. * @return Result of the GetDeployments operation returned by the service. * @throws InternalServiceException * An internal failure occurred. Try your request again. If the problem persists, contact Amazon Web * Services customer support. * @throws SdkException * Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for * catch all scenarios. * @throws SdkClientException * If any client side error occurs such as an IO related failure, failure to get credentials, etc. * @throws SagemakerEdgeException * Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type. * @sample SagemakerEdgeClient.GetDeployments * @see AWS * API Documentation */ default GetDeploymentsResponse getDeployments(Consumer getDeploymentsRequest) throws InternalServiceException, AwsServiceException, SdkClientException, SagemakerEdgeException { return getDeployments(GetDeploymentsRequest.builder().applyMutation(getDeploymentsRequest).build()); } /** *

* Use to check if a device is registered with SageMaker Edge Manager. *

* * @param getDeviceRegistrationRequest * @return Result of the GetDeviceRegistration operation returned by the service. * @throws InternalServiceException * An internal failure occurred. Try your request again. If the problem persists, contact Amazon Web * Services customer support. * @throws SdkException * Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for * catch all scenarios. * @throws SdkClientException * If any client side error occurs such as an IO related failure, failure to get credentials, etc. * @throws SagemakerEdgeException * Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type. * @sample SagemakerEdgeClient.GetDeviceRegistration * @see AWS API Documentation */ default GetDeviceRegistrationResponse getDeviceRegistration(GetDeviceRegistrationRequest getDeviceRegistrationRequest) throws InternalServiceException, AwsServiceException, SdkClientException, SagemakerEdgeException { throw new UnsupportedOperationException(); } /** *

* Use to check if a device is registered with SageMaker Edge Manager. *

*
*

* This is a convenience which creates an instance of the {@link GetDeviceRegistrationRequest.Builder} avoiding the * need to create one manually via {@link GetDeviceRegistrationRequest#builder()} *

* * @param getDeviceRegistrationRequest * A {@link Consumer} that will call methods on * {@link software.amazon.awssdk.services.sagemakeredge.model.GetDeviceRegistrationRequest.Builder} to create * a request. * @return Result of the GetDeviceRegistration operation returned by the service. * @throws InternalServiceException * An internal failure occurred. Try your request again. If the problem persists, contact Amazon Web * Services customer support. * @throws SdkException * Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for * catch all scenarios. * @throws SdkClientException * If any client side error occurs such as an IO related failure, failure to get credentials, etc. * @throws SagemakerEdgeException * Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type. * @sample SagemakerEdgeClient.GetDeviceRegistration * @see AWS API Documentation */ default GetDeviceRegistrationResponse getDeviceRegistration( Consumer getDeviceRegistrationRequest) throws InternalServiceException, AwsServiceException, SdkClientException, SagemakerEdgeException { return getDeviceRegistration(GetDeviceRegistrationRequest.builder().applyMutation(getDeviceRegistrationRequest).build()); } /** *

* Use to get the current status of devices registered on SageMaker Edge Manager. *

* * @param sendHeartbeatRequest * @return Result of the SendHeartbeat operation returned by the service. * @throws InternalServiceException * An internal failure occurred. Try your request again. If the problem persists, contact Amazon Web * Services customer support. * @throws SdkException * Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for * catch all scenarios. * @throws SdkClientException * If any client side error occurs such as an IO related failure, failure to get credentials, etc. * @throws SagemakerEdgeException * Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type. * @sample SagemakerEdgeClient.SendHeartbeat * @see AWS * API Documentation */ default SendHeartbeatResponse sendHeartbeat(SendHeartbeatRequest sendHeartbeatRequest) throws InternalServiceException, AwsServiceException, SdkClientException, SagemakerEdgeException { throw new UnsupportedOperationException(); } /** *

* Use to get the current status of devices registered on SageMaker Edge Manager. *

*
*

* This is a convenience which creates an instance of the {@link SendHeartbeatRequest.Builder} avoiding the need to * create one manually via {@link SendHeartbeatRequest#builder()} *

* * @param sendHeartbeatRequest * A {@link Consumer} that will call methods on * {@link software.amazon.awssdk.services.sagemakeredge.model.SendHeartbeatRequest.Builder} to create a * request. * @return Result of the SendHeartbeat operation returned by the service. * @throws InternalServiceException * An internal failure occurred. Try your request again. If the problem persists, contact Amazon Web * Services customer support. * @throws SdkException * Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for * catch all scenarios. * @throws SdkClientException * If any client side error occurs such as an IO related failure, failure to get credentials, etc. * @throws SagemakerEdgeException * Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type. * @sample SagemakerEdgeClient.SendHeartbeat * @see AWS * API Documentation */ default SendHeartbeatResponse sendHeartbeat(Consumer sendHeartbeatRequest) throws InternalServiceException, AwsServiceException, SdkClientException, SagemakerEdgeException { return sendHeartbeat(SendHeartbeatRequest.builder().applyMutation(sendHeartbeatRequest).build()); } /** * Create a {@link SagemakerEdgeClient} with the region loaded from the * {@link software.amazon.awssdk.regions.providers.DefaultAwsRegionProviderChain} and credentials loaded from the * {@link software.amazon.awssdk.auth.credentials.DefaultCredentialsProvider}. */ static SagemakerEdgeClient create() { return builder().build(); } /** * Create a builder that can be used to configure and create a {@link SagemakerEdgeClient}. */ static SagemakerEdgeClientBuilder builder() { return new DefaultSagemakerEdgeClientBuilder(); } static ServiceMetadata serviceMetadata() { return ServiceMetadata.of(SERVICE_METADATA_ID); } @Override default SagemakerEdgeServiceClientConfiguration serviceClientConfiguration() { throw new UnsupportedOperationException(); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy