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-11-18 20:23:30 +00:00
|
|
|
|
|
|
|
package example
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"reflect"
|
|
|
|
|
2022-11-01 09:02:01 +00:00
|
|
|
"errors"
|
2021-11-18 20:23:30 +00:00
|
|
|
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
|
2023-06-14 16:34:49 +00:00
|
|
|
"plain-object-defaults/example/internal"
|
2021-11-18 20:23:30 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// test new feature with resoruces
|
|
|
|
type Foo struct {
|
|
|
|
pulumi.CustomResourceState
|
|
|
|
|
|
|
|
// A test for plain types
|
|
|
|
DefaultKubeClientSettings KubeClientSettingsPtrOutput `pulumi:"defaultKubeClientSettings"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewFoo registers a new resource with the given unique name, arguments, and options.
|
|
|
|
func NewFoo(ctx *pulumi.Context,
|
|
|
|
name string, args *FooArgs, opts ...pulumi.ResourceOption) (*Foo, error) {
|
|
|
|
if args == nil {
|
|
|
|
return nil, errors.New("missing one or more required arguments")
|
|
|
|
}
|
|
|
|
|
|
|
|
if args.BackupKubeClientSettings == nil {
|
|
|
|
return nil, errors.New("invalid value for required argument 'BackupKubeClientSettings'")
|
|
|
|
}
|
2021-12-03 20:28:43 +00:00
|
|
|
args.BackupKubeClientSettings = args.BackupKubeClientSettings.ToKubeClientSettingsOutput().ApplyT(func(v KubeClientSettings) KubeClientSettings { return *v.Defaults() }).(KubeClientSettingsOutput)
|
2021-11-23 23:10:15 +00:00
|
|
|
if args.KubeClientSettings != nil {
|
2021-12-03 20:28:43 +00:00
|
|
|
args.KubeClientSettings = args.KubeClientSettings.ToKubeClientSettingsPtrOutput().ApplyT(func(v *KubeClientSettings) *KubeClientSettings { return v.Defaults() }).(KubeClientSettingsPtrOutput)
|
2021-11-23 23:10:15 +00:00
|
|
|
}
|
|
|
|
if args.Settings != nil {
|
2021-12-03 20:28:43 +00:00
|
|
|
args.Settings = args.Settings.ToLayeredTypePtrOutput().ApplyT(func(v *LayeredType) *LayeredType { return v.Defaults() }).(LayeredTypePtrOutput)
|
2021-11-23 23:10:15 +00:00
|
|
|
}
|
2023-06-14 16:34:49 +00:00
|
|
|
opts = internal.PkgResourceDefaultOpts(opts)
|
2021-11-18 20:23:30 +00:00
|
|
|
var resource Foo
|
|
|
|
err := ctx.RegisterResource("example:index:Foo", name, args, &resource, opts...)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return &resource, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetFoo gets an existing Foo 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 GetFoo(ctx *pulumi.Context,
|
|
|
|
name string, id pulumi.IDInput, state *FooState, opts ...pulumi.ResourceOption) (*Foo, error) {
|
|
|
|
var resource Foo
|
|
|
|
err := ctx.ReadResource("example:index:Foo", name, id, state, &resource, opts...)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return &resource, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Input properties used for looking up and filtering Foo resources.
|
|
|
|
type fooState struct {
|
|
|
|
}
|
|
|
|
|
|
|
|
type FooState struct {
|
|
|
|
}
|
|
|
|
|
|
|
|
func (FooState) ElementType() reflect.Type {
|
|
|
|
return reflect.TypeOf((*fooState)(nil)).Elem()
|
|
|
|
}
|
|
|
|
|
|
|
|
type fooArgs struct {
|
|
|
|
Argument *string `pulumi:"argument"`
|
|
|
|
// Options for tuning the Kubernetes client used by a Provider.
|
|
|
|
BackupKubeClientSettings KubeClientSettings `pulumi:"backupKubeClientSettings"`
|
|
|
|
// Options for tuning the Kubernetes client used by a Provider.
|
|
|
|
KubeClientSettings *KubeClientSettings `pulumi:"kubeClientSettings"`
|
|
|
|
// describing things
|
|
|
|
Settings *LayeredType `pulumi:"settings"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// The set of arguments for constructing a Foo resource.
|
|
|
|
type FooArgs struct {
|
|
|
|
Argument *string
|
|
|
|
// Options for tuning the Kubernetes client used by a Provider.
|
|
|
|
BackupKubeClientSettings KubeClientSettingsInput
|
|
|
|
// Options for tuning the Kubernetes client used by a Provider.
|
|
|
|
KubeClientSettings KubeClientSettingsPtrInput
|
|
|
|
// describing things
|
|
|
|
Settings LayeredTypePtrInput
|
|
|
|
}
|
|
|
|
|
|
|
|
func (FooArgs) ElementType() reflect.Type {
|
|
|
|
return reflect.TypeOf((*fooArgs)(nil)).Elem()
|
|
|
|
}
|
|
|
|
|
|
|
|
type FooInput interface {
|
|
|
|
pulumi.Input
|
|
|
|
|
|
|
|
ToFooOutput() FooOutput
|
|
|
|
ToFooOutputWithContext(ctx context.Context) FooOutput
|
|
|
|
}
|
|
|
|
|
|
|
|
func (*Foo) 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((**Foo)(nil)).Elem()
|
2021-11-18 20:23:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (i *Foo) ToFooOutput() FooOutput {
|
|
|
|
return i.ToFooOutputWithContext(context.Background())
|
|
|
|
}
|
|
|
|
|
|
|
|
func (i *Foo) ToFooOutputWithContext(ctx context.Context) FooOutput {
|
|
|
|
return pulumi.ToOutputWithContext(ctx, i).(FooOutput)
|
|
|
|
}
|
|
|
|
|
|
|
|
type FooOutput struct{ *pulumi.OutputState }
|
|
|
|
|
|
|
|
func (FooOutput) 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((**Foo)(nil)).Elem()
|
2021-11-18 20:23:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (o FooOutput) ToFooOutput() FooOutput {
|
|
|
|
return o
|
|
|
|
}
|
|
|
|
|
|
|
|
func (o FooOutput) ToFooOutputWithContext(ctx context.Context) FooOutput {
|
|
|
|
return o
|
|
|
|
}
|
|
|
|
|
2022-05-03 18:36:57 +00:00
|
|
|
// A test for plain types
|
|
|
|
func (o FooOutput) DefaultKubeClientSettings() KubeClientSettingsPtrOutput {
|
|
|
|
return o.ApplyT(func(v *Foo) KubeClientSettingsPtrOutput { return v.DefaultKubeClientSettings }).(KubeClientSettingsPtrOutput)
|
|
|
|
}
|
|
|
|
|
2021-11-18 20:23:30 +00:00
|
|
|
func init() {
|
|
|
|
pulumi.RegisterInputType(reflect.TypeOf((*FooInput)(nil)).Elem(), &Foo{})
|
|
|
|
pulumi.RegisterOutputType(FooOutput{})
|
|
|
|
}
|