Skip to content

Commit

Permalink
Updates SDK to v2.1135.0
Browse files Browse the repository at this point in the history
  • Loading branch information
awstools committed May 13, 2022
1 parent 04fbe87 commit 2b6313c
Show file tree
Hide file tree
Showing 12 changed files with 365 additions and 29 deletions.
7 changes: 7 additions & 0 deletions .changes/2.1135.0.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
[
{
"type": "feature",
"category": "Grafana",
"description": "This release adds APIs for creating and deleting API keys in an Amazon Managed Grafana workspace."
}
]
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
# Changelog for AWS SDK for JavaScript
<!--LATEST=2.1134.0-->
<!--LATEST=2.1135.0-->
<!--ENTRYINSERT-->

## 2.1135.0
* feature: Grafana: This release adds APIs for creating and deleting API keys in an Amazon Managed Grafana workspace.

## 2.1134.0
* feature: EC2: This release introduces a target type Gateway Load Balancer Endpoint for mirrored traffic. Customers can now specify GatewayLoadBalancerEndpoint option during the creation of a traffic mirror target.
* feature: Kendra: Amazon Kendra now provides a data source connector for Jira. For more information, see https://docs.aws.amazon.com/kendra/latest/dg/data-source-jira.html
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ For release notes, see the [CHANGELOG](https://github.com/aws/aws-sdk-js/blob/ma
To use the SDK in the browser, simply add the following script tag to your
HTML pages:

<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1134.0.min.js"></script>
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1135.0.min.js"></script>

You can also build a custom browser SDK with your specified set of AWS services.
This can allow you to reduce the SDK's size, specify different API versions of
Expand Down
107 changes: 92 additions & 15 deletions apis/grafana-2020-08-18.min.json
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,48 @@
},
"idempotent": true
},
"CreateWorkspaceApiKey": {
"http": {
"requestUri": "/workspaces/{workspaceId}/apikeys",
"responseCode": 200
},
"input": {
"type": "structure",
"required": [
"keyName",
"keyRole",
"secondsToLive",
"workspaceId"
],
"members": {
"keyName": {},
"keyRole": {},
"secondsToLive": {
"type": "integer"
},
"workspaceId": {
"location": "uri",
"locationName": "workspaceId"
}
}
},
"output": {
"type": "structure",
"required": [
"key",
"keyName",
"workspaceId"
],
"members": {
"key": {
"type": "string",
"sensitive": true
},
"keyName": {},
"workspaceId": {}
}
}
},
"DeleteWorkspace": {
"http": {
"method": "DELETE",
Expand Down Expand Up @@ -138,6 +180,41 @@
},
"idempotent": true
},
"DeleteWorkspaceApiKey": {
"http": {
"method": "DELETE",
"requestUri": "/workspaces/{workspaceId}/apikeys/{keyName}",
"responseCode": 200
},
"input": {
"type": "structure",
"required": [
"keyName",
"workspaceId"
],
"members": {
"keyName": {
"location": "uri",
"locationName": "keyName"
},
"workspaceId": {
"location": "uri",
"locationName": "workspaceId"
}
}
},
"output": {
"type": "structure",
"required": [
"keyName",
"workspaceId"
],
"members": {
"keyName": {},
"workspaceId": {}
}
}
},
"DescribeWorkspace": {
"http": {
"method": "GET",
Expand Down Expand Up @@ -193,7 +270,7 @@
],
"members": {
"authentication": {
"shape": "S14"
"shape": "S1c"
}
}
}
Expand Down Expand Up @@ -290,7 +367,7 @@
"members": {
"role": {},
"user": {
"shape": "S1v"
"shape": "S22"
}
}
}
Expand Down Expand Up @@ -470,7 +547,7 @@
"updateInstructionBatch": {
"type": "list",
"member": {
"shape": "S2a"
"shape": "S2h"
}
},
"workspaceId": {
Expand All @@ -496,7 +573,7 @@
],
"members": {
"causedBy": {
"shape": "S2a"
"shape": "S2h"
},
"code": {
"type": "integer"
Expand Down Expand Up @@ -578,7 +655,7 @@
"shape": "S8"
},
"samlConfiguration": {
"shape": "S18"
"shape": "S1g"
},
"workspaceId": {
"location": "uri",
Expand All @@ -593,7 +670,7 @@
],
"members": {
"authentication": {
"shape": "S14"
"shape": "S1c"
}
}
}
Expand Down Expand Up @@ -715,7 +792,7 @@
"type": "string",
"sensitive": true
},
"S14": {
"S1c": {
"type": "structure",
"required": [
"providers"
Expand All @@ -737,14 +814,14 @@
],
"members": {
"configuration": {
"shape": "S18"
"shape": "S1g"
},
"status": {}
}
}
}
},
"S18": {
"S1g": {
"type": "structure",
"required": [
"idpMetadata"
Expand Down Expand Up @@ -780,20 +857,20 @@
"type": "structure",
"members": {
"admin": {
"shape": "S1i"
"shape": "S1p"
},
"editor": {
"shape": "S1i"
"shape": "S1p"
}
}
}
}
},
"S1i": {
"S1p": {
"type": "list",
"member": {}
},
"S1v": {
"S22": {
"type": "structure",
"required": [
"id",
Expand All @@ -804,7 +881,7 @@
"type": {}
}
},
"S2a": {
"S2h": {
"type": "structure",
"required": [
"action",
Expand All @@ -817,7 +894,7 @@
"users": {
"type": "list",
"member": {
"shape": "S1v"
"shape": "S22"
}
}
}
Expand Down
Loading

0 comments on commit 2b6313c

Please sign in to comment.