pulumi/pkg/codegen/internal/test/testdata/simple-yaml-schema/go/example/typeUses.go
Pat Gavlin 52d01bb915
[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 10:24:56 -08:00

116 lines
3.2 KiB
Go

// *** WARNING: this file was generated by test. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
package example
import (
"context"
"reflect"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
type TypeUses struct {
pulumi.CustomResourceState
Bar SomeOtherObjectPtrOutput `pulumi:"bar"`
Baz ObjectWithNodeOptionalInputsPtrOutput `pulumi:"baz"`
Foo ObjectPtrOutput `pulumi:"foo"`
Qux RubberTreeVarietyPtrOutput `pulumi:"qux"`
}
// NewTypeUses registers a new resource with the given unique name, arguments, and options.
func NewTypeUses(ctx *pulumi.Context,
name string, args *TypeUsesArgs, opts ...pulumi.ResourceOption) (*TypeUses, error) {
if args == nil {
args = &TypeUsesArgs{}
}
var resource TypeUses
err := ctx.RegisterResource("example::TypeUses", name, args, &resource, opts...)
if err != nil {
return nil, err
}
return &resource, nil
}
// GetTypeUses gets an existing TypeUses 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 GetTypeUses(ctx *pulumi.Context,
name string, id pulumi.IDInput, state *TypeUsesState, opts ...pulumi.ResourceOption) (*TypeUses, error) {
var resource TypeUses
err := ctx.ReadResource("example::TypeUses", name, id, state, &resource, opts...)
if err != nil {
return nil, err
}
return &resource, nil
}
// Input properties used for looking up and filtering TypeUses resources.
type typeUsesState struct {
}
type TypeUsesState struct {
}
func (TypeUsesState) ElementType() reflect.Type {
return reflect.TypeOf((*typeUsesState)(nil)).Elem()
}
type typeUsesArgs struct {
Bar *SomeOtherObject `pulumi:"bar"`
Baz *ObjectWithNodeOptionalInputs `pulumi:"baz"`
Foo *Object `pulumi:"foo"`
Qux *RubberTreeVariety `pulumi:"qux"`
}
// The set of arguments for constructing a TypeUses resource.
type TypeUsesArgs struct {
Bar SomeOtherObjectPtrInput
Baz ObjectWithNodeOptionalInputsPtrInput
Foo ObjectPtrInput
Qux RubberTreeVarietyPtrInput
}
func (TypeUsesArgs) ElementType() reflect.Type {
return reflect.TypeOf((*typeUsesArgs)(nil)).Elem()
}
type TypeUsesInput interface {
pulumi.Input
ToTypeUsesOutput() TypeUsesOutput
ToTypeUsesOutputWithContext(ctx context.Context) TypeUsesOutput
}
func (*TypeUses) ElementType() reflect.Type {
return reflect.TypeOf((**TypeUses)(nil)).Elem()
}
func (i *TypeUses) ToTypeUsesOutput() TypeUsesOutput {
return i.ToTypeUsesOutputWithContext(context.Background())
}
func (i *TypeUses) ToTypeUsesOutputWithContext(ctx context.Context) TypeUsesOutput {
return pulumi.ToOutputWithContext(ctx, i).(TypeUsesOutput)
}
type TypeUsesOutput struct{ *pulumi.OutputState }
func (TypeUsesOutput) ElementType() reflect.Type {
return reflect.TypeOf((**TypeUses)(nil)).Elem()
}
func (o TypeUsesOutput) ToTypeUsesOutput() TypeUsesOutput {
return o
}
func (o TypeUsesOutput) ToTypeUsesOutputWithContext(ctx context.Context) TypeUsesOutput {
return o
}
func init() {
pulumi.RegisterInputType(reflect.TypeOf((*TypeUsesInput)(nil)).Elem(), &TypeUses{})
pulumi.RegisterOutputType(TypeUsesOutput{})
}