Skip to content

Commit 9975c1f

Browse files
committed
Add AWS Secrets Manager
1 parent 2f69716 commit 9975c1f

File tree

7 files changed

+1756
-0
lines changed

7 files changed

+1756
-0
lines changed
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"category": "AWS Secrets Manager",
3+
"type": "feature",
4+
"description": "Add AWS Secrets Manager to v2."
5+
}

services/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -148,6 +148,7 @@
148148
<module>servicediscovery</module>
149149
<module>translate</module>
150150
<module>workmail</module>
151+
<module>secretsmanager</module>
151152
</modules>
152153

153154
<description>The AWS Java SDK services</description>

services/secretsmanager/pom.xml

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!--
3+
~ Copyright 2010-2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
4+
~
5+
~ Licensed under the Apache License, Version 2.0 (the "License").
6+
~ You may not use this file except in compliance with the License.
7+
~ A copy of the License is located at
8+
~
9+
~ http://aws.amazon.com/apache2.0
10+
~
11+
~ or in the "license" file accompanying this file. This file is distributed
12+
~ on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
13+
~ express or implied. See the License for the specific language governing
14+
~ permissions and limitations under the License.
15+
-->
16+
17+
<project xmlns="http://maven.apache.org/POM/4.0.0"
18+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
19+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
20+
<modelVersion>4.0.0</modelVersion>
21+
22+
<parent>
23+
<groupId>software.amazon.awssdk</groupId>
24+
<artifactId>services</artifactId>
25+
<version>2.0.0-preview-10-SNAPSHOT</version>
26+
</parent>
27+
28+
<artifactId>secretsmanager</artifactId>
29+
<name>AWS Java SDK :: Services :: AWS Secrets Manager</name>
30+
<description>The AWS Java SDK for AWS Secrets Manager module holds the client classes that are used for
31+
communicating with AWS Secrets Manager Service
32+
</description>
33+
<url>https://aws.amazon.com/sdkforjava</url>
34+
35+
36+
</project>
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"defaultEndpoint": "secretsmanager.us-east-1.amazonaws.com",
3+
"serviceInterfaceName": "AWSSecretsManager"
4+
}
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"authPolicyActions" : {
3+
"skip" : true
4+
},
5+
"skipSmokeTests": true
6+
}

0 commit comments

Comments
 (0)