mirror of
https://github.com/SociallyDev/Spaces-API.git
synced 2025-08-14 02:27:23 -07:00
spaces.php
This commit is contained in:
parent
7755490b81
commit
eefa32741e
845 changed files with 50409 additions and 0 deletions
9
aws/Aws/SageMaker/Exception/SageMakerException.php
Normal file
9
aws/Aws/SageMaker/Exception/SageMakerException.php
Normal file
|
@ -0,0 +1,9 @@
|
|||
<?php
|
||||
namespace Aws\SageMaker\Exception;
|
||||
|
||||
use Aws\Exception\AwsException;
|
||||
|
||||
/**
|
||||
* Represents an error interacting with the **Amazon SageMaker Service** service.
|
||||
*/
|
||||
class SageMakerException extends AwsException {}
|
67
aws/Aws/SageMaker/SageMakerClient.php
Normal file
67
aws/Aws/SageMaker/SageMakerClient.php
Normal file
|
@ -0,0 +1,67 @@
|
|||
<?php
|
||||
namespace Aws\SageMaker;
|
||||
|
||||
use Aws\AwsClient;
|
||||
|
||||
/**
|
||||
* This client is used to interact with the **Amazon SageMaker Service** service.
|
||||
* @method \Aws\Result addTags(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise addTagsAsync(array $args = [])
|
||||
* @method \Aws\Result createEndpoint(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise createEndpointAsync(array $args = [])
|
||||
* @method \Aws\Result createEndpointConfig(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise createEndpointConfigAsync(array $args = [])
|
||||
* @method \Aws\Result createModel(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise createModelAsync(array $args = [])
|
||||
* @method \Aws\Result createNotebookInstance(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise createNotebookInstanceAsync(array $args = [])
|
||||
* @method \Aws\Result createPresignedNotebookInstanceUrl(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise createPresignedNotebookInstanceUrlAsync(array $args = [])
|
||||
* @method \Aws\Result createTrainingJob(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise createTrainingJobAsync(array $args = [])
|
||||
* @method \Aws\Result deleteEndpoint(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise deleteEndpointAsync(array $args = [])
|
||||
* @method \Aws\Result deleteEndpointConfig(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise deleteEndpointConfigAsync(array $args = [])
|
||||
* @method \Aws\Result deleteModel(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise deleteModelAsync(array $args = [])
|
||||
* @method \Aws\Result deleteNotebookInstance(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise deleteNotebookInstanceAsync(array $args = [])
|
||||
* @method \Aws\Result deleteTags(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise deleteTagsAsync(array $args = [])
|
||||
* @method \Aws\Result describeEndpoint(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise describeEndpointAsync(array $args = [])
|
||||
* @method \Aws\Result describeEndpointConfig(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise describeEndpointConfigAsync(array $args = [])
|
||||
* @method \Aws\Result describeModel(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise describeModelAsync(array $args = [])
|
||||
* @method \Aws\Result describeNotebookInstance(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise describeNotebookInstanceAsync(array $args = [])
|
||||
* @method \Aws\Result describeTrainingJob(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise describeTrainingJobAsync(array $args = [])
|
||||
* @method \Aws\Result listEndpointConfigs(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise listEndpointConfigsAsync(array $args = [])
|
||||
* @method \Aws\Result listEndpoints(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise listEndpointsAsync(array $args = [])
|
||||
* @method \Aws\Result listModels(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise listModelsAsync(array $args = [])
|
||||
* @method \Aws\Result listNotebookInstances(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise listNotebookInstancesAsync(array $args = [])
|
||||
* @method \Aws\Result listTags(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise listTagsAsync(array $args = [])
|
||||
* @method \Aws\Result listTrainingJobs(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise listTrainingJobsAsync(array $args = [])
|
||||
* @method \Aws\Result startNotebookInstance(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise startNotebookInstanceAsync(array $args = [])
|
||||
* @method \Aws\Result stopNotebookInstance(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise stopNotebookInstanceAsync(array $args = [])
|
||||
* @method \Aws\Result stopTrainingJob(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise stopTrainingJobAsync(array $args = [])
|
||||
* @method \Aws\Result updateEndpoint(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise updateEndpointAsync(array $args = [])
|
||||
* @method \Aws\Result updateEndpointWeightsAndCapacities(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise updateEndpointWeightsAndCapacitiesAsync(array $args = [])
|
||||
* @method \Aws\Result updateNotebookInstance(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise updateNotebookInstanceAsync(array $args = [])
|
||||
*/
|
||||
class SageMakerClient extends AwsClient {}
|
Loading…
Add table
Add a link
Reference in a new issue