src

Go monorepo.
git clone git://code.dwrz.net/src
Log | Files | Refs

api_op_ChangeTagsForResource.go (4828B)


      1 // Code generated by smithy-go-codegen DO NOT EDIT.
      2 
      3 package route53
      4 
      5 import (
      6 	"context"
      7 	"fmt"
      8 	awsmiddleware "github.com/aws/aws-sdk-go-v2/aws/middleware"
      9 	"github.com/aws/aws-sdk-go-v2/service/route53/types"
     10 	"github.com/aws/smithy-go/middleware"
     11 	smithyhttp "github.com/aws/smithy-go/transport/http"
     12 )
     13 
     14 // Adds, edits, or deletes tags for a health check or a hosted zone. For
     15 // information about using tags for cost allocation, see Using Cost Allocation Tags (https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/cost-alloc-tags.html)
     16 // in the Billing and Cost Management User Guide.
     17 func (c *Client) ChangeTagsForResource(ctx context.Context, params *ChangeTagsForResourceInput, optFns ...func(*Options)) (*ChangeTagsForResourceOutput, error) {
     18 	if params == nil {
     19 		params = &ChangeTagsForResourceInput{}
     20 	}
     21 
     22 	result, metadata, err := c.invokeOperation(ctx, "ChangeTagsForResource", params, optFns, c.addOperationChangeTagsForResourceMiddlewares)
     23 	if err != nil {
     24 		return nil, err
     25 	}
     26 
     27 	out := result.(*ChangeTagsForResourceOutput)
     28 	out.ResultMetadata = metadata
     29 	return out, nil
     30 }
     31 
     32 // A complex type that contains information about the tags that you want to add,
     33 // edit, or delete.
     34 type ChangeTagsForResourceInput struct {
     35 
     36 	// The ID of the resource for which you want to add, change, or delete tags.
     37 	//
     38 	// This member is required.
     39 	ResourceId *string
     40 
     41 	// The type of the resource.
     42 	//   - The resource type for health checks is healthcheck .
     43 	//   - The resource type for hosted zones is hostedzone .
     44 	//
     45 	// This member is required.
     46 	ResourceType types.TagResourceType
     47 
     48 	// A complex type that contains a list of the tags that you want to add to the
     49 	// specified health check or hosted zone and/or the tags that you want to edit
     50 	// Value for. You can add a maximum of 10 tags to a health check or a hosted zone.
     51 	AddTags []types.Tag
     52 
     53 	// A complex type that contains a list of the tags that you want to delete from
     54 	// the specified health check or hosted zone. You can specify up to 10 keys.
     55 	RemoveTagKeys []string
     56 
     57 	noSmithyDocumentSerde
     58 }
     59 
     60 // Empty response for the request.
     61 type ChangeTagsForResourceOutput struct {
     62 	// Metadata pertaining to the operation's result.
     63 	ResultMetadata middleware.Metadata
     64 
     65 	noSmithyDocumentSerde
     66 }
     67 
     68 func (c *Client) addOperationChangeTagsForResourceMiddlewares(stack *middleware.Stack, options Options) (err error) {
     69 	if err := stack.Serialize.Add(&setOperationInputMiddleware{}, middleware.After); err != nil {
     70 		return err
     71 	}
     72 	err = stack.Serialize.Add(&awsRestxml_serializeOpChangeTagsForResource{}, middleware.After)
     73 	if err != nil {
     74 		return err
     75 	}
     76 	err = stack.Deserialize.Add(&awsRestxml_deserializeOpChangeTagsForResource{}, middleware.After)
     77 	if err != nil {
     78 		return err
     79 	}
     80 	if err := addProtocolFinalizerMiddlewares(stack, options, "ChangeTagsForResource"); err != nil {
     81 		return fmt.Errorf("add protocol finalizers: %v", err)
     82 	}
     83 
     84 	if err = addlegacyEndpointContextSetter(stack, options); err != nil {
     85 		return err
     86 	}
     87 	if err = addSetLoggerMiddleware(stack, options); err != nil {
     88 		return err
     89 	}
     90 	if err = addClientRequestID(stack); err != nil {
     91 		return err
     92 	}
     93 	if err = addComputeContentLength(stack); err != nil {
     94 		return err
     95 	}
     96 	if err = addResolveEndpointMiddleware(stack, options); err != nil {
     97 		return err
     98 	}
     99 	if err = addComputePayloadSHA256(stack); err != nil {
    100 		return err
    101 	}
    102 	if err = addRetry(stack, options); err != nil {
    103 		return err
    104 	}
    105 	if err = addRawResponseToMetadata(stack); err != nil {
    106 		return err
    107 	}
    108 	if err = addRecordResponseTiming(stack); err != nil {
    109 		return err
    110 	}
    111 	if err = addClientUserAgent(stack, options); err != nil {
    112 		return err
    113 	}
    114 	if err = smithyhttp.AddErrorCloseResponseBodyMiddleware(stack); err != nil {
    115 		return err
    116 	}
    117 	if err = smithyhttp.AddCloseResponseBodyMiddleware(stack); err != nil {
    118 		return err
    119 	}
    120 	if err = addSetLegacyContextSigningOptionsMiddleware(stack); err != nil {
    121 		return err
    122 	}
    123 	if err = addOpChangeTagsForResourceValidationMiddleware(stack); err != nil {
    124 		return err
    125 	}
    126 	if err = stack.Initialize.Add(newServiceMetadataMiddleware_opChangeTagsForResource(options.Region), middleware.Before); err != nil {
    127 		return err
    128 	}
    129 	if err = addRecursionDetection(stack); err != nil {
    130 		return err
    131 	}
    132 	if err = addRequestIDRetrieverMiddleware(stack); err != nil {
    133 		return err
    134 	}
    135 	if err = addResponseErrorMiddleware(stack); err != nil {
    136 		return err
    137 	}
    138 	if err = addRequestResponseLogging(stack, options); err != nil {
    139 		return err
    140 	}
    141 	if err = addDisableHTTPSMiddleware(stack, options); err != nil {
    142 		return err
    143 	}
    144 	return nil
    145 }
    146 
    147 func newServiceMetadataMiddleware_opChangeTagsForResource(region string) *awsmiddleware.RegisterServiceMetadata {
    148 	return &awsmiddleware.RegisterServiceMetadata{
    149 		Region:        region,
    150 		ServiceID:     ServiceID,
    151 		OperationName: "ChangeTagsForResource",
    152 	}
    153 }