vendor: update all dependencies to latest versions

This commit is contained in:
Nick Craig-Wood 2017-09-30 15:27:27 +01:00
parent 911d121bb9
commit b017fcfe9a
3048 changed files with 537057 additions and 189681 deletions

View file

@ -158,6 +158,20 @@
{"shape":"ValidationException"}
]
},
"ListTagsForProject":{
"name":"ListTagsForProject",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"ListTagsForProjectRequest"},
"output":{"shape":"ListTagsForProjectResult"},
"errors":[
{"shape":"ProjectNotFoundException"},
{"shape":"ValidationException"},
{"shape":"InvalidNextTokenException"}
]
},
"ListTeamMembers":{
"name":"ListTeamMembers",
"http":{
@ -185,6 +199,36 @@
{"shape":"ValidationException"}
]
},
"TagProject":{
"name":"TagProject",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"TagProjectRequest"},
"output":{"shape":"TagProjectResult"},
"errors":[
{"shape":"ProjectNotFoundException"},
{"shape":"ValidationException"},
{"shape":"LimitExceededException"},
{"shape":"ConcurrentModificationException"}
]
},
"UntagProject":{
"name":"UntagProject",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"UntagProjectRequest"},
"output":{"shape":"UntagProjectResult"},
"errors":[
{"shape":"ProjectNotFoundException"},
{"shape":"ValidationException"},
{"shape":"LimitExceededException"},
{"shape":"ConcurrentModificationException"}
]
},
"UpdateProject":{
"name":"UpdateProject",
"http":{
@ -414,7 +458,8 @@
"type":"string",
"max":128,
"min":3,
"pattern":"^[\\w-.+]+@[\\w-.+]+$"
"pattern":"^[\\w-.+]+@[\\w-.+]+$",
"sensitive":true
},
"InvalidNextTokenException":{
"type":"structure",
@ -472,6 +517,25 @@
"nextToken":{"shape":"PaginationToken"}
}
},
"ListTagsForProjectRequest":{
"type":"structure",
"required":["id"],
"members":{
"id":{"shape":"ProjectId"},
"nextToken":{"shape":"PaginationToken"},
"maxResults":{
"shape":"MaxResults",
"box":true
}
}
},
"ListTagsForProjectResult":{
"type":"structure",
"members":{
"tags":{"shape":"Tags"},
"nextToken":{"shape":"PaginationToken"}
}
},
"ListTeamMembersRequest":{
"type":"structure",
"required":["projectId"],
@ -517,7 +581,7 @@
},
"PaginationToken":{
"type":"string",
"max":256,
"max":512,
"min":1,
"pattern":"^[\\w/+=]+$"
},
@ -614,6 +678,43 @@
"type":"string",
"pattern":"^arn:aws[^:\\s]*:cloudformation:[^:\\s]+:[0-9]{12}:stack\\/[^:\\s]+\\/[^:\\s]+$"
},
"TagKey":{
"type":"string",
"max":128,
"min":1,
"pattern":"^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$"
},
"TagKeys":{
"type":"list",
"member":{"shape":"TagKey"}
},
"TagProjectRequest":{
"type":"structure",
"required":[
"id",
"tags"
],
"members":{
"id":{"shape":"ProjectId"},
"tags":{"shape":"Tags"}
}
},
"TagProjectResult":{
"type":"structure",
"members":{
"tags":{"shape":"Tags"}
}
},
"TagValue":{
"type":"string",
"max":256,
"pattern":"^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$"
},
"Tags":{
"type":"map",
"key":{"shape":"TagKey"},
"value":{"shape":"TagValue"}
},
"TeamMember":{
"type":"structure",
"required":[
@ -645,6 +746,22 @@
"type":"list",
"member":{"shape":"TeamMember"}
},
"UntagProjectRequest":{
"type":"structure",
"required":[
"id",
"tags"
],
"members":{
"id":{"shape":"ProjectId"},
"tags":{"shape":"TagKeys"}
}
},
"UntagProjectResult":{
"type":"structure",
"members":{
}
},
"UpdateProjectRequest":{
"type":"structure",
"required":["id"],
@ -712,7 +829,7 @@
"type":"string",
"max":95,
"min":32,
"pattern":"arn:aws:iam::\\d{12}:user\\/[\\w-]+"
"pattern":"^arn:aws:iam::\\d{12}:user(?:(\\u002F)|(\\u002F[\\u0021-\\u007E]+\\u002F))[\\w+=,.@-]+$"
},
"UserProfileAlreadyExistsException":{
"type":"structure",

View file

@ -1,6 +1,6 @@
{
"version": "2.0",
"service": "<fullname>AWS CodeStar</fullname> <p>This is the API reference for AWS CodeStar. This reference provides descriptions of the operations and data types for the AWS CodeStar API along with usage examples.</p> <p>You can use the AWS CodeStar API to work with:</p> <p>Projects and their resources, by calling the following:</p> <ul> <li> <p> <a>DeleteProject</a>, which deletes a project in AWS CodeStar.</p> </li> <li> <p> <a>DescribeProject</a>, which lists the attributes of a project.</p> </li> <li> <p> <a>ListProjects</a>, which lists all AWS CodeStar projects associated with your AWS account.</p> </li> <li> <p> <a>ListResources</a>, which lists the resources associated with an AWS CodeStar project.</p> </li> <li> <p> <a>UpdateProject</a>, which updates the attributes of an AWS CodeStar project.</p> </li> </ul> <p>Teams and team members, by calling the following:</p> <ul> <li> <p> <a>AssociateTeamMember</a>, which adds an IAM user to the team for an AWS CodeStar project.</p> </li> <li> <p> <a>DisassociateTeamMember</a>, which removes an IAM user from the team for an AWS CodeStar project.</p> </li> <li> <p> <a>ListTeamMembers</a>, which lists all the IAM users in the team for an AWS CodeStar project, including their roles and attributes.</p> </li> </ul> <p>Users, by calling the following:</p> <ul> <li> <p> <a>CreateUserProfile</a>, which creates a user profile that contains data associated with the user across all AWS CodeStar projects.</p> </li> <li> <p> <a>DeleteUserProfile</a>, which deletes all user profile information across all AWS CodeStar projects.</p> </li> <li> <p> <a>DescribeUserProfile</a>, which describes the profile of a user.</p> </li> <li> <p> <a>ListUserProfiles</a>, which lists all AWS CodeStar user profiles.</p> </li> <li> <p> <a>UpdateUserProfile</a>, which updates the profile for an AWS CodeStar user. </p> </li> </ul>",
"service": "<fullname>AWS CodeStar</fullname> <p>This is the API reference for AWS CodeStar. This reference provides descriptions of the operations and data types for the AWS CodeStar API along with usage examples.</p> <p>You can use the AWS CodeStar API to work with:</p> <p>Projects and their resources, by calling the following:</p> <ul> <li> <p> <code>DeleteProject</code>, which deletes a project.</p> </li> <li> <p> <code>DescribeProject</code>, which lists the attributes of a project.</p> </li> <li> <p> <code>ListProjects</code>, which lists all projects associated with your AWS account.</p> </li> <li> <p> <code>ListResources</code>, which lists the resources associated with a project.</p> </li> <li> <p> <code>ListTagsForProject</code>, which lists the tags associated with a project.</p> </li> <li> <p> <code>TagProject</code>, which adds tags to a project.</p> </li> <li> <p> <code>UntagProject</code>, which removes tags from a project.</p> </li> <li> <p> <code>UpdateProject</code>, which updates the attributes of a project.</p> </li> </ul> <p>Teams and team members, by calling the following:</p> <ul> <li> <p> <code>AssociateTeamMember</code>, which adds an IAM user to the team for a project.</p> </li> <li> <p> <code>DisassociateTeamMember</code>, which removes an IAM user from the team for a project.</p> </li> <li> <p> <code>ListTeamMembers</code>, which lists all the IAM users in the team for a project, including their roles and attributes.</p> </li> <li> <p> <code>UpdateTeamMember</code>, which updates a team member's attributes in a project.</p> </li> </ul> <p>Users, by calling the following:</p> <ul> <li> <p> <code>CreateUserProfile</code>, which creates a user profile that contains data associated with the user across all projects.</p> </li> <li> <p> <code>DeleteUserProfile</code>, which deletes all user profile information across all projects.</p> </li> <li> <p> <code>DescribeUserProfile</code>, which describes the profile of a user.</p> </li> <li> <p> <code>ListUserProfiles</code>, which lists all user profiles.</p> </li> <li> <p> <code>UpdateUserProfile</code>, which updates the profile for a user.</p> </li> </ul>",
"operations": {
"AssociateTeamMember": "<p>Adds an IAM user to the team for an AWS CodeStar project.</p>",
"CreateProject": "<p>Reserved for future use. To create a project, use the AWS CodeStar console.</p>",
@ -12,8 +12,11 @@
"DisassociateTeamMember": "<p>Removes a user from a project. Removing a user from a project also removes the IAM policies from that user that allowed access to the project and its resources. Disassociating a team member does not remove that user's profile from AWS CodeStar. It does not remove the user from IAM.</p>",
"ListProjects": "<p>Lists all projects in AWS CodeStar associated with your AWS account.</p>",
"ListResources": "<p>Lists resources associated with a project in AWS CodeStar.</p>",
"ListTagsForProject": "<p>Gets the tags for a project.</p>",
"ListTeamMembers": "<p>Lists all team members associated with a project.</p>",
"ListUserProfiles": "<p>Lists all the user profiles configured for your AWS account in AWS CodeStar.</p>",
"TagProject": "<p>Adds tags to a project.</p>",
"UntagProject": "<p>Removes tags from a project.</p>",
"UpdateProject": "<p>Updates a project in AWS CodeStar.</p>",
"UpdateTeamMember": "<p>Updates a team member's attributes in an AWS CodeStar project. For example, you can change a team member's role in the project, or change whether they have remote access to project resources.</p>",
"UpdateUserProfile": "<p>Updates a user's profile in AWS CodeStar. The user profile is not project-specific. Information in the user profile is displayed wherever the user's information appears to other users in AWS CodeStar. </p>"
@ -32,8 +35,8 @@
"ClientRequestToken": {
"base": null,
"refs": {
"AssociateTeamMemberRequest$clientRequestToken": "<p>A user- or system-generated token that identifies the entity that requested the team member association to the project. This token can be used to repeat the request. </p>",
"AssociateTeamMemberResult$clientRequestToken": "<p>The user- or system-generated token from the initial request that can be used to repeat the request. </p>",
"AssociateTeamMemberRequest$clientRequestToken": "<p>A user- or system-generated token that identifies the entity that requested the team member association to the project. This token can be used to repeat the request.</p>",
"AssociateTeamMemberResult$clientRequestToken": "<p>The user- or system-generated token from the initial request that can be used to repeat the request.</p>",
"CreateProjectRequest$clientRequestToken": "<p>Reserved for future use.</p>",
"CreateProjectResult$clientRequestToken": "<p>Reserved for future use.</p>",
"DeleteProjectRequest$clientRequestToken": "<p>A user- or system-generated token that identifies the entity that requested project deletion. This token can be used to repeat the request. </p>",
@ -184,6 +187,16 @@
"refs": {
}
},
"ListTagsForProjectRequest": {
"base": null,
"refs": {
}
},
"ListTagsForProjectResult": {
"base": null,
"refs": {
}
},
"ListTeamMembersRequest": {
"base": null,
"refs": {
@ -208,7 +221,8 @@
"base": null,
"refs": {
"ListProjectsRequest$maxResults": "<p>The maximum amount of data that can be contained in a single set of results.</p>",
"ListResourcesRequest$maxResults": "<p>he maximum amount of data that can be contained in a single set of results.</p>",
"ListResourcesRequest$maxResults": "<p>The maximum amount of data that can be contained in a single set of results.</p>",
"ListTagsForProjectRequest$maxResults": "<p>Reserved for future use.</p>",
"ListTeamMembersRequest$maxResults": "<p>The maximum number of team members you want returned in a response.</p>",
"ListUserProfilesRequest$maxResults": "<p>The maximum number of results to return in a response.</p>"
}
@ -220,6 +234,8 @@
"ListProjectsResult$nextToken": "<p>The continuation token to use when requesting the next set of results, if there are more results to be returned.</p>",
"ListResourcesRequest$nextToken": "<p>The continuation token for the next set of results, if the results cannot be returned in one response.</p>",
"ListResourcesResult$nextToken": "<p>The continuation token to use when requesting the next set of results, if there are more results to be returned.</p>",
"ListTagsForProjectRequest$nextToken": "<p>Reserved for future use.</p>",
"ListTagsForProjectResult$nextToken": "<p>Reserved for future use.</p>",
"ListTeamMembersRequest$nextToken": "<p>The continuation token for the next set of results, if the results cannot be returned in one response.</p>",
"ListTeamMembersResult$nextToken": "<p>The continuation token to use when requesting the next set of results, if there are more results to be returned.</p>",
"ListUserProfilesRequest$nextToken": "<p>The continuation token for the next set of results, if the results cannot be returned in one response.</p>",
@ -269,8 +285,11 @@
"DescribeProjectResult$id": "<p>The ID of the project.</p>",
"DisassociateTeamMemberRequest$projectId": "<p>The ID of the AWS CodeStar project from which you want to remove a team member.</p>",
"ListResourcesRequest$projectId": "<p>The ID of the project.</p>",
"ListTagsForProjectRequest$id": "<p>The ID of the project to get tags for.</p>",
"ListTeamMembersRequest$projectId": "<p>The ID of the project for which you want to list team members.</p>",
"ProjectSummary$projectId": "<p>The ID of the project.</p>",
"TagProjectRequest$id": "<p>The ID of the project you want to add a tag to.</p>",
"UntagProjectRequest$id": "<p>The ID of the project to remove tags from.</p>",
"UpdateProjectRequest$id": "<p>The ID of the project you want to update.</p>",
"UpdateTeamMemberRequest$projectId": "<p>The ID of the project.</p>"
}
@ -338,8 +357,8 @@
"base": null,
"refs": {
"AssociateTeamMemberRequest$projectRole": "<p>The AWS CodeStar project role that will apply to this user. This role determines what actions a user can take in an AWS CodeStar project.</p>",
"TeamMember$projectRole": "<p>The role assigned to the user in the project. Project roles have different levels of access. For more information, see <a href=\"http://docs.aws.amazon.com/codestar/latest/userguide/working-with-teams.html\">Working with Teams</a> in the AWS CodeStar User Guide. </p>",
"UpdateTeamMemberRequest$projectRole": "<p>The role assigned to the user in the project. Project roles have different levels of access. For more information, see <a href=\"http://docs.aws.amazon.com/codestar/latest/userguide/working-with-teams.html\">Working with Teams</a> in the AWS CodeStar User Guide.</p>",
"TeamMember$projectRole": "<p>The role assigned to the user in the project. Project roles have different levels of access. For more information, see <a href=\"http://docs.aws.amazon.com/codestar/latest/userguide/working-with-teams.html\">Working with Teams</a> in the <i>AWS CodeStar User Guide</i>. </p>",
"UpdateTeamMemberRequest$projectRole": "<p>The role assigned to the user in the project. Project roles have different levels of access. For more information, see <a href=\"http://docs.aws.amazon.com/codestar/latest/userguide/working-with-teams.html\">Working with Teams</a> in the <i>AWS CodeStar User Guide</i>.</p>",
"UpdateTeamMemberResult$projectRole": "<p>The project role granted to the user.</p>"
}
},
@ -361,6 +380,43 @@
"DescribeProjectResult$stackId": "<p>The ID of the primary stack in AWS CloudFormation used to generate resources for the project.</p>"
}
},
"TagKey": {
"base": null,
"refs": {
"TagKeys$member": null,
"Tags$key": null
}
},
"TagKeys": {
"base": null,
"refs": {
"UntagProjectRequest$tags": "<p>The tags to remove from the project.</p>"
}
},
"TagProjectRequest": {
"base": null,
"refs": {
}
},
"TagProjectResult": {
"base": null,
"refs": {
}
},
"TagValue": {
"base": null,
"refs": {
"Tags$value": null
}
},
"Tags": {
"base": null,
"refs": {
"ListTagsForProjectResult$tags": "<p>The tags for the project.</p>",
"TagProjectRequest$tags": "<p>The tags you want to add to the project.</p>",
"TagProjectResult$tags": "<p>The tags for the project.</p>"
}
},
"TeamMember": {
"base": "<p>Information about a team member in a project.</p>",
"refs": {
@ -383,6 +439,16 @@
"ListTeamMembersResult$teamMembers": "<p>A list of team member objects for the project.</p>"
}
},
"UntagProjectRequest": {
"base": null,
"refs": {
}
},
"UntagProjectResult": {
"base": null,
"refs": {
}
},
"UpdateProjectRequest": {
"base": null,
"refs": {
@ -416,7 +482,7 @@
"UserArn": {
"base": null,
"refs": {
"AssociateTeamMemberRequest$userArn": "<p>The Amazon Resource Name (ARN) for the IAM user you want to add to the DevHub project.</p>",
"AssociateTeamMemberRequest$userArn": "<p>The Amazon Resource Name (ARN) for the IAM user you want to add to the AWS CodeStar project.</p>",
"CreateUserProfileRequest$userArn": "<p>The Amazon Resource Name (ARN) of the user in IAM.</p>",
"CreateUserProfileResult$userArn": "<p>The Amazon Resource Name (ARN) of the user in IAM.</p>",
"DeleteUserProfileRequest$userArn": "<p>The Amazon Resource Name (ARN) of the user to delete from AWS CodeStar.</p>",