Skip to content

Commit

Permalink
Update to latest models
Browse files Browse the repository at this point in the history
  • Loading branch information
aws-sdk-python-automation committed Sep 16, 2020
1 parent bc37761 commit b1fd3f9
Show file tree
Hide file tree
Showing 11 changed files with 1,212 additions and 38 deletions.
5 changes: 5 additions & 0 deletions .changes/next-release/api-change-connect-75846.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"category": "``connect``",
"type": "api-change",
"description": "Update connect client to latest version"
}
5 changes: 5 additions & 0 deletions .changes/next-release/api-change-dlm-40387.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"category": "``dlm``",
"type": "api-change",
"description": "Update dlm client to latest version"
}
5 changes: 5 additions & 0 deletions .changes/next-release/api-change-greengrass-74007.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"category": "``greengrass``",
"type": "api-change",
"description": "Update greengrass client to latest version"
}
5 changes: 5 additions & 0 deletions .changes/next-release/api-change-servicecatalog-31722.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"category": "``servicecatalog``",
"type": "api-change",
"description": "Update servicecatalog client to latest version"
}
5 changes: 5 additions & 0 deletions .changes/next-release/api-change-ssm-31503.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"category": "``ssm``",
"type": "api-change",
"description": "Update ssm client to latest version"
}
12 changes: 12 additions & 0 deletions botocore/data/connect/2017-08-08/paginators-1.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,18 @@
"limit_key": "MaxResults",
"output_token": "NextToken",
"result_key": "QueueSummaryList"
},
"ListPrompts": {
"input_token": "NextToken",
"limit_key": "MaxResults",
"output_token": "NextToken",
"result_key": "PromptSummaryList"
},
"ListRoutingProfileQueues": {
"input_token": "NextToken",
"limit_key": "MaxResults",
"output_token": "NextToken",
"result_key": "RoutingProfileQueueConfigSummaryList"
}
}
}
1,045 changes: 1,018 additions & 27 deletions botocore/data/connect/2017-08-08/service-2.json

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions botocore/data/dlm/2018-01-12/service-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -590,7 +590,7 @@
},
"Schedules":{
"shape":"ScheduleList",
"documentation":"<p>The schedule of policy-defined actions.</p>"
"documentation":"<p>The schedules of policy-defined actions. A policy can have up to four schedules - one mandatory schedule and up to three optional schedules.</p>"
},
"Parameters":{
"shape":"Parameters",
Expand Down Expand Up @@ -712,7 +712,7 @@
"ScheduleList":{
"type":"list",
"member":{"shape":"Schedule"},
"max":1,
"max":4,
"min":1
},
"ScheduleName":{
Expand Down
141 changes: 141 additions & 0 deletions botocore/data/greengrass/2017-06-07/service-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -1096,6 +1096,29 @@
} ],
"documentation" : "Retrieves information about a subscription definition version."
},
"GetThingRuntimeConfiguration" : {
"name" : "GetThingRuntimeConfiguration",
"http" : {
"method" : "GET",
"requestUri" : "/greengrass/things/{ThingName}/runtimeconfig",
"responseCode" : 200
},
"input" : {
"shape" : "GetThingRuntimeConfigurationRequest"
},
"output" : {
"shape" : "GetThingRuntimeConfigurationResponse",
"documentation" : "Success. The response contains the runtime configuration for the given thing."
},
"errors" : [ {
"shape" : "BadRequestException",
"documentation" : "invalid request"
}, {
"shape" : "InternalServerErrorException",
"documentation" : "server error"
} ],
"documentation" : "Get the runtime configuration of a thing."
},
"ListBulkDeploymentDetailedReports" : {
"name" : "ListBulkDeploymentDetailedReports",
"http" : {
Expand Down Expand Up @@ -1781,6 +1804,29 @@
"documentation" : "invalid request"
} ],
"documentation" : "Updates a subscription definition."
},
"UpdateThingRuntimeConfiguration" : {
"name" : "UpdateThingRuntimeConfiguration",
"http" : {
"method" : "PUT",
"requestUri" : "/greengrass/things/{ThingName}/runtimeconfig",
"responseCode" : 200
},
"input" : {
"shape" : "UpdateThingRuntimeConfigurationRequest"
},
"output" : {
"shape" : "UpdateThingRuntimeConfigurationResponse",
"documentation" : "success"
},
"errors" : [ {
"shape" : "BadRequestException",
"documentation" : "invalid request"
}, {
"shape" : "InternalServerErrorException",
"documentation" : "server error"
} ],
"documentation" : "Updates the runtime configuration of a thing."
}
},
"shapes" : {
Expand Down Expand Up @@ -1937,6 +1983,10 @@
"shape" : "BulkDeployment"
}
},
"ConfigurationSyncStatus" : {
"type" : "string",
"enum" : [ "InSync", "OutOfSync" ]
},
"ConnectivityInfo" : {
"type" : "structure",
"members" : {
Expand Down Expand Up @@ -4418,6 +4468,27 @@
}
}
},
"GetThingRuntimeConfigurationRequest" : {
"type" : "structure",
"members" : {
"ThingName" : {
"shape" : "__string",
"location" : "uri",
"locationName" : "ThingName",
"documentation" : "The thing name."
}
},
"required" : [ "ThingName" ]
},
"GetThingRuntimeConfigurationResponse" : {
"type" : "structure",
"members" : {
"RuntimeConfiguration" : {
"shape" : "RuntimeConfiguration",
"documentation" : "Runtime configuration for a thing."
}
}
},
"GroupCertificateAuthorityProperties" : {
"type" : "structure",
"members" : {
Expand Down Expand Up @@ -5466,6 +5537,26 @@
"documentation" : "The owner setting for downloaded machine learning resources.",
"required" : [ "GroupOwner", "GroupPermission" ]
},
"RuntimeConfiguration" : {
"type" : "structure",
"members" : {
"TelemetryConfiguration" : {
"shape" : "TelemetryConfiguration",
"documentation" : "Configuration for telemetry service."
}
},
"documentation" : "Runtime configuration for a thing."
},
"RuntimeConfigurationUpdate" : {
"type" : "structure",
"members" : {
"TelemetryConfiguration" : {
"shape" : "TelemetryConfigurationUpdate",
"documentation" : "Configuration for telemetry service."
}
},
"documentation" : "Runtime configuration for a thing."
},
"S3MachineLearningModelResourceData" : {
"type" : "structure",
"members" : {
Expand Down Expand Up @@ -5635,6 +5726,36 @@
"shape" : "__string"
}
},
"Telemetry" : {
"type" : "string",
"enum" : [ "On", "Off" ]
},
"TelemetryConfiguration" : {
"type" : "structure",
"members" : {
"ConfigurationSyncStatus" : {
"shape" : "ConfigurationSyncStatus",
"documentation" : "Synchronization status of the device reported configuration with the desired configuration."
},
"Telemetry" : {
"shape" : "Telemetry",
"documentation" : "Configure telemetry to be on or off."
}
},
"documentation" : "Configuration settings for running telemetry.",
"required" : [ "Telemetry" ]
},
"TelemetryConfigurationUpdate" : {
"type" : "structure",
"members" : {
"Telemetry" : {
"shape" : "Telemetry",
"documentation" : "Configure telemetry to be on or off."
}
},
"documentation" : "Configuration settings for running telemetry.",
"required" : [ "Telemetry" ]
},
"UntagResourceRequest" : {
"type" : "structure",
"members" : {
Expand Down Expand Up @@ -5899,6 +6020,26 @@
"documentation" : "The operating system of the cores which are the targets of an update.",
"enum" : [ "ubuntu", "raspbian", "amazon_linux", "openwrt" ]
},
"UpdateThingRuntimeConfigurationRequest" : {
"type" : "structure",
"members" : {
"TelemetryConfiguration" : {
"shape" : "TelemetryConfigurationUpdate",
"documentation" : "Configuration for telemetry service."
},
"ThingName" : {
"shape" : "__string",
"location" : "uri",
"locationName" : "ThingName",
"documentation" : "The thing name."
}
},
"required" : [ "ThingName" ]
},
"UpdateThingRuntimeConfigurationResponse" : {
"type" : "structure",
"members" : { }
},
"VersionInformation" : {
"type" : "structure",
"members" : {
Expand Down
13 changes: 9 additions & 4 deletions botocore/data/servicecatalog/2015-12-10/service-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -493,7 +493,8 @@
"input":{"shape":"DescribeProvisionedProductInput"},
"output":{"shape":"DescribeProvisionedProductOutput"},
"errors":[
{"shape":"ResourceNotFoundException"}
{"shape":"ResourceNotFoundException"},
{"shape":"InvalidParametersException"}
],
"documentation":"<p>Gets information about the specified provisioned product.</p>"
},
Expand Down Expand Up @@ -2457,17 +2458,21 @@
},
"DescribeProvisionedProductInput":{
"type":"structure",
"required":["Id"],
"members":{
"AcceptLanguage":{
"shape":"AcceptLanguage",
"documentation":"<p>The language code.</p> <ul> <li> <p> <code>en</code> - English (default)</p> </li> <li> <p> <code>jp</code> - Japanese</p> </li> <li> <p> <code>zh</code> - Chinese</p> </li> </ul>"
},
"Id":{
"shape":"Id",
"documentation":"<p>The provisioned product identifier.</p>"
"documentation":"<p>The provisioned product identifier. You must provide the name or ID, but not both.</p> <p>If you do not provide a name or ID, or you provide both name and ID, an <code>InvalidParametersException</code> will occur.</p>"
},
"Name":{
"shape":"ProvisionedProductName",
"documentation":"<p>The name of the provisioned product. You must provide the name or ID, but not both.</p> <p>If you do not provide a name or ID, or you provide both name and ID, an <code>InvalidParametersException</code> will occur.</p>"
}
}
},
"documentation":"DescribeProvisionedProductAPI input structure. AcceptLanguage - [Optional] The language code for localization. Id - [Optional] The provisioned product identifier. Name - [Optional] Another provisioned product identifier. Customers must provide either Id or Name."
},
"DescribeProvisionedProductOutput":{
"type":"structure",
Expand Down
10 changes: 5 additions & 5 deletions botocore/data/ssm/2014-11-06/service-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -2724,7 +2724,7 @@
},
"Values":{
"shape":"AttachmentsSourceValues",
"documentation":"<p>The value of a key-value pair that identifies the location of an attachment to a document. The format for <b>Value</b> depends on the type of key you specify.</p> <ul> <li> <p>For the key <i>SourceUrl</i>, the value is an S3 bucket location. For example:</p> <p> <code>\"Values\": [ \"s3://my-bucket/my-folder\" ]</code> </p> </li> <li> <p>For the key <i>S3FileUrl</i>, the value is a file in an S3 bucket. For example:</p> <p> <code>\"Values\": [ \"s3://my-bucket/my-folder/my-file.py\" ]</code> </p> </li> <li> <p>For the key <i>AttachmentReference</i>, the value is constructed from the name of another SSM document in your account, a version number of that document, and a file attached to that document version that you want to reuse. For example:</p> <p> <code>\"Values\": [ \"MyOtherDocument/3/my-other-file.py\" ]</code> </p> <p>However, if the SSM document is shared with you from another account, the full SSM document ARN must be specified instead of the document name only. For example:</p> <p> <code>\"Values\": [ \"arn:aws:ssm:us-east-2:111122223333:document/OtherAccountDocument/3/their-file.py\" ]</code> </p> </li> </ul>"
"documentation":"<p>The value of a key-value pair that identifies the location of an attachment to a document. The format for <b>Value</b> depends on the type of key you specify.</p> <ul> <li> <p>For the key <i>SourceUrl</i>, the value is an S3 bucket location. For example:</p> <p> <code>\"Values\": [ \"s3://doc-example-bucket/my-folder\" ]</code> </p> </li> <li> <p>For the key <i>S3FileUrl</i>, the value is a file in an S3 bucket. For example:</p> <p> <code>\"Values\": [ \"s3://doc-example-bucket/my-folder/my-file.py\" ]</code> </p> </li> <li> <p>For the key <i>AttachmentReference</i>, the value is constructed from the name of another SSM document in your account, a version number of that document, and a file attached to that document version that you want to reuse. For example:</p> <p> <code>\"Values\": [ \"MyOtherDocument/3/my-other-file.py\" ]</code> </p> <p>However, if the SSM document is shared with you from another account, the full SSM document ARN must be specified instead of the document name only. For example:</p> <p> <code>\"Values\": [ \"arn:aws:ssm:us-east-2:111122223333:document/OtherAccountDocument/3/their-file.py\" ]</code> </p> </li> </ul>"
},
"Name":{
"shape":"AttachmentIdentifier",
Expand Down Expand Up @@ -3499,11 +3499,11 @@
},
"OutputS3BucketName":{
"shape":"S3BucketName",
"documentation":"<p>The S3 bucket where the responses to the command executions should be stored. This was requested when issuing the command. For example, in the following response:</p> <p> test_folder/ab19cb99-a030-46dd-9dfc-8eSAMPLEPre-Fix/i-1234567876543/awsrunShellScript </p> <p>test_folder is the name of the S3 bucket;</p> <p>ab19cb99-a030-46dd-9dfc-8eSAMPLEPre-Fix is the name of the S3 prefix;</p> <p>i-1234567876543 is the instance ID;</p> <p>awsrunShellScript is the name of the plugin.</p>"
"documentation":"<p>The S3 bucket where the responses to the command executions should be stored. This was requested when issuing the command. For example, in the following response:</p> <p>doc-example-bucket/ab19cb99-a030-46dd-9dfc-8eSAMPLEPre-Fix/i-02573cafcfEXAMPLE/awsrunShellScript </p> <p>doc-example-bucket is the name of the S3 bucket;</p> <p>ab19cb99-a030-46dd-9dfc-8eSAMPLEPre-Fix is the name of the S3 prefix;</p> <p>i-02573cafcfEXAMPLE is the instance ID;</p> <p>awsrunShellScript is the name of the plugin.</p>"
},
"OutputS3KeyPrefix":{
"shape":"S3KeyPrefix",
"documentation":"<p>The S3 directory path inside the bucket where the responses to the command executions should be stored. This was requested when issuing the command. For example, in the following response:</p> <p> test_folder/ab19cb99-a030-46dd-9dfc-8eSAMPLEPre-Fix/i-1234567876543/awsrunShellScript </p> <p>test_folder is the name of the S3 bucket;</p> <p>ab19cb99-a030-46dd-9dfc-8eSAMPLEPre-Fix is the name of the S3 prefix;</p> <p>i-1234567876543 is the instance ID;</p> <p>awsrunShellScript is the name of the plugin.</p>"
"documentation":"<p>The S3 directory path inside the bucket where the responses to the command executions should be stored. This was requested when issuing the command. For example, in the following response:</p> <p>doc-example-bucket/ab19cb99-a030-46dd-9dfc-8eSAMPLEPre-Fix/i-02573cafcfEXAMPLE/awsrunShellScript </p> <p>doc-example-bucket is the name of the S3 bucket;</p> <p>ab19cb99-a030-46dd-9dfc-8eSAMPLEPre-Fix is the name of the S3 prefix;</p> <p>i-02573cafcfEXAMPLE is the instance ID;</p> <p>awsrunShellScript is the name of the plugin.</p>"
}
},
"documentation":"<p>Describes plugin details.</p>"
Expand Down Expand Up @@ -3648,7 +3648,7 @@
},
"Status":{
"shape":"ComplianceStatus",
"documentation":"<p>The status of the compliance item. An item is either COMPLIANT or NON_COMPLIANT.</p>"
"documentation":"<p>The status of the compliance item. An item is either COMPLIANT, NON_COMPLIANT, or an empty string (for Windows patches that aren't applicable).</p>"
},
"Details":{
"shape":"ComplianceItemDetails",
Expand Down Expand Up @@ -9185,7 +9185,7 @@
"members":{
"SyncType":{
"shape":"ResourceDataSyncType",
"documentation":"<p>View a list of resource data syncs according to the sync type. Specify <code>SyncToDestination</code> to view resource data syncs that synchronize data to an Amazon S3 buckets. Specify <code>SyncFromSource</code> to view resource data syncs from AWS Organizations or from multiple AWS Regions. </p>"
"documentation":"<p>View a list of resource data syncs according to the sync type. Specify <code>SyncToDestination</code> to view resource data syncs that synchronize data to an Amazon S3 bucket. Specify <code>SyncFromSource</code> to view resource data syncs from AWS Organizations or from multiple AWS Regions.</p>"
},
"NextToken":{
"shape":"NextToken",
Expand Down

0 comments on commit b1fd3f9

Please sign in to comment.