Skip to content

Commit

Permalink
Updated API models and rebuilt service gems.
Browse files Browse the repository at this point in the history
  • Loading branch information
AWS SDK for Ruby authored and Nobody committed May 19, 2020
1 parent adbb367 commit 609fbd5
Show file tree
Hide file tree
Showing 34 changed files with 345 additions and 102 deletions.
24 changes: 23 additions & 1 deletion apis/chime/2018-05-01/api-2.json
Expand Up @@ -4264,6 +4264,14 @@
"error":{"httpStatusCode":404},
"exception":true
},
"NotificationTarget":{
"type":"string",
"enum":[
"EventBridge",
"SNS",
"SQS"
]
},
"NullableBoolean":{"type":"boolean"},
"NumberSelectionBehavior":{
"type":"string",
Expand Down Expand Up @@ -4947,9 +4955,23 @@
"required":["DataRetentionInHours"],
"members":{
"DataRetentionInHours":{"shape":"DataRetentionInHours"},
"Disabled":{"shape":"Boolean"}
"Disabled":{"shape":"Boolean"},
"StreamingNotificationTargets":{"shape":"StreamingNotificationTargetList"}
}
},
"StreamingNotificationTarget":{
"type":"structure",
"required":["NotificationTarget"],
"members":{
"NotificationTarget":{"shape":"NotificationTarget"}
}
},
"StreamingNotificationTargetList":{
"type":"list",
"member":{"shape":"StreamingNotificationTarget"},
"max":3,
"min":1
},
"String":{"type":"string"},
"String128":{
"type":"string",
Expand Down
18 changes: 18 additions & 0 deletions apis/chime/2018-05-01/docs-2.json
Expand Up @@ -1550,6 +1550,12 @@
"refs": {
}
},
"NotificationTarget": {
"base": null,
"refs": {
"StreamingNotificationTarget$NotificationTarget": "<p>The streaming notification target.</p>"
}
},
"NullableBoolean": {
"base": null,
"refs": {
Expand Down Expand Up @@ -2060,6 +2066,18 @@
"PutVoiceConnectorStreamingConfigurationResponse$StreamingConfiguration": "<p>The updated streaming configuration details.</p>"
}
},
"StreamingNotificationTarget": {
"base": "<p>The targeted recipient for a streaming configuration notification.</p>",
"refs": {
"StreamingNotificationTargetList$member": null
}
},
"StreamingNotificationTargetList": {
"base": null,
"refs": {
"StreamingConfiguration$StreamingNotificationTargets": "<p>The streaming notification targets.</p>"
}
},
"String": {
"base": null,
"refs": {
Expand Down
25 changes: 23 additions & 2 deletions apis/ec2/2016-11-15/api-2.json
Expand Up @@ -5639,6 +5639,10 @@
"MutualAuthentication":{
"shape":"CertificateAuthentication",
"locationName":"mutualAuthentication"
},
"FederatedAuthentication":{
"shape":"FederatedAuthentication",
"locationName":"federatedAuthentication"
}
}
},
Expand All @@ -5654,7 +5658,8 @@
"members":{
"Type":{"shape":"ClientVpnAuthenticationType"},
"ActiveDirectory":{"shape":"DirectoryServiceAuthenticationRequest"},
"MutualAuthentication":{"shape":"CertificateAuthenticationRequest"}
"MutualAuthentication":{"shape":"CertificateAuthenticationRequest"},
"FederatedAuthentication":{"shape":"FederatedAuthenticationRequest"}
}
},
"ClientVpnAuthenticationRequestList":{
Expand All @@ -5665,7 +5670,8 @@
"type":"string",
"enum":[
"certificate-authentication",
"directory-service-authentication"
"directory-service-authentication",
"federated-authentication"
]
},
"ClientVpnAuthorizationRuleStatus":{
Expand Down Expand Up @@ -14409,6 +14415,21 @@
"disabled"
]
},
"FederatedAuthentication":{
"type":"structure",
"members":{
"SamlProviderArn":{
"shape":"String",
"locationName":"samlProviderArn"
}
}
},
"FederatedAuthenticationRequest":{
"type":"structure",
"members":{
"SAMLProviderArn":{"shape":"String"}
}
},
"Filter":{
"type":"structure",
"members":{
Expand Down
26 changes: 20 additions & 6 deletions apis/ec2/2016-11-15/docs-2.json

Large diffs are not rendered by default.

29 changes: 20 additions & 9 deletions apis/health/2016-08-04/api-2.json
Expand Up @@ -218,6 +218,7 @@
"type":"structure",
"members":{
"affectedAccounts":{"shape":"affectedAccountsList"},
"eventScopeCode":{"shape":"eventScopeCode"},
"nextToken":{"shape":"nextToken"}
}
},
Expand Down Expand Up @@ -428,15 +429,13 @@
"startTime":{"shape":"timestamp"},
"endTime":{"shape":"timestamp"},
"lastUpdatedTime":{"shape":"timestamp"},
"statusCode":{"shape":"eventStatusCode"}
"statusCode":{"shape":"eventStatusCode"},
"eventScopeCode":{"shape":"eventScopeCode"}
}
},
"EventAccountFilter":{
"type":"structure",
"required":[
"eventArn",
"awsAccountId"
],
"required":["eventArn"],
"members":{
"eventArn":{"shape":"eventArn"},
"awsAccountId":{"shape":"accountId"}
Expand Down Expand Up @@ -564,6 +563,7 @@
"service":{"shape":"service"},
"eventTypeCode":{"shape":"eventTypeCode"},
"eventTypeCategory":{"shape":"eventTypeCategory"},
"eventScopeCode":{"shape":"eventScopeCode"},
"region":{"shape":"region"},
"startTime":{"shape":"timestamp"},
"endTime":{"shape":"timestamp"},
Expand Down Expand Up @@ -683,8 +683,8 @@
"entityUrl":{"type":"string"},
"entityValue":{
"type":"string",
"max":256,
"pattern":".{0,256}"
"max":1224,
"pattern":".{0,1224}"
},
"entityValueList":{
"type":"list",
Expand Down Expand Up @@ -713,6 +713,14 @@
"key":{"shape":"metadataKey"},
"value":{"shape":"metadataValue"}
},
"eventScopeCode":{
"type":"string",
"enum":[
"PUBLIC",
"ACCOUNT_SPECIFIC",
"NONE"
]
},
"eventStatusCode":{
"type":"string",
"enum":[
Expand Down Expand Up @@ -774,10 +782,13 @@
"max":100,
"min":10
},
"metadataKey":{"type":"string"},
"metadataKey":{
"type":"string",
"max":32766
},
"metadataValue":{
"type":"string",
"max":10240
"max":32766
},
"nextToken":{
"type":"string",
Expand Down
8 changes: 8 additions & 0 deletions apis/health/2016-08-04/docs-2.json
Expand Up @@ -501,6 +501,14 @@
"OrganizationEventDetails$eventMetadata": "<p>Additional metadata about the event.</p>"
}
},
"eventScopeCode": {
"base": null,
"refs": {
"DescribeAffectedAccountsForOrganizationResponse$eventScopeCode": null,
"Event$eventScopeCode": null,
"OrganizationEvent$eventScopeCode": null
}
},
"eventStatusCode": {
"base": null,
"refs": {
Expand Down
3 changes: 3 additions & 0 deletions apis/health/2016-08-04/paginators-1.json
Expand Up @@ -3,6 +3,9 @@
"DescribeAffectedAccountsForOrganization": {
"input_token": "nextToken",
"limit_key": "maxResults",
"non_aggregate_keys": [
"eventScopeCode"
],
"output_token": "nextToken",
"result_key": "affectedAccounts"
},
Expand Down
10 changes: 5 additions & 5 deletions apis/transcribe/2017-10-26/docs-2.json
Expand Up @@ -593,19 +593,19 @@
"Uri": {
"base": null,
"refs": {
"CreateMedicalVocabularyRequest$VocabularyFileUri": "<p>The Amazon S3 location of the text file you use to define your custom vocabulary. The URI must be in the same AWS region as the API endpoint you're calling. Enter information about your <code>VocabularyFileUri</code> in the following format:</p> <p> <code> https://s3.&lt;aws-region&gt;.amazonaws.com/&lt;bucket-name&gt;/&lt;keyprefix&gt;/&lt;objectkey&gt; </code> </p> <p>This is an example of a vocabulary file uri location in Amazon S3:</p> <p> <code>https://s3.us-east-1.amazonaws.com/examplebucket/vocab.txt</code> </p> <p>For more information about S3 object names, see <a href=\"http://docs.aws.amazon.com/AmazonS3/latest/dev/UsingMetadata.html#object-keys\">Object Keys</a> in the <i>Amazon S3 Developer Guide</i>.</p> <p>For more information about custom vocabularies, see <a href=\"http://docs.aws.amazon.com/transcribe/latest/dg/how-it-works.html#how-vocabulary-med\">Medical Custom Vocabularies</a>.</p>",
"CreateMedicalVocabularyRequest$VocabularyFileUri": "<p>The Amazon S3 location of the text file you use to define your custom vocabulary. The URI must be in the same AWS region as the API endpoint you're calling. Enter information about your <code>VocabularyFileUri</code> in the following format:</p> <p> <code> https://s3.&lt;aws-region&gt;.amazonaws.com/&lt;bucket-name&gt;/&lt;keyprefix&gt;/&lt;objectkey&gt; </code> </p> <p>This is an example of a vocabulary file uri location in Amazon S3:</p> <p> <code>https://s3.us-east-1.amazonaws.com/AWSDOC-EXAMPLE-BUCKET/vocab.txt</code> </p> <p>For more information about S3 object names, see <a href=\"http://docs.aws.amazon.com/AmazonS3/latest/dev/UsingMetadata.html#object-keys\">Object Keys</a> in the <i>Amazon S3 Developer Guide</i>.</p> <p>For more information about custom vocabularies, see <a href=\"http://docs.aws.amazon.com/transcribe/latest/dg/how-it-works.html#how-vocabulary-med\">Medical Custom Vocabularies</a>.</p>",
"CreateVocabularyFilterRequest$VocabularyFilterFileUri": "<p>The Amazon S3 location of a text file used as input to create the vocabulary filter. Only use characters from the character set defined for custom vocabularies. For a list of character sets, see <a href=\"https://docs.aws.amazon.com/transcribe/latest/dg/how-vocabulary.html#charsets\">Character Sets for Custom Vocabularies</a>.</p> <p>The specified file must be less than 50 KB of UTF-8 characters.</p> <p>If you provide the location of a list of words in the <code>VocabularyFilterFileUri</code> parameter, you can't use the <code>Words</code> parameter.</p>",
"CreateVocabularyRequest$VocabularyFileUri": "<p>The S3 location of the text file that contains the definition of the custom vocabulary. The URI must be in the same region as the API endpoint that you are calling. The general form is </p> <p> <code> https://s3.&lt;aws-region&gt;.amazonaws.com/&lt;bucket-name&gt;/&lt;keyprefix&gt;/&lt;objectkey&gt; </code> </p> <p>For example:</p> <p> <code>https://s3.us-east-1.amazonaws.com/examplebucket/vocab.txt</code> </p> <p>For more information about S3 object names, see <a href=\"http://docs.aws.amazon.com/AmazonS3/latest/dev/UsingMetadata.html#object-keys\">Object Keys</a> in the <i>Amazon S3 Developer Guide</i>.</p> <p>For more information about custom vocabularies, see <a href=\"http://docs.aws.amazon.com/transcribe/latest/dg/how-it-works.html#how-vocabulary\">Custom Vocabularies</a>.</p>",
"CreateVocabularyRequest$VocabularyFileUri": "<p>The S3 location of the text file that contains the definition of the custom vocabulary. The URI must be in the same region as the API endpoint that you are calling. The general form is </p> <p>For more information about S3 object names, see <a href=\"http://docs.aws.amazon.com/AmazonS3/latest/dev/UsingMetadata.html#object-keys\">Object Keys</a> in the <i>Amazon S3 Developer Guide</i>.</p> <p>For more information about custom vocabularies, see <a href=\"http://docs.aws.amazon.com/transcribe/latest/dg/how-it-works.html#how-vocabulary\">Custom Vocabularies</a>.</p>",
"GetMedicalVocabularyResponse$DownloadUri": "<p>The Amazon S3 location where the vocabulary is stored. Use this URI to get the contents of the vocabulary. You can download your vocabulary from the URI for a limited time.</p>",
"GetVocabularyFilterResponse$DownloadUri": "<p>The URI of the list of words in the vocabulary filter. You can use this URI to get the list of words.</p>",
"GetVocabularyResponse$DownloadUri": "<p>The S3 location where the vocabulary is stored. Use this URI to get the contents of the vocabulary. The URI is available for a limited time.</p>",
"Media$MediaFileUri": "<p>The S3 object location of the input media file. The URI must be in the same region as the API endpoint that you are calling. The general form is:</p> <p> <code> s3://&lt;bucket-name&gt;/&lt;keyprefix&gt;/&lt;objectkey&gt; </code> </p> <p>For example:</p> <p> <code>s3://examplebucket/example.mp4</code> </p> <p> <code>s3://examplebucket/mediadocs/example.mp4</code> </p> <p>For more information about S3 object names, see <a href=\"http://docs.aws.amazon.com/AmazonS3/latest/dev/UsingMetadata.html#object-keys\">Object Keys</a> in the <i>Amazon S3 Developer Guide</i>.</p>",
"Media$MediaFileUri": "<p>The S3 object location of the input media file. The URI must be in the same region as the API endpoint that you are calling. The general form is:</p> <p>For example:</p> <p>For more information about S3 object names, see <a href=\"http://docs.aws.amazon.com/AmazonS3/latest/dev/UsingMetadata.html#object-keys\">Object Keys</a> in the <i>Amazon S3 Developer Guide</i>.</p>",
"MedicalTranscript$TranscriptFileUri": "<p>The S3 object location of the medical transcript.</p> <p>Use this URI to access the medical transcript. This URI points to the S3 bucket you created to store the medical transcript.</p>",
"Transcript$TranscriptFileUri": "<p>The S3 object location of the the transcript.</p> <p>Use this URI to access the transcript. If you specified an S3 bucket in the <code>OutputBucketName</code> field when you created the job, this is the URI of that bucket. If you chose to store the transcript in Amazon Transcribe, this is a shareable URL that provides secure access to that location.</p>",
"Transcript$RedactedTranscriptFileUri": "<p>The S3 object location of the redacted transcript.</p> <p>Use this URI to access the redacated transcript. If you specified an S3 bucket in the <code>OutputBucketName</code> field when you created the job, this is the URI of that bucket. If you chose to store the transcript in Amazon Transcribe, this is a shareable URL that provides secure access to that location.</p>",
"UpdateMedicalVocabularyRequest$VocabularyFileUri": "<p>The Amazon S3 location of the text file containing the definition of the custom vocabulary. The URI must be in the same AWS region as the API endpoint you are calling. You can see the fields you need to enter for you Amazon S3 location in the example URI here:</p> <p> <code> https://s3.&lt;aws-region&gt;.amazonaws.com/&lt;bucket-name&gt;/&lt;keyprefix&gt;/&lt;objectkey&gt; </code> </p> <p>For example:</p> <p> <code>https://s3.us-east-1.amazonaws.com/examplebucket/vocab.txt</code> </p> <p>For more information about S3 object names, see <a href=\"http://docs.aws.amazon.com/AmazonS3/latest/dev/UsingMetadata.html#object-keys\">Object Keys</a> in the <i>Amazon S3 Developer Guide</i>.</p> <p>For more information about custom vocabularies in Amazon Transcribe Medical, see <a href=\"http://docs.aws.amazon.com/transcribe/latest/dg/how-it-works.html#how-vocabulary\">Medical Custom Vocabularies</a>.</p>",
"UpdateMedicalVocabularyRequest$VocabularyFileUri": "<p>The Amazon S3 location of the text file containing the definition of the custom vocabulary. The URI must be in the same AWS region as the API endpoint you are calling. You can see the fields you need to enter for you Amazon S3 location in the example URI here:</p> <p> <code> https://s3.&lt;aws-region&gt;.amazonaws.com/&lt;bucket-name&gt;/&lt;keyprefix&gt;/&lt;objectkey&gt; </code> </p> <p>For example:</p> <p> <code>https://s3.us-east-1.amazonaws.com/AWSDOC-EXAMPLE-BUCKET/vocab.txt</code> </p> <p>For more information about S3 object names, see <a href=\"http://docs.aws.amazon.com/AmazonS3/latest/dev/UsingMetadata.html#object-keys\">Object Keys</a> in the <i>Amazon S3 Developer Guide</i>.</p> <p>For more information about custom vocabularies in Amazon Transcribe Medical, see <a href=\"http://docs.aws.amazon.com/transcribe/latest/dg/how-it-works.html#how-vocabulary\">Medical Custom Vocabularies</a>.</p>",
"UpdateVocabularyFilterRequest$VocabularyFilterFileUri": "<p>The Amazon S3 location of a text file used as input to create the vocabulary filter. Only use characters from the character set defined for custom vocabularies. For a list of character sets, see <a href=\"https://docs.aws.amazon.com/transcribe/latest/dg/how-vocabulary.html#charsets\">Character Sets for Custom Vocabularies</a>.</p> <p>The specified file must be less than 50 KB of UTF-8 characters.</p> <p>If you provide the location of a list of words in the <code>VocabularyFilterFileUri</code> parameter, you can't use the <code>Words</code> parameter.</p>",
"UpdateVocabularyRequest$VocabularyFileUri": "<p>The S3 location of the text file that contains the definition of the custom vocabulary. The URI must be in the same region as the API endpoint that you are calling. The general form is </p> <p> <code> https://s3.&lt;aws-region&gt;.amazonaws.com/&lt;bucket-name&gt;/&lt;keyprefix&gt;/&lt;objectkey&gt; </code> </p> <p>For example:</p> <p> <code>https://s3.us-east-1.amazonaws.com/examplebucket/vocab.txt</code> </p> <p>For more information about S3 object names, see <a href=\"http://docs.aws.amazon.com/AmazonS3/latest/dev/UsingMetadata.html#object-keys\">Object Keys</a> in the <i>Amazon S3 Developer Guide</i>.</p> <p>For more information about custom vocabularies, see <a href=\"http://docs.aws.amazon.com/transcribe/latest/dg/how-it-works.html#how-vocabulary\">Custom Vocabularies</a>.</p>"
"UpdateVocabularyRequest$VocabularyFileUri": "<p>The S3 location of the text file that contains the definition of the custom vocabulary. The URI must be in the same region as the API endpoint that you are calling. The general form is </p> <p>For example:</p> <p>For more information about S3 object names, see <a href=\"http://docs.aws.amazon.com/AmazonS3/latest/dev/UsingMetadata.html#object-keys\">Object Keys</a> in the <i>Amazon S3 Developer Guide</i>.</p> <p>For more information about custom vocabularies, see <a href=\"http://docs.aws.amazon.com/transcribe/latest/dg/how-it-works.html#how-vocabulary\">Custom Vocabularies</a>.</p>"
}
},
"Vocabularies": {
Expand Down
5 changes: 5 additions & 0 deletions gems/aws-partitions/CHANGELOG.md
@@ -1,6 +1,11 @@
Unreleased Changes
------------------

1.318.0 (2020-05-19)
------------------

* Feature - Updated the partitions source data the determines the AWS service regions and endpoints.

1.317.0 (2020-05-18)
------------------

Expand Down
2 changes: 1 addition & 1 deletion gems/aws-partitions/VERSION
@@ -1 +1 @@
1.317.0
1.318.0
12 changes: 12 additions & 0 deletions gems/aws-partitions/partitions.json
Expand Up @@ -4516,10 +4516,22 @@
},
"schemas" : {
"endpoints" : {
"ap-east-1" : { },
"ap-northeast-1" : { },
"ap-northeast-2" : { },
"ap-south-1" : { },
"ap-southeast-1" : { },
"ap-southeast-2" : { },
"ca-central-1" : { },
"eu-central-1" : { },
"eu-north-1" : { },
"eu-west-1" : { },
"eu-west-2" : { },
"eu-west-3" : { },
"sa-east-1" : { },
"us-east-1" : { },
"us-east-2" : { },
"us-west-1" : { },
"us-west-2" : { }
}
},
Expand Down
5 changes: 5 additions & 0 deletions gems/aws-sdk-chime/CHANGELOG.md
@@ -1,6 +1,11 @@
Unreleased Changes
------------------

1.26.0 (2020-05-19)
------------------

* Feature - You can now receive Voice Connector call events through SNS or SQS.

1.25.0 (2020-05-18)
------------------

Expand Down
2 changes: 1 addition & 1 deletion gems/aws-sdk-chime/VERSION
@@ -1 +1 @@
1.25.0
1.26.0
2 changes: 1 addition & 1 deletion gems/aws-sdk-chime/lib/aws-sdk-chime.rb
Expand Up @@ -45,6 +45,6 @@
# @service
module Aws::Chime

GEM_VERSION = '1.25.0'
GEM_VERSION = '1.26.0'

end

0 comments on commit 609fbd5

Please sign in to comment.