terraform-provider-gitea/vendor/github.com/hashicorp/terraform-plugin-go/tfprotov5/internal/toproto/provider.go
Tobias Trabelsi e1266ebf64
Some checks reported errors
continuous-integration/drone/pr Build encountered an error
continuous-integration/drone/push Build encountered an error
updated GHA
Update to v2 SDK
updated dependencies
2022-08-06 16:21:18 +02:00

126 lines
3.7 KiB
Go

package toproto
import (
"fmt"
"github.com/hashicorp/terraform-plugin-go/tfprotov5"
"github.com/hashicorp/terraform-plugin-go/tfprotov5/internal/tfplugin5"
)
func GetProviderSchema_Request(in *tfprotov5.GetProviderSchemaRequest) (*tfplugin5.GetProviderSchema_Request, error) {
return &tfplugin5.GetProviderSchema_Request{}, nil
}
func GetProviderSchema_Response(in *tfprotov5.GetProviderSchemaResponse) (*tfplugin5.GetProviderSchema_Response, error) {
if in == nil {
return nil, nil
}
resp := tfplugin5.GetProviderSchema_Response{
ServerCapabilities: GetProviderSchema_ServerCapabilities(in.ServerCapabilities),
}
if in.Provider != nil {
schema, err := Schema(in.Provider)
if err != nil {
return &resp, fmt.Errorf("error marshaling provider schema: %w", err)
}
resp.Provider = schema
}
if in.ProviderMeta != nil {
schema, err := Schema(in.ProviderMeta)
if err != nil {
return &resp, fmt.Errorf("error marshaling provider_meta schema: %w", err)
}
resp.ProviderMeta = schema
}
resp.ResourceSchemas = make(map[string]*tfplugin5.Schema, len(in.ResourceSchemas))
for k, v := range in.ResourceSchemas {
if v == nil {
resp.ResourceSchemas[k] = nil
continue
}
schema, err := Schema(v)
if err != nil {
return &resp, fmt.Errorf("error marshaling resource schema for %q: %w", k, err)
}
resp.ResourceSchemas[k] = schema
}
resp.DataSourceSchemas = make(map[string]*tfplugin5.Schema, len(in.DataSourceSchemas))
for k, v := range in.DataSourceSchemas {
if v == nil {
resp.DataSourceSchemas[k] = nil
continue
}
schema, err := Schema(v)
if err != nil {
return &resp, fmt.Errorf("error marshaling data source schema for %q: %w", k, err)
}
resp.DataSourceSchemas[k] = schema
}
diags, err := Diagnostics(in.Diagnostics)
if err != nil {
return &resp, err
}
resp.Diagnostics = diags
return &resp, nil
}
func PrepareProviderConfig_Request(in *tfprotov5.PrepareProviderConfigRequest) (*tfplugin5.PrepareProviderConfig_Request, error) {
resp := &tfplugin5.PrepareProviderConfig_Request{}
if in.Config != nil {
resp.Config = DynamicValue(in.Config)
}
return resp, nil
}
func PrepareProviderConfig_Response(in *tfprotov5.PrepareProviderConfigResponse) (*tfplugin5.PrepareProviderConfig_Response, error) {
diags, err := Diagnostics(in.Diagnostics)
if err != nil {
return nil, err
}
resp := &tfplugin5.PrepareProviderConfig_Response{
Diagnostics: diags,
}
if in.PreparedConfig != nil {
resp.PreparedConfig = DynamicValue(in.PreparedConfig)
}
return resp, nil
}
func Configure_Request(in *tfprotov5.ConfigureProviderRequest) (*tfplugin5.Configure_Request, error) {
resp := &tfplugin5.Configure_Request{
TerraformVersion: in.TerraformVersion,
}
if in.Config != nil {
resp.Config = DynamicValue(in.Config)
}
return resp, nil
}
func Configure_Response(in *tfprotov5.ConfigureProviderResponse) (*tfplugin5.Configure_Response, error) {
diags, err := Diagnostics(in.Diagnostics)
if err != nil {
return nil, err
}
return &tfplugin5.Configure_Response{
Diagnostics: diags,
}, nil
}
func Stop_Request(in *tfprotov5.StopProviderRequest) (*tfplugin5.Stop_Request, error) {
return &tfplugin5.Stop_Request{}, nil
}
func Stop_Response(in *tfprotov5.StopProviderResponse) (*tfplugin5.Stop_Response, error) {
return &tfplugin5.Stop_Response{
Error: in.Error,
}, nil
}
// we have to say this next thing to get golint to stop yelling at us about the
// underscores in the function names. We want the function names to match
// actually-generated code, so it feels like fair play. It's just a shame we
// lose golint for the entire file.
//
// This file is not actually generated. You can edit it. Ignore this next line.
// Code generated by hand ignore this next bit DO NOT EDIT.