mirror of
https://github.com/kubernetes-sigs/kustomize.git
synced 2026-07-16 17:33:14 +00:00
change github.com/aws/aws-sdk-go to be the same revision in kubernetes
This commit is contained in:
34
vendor/github.com/aws/aws-sdk-go/service/codepipeline/api.go
generated
vendored
34
vendor/github.com/aws/aws-sdk-go/service/codepipeline/api.go
generated
vendored
@@ -2809,10 +2809,6 @@ func (c *CodePipeline) UpdatePipelineRequest(input *UpdatePipelineInput) (req *r
|
||||
// * ErrCodeInvalidStructureException "InvalidStructureException"
|
||||
// The specified structure was specified in an invalid format.
|
||||
//
|
||||
// * ErrCodeLimitExceededException "LimitExceededException"
|
||||
// The number of pipelines associated with the AWS account has exceeded the
|
||||
// limit allowed for the account.
|
||||
//
|
||||
// See also, https://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/UpdatePipeline
|
||||
func (c *CodePipeline) UpdatePipeline(input *UpdatePipelineInput) (*UpdatePipelineOutput, error) {
|
||||
req, out := c.UpdatePipelineRequest(input)
|
||||
@@ -3395,7 +3391,7 @@ type ActionExecution struct {
|
||||
ExternalExecutionUrl *string `locationName:"externalExecutionUrl" min:"1" type:"string"`
|
||||
|
||||
// The last status change of the action.
|
||||
LastStatusChange *time.Time `locationName:"lastStatusChange" type:"timestamp"`
|
||||
LastStatusChange *time.Time `locationName:"lastStatusChange" type:"timestamp" timestampFormat:"unix"`
|
||||
|
||||
// The ARN of the user who last changed the pipeline.
|
||||
LastUpdatedBy *string `locationName:"lastUpdatedBy" type:"string"`
|
||||
@@ -3489,7 +3485,7 @@ type ActionRevision struct {
|
||||
// in timestamp format.
|
||||
//
|
||||
// Created is a required field
|
||||
Created *time.Time `locationName:"created" type:"timestamp" required:"true"`
|
||||
Created *time.Time `locationName:"created" type:"timestamp" timestampFormat:"unix" required:"true"`
|
||||
|
||||
// The unique identifier of the change that set the state to this revision,
|
||||
// for example a deployment ID or timestamp.
|
||||
@@ -4049,7 +4045,7 @@ type ArtifactRevision struct {
|
||||
|
||||
// The date and time when the most recent revision of the artifact was created,
|
||||
// in timestamp format.
|
||||
Created *time.Time `locationName:"created" type:"timestamp"`
|
||||
Created *time.Time `locationName:"created" type:"timestamp" timestampFormat:"unix"`
|
||||
|
||||
// The name of an artifact. This name might be system-generated, such as "MyApp",
|
||||
// or might be defined by the user when an action is created.
|
||||
@@ -4509,7 +4505,7 @@ type CurrentRevision struct {
|
||||
|
||||
// The date and time when the most recent revision of the artifact was created,
|
||||
// in timestamp format.
|
||||
Created *time.Time `locationName:"created" type:"timestamp"`
|
||||
Created *time.Time `locationName:"created" type:"timestamp" timestampFormat:"unix"`
|
||||
|
||||
// The revision ID of the current version of an artifact.
|
||||
//
|
||||
@@ -5535,7 +5531,7 @@ type GetPipelineStateOutput struct {
|
||||
_ struct{} `type:"structure"`
|
||||
|
||||
// The date and time the pipeline was created, in timestamp format.
|
||||
Created *time.Time `locationName:"created" type:"timestamp"`
|
||||
Created *time.Time `locationName:"created" type:"timestamp" timestampFormat:"unix"`
|
||||
|
||||
// The name of the pipeline for which you want to get the state.
|
||||
PipelineName *string `locationName:"pipelineName" min:"1" type:"string"`
|
||||
@@ -5550,7 +5546,7 @@ type GetPipelineStateOutput struct {
|
||||
StageStates []*StageState `locationName:"stageStates" type:"list"`
|
||||
|
||||
// The date and time the pipeline was last updated, in timestamp format.
|
||||
Updated *time.Time `locationName:"updated" type:"timestamp"`
|
||||
Updated *time.Time `locationName:"updated" type:"timestamp" timestampFormat:"unix"`
|
||||
}
|
||||
|
||||
// String returns the string representation
|
||||
@@ -6199,7 +6195,7 @@ type ListWebhookItem struct {
|
||||
|
||||
// The date and time a webhook was last successfully triggered, in timestamp
|
||||
// format.
|
||||
LastTriggered *time.Time `locationName:"lastTriggered" type:"timestamp"`
|
||||
LastTriggered *time.Time `locationName:"lastTriggered" type:"timestamp" timestampFormat:"unix"`
|
||||
|
||||
// A unique URL generated by CodePipeline. When a POST request is made to this
|
||||
// URL, the defined pipeline is started as long as the body of the post request
|
||||
@@ -6625,7 +6621,7 @@ type PipelineExecutionSummary struct {
|
||||
|
||||
// The date and time of the last change to the pipeline execution, in timestamp
|
||||
// format.
|
||||
LastUpdateTime *time.Time `locationName:"lastUpdateTime" type:"timestamp"`
|
||||
LastUpdateTime *time.Time `locationName:"lastUpdateTime" type:"timestamp" timestampFormat:"unix"`
|
||||
|
||||
// The ID of the pipeline execution.
|
||||
PipelineExecutionId *string `locationName:"pipelineExecutionId" type:"string"`
|
||||
@@ -6633,7 +6629,7 @@ type PipelineExecutionSummary struct {
|
||||
SourceRevisions []*SourceRevision `locationName:"sourceRevisions" type:"list"`
|
||||
|
||||
// The date and time when the pipeline execution began, in timestamp format.
|
||||
StartTime *time.Time `locationName:"startTime" type:"timestamp"`
|
||||
StartTime *time.Time `locationName:"startTime" type:"timestamp" timestampFormat:"unix"`
|
||||
|
||||
// The status of the pipeline execution.
|
||||
//
|
||||
@@ -6694,13 +6690,13 @@ type PipelineMetadata struct {
|
||||
_ struct{} `type:"structure"`
|
||||
|
||||
// The date and time the pipeline was created, in timestamp format.
|
||||
Created *time.Time `locationName:"created" type:"timestamp"`
|
||||
Created *time.Time `locationName:"created" type:"timestamp" timestampFormat:"unix"`
|
||||
|
||||
// The Amazon Resource Name (ARN) of the pipeline.
|
||||
PipelineArn *string `locationName:"pipelineArn" type:"string"`
|
||||
|
||||
// The date and time the pipeline was last updated, in timestamp format.
|
||||
Updated *time.Time `locationName:"updated" type:"timestamp"`
|
||||
Updated *time.Time `locationName:"updated" type:"timestamp" timestampFormat:"unix"`
|
||||
}
|
||||
|
||||
// String returns the string representation
|
||||
@@ -6736,13 +6732,13 @@ type PipelineSummary struct {
|
||||
_ struct{} `type:"structure"`
|
||||
|
||||
// The date and time the pipeline was created, in timestamp format.
|
||||
Created *time.Time `locationName:"created" type:"timestamp"`
|
||||
Created *time.Time `locationName:"created" type:"timestamp" timestampFormat:"unix"`
|
||||
|
||||
// The name of the pipeline.
|
||||
Name *string `locationName:"name" min:"1" type:"string"`
|
||||
|
||||
// The date and time of the last update to the pipeline, in timestamp format.
|
||||
Updated *time.Time `locationName:"updated" type:"timestamp"`
|
||||
Updated *time.Time `locationName:"updated" type:"timestamp" timestampFormat:"unix"`
|
||||
|
||||
// The version number of the pipeline.
|
||||
Version *int64 `locationName:"version" min:"1" type:"integer"`
|
||||
@@ -7200,7 +7196,7 @@ type PutApprovalResultOutput struct {
|
||||
_ struct{} `type:"structure"`
|
||||
|
||||
// The timestamp showing when the approval or rejection was submitted.
|
||||
ApprovedAt *time.Time `locationName:"approvedAt" type:"timestamp"`
|
||||
ApprovedAt *time.Time `locationName:"approvedAt" type:"timestamp" timestampFormat:"unix"`
|
||||
}
|
||||
|
||||
// String returns the string representation
|
||||
@@ -8383,7 +8379,7 @@ type TransitionState struct {
|
||||
Enabled *bool `locationName:"enabled" type:"boolean"`
|
||||
|
||||
// The timestamp when the transition state was last changed.
|
||||
LastChangedAt *time.Time `locationName:"lastChangedAt" type:"timestamp"`
|
||||
LastChangedAt *time.Time `locationName:"lastChangedAt" type:"timestamp" timestampFormat:"unix"`
|
||||
|
||||
// The ID of the user who last changed the transition state.
|
||||
LastChangedBy *string `locationName:"lastChangedBy" type:"string"`
|
||||
|
||||
Reference in New Issue
Block a user