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 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248
|
// Code generated by smithy-go-codegen DO NOT EDIT.
package opsworks
import (
"context"
"fmt"
awsmiddleware "github.com/aws/aws-sdk-go-v2/aws/middleware"
"github.com/aws/aws-sdk-go-v2/service/opsworks/types"
"github.com/aws/smithy-go/middleware"
smithyhttp "github.com/aws/smithy-go/transport/http"
)
// Updates a specified instance.
//
// Required Permissions: To use this action, an IAM user must have a Manage
// permissions level for the stack, or an attached policy that explicitly grants
// permissions. For more information on user permissions, see [Managing User Permissions].
//
// [Managing User Permissions]: https://docs.aws.amazon.com/opsworks/latest/userguide/opsworks-security-users.html
func (c *Client) UpdateInstance(ctx context.Context, params *UpdateInstanceInput, optFns ...func(*Options)) (*UpdateInstanceOutput, error) {
if params == nil {
params = &UpdateInstanceInput{}
}
result, metadata, err := c.invokeOperation(ctx, "UpdateInstance", params, optFns, c.addOperationUpdateInstanceMiddlewares)
if err != nil {
return nil, err
}
out := result.(*UpdateInstanceOutput)
out.ResultMetadata = metadata
return out, nil
}
type UpdateInstanceInput struct {
// The instance ID.
//
// This member is required.
InstanceId *string
// The default OpsWorks Stacks agent version. You have the following options:
//
// - INHERIT - Use the stack's default agent version setting.
//
// - version_number - Use the specified agent version. This value overrides the
// stack's default setting. To update the agent version, you must edit the instance
// configuration and specify a new version. OpsWorks Stacks installs that version
// on the instance.
//
// The default setting is INHERIT . To specify an agent version, you must use the
// complete version number, not the abbreviated number shown on the console. For a
// list of available agent version numbers, call DescribeAgentVersions.
//
// AgentVersion cannot be set to Chef 12.2.
AgentVersion *string
// The ID of the AMI that was used to create the instance. The value of this
// parameter must be the same AMI ID that the instance is already using. You cannot
// apply a new AMI to an instance by running UpdateInstance. UpdateInstance does
// not work on instances that are using custom AMIs.
AmiId *string
// The instance architecture. Instance types do not necessarily support both
// architectures. For a list of the architectures that are supported by the
// different instance types, see [Instance Families and Types].
//
// [Instance Families and Types]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instance-types.html
Architecture types.Architecture
// For load-based or time-based instances, the type. Windows stacks can use only
// time-based instances.
AutoScalingType types.AutoScalingType
// This property cannot be updated.
EbsOptimized *bool
// The instance host name. The following are character limits for instance host
// names.
//
// - Linux-based instances: 63 characters
//
// - Windows-based instances: 15 characters
Hostname *string
// Whether to install operating system and package updates when the instance
// boots. The default value is true . To control when updates are installed, set
// this value to false . You must then update your instances manually by using CreateDeployment to
// run the update_dependencies stack command or by manually running yum (Amazon
// Linux) or apt-get (Ubuntu) on the instances.
//
// We strongly recommend using the default value of true , to ensure that your
// instances have the latest security updates.
InstallUpdatesOnBoot *bool
// The instance type, such as t2.micro . For a list of supported instance types,
// open the stack in the console, choose Instances, and choose + Instance. The Size
// list contains the currently supported types. For more information, see [Instance Families and Types]. The
// parameter values that you use to specify the various types are in the API Name
// column of the Available Instance Types table.
//
// [Instance Families and Types]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instance-types.html
InstanceType *string
// The instance's layer IDs.
LayerIds []string
// The instance's operating system, which must be set to one of the following. You
// cannot update an instance that is using a custom AMI.
//
// - A supported Linux operating system: An Amazon Linux version, such as Amazon
// Linux 2 , Amazon Linux 2018.03 , Amazon Linux 2017.09 , Amazon Linux 2017.03 ,
// Amazon Linux 2016.09 , Amazon Linux 2016.03 , Amazon Linux 2015.09 , or
// Amazon Linux 2015.03 .
//
// - A supported Ubuntu operating system, such as Ubuntu 18.04 LTS , Ubuntu
// 16.04 LTS , Ubuntu 14.04 LTS , or Ubuntu 12.04 LTS .
//
// - CentOS Linux 7
//
// - Red Hat Enterprise Linux 7
//
// - A supported Windows operating system, such as Microsoft Windows Server 2012
// R2 Base , Microsoft Windows Server 2012 R2 with SQL Server Express ,
// Microsoft Windows Server 2012 R2 with SQL Server Standard , or Microsoft
// Windows Server 2012 R2 with SQL Server Web .
//
// Not all operating systems are supported with all versions of Chef. For more
// information about supported operating systems, see [OpsWorks Stacks Operating Systems].
//
// The default option is the current Amazon Linux version. If you set this
// parameter to Custom , you must use the AmiId parameter to specify the custom AMI
// that you want to use. For more information about how to use custom AMIs with
// OpsWorks, see [Using Custom AMIs].
//
// You can specify a different Linux operating system for the updated stack, but
// you cannot change from Linux to Windows or Windows to Linux.
//
// [Using Custom AMIs]: https://docs.aws.amazon.com/opsworks/latest/userguide/workinginstances-custom-ami.html
// [OpsWorks Stacks Operating Systems]: https://docs.aws.amazon.com/opsworks/latest/userguide/workinginstances-os.html
Os *string
// The instance's Amazon EC2 key name.
SshKeyName *string
noSmithyDocumentSerde
}
type UpdateInstanceOutput struct {
// Metadata pertaining to the operation's result.
ResultMetadata middleware.Metadata
noSmithyDocumentSerde
}
func (c *Client) addOperationUpdateInstanceMiddlewares(stack *middleware.Stack, options Options) (err error) {
if err := stack.Serialize.Add(&setOperationInputMiddleware{}, middleware.After); err != nil {
return err
}
err = stack.Serialize.Add(&awsAwsjson11_serializeOpUpdateInstance{}, middleware.After)
if err != nil {
return err
}
err = stack.Deserialize.Add(&awsAwsjson11_deserializeOpUpdateInstance{}, middleware.After)
if err != nil {
return err
}
if err := addProtocolFinalizerMiddlewares(stack, options, "UpdateInstance"); 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 = 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 = addOpUpdateInstanceValidationMiddleware(stack); err != nil {
return err
}
if err = stack.Initialize.Add(newServiceMetadataMiddleware_opUpdateInstance(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
}
return nil
}
func newServiceMetadataMiddleware_opUpdateInstance(region string) *awsmiddleware.RegisterServiceMetadata {
return &awsmiddleware.RegisterServiceMetadata{
Region: region,
ServiceID: ServiceID,
OperationName: "UpdateInstance",
}
}
|