pulumi/tests/testprovider/fails_on_create.go

84 lines
2.6 KiB
Go

// Copyright 2016-2023, Pulumi Corporation.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//go:build !all
// +build !all
package main
import (
"context"
"errors"
pschema "github.com/pulumi/pulumi/pkg/v3/codegen/schema"
rpc "github.com/pulumi/pulumi/sdk/v3/proto/go"
"google.golang.org/protobuf/types/known/emptypb"
)
func init() {
providerSchema.Resources["testprovider:index:FailsOnCreate"] = pschema.ResourceSpec{
ObjectTypeSpec: pschema.ObjectTypeSpec{
Description: "A test resource fails on create.",
Properties: map[string]pschema.PropertySpec{},
Type: "object",
},
InputProperties: map[string]pschema.PropertySpec{},
}
}
type failsOnCreateProvider struct{}
func (p *failsOnCreateProvider) Check(ctx context.Context, req *rpc.CheckRequest) (*rpc.CheckResponse, error) {
return &rpc.CheckResponse{Inputs: req.News, Failures: nil}, nil
}
func (p *failsOnCreateProvider) Diff(ctx context.Context, req *rpc.DiffRequest) (*rpc.DiffResponse, error) {
return &rpc.DiffResponse{
Changes: rpc.DiffResponse_DIFF_NONE,
}, nil
}
func (p *failsOnCreateProvider) Create(
ctx context.Context, req *rpc.CreateRequest,
) (*rpc.CreateResponse, error) {
return nil, errors.New("Create always fails for the FailsOnCreate resource")
}
func (p *failsOnCreateProvider) Read(ctx context.Context, req *rpc.ReadRequest) (*rpc.ReadResponse, error) {
return &rpc.ReadResponse{
Id: req.Id,
Properties: req.Properties,
}, nil
}
func (p *failsOnCreateProvider) Update(
ctx context.Context, req *rpc.UpdateRequest,
) (*rpc.UpdateResponse, error) {
panic("Update not implemented")
}
func (p *failsOnCreateProvider) Delete(ctx context.Context, req *rpc.DeleteRequest) (*emptypb.Empty, error) {
return &emptypb.Empty{}, nil
}
func (p *failsOnCreateProvider) Invoke(ctx context.Context, req *rpc.InvokeRequest) (*rpc.InvokeResponse, error) {
// The fails-on-create provider doesn't support any invokes currently.
panic("Invoke not implemented")
}
func (p *failsOnCreateProvider) Call(ctx context.Context, req *rpc.CallRequest) (*rpc.CallResponse, error) {
// The random provider doesn't support any call currently.
panic("Call not implemented")
}