|
|
|
|
@ -121,6 +121,7 @@ func (p *provider6) GetProviderSchema(_ context.Context, req *tfplugin6.GetProvi
|
|
|
|
|
GetProviderSchemaOptional: p.schema.ServerCapabilities.GetProviderSchemaOptional,
|
|
|
|
|
PlanDestroy: p.schema.ServerCapabilities.PlanDestroy,
|
|
|
|
|
MoveResourceState: p.schema.ServerCapabilities.MoveResourceState,
|
|
|
|
|
GenerateResourceConfig: p.schema.ServerCapabilities.GenerateResourceConfig,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// include any diagnostics from the original GetSchema call
|
|
|
|
|
@ -567,6 +568,10 @@ func (p *provider6) ImportResourceState(_ context.Context, req *tfplugin6.Import
|
|
|
|
|
return resp, nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (p *provider6) GenerateResourceConfig(context.Context, *tfplugin6.GenerateResourceConfig_Request) (*tfplugin6.GenerateResourceConfig_Response, error) {
|
|
|
|
|
panic("not implemented")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (p *provider6) MoveResourceState(_ context.Context, request *tfplugin6.MoveResourceState_Request) (*tfplugin6.MoveResourceState_Response, error) {
|
|
|
|
|
resp := &tfplugin6.MoveResourceState_Response{}
|
|
|
|
|
|
|
|
|
|
|