-
Notifications
You must be signed in to change notification settings - Fork 883
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
AppFabric Update: Initial release of AWS AppFabric for connecting Saa…
…S applications for better productivity and security.
- Loading branch information
Showing
7 changed files
with
3,027 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"type": "feature", | ||
"category": "AppFabric", | ||
"contributor": "", | ||
"description": "Initial release of AWS AppFabric for connecting SaaS applications for better productivity and security." | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
<?xml version="1.0"?> | ||
<!-- | ||
~ 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. | ||
--> | ||
|
||
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" | ||
xmlns="http://maven.apache.org/POM/4.0.0" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | ||
<modelVersion>4.0.0</modelVersion> | ||
<parent> | ||
<groupId>software.amazon.awssdk</groupId> | ||
<artifactId>services</artifactId> | ||
<version>2.20.94-SNAPSHOT</version> | ||
</parent> | ||
<artifactId>appfabric</artifactId> | ||
<name>AWS Java SDK :: Services :: App Fabric</name> | ||
<description>The AWS Java SDK for App Fabric module holds the client classes that are used for | ||
communicating with App Fabric. | ||
</description> | ||
<url>https://aws.amazon.com/sdkforjava</url> | ||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-jar-plugin</artifactId> | ||
<configuration> | ||
<archive> | ||
<manifestEntries> | ||
<Automatic-Module-Name>software.amazon.awssdk.services.appfabric</Automatic-Module-Name> | ||
</manifestEntries> | ||
</archive> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>software.amazon.awssdk</groupId> | ||
<artifactId>protocol-core</artifactId> | ||
<version>${awsjavasdk.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>software.amazon.awssdk</groupId> | ||
<artifactId>aws-json-protocol</artifactId> | ||
<version>${awsjavasdk.version}</version> | ||
</dependency> | ||
</dependencies> | ||
</project> |
350 changes: 350 additions & 0 deletions
350
services/appfabric/src/main/resources/codegen-resources/endpoint-rule-set.json
Large diffs are not rendered by default.
Oops, something went wrong.
295 changes: 295 additions & 0 deletions
295
services/appfabric/src/main/resources/codegen-resources/endpoint-tests.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,295 @@ | ||
{ | ||
"testCases": [ | ||
{ | ||
"documentation": "For region us-gov-east-1 with FIPS enabled and DualStack enabled", | ||
"expect": { | ||
"endpoint": { | ||
"url": "https://appfabric-fips.us-gov-east-1.api.aws" | ||
} | ||
}, | ||
"params": { | ||
"UseFIPS": true, | ||
"Region": "us-gov-east-1", | ||
"UseDualStack": true | ||
} | ||
}, | ||
{ | ||
"documentation": "For region us-gov-east-1 with FIPS enabled and DualStack disabled", | ||
"expect": { | ||
"endpoint": { | ||
"url": "https://appfabric-fips.us-gov-east-1.amazonaws.com" | ||
} | ||
}, | ||
"params": { | ||
"UseFIPS": true, | ||
"Region": "us-gov-east-1", | ||
"UseDualStack": false | ||
} | ||
}, | ||
{ | ||
"documentation": "For region us-gov-east-1 with FIPS disabled and DualStack enabled", | ||
"expect": { | ||
"endpoint": { | ||
"url": "https://appfabric.us-gov-east-1.api.aws" | ||
} | ||
}, | ||
"params": { | ||
"UseFIPS": false, | ||
"Region": "us-gov-east-1", | ||
"UseDualStack": true | ||
} | ||
}, | ||
{ | ||
"documentation": "For region us-gov-east-1 with FIPS disabled and DualStack disabled", | ||
"expect": { | ||
"endpoint": { | ||
"url": "https://appfabric.us-gov-east-1.amazonaws.com" | ||
} | ||
}, | ||
"params": { | ||
"UseFIPS": false, | ||
"Region": "us-gov-east-1", | ||
"UseDualStack": false | ||
} | ||
}, | ||
{ | ||
"documentation": "For region cn-north-1 with FIPS enabled and DualStack enabled", | ||
"expect": { | ||
"endpoint": { | ||
"url": "https://appfabric-fips.cn-north-1.api.amazonwebservices.com.cn" | ||
} | ||
}, | ||
"params": { | ||
"UseFIPS": true, | ||
"Region": "cn-north-1", | ||
"UseDualStack": true | ||
} | ||
}, | ||
{ | ||
"documentation": "For region cn-north-1 with FIPS enabled and DualStack disabled", | ||
"expect": { | ||
"endpoint": { | ||
"url": "https://appfabric-fips.cn-north-1.amazonaws.com.cn" | ||
} | ||
}, | ||
"params": { | ||
"UseFIPS": true, | ||
"Region": "cn-north-1", | ||
"UseDualStack": false | ||
} | ||
}, | ||
{ | ||
"documentation": "For region cn-north-1 with FIPS disabled and DualStack enabled", | ||
"expect": { | ||
"endpoint": { | ||
"url": "https://appfabric.cn-north-1.api.amazonwebservices.com.cn" | ||
} | ||
}, | ||
"params": { | ||
"UseFIPS": false, | ||
"Region": "cn-north-1", | ||
"UseDualStack": true | ||
} | ||
}, | ||
{ | ||
"documentation": "For region cn-north-1 with FIPS disabled and DualStack disabled", | ||
"expect": { | ||
"endpoint": { | ||
"url": "https://appfabric.cn-north-1.amazonaws.com.cn" | ||
} | ||
}, | ||
"params": { | ||
"UseFIPS": false, | ||
"Region": "cn-north-1", | ||
"UseDualStack": false | ||
} | ||
}, | ||
{ | ||
"documentation": "For region us-iso-east-1 with FIPS enabled and DualStack enabled", | ||
"expect": { | ||
"error": "FIPS and DualStack are enabled, but this partition does not support one or both" | ||
}, | ||
"params": { | ||
"UseFIPS": true, | ||
"Region": "us-iso-east-1", | ||
"UseDualStack": true | ||
} | ||
}, | ||
{ | ||
"documentation": "For region us-iso-east-1 with FIPS enabled and DualStack disabled", | ||
"expect": { | ||
"endpoint": { | ||
"url": "https://appfabric-fips.us-iso-east-1.c2s.ic.gov" | ||
} | ||
}, | ||
"params": { | ||
"UseFIPS": true, | ||
"Region": "us-iso-east-1", | ||
"UseDualStack": false | ||
} | ||
}, | ||
{ | ||
"documentation": "For region us-iso-east-1 with FIPS disabled and DualStack enabled", | ||
"expect": { | ||
"error": "DualStack is enabled but this partition does not support DualStack" | ||
}, | ||
"params": { | ||
"UseFIPS": false, | ||
"Region": "us-iso-east-1", | ||
"UseDualStack": true | ||
} | ||
}, | ||
{ | ||
"documentation": "For region us-iso-east-1 with FIPS disabled and DualStack disabled", | ||
"expect": { | ||
"endpoint": { | ||
"url": "https://appfabric.us-iso-east-1.c2s.ic.gov" | ||
} | ||
}, | ||
"params": { | ||
"UseFIPS": false, | ||
"Region": "us-iso-east-1", | ||
"UseDualStack": false | ||
} | ||
}, | ||
{ | ||
"documentation": "For region us-east-1 with FIPS enabled and DualStack enabled", | ||
"expect": { | ||
"endpoint": { | ||
"url": "https://appfabric-fips.us-east-1.api.aws" | ||
} | ||
}, | ||
"params": { | ||
"UseFIPS": true, | ||
"Region": "us-east-1", | ||
"UseDualStack": true | ||
} | ||
}, | ||
{ | ||
"documentation": "For region us-east-1 with FIPS enabled and DualStack disabled", | ||
"expect": { | ||
"endpoint": { | ||
"url": "https://appfabric-fips.us-east-1.amazonaws.com" | ||
} | ||
}, | ||
"params": { | ||
"UseFIPS": true, | ||
"Region": "us-east-1", | ||
"UseDualStack": false | ||
} | ||
}, | ||
{ | ||
"documentation": "For region us-east-1 with FIPS disabled and DualStack enabled", | ||
"expect": { | ||
"endpoint": { | ||
"url": "https://appfabric.us-east-1.api.aws" | ||
} | ||
}, | ||
"params": { | ||
"UseFIPS": false, | ||
"Region": "us-east-1", | ||
"UseDualStack": true | ||
} | ||
}, | ||
{ | ||
"documentation": "For region us-east-1 with FIPS disabled and DualStack disabled", | ||
"expect": { | ||
"endpoint": { | ||
"url": "https://appfabric.us-east-1.amazonaws.com" | ||
} | ||
}, | ||
"params": { | ||
"UseFIPS": false, | ||
"Region": "us-east-1", | ||
"UseDualStack": false | ||
} | ||
}, | ||
{ | ||
"documentation": "For region us-isob-east-1 with FIPS enabled and DualStack enabled", | ||
"expect": { | ||
"error": "FIPS and DualStack are enabled, but this partition does not support one or both" | ||
}, | ||
"params": { | ||
"UseFIPS": true, | ||
"Region": "us-isob-east-1", | ||
"UseDualStack": true | ||
} | ||
}, | ||
{ | ||
"documentation": "For region us-isob-east-1 with FIPS enabled and DualStack disabled", | ||
"expect": { | ||
"endpoint": { | ||
"url": "https://appfabric-fips.us-isob-east-1.sc2s.sgov.gov" | ||
} | ||
}, | ||
"params": { | ||
"UseFIPS": true, | ||
"Region": "us-isob-east-1", | ||
"UseDualStack": false | ||
} | ||
}, | ||
{ | ||
"documentation": "For region us-isob-east-1 with FIPS disabled and DualStack enabled", | ||
"expect": { | ||
"error": "DualStack is enabled but this partition does not support DualStack" | ||
}, | ||
"params": { | ||
"UseFIPS": false, | ||
"Region": "us-isob-east-1", | ||
"UseDualStack": true | ||
} | ||
}, | ||
{ | ||
"documentation": "For region us-isob-east-1 with FIPS disabled and DualStack disabled", | ||
"expect": { | ||
"endpoint": { | ||
"url": "https://appfabric.us-isob-east-1.sc2s.sgov.gov" | ||
} | ||
}, | ||
"params": { | ||
"UseFIPS": false, | ||
"Region": "us-isob-east-1", | ||
"UseDualStack": false | ||
} | ||
}, | ||
{ | ||
"documentation": "For custom endpoint with fips disabled and dualstack disabled", | ||
"expect": { | ||
"endpoint": { | ||
"url": "https://example.com" | ||
} | ||
}, | ||
"params": { | ||
"UseFIPS": false, | ||
"Region": "us-east-1", | ||
"UseDualStack": false, | ||
"Endpoint": "https://example.com" | ||
} | ||
}, | ||
{ | ||
"documentation": "For custom endpoint with fips enabled and dualstack disabled", | ||
"expect": { | ||
"error": "Invalid Configuration: FIPS and custom endpoint are not supported" | ||
}, | ||
"params": { | ||
"UseFIPS": true, | ||
"Region": "us-east-1", | ||
"UseDualStack": false, | ||
"Endpoint": "https://example.com" | ||
} | ||
}, | ||
{ | ||
"documentation": "For custom endpoint with fips disabled and dualstack enabled", | ||
"expect": { | ||
"error": "Invalid Configuration: Dualstack and custom endpoint are not supported" | ||
}, | ||
"params": { | ||
"UseFIPS": false, | ||
"Region": "us-east-1", | ||
"UseDualStack": true, | ||
"Endpoint": "https://example.com" | ||
} | ||
} | ||
], | ||
"version": "1.0" | ||
} |
28 changes: 28 additions & 0 deletions
28
services/appfabric/src/main/resources/codegen-resources/paginators-1.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
{ | ||
"pagination": { | ||
"ListAppAuthorizations": { | ||
"input_token": "nextToken", | ||
"output_token": "nextToken", | ||
"limit_key": "maxResults", | ||
"result_key": "appAuthorizationSummaryList" | ||
}, | ||
"ListAppBundles": { | ||
"input_token": "nextToken", | ||
"output_token": "nextToken", | ||
"limit_key": "maxResults", | ||
"result_key": "appBundleSummaryList" | ||
}, | ||
"ListIngestionDestinations": { | ||
"input_token": "nextToken", | ||
"output_token": "nextToken", | ||
"limit_key": "maxResults", | ||
"result_key": "ingestionDestinations" | ||
}, | ||
"ListIngestions": { | ||
"input_token": "nextToken", | ||
"output_token": "nextToken", | ||
"limit_key": "maxResults", | ||
"result_key": "ingestions" | ||
} | ||
} | ||
} |
Oops, something went wrong.