-
Notifications
You must be signed in to change notification settings - Fork 53
/
api.go
366 lines (313 loc) · 12.3 KB
/
api.go
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
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
// Code generated by the Pulumi Terraform Bridge (tfgen) Tool DO NOT EDIT.
// *** WARNING: Do not edit by hand unless you're certain you know what you are doing! ***
package apigateway
import (
"context"
"reflect"
"errors"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
// A consumable API that can be used by multiple Gateways.
//
// To get more information about Api, see:
//
// * [API documentation](https://cloud.google.com/api-gateway/docs/reference/rest/v1beta/projects.locations.apis)
// * How-to Guides
// - [Official Documentation](https://cloud.google.com/api-gateway/docs/quickstart)
//
// ## Example Usage
// ### Apigateway Api Basic
//
// ```go
// package main
//
// import (
//
// "github.com/pulumi/pulumi-gcp/sdk/v6/go/gcp/apigateway"
// "github.com/pulumi/pulumi/sdk/v3/go/pulumi"
//
// )
//
// func main() {
// pulumi.Run(func(ctx *pulumi.Context) error {
// _, err := apigateway.NewApi(ctx, "api", &apigateway.ApiArgs{
// ApiId: pulumi.String("api"),
// }, pulumi.Provider(google_beta))
// if err != nil {
// return err
// }
// return nil
// })
// }
//
// ```
//
// ## Import
//
// # Api can be imported using any of these accepted formats
//
// ```sh
//
// $ pulumi import gcp:apigateway/api:Api default projects/{{project}}/locations/global/apis/{{api_id}}
//
// ```
//
// ```sh
//
// $ pulumi import gcp:apigateway/api:Api default {{project}}/{{api_id}}
//
// ```
//
// ```sh
//
// $ pulumi import gcp:apigateway/api:Api default {{api_id}}
//
// ```
type Api struct {
pulumi.CustomResourceState
// Identifier to assign to the API. Must be unique within scope of the parent resource(project)
ApiId pulumi.StringOutput `pulumi:"apiId"`
// Creation timestamp in RFC3339 text format.
CreateTime pulumi.StringOutput `pulumi:"createTime"`
// A user-visible name for the API.
DisplayName pulumi.StringOutput `pulumi:"displayName"`
// Resource labels to represent user-provided metadata.
Labels pulumi.StringMapOutput `pulumi:"labels"`
// Immutable. The name of a Google Managed Service ( https://cloud.google.com/service-infrastructure/docs/glossary#managed).
// If not specified, a new Service will automatically be created in the same project as this API.
ManagedService pulumi.StringOutput `pulumi:"managedService"`
// The resource name of the API. Format `projects/{{project}}/locations/global/apis/{{apiId}}`
Name pulumi.StringOutput `pulumi:"name"`
// The ID of the project in which the resource belongs.
// If it is not provided, the provider project is used.
Project pulumi.StringOutput `pulumi:"project"`
}
// NewApi registers a new resource with the given unique name, arguments, and options.
func NewApi(ctx *pulumi.Context,
name string, args *ApiArgs, opts ...pulumi.ResourceOption) (*Api, error) {
if args == nil {
return nil, errors.New("missing one or more required arguments")
}
if args.ApiId == nil {
return nil, errors.New("invalid value for required argument 'ApiId'")
}
var resource Api
err := ctx.RegisterResource("gcp:apigateway/api:Api", name, args, &resource, opts...)
if err != nil {
return nil, err
}
return &resource, nil
}
// GetApi gets an existing Api resource's state with the given name, ID, and optional
// state properties that are used to uniquely qualify the lookup (nil if not required).
func GetApi(ctx *pulumi.Context,
name string, id pulumi.IDInput, state *ApiState, opts ...pulumi.ResourceOption) (*Api, error) {
var resource Api
err := ctx.ReadResource("gcp:apigateway/api:Api", name, id, state, &resource, opts...)
if err != nil {
return nil, err
}
return &resource, nil
}
// Input properties used for looking up and filtering Api resources.
type apiState struct {
// Identifier to assign to the API. Must be unique within scope of the parent resource(project)
ApiId *string `pulumi:"apiId"`
// Creation timestamp in RFC3339 text format.
CreateTime *string `pulumi:"createTime"`
// A user-visible name for the API.
DisplayName *string `pulumi:"displayName"`
// Resource labels to represent user-provided metadata.
Labels map[string]string `pulumi:"labels"`
// Immutable. The name of a Google Managed Service ( https://cloud.google.com/service-infrastructure/docs/glossary#managed).
// If not specified, a new Service will automatically be created in the same project as this API.
ManagedService *string `pulumi:"managedService"`
// The resource name of the API. Format `projects/{{project}}/locations/global/apis/{{apiId}}`
Name *string `pulumi:"name"`
// The ID of the project in which the resource belongs.
// If it is not provided, the provider project is used.
Project *string `pulumi:"project"`
}
type ApiState struct {
// Identifier to assign to the API. Must be unique within scope of the parent resource(project)
ApiId pulumi.StringPtrInput
// Creation timestamp in RFC3339 text format.
CreateTime pulumi.StringPtrInput
// A user-visible name for the API.
DisplayName pulumi.StringPtrInput
// Resource labels to represent user-provided metadata.
Labels pulumi.StringMapInput
// Immutable. The name of a Google Managed Service ( https://cloud.google.com/service-infrastructure/docs/glossary#managed).
// If not specified, a new Service will automatically be created in the same project as this API.
ManagedService pulumi.StringPtrInput
// The resource name of the API. Format `projects/{{project}}/locations/global/apis/{{apiId}}`
Name pulumi.StringPtrInput
// The ID of the project in which the resource belongs.
// If it is not provided, the provider project is used.
Project pulumi.StringPtrInput
}
func (ApiState) ElementType() reflect.Type {
return reflect.TypeOf((*apiState)(nil)).Elem()
}
type apiArgs struct {
// Identifier to assign to the API. Must be unique within scope of the parent resource(project)
ApiId string `pulumi:"apiId"`
// A user-visible name for the API.
DisplayName *string `pulumi:"displayName"`
// Resource labels to represent user-provided metadata.
Labels map[string]string `pulumi:"labels"`
// Immutable. The name of a Google Managed Service ( https://cloud.google.com/service-infrastructure/docs/glossary#managed).
// If not specified, a new Service will automatically be created in the same project as this API.
ManagedService *string `pulumi:"managedService"`
// The ID of the project in which the resource belongs.
// If it is not provided, the provider project is used.
Project *string `pulumi:"project"`
}
// The set of arguments for constructing a Api resource.
type ApiArgs struct {
// Identifier to assign to the API. Must be unique within scope of the parent resource(project)
ApiId pulumi.StringInput
// A user-visible name for the API.
DisplayName pulumi.StringPtrInput
// Resource labels to represent user-provided metadata.
Labels pulumi.StringMapInput
// Immutable. The name of a Google Managed Service ( https://cloud.google.com/service-infrastructure/docs/glossary#managed).
// If not specified, a new Service will automatically be created in the same project as this API.
ManagedService pulumi.StringPtrInput
// The ID of the project in which the resource belongs.
// If it is not provided, the provider project is used.
Project pulumi.StringPtrInput
}
func (ApiArgs) ElementType() reflect.Type {
return reflect.TypeOf((*apiArgs)(nil)).Elem()
}
type ApiInput interface {
pulumi.Input
ToApiOutput() ApiOutput
ToApiOutputWithContext(ctx context.Context) ApiOutput
}
func (*Api) ElementType() reflect.Type {
return reflect.TypeOf((**Api)(nil)).Elem()
}
func (i *Api) ToApiOutput() ApiOutput {
return i.ToApiOutputWithContext(context.Background())
}
func (i *Api) ToApiOutputWithContext(ctx context.Context) ApiOutput {
return pulumi.ToOutputWithContext(ctx, i).(ApiOutput)
}
// ApiArrayInput is an input type that accepts ApiArray and ApiArrayOutput values.
// You can construct a concrete instance of `ApiArrayInput` via:
//
// ApiArray{ ApiArgs{...} }
type ApiArrayInput interface {
pulumi.Input
ToApiArrayOutput() ApiArrayOutput
ToApiArrayOutputWithContext(context.Context) ApiArrayOutput
}
type ApiArray []ApiInput
func (ApiArray) ElementType() reflect.Type {
return reflect.TypeOf((*[]*Api)(nil)).Elem()
}
func (i ApiArray) ToApiArrayOutput() ApiArrayOutput {
return i.ToApiArrayOutputWithContext(context.Background())
}
func (i ApiArray) ToApiArrayOutputWithContext(ctx context.Context) ApiArrayOutput {
return pulumi.ToOutputWithContext(ctx, i).(ApiArrayOutput)
}
// ApiMapInput is an input type that accepts ApiMap and ApiMapOutput values.
// You can construct a concrete instance of `ApiMapInput` via:
//
// ApiMap{ "key": ApiArgs{...} }
type ApiMapInput interface {
pulumi.Input
ToApiMapOutput() ApiMapOutput
ToApiMapOutputWithContext(context.Context) ApiMapOutput
}
type ApiMap map[string]ApiInput
func (ApiMap) ElementType() reflect.Type {
return reflect.TypeOf((*map[string]*Api)(nil)).Elem()
}
func (i ApiMap) ToApiMapOutput() ApiMapOutput {
return i.ToApiMapOutputWithContext(context.Background())
}
func (i ApiMap) ToApiMapOutputWithContext(ctx context.Context) ApiMapOutput {
return pulumi.ToOutputWithContext(ctx, i).(ApiMapOutput)
}
type ApiOutput struct{ *pulumi.OutputState }
func (ApiOutput) ElementType() reflect.Type {
return reflect.TypeOf((**Api)(nil)).Elem()
}
func (o ApiOutput) ToApiOutput() ApiOutput {
return o
}
func (o ApiOutput) ToApiOutputWithContext(ctx context.Context) ApiOutput {
return o
}
// Identifier to assign to the API. Must be unique within scope of the parent resource(project)
func (o ApiOutput) ApiId() pulumi.StringOutput {
return o.ApplyT(func(v *Api) pulumi.StringOutput { return v.ApiId }).(pulumi.StringOutput)
}
// Creation timestamp in RFC3339 text format.
func (o ApiOutput) CreateTime() pulumi.StringOutput {
return o.ApplyT(func(v *Api) pulumi.StringOutput { return v.CreateTime }).(pulumi.StringOutput)
}
// A user-visible name for the API.
func (o ApiOutput) DisplayName() pulumi.StringOutput {
return o.ApplyT(func(v *Api) pulumi.StringOutput { return v.DisplayName }).(pulumi.StringOutput)
}
// Resource labels to represent user-provided metadata.
func (o ApiOutput) Labels() pulumi.StringMapOutput {
return o.ApplyT(func(v *Api) pulumi.StringMapOutput { return v.Labels }).(pulumi.StringMapOutput)
}
// Immutable. The name of a Google Managed Service ( https://cloud.google.com/service-infrastructure/docs/glossary#managed).
// If not specified, a new Service will automatically be created in the same project as this API.
func (o ApiOutput) ManagedService() pulumi.StringOutput {
return o.ApplyT(func(v *Api) pulumi.StringOutput { return v.ManagedService }).(pulumi.StringOutput)
}
// The resource name of the API. Format `projects/{{project}}/locations/global/apis/{{apiId}}`
func (o ApiOutput) Name() pulumi.StringOutput {
return o.ApplyT(func(v *Api) pulumi.StringOutput { return v.Name }).(pulumi.StringOutput)
}
// The ID of the project in which the resource belongs.
// If it is not provided, the provider project is used.
func (o ApiOutput) Project() pulumi.StringOutput {
return o.ApplyT(func(v *Api) pulumi.StringOutput { return v.Project }).(pulumi.StringOutput)
}
type ApiArrayOutput struct{ *pulumi.OutputState }
func (ApiArrayOutput) ElementType() reflect.Type {
return reflect.TypeOf((*[]*Api)(nil)).Elem()
}
func (o ApiArrayOutput) ToApiArrayOutput() ApiArrayOutput {
return o
}
func (o ApiArrayOutput) ToApiArrayOutputWithContext(ctx context.Context) ApiArrayOutput {
return o
}
func (o ApiArrayOutput) Index(i pulumi.IntInput) ApiOutput {
return pulumi.All(o, i).ApplyT(func(vs []interface{}) *Api {
return vs[0].([]*Api)[vs[1].(int)]
}).(ApiOutput)
}
type ApiMapOutput struct{ *pulumi.OutputState }
func (ApiMapOutput) ElementType() reflect.Type {
return reflect.TypeOf((*map[string]*Api)(nil)).Elem()
}
func (o ApiMapOutput) ToApiMapOutput() ApiMapOutput {
return o
}
func (o ApiMapOutput) ToApiMapOutputWithContext(ctx context.Context) ApiMapOutput {
return o
}
func (o ApiMapOutput) MapIndex(k pulumi.StringInput) ApiOutput {
return pulumi.All(o, k).ApplyT(func(vs []interface{}) *Api {
return vs[0].(map[string]*Api)[vs[1].(string)]
}).(ApiOutput)
}
func init() {
pulumi.RegisterInputType(reflect.TypeOf((*ApiInput)(nil)).Elem(), &Api{})
pulumi.RegisterInputType(reflect.TypeOf((*ApiArrayInput)(nil)).Elem(), ApiArray{})
pulumi.RegisterInputType(reflect.TypeOf((*ApiMapInput)(nil)).Elem(), ApiMap{})
pulumi.RegisterOutputType(ApiOutput{})
pulumi.RegisterOutputType(ApiArrayOutput{})
pulumi.RegisterOutputType(ApiMapOutput{})
}