mirror of
https://github.com/aptly-dev/aptly.git
synced 2026-05-07 22:20:24 +00:00
Update Go AWS SDK to the latest version
This commit is contained in:
committed by
Andrey Smirnov
parent
d08be990ef
commit
94a72b23ff
+165
-4
@@ -7,6 +7,7 @@
|
||||
"protocol":"json",
|
||||
"serviceAbbreviation":"CodeStar",
|
||||
"serviceFullName":"AWS CodeStar",
|
||||
"serviceId":"CodeStar",
|
||||
"signatureVersion":"v4",
|
||||
"targetPrefix":"CodeStar_20170419",
|
||||
"uid":"codestar-2017-04-19"
|
||||
@@ -299,12 +300,50 @@
|
||||
"clientRequestToken":{"shape":"ClientRequestToken"}
|
||||
}
|
||||
},
|
||||
"BucketKey":{"type":"string"},
|
||||
"BucketName":{
|
||||
"type":"string",
|
||||
"max":63,
|
||||
"min":3
|
||||
},
|
||||
"ClientRequestToken":{
|
||||
"type":"string",
|
||||
"max":256,
|
||||
"min":1,
|
||||
"pattern":"^[\\w:/-]+$"
|
||||
},
|
||||
"Code":{
|
||||
"type":"structure",
|
||||
"required":[
|
||||
"source",
|
||||
"destination"
|
||||
],
|
||||
"members":{
|
||||
"source":{"shape":"CodeSource"},
|
||||
"destination":{"shape":"CodeDestination"}
|
||||
}
|
||||
},
|
||||
"CodeCommitCodeDestination":{
|
||||
"type":"structure",
|
||||
"required":["name"],
|
||||
"members":{
|
||||
"name":{"shape":"RepositoryName"}
|
||||
}
|
||||
},
|
||||
"CodeDestination":{
|
||||
"type":"structure",
|
||||
"members":{
|
||||
"codeCommit":{"shape":"CodeCommitCodeDestination"},
|
||||
"gitHub":{"shape":"GitHubCodeDestination"}
|
||||
}
|
||||
},
|
||||
"CodeSource":{
|
||||
"type":"structure",
|
||||
"required":["s3"],
|
||||
"members":{
|
||||
"s3":{"shape":"S3Location"}
|
||||
}
|
||||
},
|
||||
"ConcurrentModificationException":{
|
||||
"type":"structure",
|
||||
"members":{
|
||||
@@ -321,7 +360,10 @@
|
||||
"name":{"shape":"ProjectName"},
|
||||
"id":{"shape":"ProjectId"},
|
||||
"description":{"shape":"ProjectDescription"},
|
||||
"clientRequestToken":{"shape":"ClientRequestToken"}
|
||||
"clientRequestToken":{"shape":"ClientRequestToken"},
|
||||
"sourceCode":{"shape":"SourceCode"},
|
||||
"toolchain":{"shape":"Toolchain"},
|
||||
"tags":{"shape":"Tags"}
|
||||
}
|
||||
},
|
||||
"CreateProjectResult":{
|
||||
@@ -412,7 +454,8 @@
|
||||
"clientRequestToken":{"shape":"ClientRequestToken"},
|
||||
"createdTimeStamp":{"shape":"CreatedTimestamp"},
|
||||
"stackId":{"shape":"StackId"},
|
||||
"projectTemplateId":{"shape":"ProjectTemplateId"}
|
||||
"projectTemplateId":{"shape":"ProjectTemplateId"},
|
||||
"status":{"shape":"ProjectStatus"}
|
||||
}
|
||||
},
|
||||
"DescribeUserProfileRequest":{
|
||||
@@ -461,6 +504,31 @@
|
||||
"pattern":"^[\\w-.+]+@[\\w-.+]+$",
|
||||
"sensitive":true
|
||||
},
|
||||
"GitHubCodeDestination":{
|
||||
"type":"structure",
|
||||
"required":[
|
||||
"name",
|
||||
"type",
|
||||
"owner",
|
||||
"privateRepository",
|
||||
"issuesEnabled",
|
||||
"token"
|
||||
],
|
||||
"members":{
|
||||
"name":{"shape":"RepositoryName"},
|
||||
"description":{"shape":"RepositoryDescription"},
|
||||
"type":{"shape":"RepositoryType"},
|
||||
"owner":{"shape":"RepositoryOwner"},
|
||||
"privateRepository":{"shape":"RepositoryIsPrivate"},
|
||||
"issuesEnabled":{"shape":"RepositoryEnableIssues"},
|
||||
"token":{"shape":"GitHubPersonalToken"}
|
||||
}
|
||||
},
|
||||
"GitHubPersonalToken":{
|
||||
"type":"string",
|
||||
"min":1,
|
||||
"sensitive":true
|
||||
},
|
||||
"InvalidNextTokenException":{
|
||||
"type":"structure",
|
||||
"members":{
|
||||
@@ -632,6 +700,14 @@
|
||||
},
|
||||
"exception":true
|
||||
},
|
||||
"ProjectStatus":{
|
||||
"type":"structure",
|
||||
"required":["state"],
|
||||
"members":{
|
||||
"state":{"shape":"State"},
|
||||
"reason":{"shape":"Reason"}
|
||||
}
|
||||
},
|
||||
"ProjectSummary":{
|
||||
"type":"structure",
|
||||
"members":{
|
||||
@@ -642,13 +718,42 @@
|
||||
"ProjectTemplateId":{
|
||||
"type":"string",
|
||||
"min":1,
|
||||
"pattern":"^arn:aws[^:\\s]{0,5}:codestar:[^:\\s]+::project-template\\/[a-z0-9-]+$"
|
||||
"pattern":"^arn:aws[^:\\s]{0,5}:codestar:[^:\\s]+::project-template(\\/(github|codecommit))?\\/[a-z0-9-]+$"
|
||||
},
|
||||
"ProjectsList":{
|
||||
"type":"list",
|
||||
"member":{"shape":"ProjectSummary"}
|
||||
},
|
||||
"Reason":{
|
||||
"type":"string",
|
||||
"max":1024,
|
||||
"pattern":"^$|^\\S(.*\\S)?$"
|
||||
},
|
||||
"RemoteAccessAllowed":{"type":"boolean"},
|
||||
"RepositoryDescription":{
|
||||
"type":"string",
|
||||
"max":1000,
|
||||
"min":1,
|
||||
"pattern":"^\\S(.*\\S)?$"
|
||||
},
|
||||
"RepositoryEnableIssues":{"type":"boolean"},
|
||||
"RepositoryIsPrivate":{"type":"boolean"},
|
||||
"RepositoryName":{
|
||||
"type":"string",
|
||||
"max":100,
|
||||
"min":1,
|
||||
"pattern":"^\\S[\\w.-]*$"
|
||||
},
|
||||
"RepositoryOwner":{
|
||||
"type":"string",
|
||||
"max":100,
|
||||
"min":1,
|
||||
"pattern":"^\\S(.*\\S)?$"
|
||||
},
|
||||
"RepositoryType":{
|
||||
"type":"string",
|
||||
"pattern":"^(user|organization|User|Organization)$"
|
||||
},
|
||||
"Resource":{
|
||||
"type":"structure",
|
||||
"required":["id"],
|
||||
@@ -669,6 +774,22 @@
|
||||
"type":"string",
|
||||
"pattern":"^(Owner|Viewer|Contributor)$"
|
||||
},
|
||||
"RoleArn":{
|
||||
"type":"string",
|
||||
"max":1224,
|
||||
"min":1
|
||||
},
|
||||
"S3Location":{
|
||||
"type":"structure",
|
||||
"members":{
|
||||
"bucketName":{"shape":"BucketName"},
|
||||
"bucketKey":{"shape":"BucketKey"}
|
||||
}
|
||||
},
|
||||
"SourceCode":{
|
||||
"type":"list",
|
||||
"member":{"shape":"Code"}
|
||||
},
|
||||
"SshPublicKey":{
|
||||
"type":"string",
|
||||
"max":16384,
|
||||
@@ -678,6 +799,10 @@
|
||||
"type":"string",
|
||||
"pattern":"^arn:aws[^:\\s]*:cloudformation:[^:\\s]+:[0-9]{12}:stack\\/[^:\\s]+\\/[^:\\s]+$"
|
||||
},
|
||||
"State":{
|
||||
"type":"string",
|
||||
"pattern":"^(CreateInProgress|CreateComplete|CreateFailed|DeleteComplete|DeleteFailed|DeleteInProgress|UpdateComplete|UpdateInProgress|UpdateFailed|Unknown)$"
|
||||
},
|
||||
"TagKey":{
|
||||
"type":"string",
|
||||
"max":128,
|
||||
@@ -746,6 +871,41 @@
|
||||
"type":"list",
|
||||
"member":{"shape":"TeamMember"}
|
||||
},
|
||||
"TemplateParameterKey":{
|
||||
"type":"string",
|
||||
"max":30,
|
||||
"min":1,
|
||||
"pattern":"^\\S(.*\\S)?$"
|
||||
},
|
||||
"TemplateParameterMap":{
|
||||
"type":"map",
|
||||
"key":{"shape":"TemplateParameterKey"},
|
||||
"value":{"shape":"TemplateParameterValue"},
|
||||
"max":25
|
||||
},
|
||||
"TemplateParameterValue":{
|
||||
"type":"string",
|
||||
"max":100,
|
||||
"min":1,
|
||||
"pattern":"^\\S(.*\\S)?$",
|
||||
"sensitive":true
|
||||
},
|
||||
"Toolchain":{
|
||||
"type":"structure",
|
||||
"required":["source"],
|
||||
"members":{
|
||||
"source":{"shape":"ToolchainSource"},
|
||||
"roleArn":{"shape":"RoleArn"},
|
||||
"stackParameters":{"shape":"TemplateParameterMap"}
|
||||
}
|
||||
},
|
||||
"ToolchainSource":{
|
||||
"type":"structure",
|
||||
"required":["s3"],
|
||||
"members":{
|
||||
"s3":{"shape":"S3Location"}
|
||||
}
|
||||
},
|
||||
"UntagProjectRequest":{
|
||||
"type":"structure",
|
||||
"required":[
|
||||
@@ -841,7 +1001,8 @@
|
||||
"type":"string",
|
||||
"max":64,
|
||||
"min":1,
|
||||
"pattern":"^\\S(.*\\S)?$"
|
||||
"pattern":"^\\S(.*\\S)?$",
|
||||
"sensitive":true
|
||||
},
|
||||
"UserProfileNotFoundException":{
|
||||
"type":"structure",
|
||||
|
||||
+161
-8
@@ -3,7 +3,7 @@
|
||||
"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>",
|
||||
"CreateProject": "<p>Creates a project, including project resources. This action creates a project based on a submitted project request. A set of source code files and a toolchain template file can be included with the project request. If these are not provided, an empty project is created.</p>",
|
||||
"CreateUserProfile": "<p>Creates a profile for a user that includes user preferences, such as the display name and email address assocciated with the user, 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>",
|
||||
"DeleteProject": "<p>Deletes a project, including project resources. Does not delete users associated with the project, but does delete the IAM roles that allowed access to the project.</p>",
|
||||
"DeleteUserProfile": "<p>Deletes a user profile in AWS CodeStar, including all personal preference data associated with that profile, such as display name and email address. It does not delete the history of that user, for example the history of commits made by that user.</p>",
|
||||
@@ -32,17 +32,53 @@
|
||||
"refs": {
|
||||
}
|
||||
},
|
||||
"BucketKey": {
|
||||
"base": null,
|
||||
"refs": {
|
||||
"S3Location$bucketKey": "<p>The Amazon S3 object key where the source code files provided with the project request are stored.</p>"
|
||||
}
|
||||
},
|
||||
"BucketName": {
|
||||
"base": null,
|
||||
"refs": {
|
||||
"S3Location$bucketName": "<p>The Amazon S3 bucket name where the source code files provided with the project request are stored.</p>"
|
||||
}
|
||||
},
|
||||
"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>",
|
||||
"CreateProjectRequest$clientRequestToken": "<p>Reserved for future use.</p>",
|
||||
"CreateProjectResult$clientRequestToken": "<p>Reserved for future use.</p>",
|
||||
"CreateProjectRequest$clientRequestToken": "<p>A user- or system-generated token that identifies the entity that requested project creation. This token can be used to repeat the request.</p>",
|
||||
"CreateProjectResult$clientRequestToken": "<p>A user- or system-generated token that identifies the entity that requested project creation.</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>",
|
||||
"DescribeProjectResult$clientRequestToken": "<p>A user- or system-generated token that identifies the entity that requested project creation. </p>"
|
||||
}
|
||||
},
|
||||
"Code": {
|
||||
"base": "<p>Location and destination information about the source code files provided with the project request. The source code is uploaded to the new project source repository after project creation.</p>",
|
||||
"refs": {
|
||||
"SourceCode$member": null
|
||||
}
|
||||
},
|
||||
"CodeCommitCodeDestination": {
|
||||
"base": "<p>Information about the AWS CodeCommit repository to be created in AWS CodeStar. This is where the source code files provided with the project request will be uploaded after project creation.</p>",
|
||||
"refs": {
|
||||
"CodeDestination$codeCommit": "<p>Information about the AWS CodeCommit repository to be created in AWS CodeStar. This is where the source code files provided with the project request will be uploaded after project creation.</p>"
|
||||
}
|
||||
},
|
||||
"CodeDestination": {
|
||||
"base": "<p>The repository to be created in AWS CodeStar. Valid values are AWS CodeCommit or GitHub. After AWS CodeStar provisions the new repository, the source code files provided with the project request are placed in the repository.</p>",
|
||||
"refs": {
|
||||
"Code$destination": "<p>The repository to be created in AWS CodeStar. Valid values are AWS CodeCommit or GitHub. After AWS CodeStar provisions the new repository, the source code files provided with the project request are placed in the repository.</p>"
|
||||
}
|
||||
},
|
||||
"CodeSource": {
|
||||
"base": "<p>The location where the source code files provided with the project request are stored. AWS CodeStar retrieves the files during project creation.</p>",
|
||||
"refs": {
|
||||
"Code$source": "<p>The location where the source code files provided with the project request are stored. AWS CodeStar retrieves the files during project creation.</p>"
|
||||
}
|
||||
},
|
||||
"ConcurrentModificationException": {
|
||||
"base": "<p>Another modification is being made. That modification must complete before you can make your change.</p>",
|
||||
"refs": {
|
||||
@@ -144,6 +180,18 @@
|
||||
"UserProfileSummary$emailAddress": "<p>The email address associated with the user.</p>"
|
||||
}
|
||||
},
|
||||
"GitHubCodeDestination": {
|
||||
"base": "<p>Information about the GitHub repository to be created in AWS CodeStar. This is where the source code files provided with the project request will be uploaded after project creation.</p>",
|
||||
"refs": {
|
||||
"CodeDestination$gitHub": "<p>Information about the GitHub repository to be created in AWS CodeStar. This is where the source code files provided with the project request will be uploaded after project creation.</p>"
|
||||
}
|
||||
},
|
||||
"GitHubPersonalToken": {
|
||||
"base": null,
|
||||
"refs": {
|
||||
"GitHubCodeDestination$token": "<p>The GitHub user's personal access token for the GitHub repository.</p>"
|
||||
}
|
||||
},
|
||||
"InvalidNextTokenException": {
|
||||
"base": "<p>The next token is not valid.</p>",
|
||||
"refs": {
|
||||
@@ -250,7 +298,7 @@
|
||||
"ProjectArn": {
|
||||
"base": null,
|
||||
"refs": {
|
||||
"CreateProjectResult$arn": "<p>Reserved for future use.</p>",
|
||||
"CreateProjectResult$arn": "<p>The Amazon Resource Name (ARN) of the created project.</p>",
|
||||
"DeleteProjectResult$projectArn": "<p>The Amazon Resource Name (ARN) of the deleted project.</p>",
|
||||
"DescribeProjectResult$arn": "<p>The Amazon Resource Name (ARN) for the project.</p>",
|
||||
"ProjectSummary$projectArn": "<p>The Amazon Resource Name (ARN) of the project.</p>"
|
||||
@@ -269,7 +317,7 @@
|
||||
"ProjectDescription": {
|
||||
"base": null,
|
||||
"refs": {
|
||||
"CreateProjectRequest$description": "<p>Reserved for future use.</p>",
|
||||
"CreateProjectRequest$description": "<p>The description of the project, if any.</p>",
|
||||
"DescribeProjectResult$description": "<p>The description of the project, if any.</p>",
|
||||
"UpdateProjectRequest$description": "<p>The description of the project, if any.</p>"
|
||||
}
|
||||
@@ -278,8 +326,8 @@
|
||||
"base": null,
|
||||
"refs": {
|
||||
"AssociateTeamMemberRequest$projectId": "<p>The ID of the project to which you will add the IAM user.</p>",
|
||||
"CreateProjectRequest$id": "<p>Reserved for future use.</p>",
|
||||
"CreateProjectResult$id": "<p>Reserved for future use.</p>",
|
||||
"CreateProjectRequest$id": "<p>The ID of the project to be created in AWS CodeStar.</p>",
|
||||
"CreateProjectResult$id": "<p>The ID of the project.</p>",
|
||||
"DeleteProjectRequest$id": "<p>The ID of the project to be deleted in AWS CodeStar.</p>",
|
||||
"DescribeProjectRequest$id": "<p>The ID of the project.</p>",
|
||||
"DescribeProjectResult$id": "<p>The ID of the project.</p>",
|
||||
@@ -297,7 +345,7 @@
|
||||
"ProjectName": {
|
||||
"base": null,
|
||||
"refs": {
|
||||
"CreateProjectRequest$name": "<p>Reserved for future use.</p>",
|
||||
"CreateProjectRequest$name": "<p>The display name for the project to be created in AWS CodeStar.</p>",
|
||||
"DescribeProjectResult$name": "<p>The display name for the project.</p>",
|
||||
"UpdateProjectRequest$name": "<p>The name of the project you want to update.</p>"
|
||||
}
|
||||
@@ -307,6 +355,12 @@
|
||||
"refs": {
|
||||
}
|
||||
},
|
||||
"ProjectStatus": {
|
||||
"base": "<p>An indication of whether a project creation or deletion is failed or successful.</p>",
|
||||
"refs": {
|
||||
"DescribeProjectResult$status": "<p>The project creation or deletion status.</p>"
|
||||
}
|
||||
},
|
||||
"ProjectSummary": {
|
||||
"base": "<p>Information about the metadata for a project.</p>",
|
||||
"refs": {
|
||||
@@ -326,6 +380,12 @@
|
||||
"ListProjectsResult$projects": "<p>A list of projects.</p>"
|
||||
}
|
||||
},
|
||||
"Reason": {
|
||||
"base": null,
|
||||
"refs": {
|
||||
"ProjectStatus$reason": "<p>In the case of a project creation or deletion failure, a reason for the failure.</p>"
|
||||
}
|
||||
},
|
||||
"RemoteAccessAllowed": {
|
||||
"base": null,
|
||||
"refs": {
|
||||
@@ -335,6 +395,43 @@
|
||||
"UpdateTeamMemberResult$remoteAccessAllowed": "<p>Whether a team member is allowed to remotely access project resources using the SSH public key associated with the user's profile.</p>"
|
||||
}
|
||||
},
|
||||
"RepositoryDescription": {
|
||||
"base": null,
|
||||
"refs": {
|
||||
"GitHubCodeDestination$description": "<p>Description for the GitHub repository to be created in AWS CodeStar. This description displays in GitHub after the repository is created.</p>"
|
||||
}
|
||||
},
|
||||
"RepositoryEnableIssues": {
|
||||
"base": null,
|
||||
"refs": {
|
||||
"GitHubCodeDestination$issuesEnabled": "<p>Whether to enable issues for the GitHub repository.</p>"
|
||||
}
|
||||
},
|
||||
"RepositoryIsPrivate": {
|
||||
"base": null,
|
||||
"refs": {
|
||||
"GitHubCodeDestination$privateRepository": "<p>Whether the GitHub repository is to be a private repository.</p>"
|
||||
}
|
||||
},
|
||||
"RepositoryName": {
|
||||
"base": null,
|
||||
"refs": {
|
||||
"CodeCommitCodeDestination$name": "<p>The name of the AWS CodeCommit repository to be created in AWS CodeStar.</p>",
|
||||
"GitHubCodeDestination$name": "<p>Name of the GitHub repository to be created in AWS CodeStar.</p>"
|
||||
}
|
||||
},
|
||||
"RepositoryOwner": {
|
||||
"base": null,
|
||||
"refs": {
|
||||
"GitHubCodeDestination$owner": "<p>The GitHub username for the owner of the GitHub repository to be created in AWS CodeStar. If this repository should be owned by a GitHub organization, provide its name.</p>"
|
||||
}
|
||||
},
|
||||
"RepositoryType": {
|
||||
"base": null,
|
||||
"refs": {
|
||||
"GitHubCodeDestination$type": "<p>The type of GitHub repository to be created in AWS CodeStar. Valid values are User or Organization.</p>"
|
||||
}
|
||||
},
|
||||
"Resource": {
|
||||
"base": "<p>Information about a resource for a project.</p>",
|
||||
"refs": {
|
||||
@@ -362,6 +459,25 @@
|
||||
"UpdateTeamMemberResult$projectRole": "<p>The project role granted to the user.</p>"
|
||||
}
|
||||
},
|
||||
"RoleArn": {
|
||||
"base": null,
|
||||
"refs": {
|
||||
"Toolchain$roleArn": "<p>The service role ARN for AWS CodeStar to use for the toolchain template during stack provisioning.</p>"
|
||||
}
|
||||
},
|
||||
"S3Location": {
|
||||
"base": "<p>The Amazon S3 location where the source code files provided with the project request are stored.</p>",
|
||||
"refs": {
|
||||
"CodeSource$s3": "<p>Information about the Amazon S3 location where the source code files provided with the project request are stored. </p>",
|
||||
"ToolchainSource$s3": "<p>The Amazon S3 bucket where the toolchain template file provided with the project request is stored.</p>"
|
||||
}
|
||||
},
|
||||
"SourceCode": {
|
||||
"base": null,
|
||||
"refs": {
|
||||
"CreateProjectRequest$sourceCode": "<p>A list of the Code objects submitted with the project request. If this parameter is specified, the request must also include the toolchain parameter.</p>"
|
||||
}
|
||||
},
|
||||
"SshPublicKey": {
|
||||
"base": null,
|
||||
"refs": {
|
||||
@@ -380,6 +496,12 @@
|
||||
"DescribeProjectResult$stackId": "<p>The ID of the primary stack in AWS CloudFormation used to generate resources for the project.</p>"
|
||||
}
|
||||
},
|
||||
"State": {
|
||||
"base": null,
|
||||
"refs": {
|
||||
"ProjectStatus$state": "<p>The phase of completion for a project creation or deletion.</p>"
|
||||
}
|
||||
},
|
||||
"TagKey": {
|
||||
"base": null,
|
||||
"refs": {
|
||||
@@ -412,6 +534,7 @@
|
||||
"Tags": {
|
||||
"base": null,
|
||||
"refs": {
|
||||
"CreateProjectRequest$tags": "<p>The tags created for the project.</p>",
|
||||
"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>"
|
||||
@@ -439,6 +562,36 @@
|
||||
"ListTeamMembersResult$teamMembers": "<p>A list of team member objects for the project.</p>"
|
||||
}
|
||||
},
|
||||
"TemplateParameterKey": {
|
||||
"base": null,
|
||||
"refs": {
|
||||
"TemplateParameterMap$key": null
|
||||
}
|
||||
},
|
||||
"TemplateParameterMap": {
|
||||
"base": null,
|
||||
"refs": {
|
||||
"Toolchain$stackParameters": "<p>The list of parameter overrides to be passed into the toolchain template during stack provisioning, if any.</p>"
|
||||
}
|
||||
},
|
||||
"TemplateParameterValue": {
|
||||
"base": null,
|
||||
"refs": {
|
||||
"TemplateParameterMap$value": null
|
||||
}
|
||||
},
|
||||
"Toolchain": {
|
||||
"base": "<p>The toolchain template file provided with the project request. AWS CodeStar uses the template to provision the toolchain stack in AWS CloudFormation.</p>",
|
||||
"refs": {
|
||||
"CreateProjectRequest$toolchain": "<p>The name of the toolchain template file submitted with the project request. If this parameter is specified, the request must also include the sourceCode parameter.</p>"
|
||||
}
|
||||
},
|
||||
"ToolchainSource": {
|
||||
"base": "<p>The Amazon S3 location where the toolchain template file provided with the project request is stored. AWS CodeStar retrieves the file during project creation.</p>",
|
||||
"refs": {
|
||||
"Toolchain$source": "<p>The Amazon S3 location where the toolchain template file provided with the project request is stored. AWS CodeStar retrieves the file during project creation.</p>"
|
||||
}
|
||||
},
|
||||
"UntagProjectRequest": {
|
||||
"base": null,
|
||||
"refs": {
|
||||
|
||||
+11
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"version": 1,
|
||||
"defaultRegion": "us-west-2",
|
||||
"testCases": [
|
||||
{
|
||||
"operationName": "ListProjects",
|
||||
"input": {},
|
||||
"errorExpectedFromService": false
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user