1// Code generated by smithy-go-codegen DO NOT EDIT.
2
3package mediaconnect
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/aws-sdk-go-v2/service/mediaconnect/types"
10	"github.com/aws/smithy-go/middleware"
11	smithyhttp "github.com/aws/smithy-go/transport/http"
12)
13
14// Submits a request to purchase an offering. If you already have an active
15// reservation, you can't purchase another offering.
16func (c *Client) PurchaseOffering(ctx context.Context, params *PurchaseOfferingInput, optFns ...func(*Options)) (*PurchaseOfferingOutput, error) {
17	if params == nil {
18		params = &PurchaseOfferingInput{}
19	}
20
21	result, metadata, err := c.invokeOperation(ctx, "PurchaseOffering", params, optFns, addOperationPurchaseOfferingMiddlewares)
22	if err != nil {
23		return nil, err
24	}
25
26	out := result.(*PurchaseOfferingOutput)
27	out.ResultMetadata = metadata
28	return out, nil
29}
30
31// A request to purchase a offering.
32type PurchaseOfferingInput struct {
33
34	// The Amazon Resource Name (ARN) of the offering.
35	//
36	// This member is required.
37	OfferingArn *string
38
39	// The name that you want to use for the reservation.
40	//
41	// This member is required.
42	ReservationName *string
43
44	// The date and time that you want the reservation to begin, in Coordinated
45	// Universal Time (UTC). You can specify any date and time between 12:00am on the
46	// first day of the current month to the current time on today's date, inclusive.
47	// Specify the start in a 24-hour notation. Use the following format:
48	// YYYY-MM-DDTHH:mm:SSZ, where T and Z are literal characters. For example, to
49	// specify 11:30pm on March 5, 2020, enter 2020-03-05T23:30:00Z.
50	//
51	// This member is required.
52	Start *string
53}
54
55type PurchaseOfferingOutput struct {
56
57	// A pricing agreement for a discounted rate for a specific outbound bandwidth that
58	// your MediaConnect account will use each month over a specific time period. The
59	// discounted rate in the reservation applies to outbound bandwidth for all flows
60	// from your account until your account reaches the amount of bandwidth in your
61	// reservation. If you use more outbound bandwidth than the agreed upon amount in a
62	// single month, the overage is charged at the on-demand rate.
63	Reservation *types.Reservation
64
65	// Metadata pertaining to the operation's result.
66	ResultMetadata middleware.Metadata
67}
68
69func addOperationPurchaseOfferingMiddlewares(stack *middleware.Stack, options Options) (err error) {
70	err = stack.Serialize.Add(&awsRestjson1_serializeOpPurchaseOffering{}, middleware.After)
71	if err != nil {
72		return err
73	}
74	err = stack.Deserialize.Add(&awsRestjson1_deserializeOpPurchaseOffering{}, middleware.After)
75	if err != nil {
76		return err
77	}
78	if err = addSetLoggerMiddleware(stack, options); err != nil {
79		return err
80	}
81	if err = awsmiddleware.AddClientRequestIDMiddleware(stack); err != nil {
82		return err
83	}
84	if err = smithyhttp.AddComputeContentLengthMiddleware(stack); err != nil {
85		return err
86	}
87	if err = addResolveEndpointMiddleware(stack, options); err != nil {
88		return err
89	}
90	if err = v4.AddComputePayloadSHA256Middleware(stack); err != nil {
91		return err
92	}
93	if err = addRetryMiddlewares(stack, options); err != nil {
94		return err
95	}
96	if err = addHTTPSignerV4Middleware(stack, options); err != nil {
97		return err
98	}
99	if err = awsmiddleware.AddRawResponseToMetadata(stack); err != nil {
100		return err
101	}
102	if err = awsmiddleware.AddRecordResponseTiming(stack); err != nil {
103		return err
104	}
105	if err = addClientUserAgent(stack); err != nil {
106		return err
107	}
108	if err = smithyhttp.AddErrorCloseResponseBodyMiddleware(stack); err != nil {
109		return err
110	}
111	if err = smithyhttp.AddCloseResponseBodyMiddleware(stack); err != nil {
112		return err
113	}
114	if err = addOpPurchaseOfferingValidationMiddleware(stack); err != nil {
115		return err
116	}
117	if err = stack.Initialize.Add(newServiceMetadataMiddleware_opPurchaseOffering(options.Region), middleware.Before); err != nil {
118		return err
119	}
120	if err = addRequestIDRetrieverMiddleware(stack); err != nil {
121		return err
122	}
123	if err = addResponseErrorMiddleware(stack); err != nil {
124		return err
125	}
126	if err = addRequestResponseLogging(stack, options); err != nil {
127		return err
128	}
129	return nil
130}
131
132func newServiceMetadataMiddleware_opPurchaseOffering(region string) *awsmiddleware.RegisterServiceMetadata {
133	return &awsmiddleware.RegisterServiceMetadata{
134		Region:        region,
135		ServiceID:     ServiceID,
136		SigningName:   "mediaconnect",
137		OperationName: "PurchaseOffering",
138	}
139}
140