Subiendo proyecto completo sin restricciones de git ignore

This commit is contained in:
Jose Sanchez
2023-08-17 11:44:02 -04:00
parent a0d4f5ba3b
commit 20f1c60600
19921 changed files with 2509159 additions and 45 deletions

View File

@@ -0,0 +1,75 @@
<?php
namespace Aws\CodeCatalyst;
use Aws\AwsClient;
/**
* This client is used to interact with the **Amazon CodeCatalyst** service.
* @method \Aws\Result createAccessToken(array $args = [])
* @method \GuzzleHttp\Promise\Promise createAccessTokenAsync(array $args = [])
* @method \Aws\Result createDevEnvironment(array $args = [])
* @method \GuzzleHttp\Promise\Promise createDevEnvironmentAsync(array $args = [])
* @method \Aws\Result createProject(array $args = [])
* @method \GuzzleHttp\Promise\Promise createProjectAsync(array $args = [])
* @method \Aws\Result createSourceRepository(array $args = [])
* @method \GuzzleHttp\Promise\Promise createSourceRepositoryAsync(array $args = [])
* @method \Aws\Result createSourceRepositoryBranch(array $args = [])
* @method \GuzzleHttp\Promise\Promise createSourceRepositoryBranchAsync(array $args = [])
* @method \Aws\Result deleteAccessToken(array $args = [])
* @method \GuzzleHttp\Promise\Promise deleteAccessTokenAsync(array $args = [])
* @method \Aws\Result deleteDevEnvironment(array $args = [])
* @method \GuzzleHttp\Promise\Promise deleteDevEnvironmentAsync(array $args = [])
* @method \Aws\Result deleteProject(array $args = [])
* @method \GuzzleHttp\Promise\Promise deleteProjectAsync(array $args = [])
* @method \Aws\Result deleteSourceRepository(array $args = [])
* @method \GuzzleHttp\Promise\Promise deleteSourceRepositoryAsync(array $args = [])
* @method \Aws\Result deleteSpace(array $args = [])
* @method \GuzzleHttp\Promise\Promise deleteSpaceAsync(array $args = [])
* @method \Aws\Result getDevEnvironment(array $args = [])
* @method \GuzzleHttp\Promise\Promise getDevEnvironmentAsync(array $args = [])
* @method \Aws\Result getProject(array $args = [])
* @method \GuzzleHttp\Promise\Promise getProjectAsync(array $args = [])
* @method \Aws\Result getSourceRepository(array $args = [])
* @method \GuzzleHttp\Promise\Promise getSourceRepositoryAsync(array $args = [])
* @method \Aws\Result getSourceRepositoryCloneUrls(array $args = [])
* @method \GuzzleHttp\Promise\Promise getSourceRepositoryCloneUrlsAsync(array $args = [])
* @method \Aws\Result getSpace(array $args = [])
* @method \GuzzleHttp\Promise\Promise getSpaceAsync(array $args = [])
* @method \Aws\Result getSubscription(array $args = [])
* @method \GuzzleHttp\Promise\Promise getSubscriptionAsync(array $args = [])
* @method \Aws\Result getUserDetails(array $args = [])
* @method \GuzzleHttp\Promise\Promise getUserDetailsAsync(array $args = [])
* @method \Aws\Result listAccessTokens(array $args = [])
* @method \GuzzleHttp\Promise\Promise listAccessTokensAsync(array $args = [])
* @method \Aws\Result listDevEnvironmentSessions(array $args = [])
* @method \GuzzleHttp\Promise\Promise listDevEnvironmentSessionsAsync(array $args = [])
* @method \Aws\Result listDevEnvironments(array $args = [])
* @method \GuzzleHttp\Promise\Promise listDevEnvironmentsAsync(array $args = [])
* @method \Aws\Result listEventLogs(array $args = [])
* @method \GuzzleHttp\Promise\Promise listEventLogsAsync(array $args = [])
* @method \Aws\Result listProjects(array $args = [])
* @method \GuzzleHttp\Promise\Promise listProjectsAsync(array $args = [])
* @method \Aws\Result listSourceRepositories(array $args = [])
* @method \GuzzleHttp\Promise\Promise listSourceRepositoriesAsync(array $args = [])
* @method \Aws\Result listSourceRepositoryBranches(array $args = [])
* @method \GuzzleHttp\Promise\Promise listSourceRepositoryBranchesAsync(array $args = [])
* @method \Aws\Result listSpaces(array $args = [])
* @method \GuzzleHttp\Promise\Promise listSpacesAsync(array $args = [])
* @method \Aws\Result startDevEnvironment(array $args = [])
* @method \GuzzleHttp\Promise\Promise startDevEnvironmentAsync(array $args = [])
* @method \Aws\Result startDevEnvironmentSession(array $args = [])
* @method \GuzzleHttp\Promise\Promise startDevEnvironmentSessionAsync(array $args = [])
* @method \Aws\Result stopDevEnvironment(array $args = [])
* @method \GuzzleHttp\Promise\Promise stopDevEnvironmentAsync(array $args = [])
* @method \Aws\Result stopDevEnvironmentSession(array $args = [])
* @method \GuzzleHttp\Promise\Promise stopDevEnvironmentSessionAsync(array $args = [])
* @method \Aws\Result updateDevEnvironment(array $args = [])
* @method \GuzzleHttp\Promise\Promise updateDevEnvironmentAsync(array $args = [])
* @method \Aws\Result updateProject(array $args = [])
* @method \GuzzleHttp\Promise\Promise updateProjectAsync(array $args = [])
* @method \Aws\Result updateSpace(array $args = [])
* @method \GuzzleHttp\Promise\Promise updateSpaceAsync(array $args = [])
* @method \Aws\Result verifySession(array $args = [])
* @method \GuzzleHttp\Promise\Promise verifySessionAsync(array $args = [])
*/
class CodeCatalystClient extends AwsClient {}

View File

@@ -0,0 +1,9 @@
<?php
namespace Aws\CodeCatalyst\Exception;
use Aws\Exception\AwsException;
/**
* Represents an error interacting with the **Amazon CodeCatalyst** service.
*/
class CodeCatalystException extends AwsException {}