2022-04-19 16:39:23 +00:00
|
|
|
// Code generated by test DO NOT EDIT.
|
|
|
|
// *** WARNING: Do not edit by hand unless you're certain you know what you are doing! ***
|
2021-04-29 19:30:01 +00:00
|
|
|
|
|
|
|
package different
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"reflect"
|
|
|
|
|
2022-11-01 09:02:01 +00:00
|
|
|
"errors"
|
2021-04-29 19:30:01 +00:00
|
|
|
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
|
2023-06-14 19:59:47 +00:00
|
|
|
"simple-plain-schema-with-root-package/internal"
|
2021-04-29 19:30:01 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type Component struct {
|
|
|
|
pulumi.ResourceState
|
|
|
|
|
|
|
|
A pulumi.BoolOutput `pulumi:"a"`
|
|
|
|
B pulumi.BoolPtrOutput `pulumi:"b"`
|
|
|
|
Bar FooPtrOutput `pulumi:"bar"`
|
|
|
|
Baz FooArrayOutput `pulumi:"baz"`
|
|
|
|
C pulumi.IntOutput `pulumi:"c"`
|
|
|
|
D pulumi.IntPtrOutput `pulumi:"d"`
|
|
|
|
E pulumi.StringOutput `pulumi:"e"`
|
|
|
|
F pulumi.StringPtrOutput `pulumi:"f"`
|
|
|
|
Foo FooPtrOutput `pulumi:"foo"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewComponent registers a new resource with the given unique name, arguments, and options.
|
|
|
|
func NewComponent(ctx *pulumi.Context,
|
|
|
|
name string, args *ComponentArgs, opts ...pulumi.ResourceOption) (*Component, error) {
|
|
|
|
if args == nil {
|
|
|
|
return nil, errors.New("missing one or more required arguments")
|
|
|
|
}
|
|
|
|
|
2023-06-14 16:34:49 +00:00
|
|
|
opts = internal.PkgResourceDefaultOpts(opts)
|
2021-04-29 19:30:01 +00:00
|
|
|
var resource Component
|
|
|
|
err := ctx.RegisterRemoteComponentResource("example::Component", name, args, &resource, opts...)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return &resource, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
type componentArgs struct {
|
|
|
|
A bool `pulumi:"a"`
|
|
|
|
B *bool `pulumi:"b"`
|
|
|
|
Bar *Foo `pulumi:"bar"`
|
|
|
|
Baz []Foo `pulumi:"baz"`
|
|
|
|
C int `pulumi:"c"`
|
|
|
|
D *int `pulumi:"d"`
|
|
|
|
E string `pulumi:"e"`
|
|
|
|
F *string `pulumi:"f"`
|
|
|
|
Foo *Foo `pulumi:"foo"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// The set of arguments for constructing a Component resource.
|
|
|
|
type ComponentArgs struct {
|
|
|
|
A bool
|
|
|
|
B *bool
|
2022-05-03 18:13:21 +00:00
|
|
|
Bar *FooArgs
|
2022-04-29 16:54:42 +00:00
|
|
|
Baz []FooInput
|
2021-04-29 19:30:01 +00:00
|
|
|
C int
|
|
|
|
D *int
|
|
|
|
E string
|
|
|
|
F *string
|
|
|
|
Foo FooPtrInput
|
|
|
|
}
|
|
|
|
|
|
|
|
func (ComponentArgs) ElementType() reflect.Type {
|
|
|
|
return reflect.TypeOf((*componentArgs)(nil)).Elem()
|
|
|
|
}
|
|
|
|
|
|
|
|
type ComponentInput interface {
|
|
|
|
pulumi.Input
|
|
|
|
|
|
|
|
ToComponentOutput() ComponentOutput
|
|
|
|
ToComponentOutputWithContext(ctx context.Context) ComponentOutput
|
|
|
|
}
|
|
|
|
|
|
|
|
func (*Component) ElementType() reflect.Type {
|
[codegen/go] Remove ResourcePtr input/output types (#8449)
These changes remove the `Ptr` variants of input/ouptut types for
resources. A `TPtr` input or output is normally generated for `T` if `T`
is present in an `optional(input(T))` or `optional(output(T))` and if
the Go representation for `T` is not nilable. The generation of `Ptr`
variants for resource types breaks the latter rule: the canonical
representation of a resource type named `Foo` is a pointer to a struct
type named `Foo` (i.e. `*Foo`). `Foo` itself is not a resource, as it
does not implement the Go `Resource` interface. Because this
representation already accommodates `nil` to indicate the lack of a
value, we need not generate `FooPtr{Input,Output}` types.
Besides being unnecessary, the implementation of `Ptr` types for
resources was incorrect. Rather than using `**Foo` as their element
type, these types use `*Foo`--identical to the element type used for
the normal input/output types. Furthermore, the generated code for
at least `FooOutput.ToFooPtrOutputWithContext` and `FooPtrOutput.Elem`
was incorrect, making these types virtually unusable in practice.
Finally, these `Ptr` types should never appear on input/output
properties in practice, as the logic we use to generate input and output
type references never generates them for `optional({input,output}(T)).
Instead, it generates references to the standard input/output types.
Though this is _technically_ a breaking change--it changes the set of
exported types for any package that defines resources--I believe that in
practice it will be invisible to users for the reasons stated above.
These types are not usable, and were never referenced.
This is preparatory work for #7943.
2021-11-23 18:24:56 +00:00
|
|
|
return reflect.TypeOf((**Component)(nil)).Elem()
|
2021-04-29 19:30:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (i *Component) ToComponentOutput() ComponentOutput {
|
|
|
|
return i.ToComponentOutputWithContext(context.Background())
|
|
|
|
}
|
|
|
|
|
|
|
|
func (i *Component) ToComponentOutputWithContext(ctx context.Context) ComponentOutput {
|
|
|
|
return pulumi.ToOutputWithContext(ctx, i).(ComponentOutput)
|
|
|
|
}
|
|
|
|
|
2021-08-02 20:43:24 +00:00
|
|
|
type ComponentOutput struct{ *pulumi.OutputState }
|
2021-04-29 19:30:01 +00:00
|
|
|
|
|
|
|
func (ComponentOutput) ElementType() reflect.Type {
|
[codegen/go] Remove ResourcePtr input/output types (#8449)
These changes remove the `Ptr` variants of input/ouptut types for
resources. A `TPtr` input or output is normally generated for `T` if `T`
is present in an `optional(input(T))` or `optional(output(T))` and if
the Go representation for `T` is not nilable. The generation of `Ptr`
variants for resource types breaks the latter rule: the canonical
representation of a resource type named `Foo` is a pointer to a struct
type named `Foo` (i.e. `*Foo`). `Foo` itself is not a resource, as it
does not implement the Go `Resource` interface. Because this
representation already accommodates `nil` to indicate the lack of a
value, we need not generate `FooPtr{Input,Output}` types.
Besides being unnecessary, the implementation of `Ptr` types for
resources was incorrect. Rather than using `**Foo` as their element
type, these types use `*Foo`--identical to the element type used for
the normal input/output types. Furthermore, the generated code for
at least `FooOutput.ToFooPtrOutputWithContext` and `FooPtrOutput.Elem`
was incorrect, making these types virtually unusable in practice.
Finally, these `Ptr` types should never appear on input/output
properties in practice, as the logic we use to generate input and output
type references never generates them for `optional({input,output}(T)).
Instead, it generates references to the standard input/output types.
Though this is _technically_ a breaking change--it changes the set of
exported types for any package that defines resources--I believe that in
practice it will be invisible to users for the reasons stated above.
These types are not usable, and were never referenced.
This is preparatory work for #7943.
2021-11-23 18:24:56 +00:00
|
|
|
return reflect.TypeOf((**Component)(nil)).Elem()
|
2021-04-29 19:30:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (o ComponentOutput) ToComponentOutput() ComponentOutput {
|
|
|
|
return o
|
|
|
|
}
|
|
|
|
|
|
|
|
func (o ComponentOutput) ToComponentOutputWithContext(ctx context.Context) ComponentOutput {
|
|
|
|
return o
|
|
|
|
}
|
|
|
|
|
2022-05-03 18:36:57 +00:00
|
|
|
func (o ComponentOutput) A() pulumi.BoolOutput {
|
|
|
|
return o.ApplyT(func(v *Component) pulumi.BoolOutput { return v.A }).(pulumi.BoolOutput)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (o ComponentOutput) B() pulumi.BoolPtrOutput {
|
|
|
|
return o.ApplyT(func(v *Component) pulumi.BoolPtrOutput { return v.B }).(pulumi.BoolPtrOutput)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (o ComponentOutput) Bar() FooPtrOutput {
|
|
|
|
return o.ApplyT(func(v *Component) FooPtrOutput { return v.Bar }).(FooPtrOutput)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (o ComponentOutput) Baz() FooArrayOutput {
|
|
|
|
return o.ApplyT(func(v *Component) FooArrayOutput { return v.Baz }).(FooArrayOutput)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (o ComponentOutput) C() pulumi.IntOutput {
|
|
|
|
return o.ApplyT(func(v *Component) pulumi.IntOutput { return v.C }).(pulumi.IntOutput)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (o ComponentOutput) D() pulumi.IntPtrOutput {
|
|
|
|
return o.ApplyT(func(v *Component) pulumi.IntPtrOutput { return v.D }).(pulumi.IntPtrOutput)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (o ComponentOutput) E() pulumi.StringOutput {
|
|
|
|
return o.ApplyT(func(v *Component) pulumi.StringOutput { return v.E }).(pulumi.StringOutput)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (o ComponentOutput) F() pulumi.StringPtrOutput {
|
|
|
|
return o.ApplyT(func(v *Component) pulumi.StringPtrOutput { return v.F }).(pulumi.StringPtrOutput)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (o ComponentOutput) Foo() FooPtrOutput {
|
|
|
|
return o.ApplyT(func(v *Component) FooPtrOutput { return v.Foo }).(FooPtrOutput)
|
|
|
|
}
|
|
|
|
|
2021-04-29 19:30:01 +00:00
|
|
|
func init() {
|
2021-10-14 17:41:40 +00:00
|
|
|
pulumi.RegisterInputType(reflect.TypeOf((*ComponentInput)(nil)).Elem(), &Component{})
|
2021-04-29 19:30:01 +00:00
|
|
|
pulumi.RegisterOutputType(ComponentOutput{})
|
|
|
|
}
|