1// Code generated by smithy-go-codegen DO NOT EDIT. 2 3package storagegateway 4 5import ( 6 "context" 7 awsmiddleware "github.com/aws/aws-sdk-go-v2/aws/middleware" 8 "github.com/aws/aws-sdk-go-v2/aws/signer/v4" 9 "github.com/aws/smithy-go/middleware" 10 smithyhttp "github.com/aws/smithy-go/transport/http" 11) 12 13// Updates the gateway virtual machine (VM) software. The request immediately 14// triggers the software update. When you make this request, you get a 200 OK 15// success response immediately. However, it might take some time for the update to 16// complete. You can call DescribeGatewayInformation to verify the gateway is in 17// the STATE_RUNNING state. A software update forces a system restart of your 18// gateway. You can minimize the chance of any disruption to your applications by 19// increasing your iSCSI Initiators' timeouts. For more information about 20// increasing iSCSI Initiator timeouts for Windows and Linux, see Customizing your 21// Windows iSCSI settings 22// (https://docs.aws.amazon.com/storagegateway/latest/userguide/ConfiguringiSCSIClientInitiatorWindowsClient.html#CustomizeWindowsiSCSISettings) 23// and Customizing your Linux iSCSI settings 24// (https://docs.aws.amazon.com/storagegateway/latest/userguide/ConfiguringiSCSIClientInitiatorRedHatClient.html#CustomizeLinuxiSCSISettings), 25// respectively. 26func (c *Client) UpdateGatewaySoftwareNow(ctx context.Context, params *UpdateGatewaySoftwareNowInput, optFns ...func(*Options)) (*UpdateGatewaySoftwareNowOutput, error) { 27 if params == nil { 28 params = &UpdateGatewaySoftwareNowInput{} 29 } 30 31 result, metadata, err := c.invokeOperation(ctx, "UpdateGatewaySoftwareNow", params, optFns, c.addOperationUpdateGatewaySoftwareNowMiddlewares) 32 if err != nil { 33 return nil, err 34 } 35 36 out := result.(*UpdateGatewaySoftwareNowOutput) 37 out.ResultMetadata = metadata 38 return out, nil 39} 40 41// A JSON object containing the Amazon Resource Name (ARN) of the gateway to 42// update. 43type UpdateGatewaySoftwareNowInput struct { 44 45 // The Amazon Resource Name (ARN) of the gateway. Use the ListGateways operation to 46 // return a list of gateways for your account and Region. 47 // 48 // This member is required. 49 GatewayARN *string 50 51 noSmithyDocumentSerde 52} 53 54// A JSON object containing the Amazon Resource Name (ARN) of the gateway that was 55// updated. 56type UpdateGatewaySoftwareNowOutput struct { 57 58 // The Amazon Resource Name (ARN) of the gateway. Use the ListGateways operation to 59 // return a list of gateways for your account and Region. 60 GatewayARN *string 61 62 // Metadata pertaining to the operation's result. 63 ResultMetadata middleware.Metadata 64 65 noSmithyDocumentSerde 66} 67 68func (c *Client) addOperationUpdateGatewaySoftwareNowMiddlewares(stack *middleware.Stack, options Options) (err error) { 69 err = stack.Serialize.Add(&awsAwsjson11_serializeOpUpdateGatewaySoftwareNow{}, middleware.After) 70 if err != nil { 71 return err 72 } 73 err = stack.Deserialize.Add(&awsAwsjson11_deserializeOpUpdateGatewaySoftwareNow{}, middleware.After) 74 if err != nil { 75 return err 76 } 77 if err = addSetLoggerMiddleware(stack, options); err != nil { 78 return err 79 } 80 if err = awsmiddleware.AddClientRequestIDMiddleware(stack); err != nil { 81 return err 82 } 83 if err = smithyhttp.AddComputeContentLengthMiddleware(stack); err != nil { 84 return err 85 } 86 if err = addResolveEndpointMiddleware(stack, options); err != nil { 87 return err 88 } 89 if err = v4.AddComputePayloadSHA256Middleware(stack); err != nil { 90 return err 91 } 92 if err = addRetryMiddlewares(stack, options); err != nil { 93 return err 94 } 95 if err = addHTTPSignerV4Middleware(stack, options); err != nil { 96 return err 97 } 98 if err = awsmiddleware.AddRawResponseToMetadata(stack); err != nil { 99 return err 100 } 101 if err = awsmiddleware.AddRecordResponseTiming(stack); err != nil { 102 return err 103 } 104 if err = addClientUserAgent(stack); err != nil { 105 return err 106 } 107 if err = smithyhttp.AddErrorCloseResponseBodyMiddleware(stack); err != nil { 108 return err 109 } 110 if err = smithyhttp.AddCloseResponseBodyMiddleware(stack); err != nil { 111 return err 112 } 113 if err = addOpUpdateGatewaySoftwareNowValidationMiddleware(stack); err != nil { 114 return err 115 } 116 if err = stack.Initialize.Add(newServiceMetadataMiddleware_opUpdateGatewaySoftwareNow(options.Region), middleware.Before); err != nil { 117 return err 118 } 119 if err = addRequestIDRetrieverMiddleware(stack); err != nil { 120 return err 121 } 122 if err = addResponseErrorMiddleware(stack); err != nil { 123 return err 124 } 125 if err = addRequestResponseLogging(stack, options); err != nil { 126 return err 127 } 128 return nil 129} 130 131func newServiceMetadataMiddleware_opUpdateGatewaySoftwareNow(region string) *awsmiddleware.RegisterServiceMetadata { 132 return &awsmiddleware.RegisterServiceMetadata{ 133 Region: region, 134 ServiceID: ServiceID, 135 SigningName: "storagegateway", 136 OperationName: "UpdateGatewaySoftwareNow", 137 } 138} 139