diff --git a/tuts/001-lightsail-gs/php/GettingStartedScenario.php b/tuts/001-lightsail-gs/php/GettingStartedScenario.php new file mode 100644 index 0000000..de8329c --- /dev/null +++ b/tuts/001-lightsail-gs/php/GettingStartedScenario.php @@ -0,0 +1,12 @@ + 'us-east-1']); +echo "Running Lightsail getting started scenario...\n"; +// TODO: setup, interact, teardown +echo "Scenario complete.\n"; diff --git a/tuts/001-lightsail-gs/php/LightsailWrapper.php b/tuts/001-lightsail-gs/php/LightsailWrapper.php new file mode 100644 index 0000000..e2708a6 --- /dev/null +++ b/tuts/001-lightsail-gs/php/LightsailWrapper.php @@ -0,0 +1,20 @@ +client = $client; + } + + // TODO: Add wrapper methods matching CLI tutorial actions +} diff --git a/tuts/001-lightsail-gs/php/composer.json b/tuts/001-lightsail-gs/php/composer.json new file mode 100644 index 0000000..82f9f33 --- /dev/null +++ b/tuts/001-lightsail-gs/php/composer.json @@ -0,0 +1 @@ +{"require": {"aws/aws-sdk-php": "^3.0"}, "require-dev": {"phpunit/phpunit": "^10.0"}} diff --git a/tuts/002-vpc-gs/php/Ec2Wrapper.php b/tuts/002-vpc-gs/php/Ec2Wrapper.php new file mode 100644 index 0000000..9fb20f4 --- /dev/null +++ b/tuts/002-vpc-gs/php/Ec2Wrapper.php @@ -0,0 +1,20 @@ +client = $client; + } + + // TODO: Add wrapper methods matching CLI tutorial actions +} diff --git a/tuts/002-vpc-gs/php/GettingStartedScenario.php b/tuts/002-vpc-gs/php/GettingStartedScenario.php new file mode 100644 index 0000000..9f4edad --- /dev/null +++ b/tuts/002-vpc-gs/php/GettingStartedScenario.php @@ -0,0 +1,12 @@ + 'us-east-1']); +echo "Running Ec2 getting started scenario...\n"; +// TODO: setup, interact, teardown +echo "Scenario complete.\n"; diff --git a/tuts/002-vpc-gs/php/composer.json b/tuts/002-vpc-gs/php/composer.json new file mode 100644 index 0000000..82f9f33 --- /dev/null +++ b/tuts/002-vpc-gs/php/composer.json @@ -0,0 +1 @@ +{"require": {"aws/aws-sdk-php": "^3.0"}, "require-dev": {"phpunit/phpunit": "^10.0"}} diff --git a/tuts/003-s3-gettingstarted/php/GettingStartedScenario.php b/tuts/003-s3-gettingstarted/php/GettingStartedScenario.php new file mode 100644 index 0000000..aef70c0 --- /dev/null +++ b/tuts/003-s3-gettingstarted/php/GettingStartedScenario.php @@ -0,0 +1,12 @@ + 'us-east-1']); +echo "Running S3 getting started scenario...\n"; +// TODO: setup, interact, teardown +echo "Scenario complete.\n"; diff --git a/tuts/003-s3-gettingstarted/php/S3Wrapper.php b/tuts/003-s3-gettingstarted/php/S3Wrapper.php new file mode 100644 index 0000000..aaecbe9 --- /dev/null +++ b/tuts/003-s3-gettingstarted/php/S3Wrapper.php @@ -0,0 +1,20 @@ +client = $client; + } + + // TODO: Add wrapper methods matching CLI tutorial actions +} diff --git a/tuts/003-s3-gettingstarted/php/composer.json b/tuts/003-s3-gettingstarted/php/composer.json new file mode 100644 index 0000000..82f9f33 --- /dev/null +++ b/tuts/003-s3-gettingstarted/php/composer.json @@ -0,0 +1 @@ +{"require": {"aws/aws-sdk-php": "^3.0"}, "require-dev": {"phpunit/phpunit": "^10.0"}} diff --git a/tuts/004-cloudmap-custom-attributes/php/CloudMapWrapper.php b/tuts/004-cloudmap-custom-attributes/php/CloudMapWrapper.php new file mode 100644 index 0000000..5ab16de --- /dev/null +++ b/tuts/004-cloudmap-custom-attributes/php/CloudMapWrapper.php @@ -0,0 +1,20 @@ +client = $client; + } + + // TODO: Add wrapper methods matching CLI tutorial actions +} diff --git a/tuts/004-cloudmap-custom-attributes/php/GettingStartedScenario.php b/tuts/004-cloudmap-custom-attributes/php/GettingStartedScenario.php new file mode 100644 index 0000000..2c01206 --- /dev/null +++ b/tuts/004-cloudmap-custom-attributes/php/GettingStartedScenario.php @@ -0,0 +1,12 @@ + 'us-east-1']); +echo "Running CloudMap getting started scenario...\n"; +// TODO: setup, interact, teardown +echo "Scenario complete.\n"; diff --git a/tuts/004-cloudmap-custom-attributes/php/composer.json b/tuts/004-cloudmap-custom-attributes/php/composer.json new file mode 100644 index 0000000..82f9f33 --- /dev/null +++ b/tuts/004-cloudmap-custom-attributes/php/composer.json @@ -0,0 +1 @@ +{"require": {"aws/aws-sdk-php": "^3.0"}, "require-dev": {"phpunit/phpunit": "^10.0"}} diff --git a/tuts/005-cloudfront-gettingstarted/php/CloudFrontWrapper.php b/tuts/005-cloudfront-gettingstarted/php/CloudFrontWrapper.php new file mode 100644 index 0000000..70908df --- /dev/null +++ b/tuts/005-cloudfront-gettingstarted/php/CloudFrontWrapper.php @@ -0,0 +1,20 @@ +client = $client; + } + + // TODO: Add wrapper methods matching CLI tutorial actions +} diff --git a/tuts/005-cloudfront-gettingstarted/php/GettingStartedScenario.php b/tuts/005-cloudfront-gettingstarted/php/GettingStartedScenario.php new file mode 100644 index 0000000..846f5d3 --- /dev/null +++ b/tuts/005-cloudfront-gettingstarted/php/GettingStartedScenario.php @@ -0,0 +1,12 @@ + 'us-east-1']); +echo "Running CloudFront getting started scenario...\n"; +// TODO: setup, interact, teardown +echo "Scenario complete.\n"; diff --git a/tuts/005-cloudfront-gettingstarted/php/composer.json b/tuts/005-cloudfront-gettingstarted/php/composer.json new file mode 100644 index 0000000..82f9f33 --- /dev/null +++ b/tuts/005-cloudfront-gettingstarted/php/composer.json @@ -0,0 +1 @@ +{"require": {"aws/aws-sdk-php": "^3.0"}, "require-dev": {"phpunit/phpunit": "^10.0"}} diff --git a/tuts/008-vpc-private-servers-gs/php/Ec2Wrapper.php b/tuts/008-vpc-private-servers-gs/php/Ec2Wrapper.php new file mode 100644 index 0000000..9fb20f4 --- /dev/null +++ b/tuts/008-vpc-private-servers-gs/php/Ec2Wrapper.php @@ -0,0 +1,20 @@ +client = $client; + } + + // TODO: Add wrapper methods matching CLI tutorial actions +} diff --git a/tuts/008-vpc-private-servers-gs/php/GettingStartedScenario.php b/tuts/008-vpc-private-servers-gs/php/GettingStartedScenario.php new file mode 100644 index 0000000..9f4edad --- /dev/null +++ b/tuts/008-vpc-private-servers-gs/php/GettingStartedScenario.php @@ -0,0 +1,12 @@ + 'us-east-1']); +echo "Running Ec2 getting started scenario...\n"; +// TODO: setup, interact, teardown +echo "Scenario complete.\n"; diff --git a/tuts/008-vpc-private-servers-gs/php/composer.json b/tuts/008-vpc-private-servers-gs/php/composer.json new file mode 100644 index 0000000..82f9f33 --- /dev/null +++ b/tuts/008-vpc-private-servers-gs/php/composer.json @@ -0,0 +1 @@ +{"require": {"aws/aws-sdk-php": "^3.0"}, "require-dev": {"phpunit/phpunit": "^10.0"}} diff --git a/tuts/009-vpc-ipam-gs/php/Ec2Wrapper.php b/tuts/009-vpc-ipam-gs/php/Ec2Wrapper.php new file mode 100644 index 0000000..9fb20f4 --- /dev/null +++ b/tuts/009-vpc-ipam-gs/php/Ec2Wrapper.php @@ -0,0 +1,20 @@ +client = $client; + } + + // TODO: Add wrapper methods matching CLI tutorial actions +} diff --git a/tuts/009-vpc-ipam-gs/php/GettingStartedScenario.php b/tuts/009-vpc-ipam-gs/php/GettingStartedScenario.php new file mode 100644 index 0000000..9f4edad --- /dev/null +++ b/tuts/009-vpc-ipam-gs/php/GettingStartedScenario.php @@ -0,0 +1,12 @@ + 'us-east-1']); +echo "Running Ec2 getting started scenario...\n"; +// TODO: setup, interact, teardown +echo "Scenario complete.\n"; diff --git a/tuts/009-vpc-ipam-gs/php/composer.json b/tuts/009-vpc-ipam-gs/php/composer.json new file mode 100644 index 0000000..82f9f33 --- /dev/null +++ b/tuts/009-vpc-ipam-gs/php/composer.json @@ -0,0 +1 @@ +{"require": {"aws/aws-sdk-php": "^3.0"}, "require-dev": {"phpunit/phpunit": "^10.0"}} diff --git a/tuts/010-cloudmap-service-discovery/php/CloudMapWrapper.php b/tuts/010-cloudmap-service-discovery/php/CloudMapWrapper.php new file mode 100644 index 0000000..5ab16de --- /dev/null +++ b/tuts/010-cloudmap-service-discovery/php/CloudMapWrapper.php @@ -0,0 +1,20 @@ +client = $client; + } + + // TODO: Add wrapper methods matching CLI tutorial actions +} diff --git a/tuts/010-cloudmap-service-discovery/php/GettingStartedScenario.php b/tuts/010-cloudmap-service-discovery/php/GettingStartedScenario.php new file mode 100644 index 0000000..2c01206 --- /dev/null +++ b/tuts/010-cloudmap-service-discovery/php/GettingStartedScenario.php @@ -0,0 +1,12 @@ + 'us-east-1']); +echo "Running CloudMap getting started scenario...\n"; +// TODO: setup, interact, teardown +echo "Scenario complete.\n"; diff --git a/tuts/010-cloudmap-service-discovery/php/composer.json b/tuts/010-cloudmap-service-discovery/php/composer.json new file mode 100644 index 0000000..82f9f33 --- /dev/null +++ b/tuts/010-cloudmap-service-discovery/php/composer.json @@ -0,0 +1 @@ +{"require": {"aws/aws-sdk-php": "^3.0"}, "require-dev": {"phpunit/phpunit": "^10.0"}} diff --git a/tuts/011-getting-started-batch-fargate/php/BatchWrapper.php b/tuts/011-getting-started-batch-fargate/php/BatchWrapper.php new file mode 100644 index 0000000..359b62a --- /dev/null +++ b/tuts/011-getting-started-batch-fargate/php/BatchWrapper.php @@ -0,0 +1,20 @@ +client = $client; + } + + // TODO: Add wrapper methods matching CLI tutorial actions +} diff --git a/tuts/011-getting-started-batch-fargate/php/GettingStartedScenario.php b/tuts/011-getting-started-batch-fargate/php/GettingStartedScenario.php new file mode 100644 index 0000000..2f3d193 --- /dev/null +++ b/tuts/011-getting-started-batch-fargate/php/GettingStartedScenario.php @@ -0,0 +1,12 @@ + 'us-east-1']); +echo "Running Batch getting started scenario...\n"; +// TODO: setup, interact, teardown +echo "Scenario complete.\n"; diff --git a/tuts/011-getting-started-batch-fargate/php/composer.json b/tuts/011-getting-started-batch-fargate/php/composer.json new file mode 100644 index 0000000..82f9f33 --- /dev/null +++ b/tuts/011-getting-started-batch-fargate/php/composer.json @@ -0,0 +1 @@ +{"require": {"aws/aws-sdk-php": "^3.0"}, "require-dev": {"phpunit/phpunit": "^10.0"}} diff --git a/tuts/012-transitgateway-gettingstarted/php/Ec2Wrapper.php b/tuts/012-transitgateway-gettingstarted/php/Ec2Wrapper.php new file mode 100644 index 0000000..9fb20f4 --- /dev/null +++ b/tuts/012-transitgateway-gettingstarted/php/Ec2Wrapper.php @@ -0,0 +1,20 @@ +client = $client; + } + + // TODO: Add wrapper methods matching CLI tutorial actions +} diff --git a/tuts/012-transitgateway-gettingstarted/php/GettingStartedScenario.php b/tuts/012-transitgateway-gettingstarted/php/GettingStartedScenario.php new file mode 100644 index 0000000..9f4edad --- /dev/null +++ b/tuts/012-transitgateway-gettingstarted/php/GettingStartedScenario.php @@ -0,0 +1,12 @@ + 'us-east-1']); +echo "Running Ec2 getting started scenario...\n"; +// TODO: setup, interact, teardown +echo "Scenario complete.\n"; diff --git a/tuts/012-transitgateway-gettingstarted/php/composer.json b/tuts/012-transitgateway-gettingstarted/php/composer.json new file mode 100644 index 0000000..82f9f33 --- /dev/null +++ b/tuts/012-transitgateway-gettingstarted/php/composer.json @@ -0,0 +1 @@ +{"require": {"aws/aws-sdk-php": "^3.0"}, "require-dev": {"phpunit/phpunit": "^10.0"}}