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,9 @@
<?php
namespace Aws\Route53RecoveryControlConfig\Exception;
use Aws\Exception\AwsException;
/**
* Represents an error interacting with the **AWS Route53 Recovery Control Config** service.
*/
class Route53RecoveryControlConfigException extends AwsException {}

View File

@@ -0,0 +1,55 @@
<?php
namespace Aws\Route53RecoveryControlConfig;
use Aws\AwsClient;
/**
* This client is used to interact with the **AWS Route53 Recovery Control Config** service.
* @method \Aws\Result createCluster(array $args = [])
* @method \GuzzleHttp\Promise\Promise createClusterAsync(array $args = [])
* @method \Aws\Result createControlPanel(array $args = [])
* @method \GuzzleHttp\Promise\Promise createControlPanelAsync(array $args = [])
* @method \Aws\Result createRoutingControl(array $args = [])
* @method \GuzzleHttp\Promise\Promise createRoutingControlAsync(array $args = [])
* @method \Aws\Result createSafetyRule(array $args = [])
* @method \GuzzleHttp\Promise\Promise createSafetyRuleAsync(array $args = [])
* @method \Aws\Result deleteCluster(array $args = [])
* @method \GuzzleHttp\Promise\Promise deleteClusterAsync(array $args = [])
* @method \Aws\Result deleteControlPanel(array $args = [])
* @method \GuzzleHttp\Promise\Promise deleteControlPanelAsync(array $args = [])
* @method \Aws\Result deleteRoutingControl(array $args = [])
* @method \GuzzleHttp\Promise\Promise deleteRoutingControlAsync(array $args = [])
* @method \Aws\Result deleteSafetyRule(array $args = [])
* @method \GuzzleHttp\Promise\Promise deleteSafetyRuleAsync(array $args = [])
* @method \Aws\Result describeCluster(array $args = [])
* @method \GuzzleHttp\Promise\Promise describeClusterAsync(array $args = [])
* @method \Aws\Result describeControlPanel(array $args = [])
* @method \GuzzleHttp\Promise\Promise describeControlPanelAsync(array $args = [])
* @method \Aws\Result describeRoutingControl(array $args = [])
* @method \GuzzleHttp\Promise\Promise describeRoutingControlAsync(array $args = [])
* @method \Aws\Result describeSafetyRule(array $args = [])
* @method \GuzzleHttp\Promise\Promise describeSafetyRuleAsync(array $args = [])
* @method \Aws\Result listAssociatedRoute53HealthChecks(array $args = [])
* @method \GuzzleHttp\Promise\Promise listAssociatedRoute53HealthChecksAsync(array $args = [])
* @method \Aws\Result listClusters(array $args = [])
* @method \GuzzleHttp\Promise\Promise listClustersAsync(array $args = [])
* @method \Aws\Result listControlPanels(array $args = [])
* @method \GuzzleHttp\Promise\Promise listControlPanelsAsync(array $args = [])
* @method \Aws\Result listRoutingControls(array $args = [])
* @method \GuzzleHttp\Promise\Promise listRoutingControlsAsync(array $args = [])
* @method \Aws\Result listSafetyRules(array $args = [])
* @method \GuzzleHttp\Promise\Promise listSafetyRulesAsync(array $args = [])
* @method \Aws\Result listTagsForResource(array $args = [])
* @method \GuzzleHttp\Promise\Promise listTagsForResourceAsync(array $args = [])
* @method \Aws\Result tagResource(array $args = [])
* @method \GuzzleHttp\Promise\Promise tagResourceAsync(array $args = [])
* @method \Aws\Result untagResource(array $args = [])
* @method \GuzzleHttp\Promise\Promise untagResourceAsync(array $args = [])
* @method \Aws\Result updateControlPanel(array $args = [])
* @method \GuzzleHttp\Promise\Promise updateControlPanelAsync(array $args = [])
* @method \Aws\Result updateRoutingControl(array $args = [])
* @method \GuzzleHttp\Promise\Promise updateRoutingControlAsync(array $args = [])
* @method \Aws\Result updateSafetyRule(array $args = [])
* @method \GuzzleHttp\Promise\Promise updateSafetyRuleAsync(array $args = [])
*/
class Route53RecoveryControlConfigClient extends AwsClient {}