1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214
|
// Code generated by smithy-go-codegen DO NOT EDIT.
package codedeploy
import (
"context"
awsmiddleware "github.com/aws/aws-sdk-go-v2/aws/middleware"
"github.com/aws/aws-sdk-go-v2/aws/signer/v4"
"github.com/aws/aws-sdk-go-v2/service/codedeploy/types"
"github.com/aws/smithy-go/middleware"
smithyhttp "github.com/aws/smithy-go/transport/http"
)
// Changes information about a deployment group.
func (c *Client) UpdateDeploymentGroup(ctx context.Context, params *UpdateDeploymentGroupInput, optFns ...func(*Options)) (*UpdateDeploymentGroupOutput, error) {
if params == nil {
params = &UpdateDeploymentGroupInput{}
}
result, metadata, err := c.invokeOperation(ctx, "UpdateDeploymentGroup", params, optFns, c.addOperationUpdateDeploymentGroupMiddlewares)
if err != nil {
return nil, err
}
out := result.(*UpdateDeploymentGroupOutput)
out.ResultMetadata = metadata
return out, nil
}
// Represents the input of an UpdateDeploymentGroup operation.
type UpdateDeploymentGroupInput struct {
// The application name that corresponds to the deployment group to update.
//
// This member is required.
ApplicationName *string
// The current name of the deployment group.
//
// This member is required.
CurrentDeploymentGroupName *string
// Information to add or change about Amazon CloudWatch alarms when the deployment
// group is updated.
AlarmConfiguration *types.AlarmConfiguration
// Information for an automatic rollback configuration that is added or changed
// when a deployment group is updated.
AutoRollbackConfiguration *types.AutoRollbackConfiguration
// The replacement list of Auto Scaling groups to be included in the deployment
// group, if you want to change them.
//
// * To keep the Auto Scaling groups, enter
// their names or do not specify this parameter.
//
// * To remove Auto Scaling groups,
// specify a non-null empty list of Auto Scaling group names to detach all
// CodeDeploy-managed Auto Scaling lifecycle hooks. For examples, see Amazon EC2
// instances in an Amazon EC2 Auto Scaling group fail to launch and receive the
// error "Heartbeat Timeout"
// (https://docs.aws.amazon.com/https:/docs.aws.amazon.com/codedeploy/latest/userguide/troubleshooting-auto-scaling.html#troubleshooting-auto-scaling-heartbeat)
// in the CodeDeploy User Guide.
AutoScalingGroups []string
// Information about blue/green deployment options for a deployment group.
BlueGreenDeploymentConfiguration *types.BlueGreenDeploymentConfiguration
// The replacement deployment configuration name to use, if you want to change it.
DeploymentConfigName *string
// Information about the type of deployment, either in-place or blue/green, you
// want to run and whether to route deployment traffic behind a load balancer.
DeploymentStyle *types.DeploymentStyle
// The replacement set of Amazon EC2 tags on which to filter, if you want to change
// them. To keep the existing tags, enter their names. To remove tags, do not enter
// any tag names.
Ec2TagFilters []types.EC2TagFilter
// Information about groups of tags applied to on-premises instances. The
// deployment group includes only Amazon EC2 instances identified by all the tag
// groups.
Ec2TagSet *types.EC2TagSet
// The target Amazon ECS services in the deployment group. This applies only to
// deployment groups that use the Amazon ECS compute platform. A target Amazon ECS
// service is specified as an Amazon ECS cluster and service name pair using the
// format :.
EcsServices []types.ECSService
// Information about the load balancer used in a deployment.
LoadBalancerInfo *types.LoadBalancerInfo
// The new name of the deployment group, if you want to change it.
NewDeploymentGroupName *string
// The replacement set of on-premises instance tags on which to filter, if you want
// to change them. To keep the existing tags, enter their names. To remove tags, do
// not enter any tag names.
OnPremisesInstanceTagFilters []types.TagFilter
// Information about an on-premises instance tag set. The deployment group includes
// only on-premises instances identified by all the tag groups.
OnPremisesTagSet *types.OnPremisesTagSet
// Indicates what happens when new Amazon EC2 instances are launched mid-deployment
// and do not receive the deployed application revision. If this option is set to
// UPDATE or is unspecified, CodeDeploy initiates one or more 'auto-update outdated
// instances' deployments to apply the deployed application revision to the new
// Amazon EC2 instances. If this option is set to IGNORE, CodeDeploy does not
// initiate a deployment to update the new Amazon EC2 instances. This may result in
// instances having different revisions.
OutdatedInstancesStrategy types.OutdatedInstancesStrategy
// A replacement ARN for the service role, if you want to change it.
ServiceRoleArn *string
// Information about triggers to change when the deployment group is updated. For
// examples, see Edit a Trigger in a CodeDeploy Deployment Group
// (https://docs.aws.amazon.com/codedeploy/latest/userguide/how-to-notify-edit.html)
// in the CodeDeploy User Guide.
TriggerConfigurations []types.TriggerConfig
noSmithyDocumentSerde
}
// Represents the output of an UpdateDeploymentGroup operation.
type UpdateDeploymentGroupOutput struct {
// If the output contains no data, and the corresponding deployment group contained
// at least one Auto Scaling group, CodeDeploy successfully removed all
// corresponding Auto Scaling lifecycle event hooks from the Amazon Web Services
// account. If the output contains data, CodeDeploy could not remove some Auto
// Scaling lifecycle event hooks from the Amazon Web Services account.
HooksNotCleanedUp []types.AutoScalingGroup
// Metadata pertaining to the operation's result.
ResultMetadata middleware.Metadata
noSmithyDocumentSerde
}
func (c *Client) addOperationUpdateDeploymentGroupMiddlewares(stack *middleware.Stack, options Options) (err error) {
err = stack.Serialize.Add(&awsAwsjson11_serializeOpUpdateDeploymentGroup{}, middleware.After)
if err != nil {
return err
}
err = stack.Deserialize.Add(&awsAwsjson11_deserializeOpUpdateDeploymentGroup{}, middleware.After)
if err != nil {
return err
}
if err = addSetLoggerMiddleware(stack, options); err != nil {
return err
}
if err = awsmiddleware.AddClientRequestIDMiddleware(stack); err != nil {
return err
}
if err = smithyhttp.AddComputeContentLengthMiddleware(stack); err != nil {
return err
}
if err = addResolveEndpointMiddleware(stack, options); err != nil {
return err
}
if err = v4.AddComputePayloadSHA256Middleware(stack); err != nil {
return err
}
if err = addRetryMiddlewares(stack, options); err != nil {
return err
}
if err = addHTTPSignerV4Middleware(stack, options); err != nil {
return err
}
if err = awsmiddleware.AddRawResponseToMetadata(stack); err != nil {
return err
}
if err = awsmiddleware.AddRecordResponseTiming(stack); err != nil {
return err
}
if err = addClientUserAgent(stack); err != nil {
return err
}
if err = smithyhttp.AddErrorCloseResponseBodyMiddleware(stack); err != nil {
return err
}
if err = smithyhttp.AddCloseResponseBodyMiddleware(stack); err != nil {
return err
}
if err = addOpUpdateDeploymentGroupValidationMiddleware(stack); err != nil {
return err
}
if err = stack.Initialize.Add(newServiceMetadataMiddleware_opUpdateDeploymentGroup(options.Region), middleware.Before); 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
}
return nil
}
func newServiceMetadataMiddleware_opUpdateDeploymentGroup(region string) *awsmiddleware.RegisterServiceMetadata {
return &awsmiddleware.RegisterServiceMetadata{
Region: region,
ServiceID: ServiceID,
SigningName: "codedeploy",
OperationName: "UpdateDeploymentGroup",
}
}
|