service/appconfig/api_op_GetDeployment.go (294 lines of code) (raw):

// Code generated by smithy-go-codegen DO NOT EDIT. package appconfig import ( "context" "fmt" awsmiddleware "github.com/aws/aws-sdk-go-v2/aws/middleware" "github.com/aws/aws-sdk-go-v2/service/appconfig/types" "github.com/aws/smithy-go/middleware" smithytime "github.com/aws/smithy-go/time" smithyhttp "github.com/aws/smithy-go/transport/http" smithywaiter "github.com/aws/smithy-go/waiter" "time" ) // Retrieves information about a configuration deployment. func (c *Client) GetDeployment(ctx context.Context, params *GetDeploymentInput, optFns ...func(*Options)) (*GetDeploymentOutput, error) { if params == nil { params = &GetDeploymentInput{} } result, metadata, err := c.invokeOperation(ctx, "GetDeployment", params, optFns, c.addOperationGetDeploymentMiddlewares) if err != nil { return nil, err } out := result.(*GetDeploymentOutput) out.ResultMetadata = metadata return out, nil } type GetDeploymentInput struct { // The ID of the application that includes the deployment you want to get. // // This member is required. ApplicationId *string // The sequence number of the deployment. // // This member is required. DeploymentNumber *int32 // The ID of the environment that includes the deployment you want to get. // // This member is required. EnvironmentId *string noSmithyDocumentSerde } type GetDeploymentOutput struct { // The ID of the application that was deployed. ApplicationId *string // A list of extensions that were processed as part of the deployment. The // extensions that were previously associated to the configuration profile, // environment, or the application when StartDeployment was called. AppliedExtensions []types.AppliedExtension // The time the deployment completed. CompletedAt *time.Time // Information about the source location of the configuration. ConfigurationLocationUri *string // The name of the configuration. ConfigurationName *string // The ID of the configuration profile that was deployed. ConfigurationProfileId *string // The configuration version that was deployed. ConfigurationVersion *string // Total amount of time the deployment lasted. DeploymentDurationInMinutes int32 // The sequence number of the deployment. DeploymentNumber int32 // The ID of the deployment strategy that was deployed. DeploymentStrategyId *string // The description of the deployment. Description *string // The ID of the environment that was deployed. EnvironmentId *string // A list containing all events related to a deployment. The most recent events // are displayed first. EventLog []types.DeploymentEvent // The amount of time that AppConfig monitored for alarms before considering the // deployment to be complete and no longer eligible for automatic rollback. FinalBakeTimeInMinutes int32 // The percentage of targets to receive a deployed configuration during each // interval. GrowthFactor *float32 // The algorithm used to define how percentage grew over time. GrowthType types.GrowthType // The Amazon Resource Name of the Key Management Service key used to encrypt // configuration data. You can encrypt secrets stored in Secrets Manager, Amazon // Simple Storage Service (Amazon S3) objects encrypted with SSE-KMS, or secure // string parameters stored in Amazon Web Services Systems Manager Parameter Store. KmsKeyArn *string // The Key Management Service key identifier (key ID, key alias, or key ARN) // provided when the resource was created or updated. KmsKeyIdentifier *string // The percentage of targets for which the deployment is available. PercentageComplete *float32 // The time the deployment started. StartedAt *time.Time // The state of the deployment. State types.DeploymentState // A user-defined label for an AppConfig hosted configuration version. VersionLabel *string // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata noSmithyDocumentSerde } func (c *Client) addOperationGetDeploymentMiddlewares(stack *middleware.Stack, options Options) (err error) { if err := stack.Serialize.Add(&setOperationInputMiddleware{}, middleware.After); err != nil { return err } err = stack.Serialize.Add(&awsRestjson1_serializeOpGetDeployment{}, middleware.After) if err != nil { return err } err = stack.Deserialize.Add(&awsRestjson1_deserializeOpGetDeployment{}, middleware.After) if err != nil { return err } if err := addProtocolFinalizerMiddlewares(stack, options, "GetDeployment"); err != nil { return fmt.Errorf("add protocol finalizers: %v", err) } if err = addlegacyEndpointContextSetter(stack, options); err != nil { return err } if err = addSetLoggerMiddleware(stack, options); err != nil { return err } if err = addClientRequestID(stack); err != nil { return err } if err = addComputeContentLength(stack); err != nil { return err } if err = addResolveEndpointMiddleware(stack, options); err != nil { return err } if err = addComputePayloadSHA256(stack); err != nil { return err } if err = addRetry(stack, options); err != nil { return err } if err = addRawResponseToMetadata(stack); err != nil { return err } if err = addRecordResponseTiming(stack); err != nil { return err } if err = addSpanRetryLoop(stack, options); err != nil { return err } if err = addClientUserAgent(stack, options); err != nil { return err } if err = smithyhttp.AddErrorCloseResponseBodyMiddleware(stack); err != nil { return err } if err = smithyhttp.AddCloseResponseBodyMiddleware(stack); err != nil { return err } if err = addSetLegacyContextSigningOptionsMiddleware(stack); err != nil { return err } if err = addTimeOffsetBuild(stack, c); err != nil { return err } if err = addUserAgentRetryMode(stack, options); err != nil { return err } if err = addCredentialSource(stack, options); err != nil { return err } if err = addOpGetDeploymentValidationMiddleware(stack); err != nil { return err } if err = stack.Initialize.Add(newServiceMetadataMiddleware_opGetDeployment(options.Region), middleware.Before); err != nil { return err } if err = addRecursionDetection(stack); err != nil { return err } if err = addRequestIDRetrieverMiddleware(stack); err != nil { return err } if err = addResponseErrorMiddleware(stack); err != nil { return err } if err = addRequestResponseLogging(stack, options); err != nil { return err } if err = addDisableHTTPSMiddleware(stack, options); err != nil { return err } if err = addSpanInitializeStart(stack); err != nil { return err } if err = addSpanInitializeEnd(stack); err != nil { return err } if err = addSpanBuildRequestStart(stack); err != nil { return err } if err = addSpanBuildRequestEnd(stack); err != nil { return err } return nil } // DeploymentCompleteWaiterOptions are waiter options for DeploymentCompleteWaiter type DeploymentCompleteWaiterOptions struct { // Set of options to modify how an operation is invoked. These apply to all // operations invoked for this client. Use functional options on operation call to // modify this list for per operation behavior. // // Passing options here is functionally equivalent to passing values to this // config's ClientOptions field that extend the inner client's APIOptions directly. APIOptions []func(*middleware.Stack) error // Functional options to be passed to all operations invoked by this client. // // Function values that modify the inner APIOptions are applied after the waiter // config's own APIOptions modifiers. ClientOptions []func(*Options) // MinDelay is the minimum amount of time to delay between retries. If unset, // DeploymentCompleteWaiter will use default minimum delay of 30 seconds. Note that // MinDelay must resolve to a value lesser than or equal to the MaxDelay. MinDelay time.Duration // MaxDelay is the maximum amount of time to delay between retries. If unset or // set to zero, DeploymentCompleteWaiter will use default max delay of 120 seconds. // Note that MaxDelay must resolve to value greater than or equal to the MinDelay. MaxDelay time.Duration // LogWaitAttempts is used to enable logging for waiter retry attempts LogWaitAttempts bool // Retryable is function that can be used to override the service defined // waiter-behavior based on operation output, or returned error. This function is // used by the waiter to decide if a state is retryable or a terminal state. // // By default service-modeled logic will populate this option. This option can // thus be used to define a custom waiter state with fall-back to service-modeled // waiter state mutators.The function returns an error in case of a failure state. // In case of retry state, this function returns a bool value of true and nil // error, while in case of success it returns a bool value of false and nil error. Retryable func(context.Context, *GetDeploymentInput, *GetDeploymentOutput, error) (bool, error) } // DeploymentCompleteWaiter defines the waiters for DeploymentComplete type DeploymentCompleteWaiter struct { client GetDeploymentAPIClient options DeploymentCompleteWaiterOptions } // NewDeploymentCompleteWaiter constructs a DeploymentCompleteWaiter. func NewDeploymentCompleteWaiter(client GetDeploymentAPIClient, optFns ...func(*DeploymentCompleteWaiterOptions)) *DeploymentCompleteWaiter { options := DeploymentCompleteWaiterOptions{} options.MinDelay = 30 * time.Second options.MaxDelay = 120 * time.Second options.Retryable = deploymentCompleteStateRetryable for _, fn := range optFns { fn(&options) } return &DeploymentCompleteWaiter{ client: client, options: options, } } // Wait calls the waiter function for DeploymentComplete waiter. The maxWaitDur is // the maximum wait duration the waiter will wait. The maxWaitDur is required and // must be greater than zero. func (w *DeploymentCompleteWaiter) Wait(ctx context.Context, params *GetDeploymentInput, maxWaitDur time.Duration, optFns ...func(*DeploymentCompleteWaiterOptions)) error { _, err := w.WaitForOutput(ctx, params, maxWaitDur, optFns...) return err } // WaitForOutput calls the waiter function for DeploymentComplete waiter and // returns the output of the successful operation. The maxWaitDur is the maximum // wait duration the waiter will wait. The maxWaitDur is required and must be // greater than zero. func (w *DeploymentCompleteWaiter) WaitForOutput(ctx context.Context, params *GetDeploymentInput, maxWaitDur time.Duration, optFns ...func(*DeploymentCompleteWaiterOptions)) (*GetDeploymentOutput, error) { if maxWaitDur <= 0 { return nil, fmt.Errorf("maximum wait time for waiter must be greater than zero") } options := w.options for _, fn := range optFns { fn(&options) } if options.MaxDelay <= 0 { options.MaxDelay = 120 * time.Second } if options.MinDelay > options.MaxDelay { return nil, fmt.Errorf("minimum waiter delay %v must be lesser than or equal to maximum waiter delay of %v.", options.MinDelay, options.MaxDelay) } ctx, cancelFn := context.WithTimeout(ctx, maxWaitDur) defer cancelFn() logger := smithywaiter.Logger{} remainingTime := maxWaitDur var attempt int64 for { attempt++ apiOptions := options.APIOptions start := time.Now() if options.LogWaitAttempts { logger.Attempt = attempt apiOptions = append([]func(*middleware.Stack) error{}, options.APIOptions...) apiOptions = append(apiOptions, logger.AddLogger) } out, err := w.client.GetDeployment(ctx, params, func(o *Options) { baseOpts := []func(*Options){ addIsWaiterUserAgent, } o.APIOptions = append(o.APIOptions, apiOptions...) for _, opt := range baseOpts { opt(o) } for _, opt := range options.ClientOptions { opt(o) } }) retryable, err := options.Retryable(ctx, params, out, err) if err != nil { return nil, err } if !retryable { return out, nil } remainingTime -= time.Since(start) if remainingTime < options.MinDelay || remainingTime <= 0 { break } // compute exponential backoff between waiter retries delay, err := smithywaiter.ComputeDelay( attempt, options.MinDelay, options.MaxDelay, remainingTime, ) if err != nil { return nil, fmt.Errorf("error computing waiter delay, %w", err) } remainingTime -= delay // sleep for the delay amount before invoking a request if err := smithytime.SleepWithContext(ctx, delay); err != nil { return nil, fmt.Errorf("request cancelled while waiting, %w", err) } } return nil, fmt.Errorf("exceeded max wait time for DeploymentComplete waiter") } func deploymentCompleteStateRetryable(ctx context.Context, input *GetDeploymentInput, output *GetDeploymentOutput, err error) (bool, error) { if err == nil { v1 := output.State expectedValue := "COMPLETE" var pathValue string pathValue = string(v1) if pathValue == expectedValue { return false, nil } } if err == nil { v1 := output.State expectedValue := "ROLLED_BACK" var pathValue string pathValue = string(v1) if pathValue == expectedValue { return false, fmt.Errorf("waiter state transitioned to Failure") } } if err == nil { v1 := output.State expectedValue := "REVERTED" var pathValue string pathValue = string(v1) if pathValue == expectedValue { return false, fmt.Errorf("waiter state transitioned to Failure") } } if err != nil { return false, err } return true, nil } // GetDeploymentAPIClient is a client that implements the GetDeployment operation. type GetDeploymentAPIClient interface { GetDeployment(context.Context, *GetDeploymentInput, ...func(*Options)) (*GetDeploymentOutput, error) } var _ GetDeploymentAPIClient = (*Client)(nil) func newServiceMetadataMiddleware_opGetDeployment(region string) *awsmiddleware.RegisterServiceMetadata { return &awsmiddleware.RegisterServiceMetadata{ Region: region, ServiceID: ServiceID, OperationName: "GetDeployment", } }