diff --git a/client/account.go b/client/account.go index a62a5945..eb01e026 100644 --- a/client/account.go +++ b/client/account.go @@ -5,8 +5,8 @@ import ( "errors" "strings" - "github.com/OpsHelmInc/cloudquery/client/services" - "github.com/OpsHelmInc/cloudquery/client/spec" + "github.com/OpsHelmInc/cloudquery/v2/client/services" + "github.com/OpsHelmInc/cloudquery/v2/client/spec" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/aws/arn" "github.com/aws/aws-sdk-go-v2/service/ec2" diff --git a/client/aws_sdk.go b/client/aws_sdk.go index 9af78176..378f1ae1 100644 --- a/client/aws_sdk.go +++ b/client/aws_sdk.go @@ -4,7 +4,7 @@ import ( "context" "time" - "github.com/OpsHelmInc/cloudquery/client/spec" + "github.com/OpsHelmInc/cloudquery/v2/client/spec" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/aws/retry" "github.com/aws/aws-sdk-go-v2/config" diff --git a/client/client.go b/client/client.go index 8547313a..23dfb6c2 100644 --- a/client/client.go +++ b/client/client.go @@ -7,7 +7,7 @@ import ( "strings" "sync" - "github.com/OpsHelmInc/cloudquery/client/spec" + "github.com/OpsHelmInc/cloudquery/v2/client/spec" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/sts" wafv2types "github.com/aws/aws-sdk-go-v2/service/wafv2/types" diff --git a/client/client_test.go b/client/client_test.go index ab1464eb..c0eaa5ff 100644 --- a/client/client_test.go +++ b/client/client_test.go @@ -6,7 +6,7 @@ import ( "os" "testing" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/ec2" "github.com/aws/aws-sdk-go-v2/service/ec2/types" diff --git a/client/organizations.go b/client/organizations.go index 1bb9ba41..ae862719 100644 --- a/client/organizations.go +++ b/client/organizations.go @@ -3,8 +3,8 @@ package client import ( "context" - "github.com/OpsHelmInc/cloudquery/client/services" - "github.com/OpsHelmInc/cloudquery/client/spec" + "github.com/OpsHelmInc/cloudquery/v2/client/services" + "github.com/OpsHelmInc/cloudquery/v2/client/spec" "github.com/thoas/go-funk" "github.com/aws/aws-sdk-go-v2/aws" diff --git a/client/organizations_test.go b/client/organizations_test.go index 44c39c37..33c59f0c 100644 --- a/client/organizations_test.go +++ b/client/organizations_test.go @@ -6,8 +6,8 @@ import ( "sort" "testing" - "github.com/OpsHelmInc/cloudquery/client/mocks" - "github.com/OpsHelmInc/cloudquery/client/spec" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client/spec" "github.com/golang/mock/gomock" "github.com/aws/aws-sdk-go-v2/aws" diff --git a/client/services.go b/client/services.go index 174b311f..8229661c 100644 --- a/client/services.go +++ b/client/services.go @@ -1,7 +1,7 @@ package client import ( - "github.com/OpsHelmInc/cloudquery/client/services" + "github.com/OpsHelmInc/cloudquery/v2/client/services" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/accessanalyzer" "github.com/aws/aws-sdk-go-v2/service/account" diff --git a/client/spec/gen/main.go b/client/spec/gen/main.go index b9489862..c31e7bae 100644 --- a/client/spec/gen/main.go +++ b/client/spec/gen/main.go @@ -6,14 +6,14 @@ import ( "path" "runtime" - "github.com/OpsHelmInc/cloudquery/client/spec" + "github.com/OpsHelmInc/cloudquery/v2/client/spec" "github.com/cloudquery/codegen/jsonschema" ) func main() { fmt.Println("Generating JSON schema for plugin spec") jsonschema.GenerateIntoFile(new(spec.Spec), path.Join(currDir(), "..", "schema.json"), - jsonschema.WithAddGoComments("github.com/OpsHelmInc/cloudquery/client/spec", path.Join(currDir(), "..")), + jsonschema.WithAddGoComments("github.com/OpsHelmInc/cloudquery/v2/client/spec", path.Join(currDir(), "..")), jsonschema.WithAddGoComments("github.com/aws/aws-sdk-go-v2", path.Join(currDir(), "..", "..", "..", "vendor", "github.com/aws/aws-sdk-go-v2")), ) } diff --git a/client/testing.go b/client/testing.go index a33d6dc6..02b23ef2 100644 --- a/client/testing.go +++ b/client/testing.go @@ -10,7 +10,7 @@ import ( "testing" "time" - "github.com/OpsHelmInc/cloudquery/client/spec" + "github.com/OpsHelmInc/cloudquery/v2/client/spec" "github.com/cloudquery/plugin-sdk/v4/message" "github.com/cloudquery/plugin-sdk/v4/scheduler" "github.com/cloudquery/plugin-sdk/v4/schema" diff --git a/go.mod b/go.mod index a75e27b4..116f4e92 100644 --- a/go.mod +++ b/go.mod @@ -1,23 +1,25 @@ -module github.com/OpsHelmInc/cloudquery +module github.com/OpsHelmInc/cloudquery/v2 go 1.22 toolchain go1.22.1 +replace github.com/cloudquery/plugin-sdk/v4 => github.com/OpsHelmInc/cloudquery-plugin-sdk/v4 v4.59.0 + require ( - github.com/OpsHelmInc/ohaws v0.2.2-0.20240711020542-d04f0ecc7ef5 + github.com/OpsHelmInc/ohaws v0.5.0 github.com/apache/arrow/go/v16 v16.1.0 - github.com/aws/aws-sdk-go-v2 v1.30.1 - github.com/aws/aws-sdk-go-v2/config v1.27.24 - github.com/aws/aws-sdk-go-v2/credentials v1.17.24 + github.com/aws/aws-sdk-go-v2 v1.31.0 + github.com/aws/aws-sdk-go-v2/config v1.27.39 + github.com/aws/aws-sdk-go-v2/credentials v1.17.37 github.com/aws/aws-sdk-go-v2/service/accessanalyzer v1.31.1 github.com/aws/aws-sdk-go-v2/service/account v1.18.1 - github.com/aws/aws-sdk-go-v2/service/acm v1.27.1 - github.com/aws/aws-sdk-go-v2/service/acmpca v1.31.1 + github.com/aws/aws-sdk-go-v2/service/acm v1.29.3 + github.com/aws/aws-sdk-go-v2/service/acmpca v1.36.3 github.com/aws/aws-sdk-go-v2/service/amp v1.26.1 github.com/aws/aws-sdk-go-v2/service/amplify v1.22.1 - github.com/aws/aws-sdk-go-v2/service/apigateway v1.24.1 - github.com/aws/aws-sdk-go-v2/service/apigatewayv2 v1.21.1 + github.com/aws/aws-sdk-go-v2/service/apigateway v1.26.3 + github.com/aws/aws-sdk-go-v2/service/apigatewayv2 v1.23.3 github.com/aws/aws-sdk-go-v2/service/appconfig v1.30.1 github.com/aws/aws-sdk-go-v2/service/appflow v1.42.1 github.com/aws/aws-sdk-go-v2/service/applicationautoscaling v1.28.1 @@ -26,21 +28,21 @@ require ( github.com/aws/aws-sdk-go-v2/service/appstream v1.35.1 github.com/aws/aws-sdk-go-v2/service/appsync v1.33.1 github.com/aws/aws-sdk-go-v2/service/auditmanager v1.34.1 - github.com/aws/aws-sdk-go-v2/service/autoscaling v1.43.1 + github.com/aws/aws-sdk-go-v2/service/autoscaling v1.44.3 github.com/aws/aws-sdk-go-v2/service/autoscalingplans v1.21.1 - github.com/aws/aws-sdk-go-v2/service/batch v1.40.1 - github.com/aws/aws-sdk-go-v2/service/cloudformation v1.52.1 - github.com/aws/aws-sdk-go-v2/service/cloudfront v1.37.1 + github.com/aws/aws-sdk-go-v2/service/batch v1.45.3 + github.com/aws/aws-sdk-go-v2/service/cloudformation v1.54.3 + github.com/aws/aws-sdk-go-v2/service/cloudfront v1.39.3 github.com/aws/aws-sdk-go-v2/service/cloudhsmv2 v1.23.1 - github.com/aws/aws-sdk-go-v2/service/cloudtrail v1.41.1 - github.com/aws/aws-sdk-go-v2/service/cloudwatch v1.39.1 + github.com/aws/aws-sdk-go-v2/service/cloudtrail v1.43.3 + github.com/aws/aws-sdk-go-v2/service/cloudwatch v1.41.3 github.com/aws/aws-sdk-go-v2/service/cloudwatchlogs v1.36.1 github.com/aws/aws-sdk-go-v2/service/codeartifact v1.29.0 - github.com/aws/aws-sdk-go-v2/service/codebuild v1.39.1 + github.com/aws/aws-sdk-go-v2/service/codebuild v1.44.3 github.com/aws/aws-sdk-go-v2/service/codecommit v1.23.1 - github.com/aws/aws-sdk-go-v2/service/codepipeline v1.29.1 + github.com/aws/aws-sdk-go-v2/service/codepipeline v1.32.3 github.com/aws/aws-sdk-go-v2/service/cognitoidentity v1.24.1 - github.com/aws/aws-sdk-go-v2/service/cognitoidentityprovider v1.40.1 + github.com/aws/aws-sdk-go-v2/service/cognitoidentityprovider v1.45.3 github.com/aws/aws-sdk-go-v2/service/computeoptimizer v1.36.0 github.com/aws/aws-sdk-go-v2/service/configservice v1.47.1 github.com/aws/aws-sdk-go-v2/service/costexplorer v1.39.1 @@ -49,83 +51,83 @@ require ( github.com/aws/aws-sdk-go-v2/service/detective v1.28.1 github.com/aws/aws-sdk-go-v2/service/directconnect v1.26.0 github.com/aws/aws-sdk-go-v2/service/docdb v1.35.1 - github.com/aws/aws-sdk-go-v2/service/dynamodb v1.33.2 + github.com/aws/aws-sdk-go-v2/service/dynamodb v1.35.3 github.com/aws/aws-sdk-go-v2/service/dynamodbstreams v1.21.1 - github.com/aws/aws-sdk-go-v2/service/ec2 v1.168.0 - github.com/aws/aws-sdk-go-v2/service/ecr v1.30.1 - github.com/aws/aws-sdk-go-v2/service/ecrpublic v1.25.1 - github.com/aws/aws-sdk-go-v2/service/ecs v1.44.1 - github.com/aws/aws-sdk-go-v2/service/efs v1.31.1 - github.com/aws/aws-sdk-go-v2/service/eks v1.46.0 - github.com/aws/aws-sdk-go-v2/service/elasticache v1.40.1 + github.com/aws/aws-sdk-go-v2/service/ec2 v1.179.2 + github.com/aws/aws-sdk-go-v2/service/ecr v1.35.3 + github.com/aws/aws-sdk-go-v2/service/ecrpublic v1.26.3 + github.com/aws/aws-sdk-go-v2/service/ecs v1.46.3 + github.com/aws/aws-sdk-go-v2/service/efs v1.32.3 + github.com/aws/aws-sdk-go-v2/service/eks v1.49.3 + github.com/aws/aws-sdk-go-v2/service/elasticache v1.41.3 github.com/aws/aws-sdk-go-v2/service/elasticbeanstalk v1.24.1 - github.com/aws/aws-sdk-go-v2/service/elasticloadbalancing v1.26.1 - github.com/aws/aws-sdk-go-v2/service/elasticloadbalancingv2 v1.33.1 - github.com/aws/aws-sdk-go-v2/service/elasticsearchservice v1.29.1 + github.com/aws/aws-sdk-go-v2/service/elasticloadbalancing v1.27.3 + github.com/aws/aws-sdk-go-v2/service/elasticloadbalancingv2 v1.38.3 + github.com/aws/aws-sdk-go-v2/service/elasticsearchservice v1.31.3 github.com/aws/aws-sdk-go-v2/service/elastictranscoder v1.24.0 github.com/aws/aws-sdk-go-v2/service/emr v1.40.1 - github.com/aws/aws-sdk-go-v2/service/eventbridge v1.33.1 - github.com/aws/aws-sdk-go-v2/service/firehose v1.30.1 + github.com/aws/aws-sdk-go-v2/service/eventbridge v1.34.3 + github.com/aws/aws-sdk-go-v2/service/firehose v1.33.3 github.com/aws/aws-sdk-go-v2/service/frauddetector v1.32.1 github.com/aws/aws-sdk-go-v2/service/fsx v1.45.1 github.com/aws/aws-sdk-go-v2/service/glacier v1.23.1 github.com/aws/aws-sdk-go-v2/service/guardduty v1.44.1 - github.com/aws/aws-sdk-go-v2/service/iam v1.34.1 + github.com/aws/aws-sdk-go-v2/service/iam v1.36.3 github.com/aws/aws-sdk-go-v2/service/identitystore v1.24.1 github.com/aws/aws-sdk-go-v2/service/inspector v1.22.1 github.com/aws/aws-sdk-go-v2/service/inspector2 v1.27.1 - github.com/aws/aws-sdk-go-v2/service/iot v1.54.1 - github.com/aws/aws-sdk-go-v2/service/kafka v1.34.1 - github.com/aws/aws-sdk-go-v2/service/kinesis v1.29.1 - github.com/aws/aws-sdk-go-v2/service/kms v1.35.1 - github.com/aws/aws-sdk-go-v2/service/lambda v1.56.1 + github.com/aws/aws-sdk-go-v2/service/iot v1.57.3 + github.com/aws/aws-sdk-go-v2/service/kafka v1.37.3 + github.com/aws/aws-sdk-go-v2/service/kinesis v1.31.2 + github.com/aws/aws-sdk-go-v2/service/kms v1.36.3 + github.com/aws/aws-sdk-go-v2/service/lambda v1.62.1 github.com/aws/aws-sdk-go-v2/service/lightsail v1.39.1 - github.com/aws/aws-sdk-go-v2/service/mq v1.23.1 + github.com/aws/aws-sdk-go-v2/service/mq v1.26.3 github.com/aws/aws-sdk-go-v2/service/mwaa v1.28.1 github.com/aws/aws-sdk-go-v2/service/neptune v1.32.1 - github.com/aws/aws-sdk-go-v2/service/networkfirewall v1.40.1 + github.com/aws/aws-sdk-go-v2/service/networkfirewall v1.42.3 github.com/aws/aws-sdk-go-v2/service/networkmanager v1.28.0 - github.com/aws/aws-sdk-go-v2/service/organizations v1.30.0 - github.com/aws/aws-sdk-go-v2/service/qldb v1.22.1 + github.com/aws/aws-sdk-go-v2/service/organizations v1.33.1 + github.com/aws/aws-sdk-go-v2/service/qldb v1.24.3 github.com/aws/aws-sdk-go-v2/service/quicksight v1.65.1 github.com/aws/aws-sdk-go-v2/service/ram v1.26.1 - github.com/aws/aws-sdk-go-v2/service/rds v1.81.2 - github.com/aws/aws-sdk-go-v2/service/redshift v1.45.1 + github.com/aws/aws-sdk-go-v2/service/rds v1.85.2 + github.com/aws/aws-sdk-go-v2/service/redshift v1.47.3 github.com/aws/aws-sdk-go-v2/service/resiliencehub v1.22.1 github.com/aws/aws-sdk-go-v2/service/resourcegroups v1.23.1 - github.com/aws/aws-sdk-go-v2/service/route53 v1.41.1 + github.com/aws/aws-sdk-go-v2/service/route53 v1.44.3 github.com/aws/aws-sdk-go-v2/service/route53domains v1.24.1 github.com/aws/aws-sdk-go-v2/service/route53recoverycontrolconfig v1.22.1 github.com/aws/aws-sdk-go-v2/service/route53recoveryreadiness v1.18.1 github.com/aws/aws-sdk-go-v2/service/route53resolver v1.29.1 - github.com/aws/aws-sdk-go-v2/service/s3 v1.58.0 - github.com/aws/aws-sdk-go-v2/service/s3control v1.46.1 - github.com/aws/aws-sdk-go-v2/service/sagemaker v1.147.0 + github.com/aws/aws-sdk-go-v2/service/s3 v1.63.3 + github.com/aws/aws-sdk-go-v2/service/s3control v1.48.3 + github.com/aws/aws-sdk-go-v2/service/sagemaker v1.161.1 github.com/aws/aws-sdk-go-v2/service/savingsplans v1.20.1 github.com/aws/aws-sdk-go-v2/service/scheduler v1.9.1 - github.com/aws/aws-sdk-go-v2/service/secretsmanager v1.31.1 + github.com/aws/aws-sdk-go-v2/service/secretsmanager v1.33.3 github.com/aws/aws-sdk-go-v2/service/securityhub v1.50.2 github.com/aws/aws-sdk-go-v2/service/servicecatalog v1.29.1 github.com/aws/aws-sdk-go-v2/service/servicecatalogappregistry v1.27.1 - github.com/aws/aws-sdk-go-v2/service/servicediscovery v1.30.1 + github.com/aws/aws-sdk-go-v2/service/servicediscovery v1.32.3 github.com/aws/aws-sdk-go-v2/service/servicequotas v1.22.1 github.com/aws/aws-sdk-go-v2/service/ses v1.23.1 github.com/aws/aws-sdk-go-v2/service/sesv2 v1.31.1 github.com/aws/aws-sdk-go-v2/service/sfn v1.28.1 github.com/aws/aws-sdk-go-v2/service/signer v1.23.1 - github.com/aws/aws-sdk-go-v2/service/sns v1.31.1 - github.com/aws/aws-sdk-go-v2/service/sqs v1.34.1 - github.com/aws/aws-sdk-go-v2/service/ssm v1.51.1 + github.com/aws/aws-sdk-go-v2/service/sns v1.32.3 + github.com/aws/aws-sdk-go-v2/service/sqs v1.35.3 + github.com/aws/aws-sdk-go-v2/service/ssm v1.54.3 github.com/aws/aws-sdk-go-v2/service/ssoadmin v1.26.1 - github.com/aws/aws-sdk-go-v2/service/sts v1.30.1 + github.com/aws/aws-sdk-go-v2/service/sts v1.31.3 github.com/aws/aws-sdk-go-v2/service/support v1.23.1 github.com/aws/aws-sdk-go-v2/service/timestreamwrite v1.26.1 github.com/aws/aws-sdk-go-v2/service/waf v1.22.1 - github.com/aws/aws-sdk-go-v2/service/wafv2 v1.50.1 + github.com/aws/aws-sdk-go-v2/service/wafv2 v1.53.3 github.com/aws/aws-sdk-go-v2/service/wellarchitected v1.31.1 github.com/aws/aws-sdk-go-v2/service/workspaces v1.40.1 github.com/aws/aws-sdk-go-v2/service/xray v1.26.1 - github.com/aws/smithy-go v1.20.3 + github.com/aws/smithy-go v1.21.0 github.com/basgys/goxml2json v1.1.0 github.com/cloudquery/codegen v0.3.12 github.com/cloudquery/plugin-sdk/v4 v4.48.0 @@ -141,7 +143,7 @@ require ( github.com/stretchr/testify v1.9.0 github.com/thoas/go-funk v0.9.3 github.com/wk8/go-ordered-map/v2 v2.1.8 - golang.org/x/sync v0.7.0 + golang.org/x/sync v0.8.0 ) require ( @@ -154,9 +156,13 @@ require ( github.com/andybalholm/brotli v1.1.0 // indirect github.com/apache/arrow/go/v13 v13.0.0 // indirect github.com/apapsch/go-jsonmerge/v2 v2.0.0 // indirect - github.com/aws/aws-sdk-go-v2/internal/v4a v1.3.13 // indirect - github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.3.15 // indirect - github.com/aws/aws-sdk-go-v2/service/ssooidc v1.26.2 // indirect + github.com/aws/aws-sdk-go-v2/internal/v4a v1.3.18 // indirect + github.com/aws/aws-sdk-go-v2/service/comprehend v1.34.3 // indirect + github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.3.20 // indirect + github.com/aws/aws-sdk-go-v2/service/keyspaces v1.13.3 // indirect + github.com/aws/aws-sdk-go-v2/service/opensearch v1.40.3 // indirect + github.com/aws/aws-sdk-go-v2/service/personalize v1.38.3 // indirect + github.com/aws/aws-sdk-go-v2/service/ssooidc v1.27.3 // indirect github.com/aymerick/douceur v0.2.0 // indirect github.com/bahlo/generic-list-go v0.2.0 // indirect github.com/bitly/go-simplejson v0.5.1 // indirect @@ -220,9 +226,10 @@ require ( github.com/spf13/pflag v1.0.5 // indirect github.com/tdewolff/minify/v2 v2.20.34 // indirect github.com/tdewolff/parse/v2 v2.7.15 // indirect - github.com/tidwall/gjson v1.17.1 // indirect + github.com/tidwall/gjson v1.17.3 // indirect github.com/tidwall/match v1.1.1 // indirect github.com/tidwall/pretty v1.2.1 // indirect + github.com/tidwall/sjson v1.2.5 // indirect github.com/twitchyliquid64/golang-asm v0.15.1 // indirect github.com/ugorji/go/codec v1.2.12 // indirect github.com/valyala/bytebufferpool v1.0.0 // indirect @@ -241,30 +248,30 @@ require ( go.opentelemetry.io/otel/trace v1.27.0 // indirect go.opentelemetry.io/proto/otlp v1.3.1 // indirect golang.org/x/arch v0.8.0 // indirect - golang.org/x/crypto v0.24.0 // indirect + golang.org/x/crypto v0.27.0 // indirect golang.org/x/exp v0.0.0-20240613232115-7f521ea00fb8 // indirect golang.org/x/time v0.5.0 // indirect golang.org/x/xerrors v0.0.0-20231012003039-104605ab7028 // indirect - google.golang.org/genproto/googleapis/api v0.0.0-20240624140628-dc46fd24d27d // indirect - google.golang.org/genproto/googleapis/rpc v0.0.0-20240624140628-dc46fd24d27d // indirect + google.golang.org/genproto/googleapis/api v0.0.0-20241007155032-5fefd90f89a9 // indirect + google.golang.org/genproto/googleapis/rpc v0.0.0-20241007155032-5fefd90f89a9 // indirect gopkg.in/ini.v1 v1.67.0 // indirect ) require ( - github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.6.3 // indirect - github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.16.9 // indirect - github.com/aws/aws-sdk-go-v2/internal/configsources v1.3.13 // indirect - github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.6.13 // indirect - github.com/aws/aws-sdk-go-v2/internal/ini v1.8.0 // indirect - github.com/aws/aws-sdk-go-v2/service/athena v1.43.0 - github.com/aws/aws-sdk-go-v2/service/backup v1.35.1 - github.com/aws/aws-sdk-go-v2/service/glue v1.87.1 - github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.11.3 // indirect - github.com/aws/aws-sdk-go-v2/service/internal/endpoint-discovery v1.9.13 // indirect - github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.11.15 // indirect - github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.17.13 // indirect + github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.6.5 // indirect + github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.16.14 // indirect + github.com/aws/aws-sdk-go-v2/internal/configsources v1.3.18 // indirect + github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.6.18 // indirect + github.com/aws/aws-sdk-go-v2/internal/ini v1.8.1 // indirect + github.com/aws/aws-sdk-go-v2/service/athena v1.46.2 + github.com/aws/aws-sdk-go-v2/service/backup v1.38.3 + github.com/aws/aws-sdk-go-v2/service/glue v1.99.2 + github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.11.5 // indirect + github.com/aws/aws-sdk-go-v2/service/internal/endpoint-discovery v1.9.19 // indirect + github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.11.20 // indirect + github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.17.18 // indirect github.com/aws/aws-sdk-go-v2/service/shield v1.26.1 - github.com/aws/aws-sdk-go-v2/service/sso v1.22.1 // indirect + github.com/aws/aws-sdk-go-v2/service/sso v1.23.3 // indirect github.com/aws/aws-sdk-go-v2/service/transfer v1.49.1 github.com/aws/aws-sdk-go-v2/service/wafregional v1.22.1 github.com/davecgh/go-spew v1.1.1 // indirect @@ -275,17 +282,15 @@ require ( github.com/mattn/go-isatty v0.0.20 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect golang.org/x/mod v0.18.0 // indirect - golang.org/x/net v0.26.0 // indirect - golang.org/x/sys v0.21.0 // indirect - golang.org/x/text v0.16.0 // indirect + golang.org/x/net v0.29.0 // indirect + golang.org/x/sys v0.25.0 // indirect + golang.org/x/text v0.18.0 // indirect golang.org/x/tools v0.22.0 // indirect - google.golang.org/grpc v1.64.0 - google.golang.org/protobuf v1.34.2 // indirect + google.golang.org/grpc v1.67.1 + google.golang.org/protobuf v1.35.1 // indirect gopkg.in/yaml.v2 v2.4.0 // indirect gopkg.in/yaml.v3 v3.0.1 // indirect ) // github.com/cloudquery/jsonschema @ cqmain replace github.com/invopop/jsonschema => github.com/cloudquery/jsonschema v0.0.0-20231018073309-6c617a23d42f - -replace github.com/cloudquery/plugin-sdk/v4 => github.com/OpsHelmInc/cloudquery-plugin-sdk/v4 v4.59.0 diff --git a/go.sum b/go.sum index d8de2bc2..28b54058 100644 --- a/go.sum +++ b/go.sum @@ -20,8 +20,8 @@ github.com/Joker/jade v1.1.3 h1:Qbeh12Vq6BxURXT1qZBRHsDxeURB8ztcL6f3EXSGeHk= github.com/Joker/jade v1.1.3/go.mod h1:T+2WLyt7VH6Lp0TRxQrUYEs64nRc83wkMQrfeIQKduM= github.com/OpsHelmInc/cloudquery-plugin-sdk/v4 v4.59.0 h1:8y6d3gnxyFmdyVU3VkB1EfqsKVbmYcUosvVxoperSjo= github.com/OpsHelmInc/cloudquery-plugin-sdk/v4 v4.59.0/go.mod h1:YOePv6cbAU+SIB2CpSrDmS0xWPnywbAWjL0iOML++iY= -github.com/OpsHelmInc/ohaws v0.2.2-0.20240711020542-d04f0ecc7ef5 h1:ScCzISLGTKVzuwaAHB8yxzLzcEnomOcw2PKLkl9o/5I= -github.com/OpsHelmInc/ohaws v0.2.2-0.20240711020542-d04f0ecc7ef5/go.mod h1:vD77RSWULi+/fJMlUqXoRX5Xab76evwmAa1IZbfeuOA= +github.com/OpsHelmInc/ohaws v0.5.0 h1:4CzouJo1l8MPD+hPIFZWTvgno1M8esVnEGbqD6rkb/s= +github.com/OpsHelmInc/ohaws v0.5.0/go.mod h1:u9KykoLKFkEC7N1bh+xahgIV6tybu6yNPfbcuKuL4Ow= github.com/RaveNoX/go-jsoncommentstrip v1.0.0/go.mod h1:78ihd09MekBnJnxpICcwzCMzGrKSKYe4AqU6PDYYpjk= github.com/Shopify/goreferrer v0.0.0-20220729165902-8cddb4f5de06 h1:KkH3I3sJuOLP3TjA/dfr4NAY8bghDwnXiU7cTKxQqo0= github.com/Shopify/goreferrer v0.0.0-20220729165902-8cddb4f5de06/go.mod h1:7erjKLwalezA0k99cWs5L11HWOAPNjdUZ6RxH1BXbbM= @@ -37,40 +37,40 @@ github.com/apache/arrow/go/v16 v16.1.0 h1:dwgfOya6s03CzH9JrjCBx6bkVb4yPD4ma3haj9 github.com/apache/arrow/go/v16 v16.1.0/go.mod h1:9wnc9mn6vEDTRIm4+27pEjQpRKuTvBaessPoEXQzxWA= github.com/apapsch/go-jsonmerge/v2 v2.0.0 h1:axGnT1gRIfimI7gJifB699GoE/oq+F2MU7Dml6nw9rQ= github.com/apapsch/go-jsonmerge/v2 v2.0.0/go.mod h1:lvDnEdqiQrp0O42VQGgmlKpxL1AP2+08jFMw88y4klk= -github.com/aws/aws-sdk-go-v2 v1.30.1 h1:4y/5Dvfrhd1MxRDD77SrfsDaj8kUkkljU7XE83NPV+o= -github.com/aws/aws-sdk-go-v2 v1.30.1/go.mod h1:nIQjQVp5sfpQcTc9mPSr1B0PaWK5ByX9MOoDadSN4lc= -github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.6.3 h1:tW1/Rkad38LA15X4UQtjXZXNKsCgkshC3EbmcUmghTg= -github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.6.3/go.mod h1:UbnqO+zjqk3uIt9yCACHJ9IVNhyhOCnYk8yA19SAWrM= -github.com/aws/aws-sdk-go-v2/config v1.27.24 h1:NM9XicZ5o1CBU/MZaHwFtimRpWx9ohAUAqkG6AqSqPo= -github.com/aws/aws-sdk-go-v2/config v1.27.24/go.mod h1:aXzi6QJTuQRVVusAO8/NxpdTeTyr/wRcybdDtfUwJSs= -github.com/aws/aws-sdk-go-v2/credentials v1.17.24 h1:YclAsrnb1/GTQNt2nzv+756Iw4mF8AOzcDfweWwwm/M= -github.com/aws/aws-sdk-go-v2/credentials v1.17.24/go.mod h1:Hld7tmnAkoBQdTMNYZGzztzKRdA4fCdn9L83LOoigac= -github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.16.9 h1:Aznqksmd6Rfv2HQN9cpqIV/lQRMaIpJkLLaJ1ZI76no= -github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.16.9/go.mod h1:WQr3MY7AxGNxaqAtsDWn+fBxmd4XvLkzeqQ8P1VM0/w= -github.com/aws/aws-sdk-go-v2/internal/configsources v1.3.13 h1:5SAoZ4jYpGH4721ZNoS1znQrhOfZinOhc4XuTXx/nVc= -github.com/aws/aws-sdk-go-v2/internal/configsources v1.3.13/go.mod h1:+rdA6ZLpaSeM7tSg/B0IEDinCIBJGmW8rKDFkYpP04g= -github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.6.13 h1:WIijqeaAO7TYFLbhsZmi2rgLEAtWOC1LhxCAVTJlSKw= -github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.6.13/go.mod h1:i+kbfa76PQbWw/ULoWnp51EYVWH4ENln76fLQE3lXT8= -github.com/aws/aws-sdk-go-v2/internal/ini v1.8.0 h1:hT8rVHwugYE2lEfdFE0QWVo81lF7jMrYJVDWI+f+VxU= -github.com/aws/aws-sdk-go-v2/internal/ini v1.8.0/go.mod h1:8tu/lYfQfFe6IGnaOdrpVgEL2IrrDOf6/m9RQum4NkY= -github.com/aws/aws-sdk-go-v2/internal/v4a v1.3.13 h1:THZJJ6TU/FOiM7DZFnisYV9d49oxXWUzsVIMTuf3VNU= -github.com/aws/aws-sdk-go-v2/internal/v4a v1.3.13/go.mod h1:VISUTg6n+uBaYIWPBaIG0jk7mbBxm7DUqBtU2cUDDWI= +github.com/aws/aws-sdk-go-v2 v1.31.0 h1:3V05LbxTSItI5kUqNwhJrrrY1BAXxXt0sN0l72QmG5U= +github.com/aws/aws-sdk-go-v2 v1.31.0/go.mod h1:ztolYtaEUtdpf9Wftr31CJfLVjOnD/CVRkKOOYgF8hA= +github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.6.5 h1:xDAuZTn4IMm8o1LnBZvmrL8JA1io4o3YWNXgohbf20g= +github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.6.5/go.mod h1:wYSv6iDS621sEFLfKvpPE2ugjTuGlAG7iROg0hLOkfc= +github.com/aws/aws-sdk-go-v2/config v1.27.39 h1:FCylu78eTGzW1ynHcongXK9YHtoXD5AiiUqq3YfJYjU= +github.com/aws/aws-sdk-go-v2/config v1.27.39/go.mod h1:wczj2hbyskP4LjMKBEZwPRO1shXY+GsQleab+ZXT2ik= +github.com/aws/aws-sdk-go-v2/credentials v1.17.37 h1:G2aOH01yW8X373JK419THj5QVqu9vKEwxSEsGxihoW0= +github.com/aws/aws-sdk-go-v2/credentials v1.17.37/go.mod h1:0ecCjlb7htYCptRD45lXJ6aJDQac6D2NlKGpZqyTG6A= +github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.16.14 h1:C/d03NAmh8C4BZXhuRNboF/DqhBkBCeDiJDcaqIT5pA= +github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.16.14/go.mod h1:7I0Ju7p9mCIdlrfS+JCgqcYD0VXz/N4yozsox+0o078= +github.com/aws/aws-sdk-go-v2/internal/configsources v1.3.18 h1:kYQ3H1u0ANr9KEKlGs/jTLrBFPo8P8NaH/w7A01NeeM= +github.com/aws/aws-sdk-go-v2/internal/configsources v1.3.18/go.mod h1:r506HmK5JDUh9+Mw4CfGJGSSoqIiLCndAuqXuhbv67Y= +github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.6.18 h1:Z7IdFUONvTcvS7YuhtVxN99v2cCoHRXOS4mTr0B/pUc= +github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.6.18/go.mod h1:DkKMmksZVVyat+Y+r1dEOgJEfUeA7UngIHWeKsi0yNc= +github.com/aws/aws-sdk-go-v2/internal/ini v1.8.1 h1:VaRN3TlFdd6KxX1x3ILT5ynH6HvKgqdiXoTxAF4HQcQ= +github.com/aws/aws-sdk-go-v2/internal/ini v1.8.1/go.mod h1:FbtygfRFze9usAadmnGJNc8KsP346kEe+y2/oyhGAGc= +github.com/aws/aws-sdk-go-v2/internal/v4a v1.3.18 h1:OWYvKL53l1rbsUmW7bQyJVsYU/Ii3bbAAQIIFNbM0Tk= +github.com/aws/aws-sdk-go-v2/internal/v4a v1.3.18/go.mod h1:CUx0G1v3wG6l01tUB+j7Y8kclA8NSqK4ef0YG79a4cg= github.com/aws/aws-sdk-go-v2/service/accessanalyzer v1.31.1 h1:xiBxyVn3snq4T4ULkhluYUDouVWa0/bvCacJaaW5Zaw= github.com/aws/aws-sdk-go-v2/service/accessanalyzer v1.31.1/go.mod h1:joyQCMQ4RuIAyFlaxemD0fvhbfv+A+j8OdMUJHpyxWk= github.com/aws/aws-sdk-go-v2/service/account v1.18.1 h1:GRinAnafboH983+FkLjFO1eMOa3+TcgjQvqb0JMDE4M= github.com/aws/aws-sdk-go-v2/service/account v1.18.1/go.mod h1:E9NGq+OLfDPiiLj3cl+4srGmNYytb/UB2DPEGvEhAQI= -github.com/aws/aws-sdk-go-v2/service/acm v1.27.1 h1:EMnuoQ/WR4/VNE8QmFrXq4u0BZH2Xhc9Yr41xZlths0= -github.com/aws/aws-sdk-go-v2/service/acm v1.27.1/go.mod h1:wHw2SsqkXuys0SArqz+Rb7LGvujWSnlPByxCm6q7kus= -github.com/aws/aws-sdk-go-v2/service/acmpca v1.31.1 h1:FAk92O6prrubKEZOPq1EaB09B3G7crDIrmSiRdcQDrY= -github.com/aws/aws-sdk-go-v2/service/acmpca v1.31.1/go.mod h1:5GKFDOiJPtkP6jyRx8AB0vRap2JYPyD5pKJQALHIn9s= +github.com/aws/aws-sdk-go-v2/service/acm v1.29.3 h1:EpXx6a8u5ZnhBuUr9yj8sEQv67jYkC8/TuRvS8TG248= +github.com/aws/aws-sdk-go-v2/service/acm v1.29.3/go.mod h1:pyj5IBRLA+w27gR7KJY/4lSWoP4XOsyOVsXKAMvWE3s= +github.com/aws/aws-sdk-go-v2/service/acmpca v1.36.3 h1:zyilUf52S7oS/jc0Kwsf38UsRdH9MW98kk7/KWQfL+A= +github.com/aws/aws-sdk-go-v2/service/acmpca v1.36.3/go.mod h1:i+aP0us0oDFVPP86a/xf3tR0uqWv/FYdlMGn2DQ4MTk= github.com/aws/aws-sdk-go-v2/service/amp v1.26.1 h1:svGkgUKZDc5SNSiP6BgcOe/6sPmwBniltU6uHmxrjqo= github.com/aws/aws-sdk-go-v2/service/amp v1.26.1/go.mod h1:mBtHxQRTrzQB0G5oap7IcgP9Ny5p9BJSGhWnuQ+35EY= github.com/aws/aws-sdk-go-v2/service/amplify v1.22.1 h1:4ViQJ+tm0D5a+aAdJlPsw+tsxAxbN/ChdbyCWtVRnPg= github.com/aws/aws-sdk-go-v2/service/amplify v1.22.1/go.mod h1:IlSHwknO6vYVWAMPddUNS+RIJEFDawvLl9NMmMoXBgU= -github.com/aws/aws-sdk-go-v2/service/apigateway v1.24.1 h1:20jy3+l7bQA6tJ1nJxg8+l+1Xm9KrDslNVvc8HvLoEI= -github.com/aws/aws-sdk-go-v2/service/apigateway v1.24.1/go.mod h1:gcUX4UmbhON3+0ij28aojD7vaMPqsRYFefqwxCLbUnw= -github.com/aws/aws-sdk-go-v2/service/apigatewayv2 v1.21.1 h1:qbbxz47vQdGzvLeHS8xmvp3shV0n8cAnmred+Ehj6qQ= -github.com/aws/aws-sdk-go-v2/service/apigatewayv2 v1.21.1/go.mod h1:3tgssMs7RA6rZoI6K9w6Nc6gCmhadTFAOU+OXh4tPkQ= +github.com/aws/aws-sdk-go-v2/service/apigateway v1.26.3 h1:CQ3fmvM+/APKVgqjEnvAaPFI2VYZwcYJp2DSyG9K0T0= +github.com/aws/aws-sdk-go-v2/service/apigateway v1.26.3/go.mod h1:qTYWFp/mdwk7tM8Z0lcFnUUvywmc0GYRmj/4Ko28yQo= +github.com/aws/aws-sdk-go-v2/service/apigatewayv2 v1.23.3 h1:WZUt0kax46jxtDyvkJuusHIofvy4YsmaUq7fKIh8qHg= +github.com/aws/aws-sdk-go-v2/service/apigatewayv2 v1.23.3/go.mod h1:y75KawFLMiWESE86a4IwN+iBlxSYT5rpqySlcxQw18c= github.com/aws/aws-sdk-go-v2/service/appconfig v1.30.1 h1:h2JzyyqbvuXD2I0HombM5CsbmFbB3jcVeF/WhX8AjCk= github.com/aws/aws-sdk-go-v2/service/appconfig v1.30.1/go.mod h1:rOJ1yTzhpIWjgop8XniA+nanxF4jpyUnLcX1s0gaShg= github.com/aws/aws-sdk-go-v2/service/appflow v1.42.1 h1:zxPjTkoh8wIgVg/R7NCG9t5X7UhZjAf+RrL49J9uv3g= @@ -85,42 +85,44 @@ github.com/aws/aws-sdk-go-v2/service/appstream v1.35.1 h1:wlll0kVBQVfZB2oNqDG1Co github.com/aws/aws-sdk-go-v2/service/appstream v1.35.1/go.mod h1:qLT0nQAYhXj8LLa7fmLvx8nYTRIQ5y+CH06QfU/CPic= github.com/aws/aws-sdk-go-v2/service/appsync v1.33.1 h1:zbMPXMPrM9hYWySGW6xm2AA4GtBmhqU+rYxit+8vJis= github.com/aws/aws-sdk-go-v2/service/appsync v1.33.1/go.mod h1:t1V04AJ0mgXsmSkac1UpykISXNIEr6Gkgx8JgYpEKpk= -github.com/aws/aws-sdk-go-v2/service/athena v1.43.0 h1:9gG6ddaduB/vNXa62sI5BSXXZ6ohbN6zYrowdKeOLxU= -github.com/aws/aws-sdk-go-v2/service/athena v1.43.0/go.mod h1:IgZ3BPAIcafbIEndBsCEZSo559W16aD6m6sRcGO97gM= +github.com/aws/aws-sdk-go-v2/service/athena v1.46.2 h1:Lno9/wGrQ3BWQG9CU6s+rAEPavX7/4+VMnaYIqF6wzU= +github.com/aws/aws-sdk-go-v2/service/athena v1.46.2/go.mod h1:BPy6WfKKUTQhO6hVCyImd1I0ejlngPaCu1zU0vZ1vPQ= github.com/aws/aws-sdk-go-v2/service/auditmanager v1.34.1 h1:0vWu89NdYkrqiXodXViT9UxT5WO70ZsZ4gQme7UQzaY= github.com/aws/aws-sdk-go-v2/service/auditmanager v1.34.1/go.mod h1:9AVNQ9gOvNkX8AzDT2lXI1iZkL5vqbgv+zcNRYL4bVI= -github.com/aws/aws-sdk-go-v2/service/autoscaling v1.43.1 h1:nV3iVzSwz69etCRlmifzbxueN9KnnCq0hQow9ezJSzU= -github.com/aws/aws-sdk-go-v2/service/autoscaling v1.43.1/go.mod h1:SR3acVqfWMo5J4hI3WHHP0+cgC5yvEVjG9PJXtbOqQg= +github.com/aws/aws-sdk-go-v2/service/autoscaling v1.44.3 h1:uW81sdnq9hfg2hSnVqAFp+mMmu4Y86dU/bE9ET2LCIg= +github.com/aws/aws-sdk-go-v2/service/autoscaling v1.44.3/go.mod h1:Gmv7s//GGvs3nj9aqltFYnLStW8vDIwch0USkE67G4E= github.com/aws/aws-sdk-go-v2/service/autoscalingplans v1.21.1 h1:YHR0n0eUY964ffHangUAvM/vjJUYoj1058G4/xoZG+c= github.com/aws/aws-sdk-go-v2/service/autoscalingplans v1.21.1/go.mod h1:BltrhZlEEwdnaSFsqZUiZA7tJk4Ie9JQ2P1r1qCpsIs= -github.com/aws/aws-sdk-go-v2/service/backup v1.35.1 h1:JDoVIgC8dzbc1GBH1rYQYcovRh92RDIrywal3fZrQlA= -github.com/aws/aws-sdk-go-v2/service/backup v1.35.1/go.mod h1:443Jou0o4i+ea/y6mOvo8zgIkvXDJ3pdCWjZ/YFfk5Q= -github.com/aws/aws-sdk-go-v2/service/batch v1.40.1 h1:khjAF2CScjXDGdCKZqkB6W95os0Ro+b/CFHT5nGQ+nU= -github.com/aws/aws-sdk-go-v2/service/batch v1.40.1/go.mod h1:9B+DcqWg4/hcorXHhkK/ZT68/LgEcWwlvlWXD0XAGoU= -github.com/aws/aws-sdk-go-v2/service/cloudformation v1.52.1 h1:Ts+mCjOtt8o2k2vnWnX/0sE0eSmEVWBvfJkNrNMQlAo= -github.com/aws/aws-sdk-go-v2/service/cloudformation v1.52.1/go.mod h1:IrWhabzdTEc651GAq7rgst/SYcEqqcD7Avr82m28AAU= -github.com/aws/aws-sdk-go-v2/service/cloudfront v1.37.1 h1:oOm9MhuUpAWAmjcXwkTsYBzXzFIDbVYje6P5jPkG3kU= -github.com/aws/aws-sdk-go-v2/service/cloudfront v1.37.1/go.mod h1:Pri+xMTktTIOpTg/yYeCYgk4vOrv6sZLcB467ePRIoU= +github.com/aws/aws-sdk-go-v2/service/backup v1.38.3 h1:y3LjRnYKdd5SsKbnRRZ6F1INZIaLWzhH/5idmMj6tOY= +github.com/aws/aws-sdk-go-v2/service/backup v1.38.3/go.mod h1:MWWsaecE5EujYI9tD9+yeDmKcPTkfrBhS9TPX5EYIEI= +github.com/aws/aws-sdk-go-v2/service/batch v1.45.3 h1:Plkj8D6d4ZsXk0ey5aYpMN+FKbHk6KIc6jkQTwK3R2Q= +github.com/aws/aws-sdk-go-v2/service/batch v1.45.3/go.mod h1:z9GrSORElTuTG+rLKbQMAKi/QJeZIlaSx2c1PWO54ok= +github.com/aws/aws-sdk-go-v2/service/cloudformation v1.54.3 h1:kVbtKOK6sNCqPsXE/7xN93pD090XETITuBNHrrPQsvk= +github.com/aws/aws-sdk-go-v2/service/cloudformation v1.54.3/go.mod h1:85xWVAzH8I6dCauQy7j1nt8CbSELPzGQj45chIZ/qMA= +github.com/aws/aws-sdk-go-v2/service/cloudfront v1.39.3 h1:aQZZ0TyYuZVAWBWoTsL4QxLIak/IgBq+7w7Y7Udv6yE= +github.com/aws/aws-sdk-go-v2/service/cloudfront v1.39.3/go.mod h1:cShu4+4PIZJ5nvMI+NEcItwVjMxQV0SGMYMMOLN5FME= github.com/aws/aws-sdk-go-v2/service/cloudhsmv2 v1.23.1 h1:SmnVTefyghNfnuGXMnJsHEYn2S90RCpUlOKf0e2YnMI= github.com/aws/aws-sdk-go-v2/service/cloudhsmv2 v1.23.1/go.mod h1:iqbEItGSpoAow7uFw27QZ6qylNKKa94QP8UK6tjzSq4= -github.com/aws/aws-sdk-go-v2/service/cloudtrail v1.41.1 h1:dSDDTrkL0JUsAtLxE4MXeUlDHuSrYz+S2h/5/j2AHDQ= -github.com/aws/aws-sdk-go-v2/service/cloudtrail v1.41.1/go.mod h1:t612HtnZuwt6UkB/JMxewOHaeRI5VklfVj6UcwOwfCk= -github.com/aws/aws-sdk-go-v2/service/cloudwatch v1.39.1 h1:U2qFeD0atfYsNMX7pVPvTG+vI7jCoelcWomOK7F8b34= -github.com/aws/aws-sdk-go-v2/service/cloudwatch v1.39.1/go.mod h1:6cstKfQIguQDuWrHKYhjod025+J7n0AR+azv5t9HYBY= +github.com/aws/aws-sdk-go-v2/service/cloudtrail v1.43.3 h1:stQcRph9IKChCONQNNdcHuqrkH5IZJoaxoz0s/CrehA= +github.com/aws/aws-sdk-go-v2/service/cloudtrail v1.43.3/go.mod h1:ODEcuhq+MDaWP9fpgCPcYMKE12pyK5g5W2U0z0nHEiI= +github.com/aws/aws-sdk-go-v2/service/cloudwatch v1.41.3 h1:U84egbTwR/yYqxyOANV1A9veOz6ZbgEJAN0S2QYDlvo= +github.com/aws/aws-sdk-go-v2/service/cloudwatch v1.41.3/go.mod h1:TqMW1vaXXczuV0O1Wk+8+IZZQg7VusHNmTeJzNz6PK4= github.com/aws/aws-sdk-go-v2/service/cloudwatchlogs v1.36.1 h1:9S1OsS3TCTUwBcK6K6EUYKyEb7sc3lNvf4KJY9WrMfQ= github.com/aws/aws-sdk-go-v2/service/cloudwatchlogs v1.36.1/go.mod h1:u4Wxjs4U9OLN1HDFLAFTnS0mDC8kh23RCV8ctQSxpT0= github.com/aws/aws-sdk-go-v2/service/codeartifact v1.29.0 h1:/y1GIBo5P+egCNRln5okNI3nyDO6r99D35mqTdmFeM0= github.com/aws/aws-sdk-go-v2/service/codeartifact v1.29.0/go.mod h1:XKoFW8gDY8bULuq8+sKHrMqsbnVi9MTkeJmf69ZxoLk= -github.com/aws/aws-sdk-go-v2/service/codebuild v1.39.1 h1:bnzjHm+ogGF+ldBxE/QX4LS8EdmvVmo2crELrUH8Vko= -github.com/aws/aws-sdk-go-v2/service/codebuild v1.39.1/go.mod h1:8M+F8tdWjmhBbEBrYZNEIqyaewVROyMpGbjAE0ezzaE= +github.com/aws/aws-sdk-go-v2/service/codebuild v1.44.3 h1:5/lz4sGdygGJ2+gw24JOFtRdAocXbsKpK1aqyD1xJLk= +github.com/aws/aws-sdk-go-v2/service/codebuild v1.44.3/go.mod h1:gSVnRPxjJD21L+rU0ovZxs6rn0bigG5Rvthy3EDNlMc= github.com/aws/aws-sdk-go-v2/service/codecommit v1.23.1 h1:fUkMJntkDjreA6z/OjWu3Yo6GgflOb89MwJqkiKIhLc= github.com/aws/aws-sdk-go-v2/service/codecommit v1.23.1/go.mod h1:owSVfGgLWi8lpG+Ek9ngwErdBD9WJJJCNGYZDEb0JgM= -github.com/aws/aws-sdk-go-v2/service/codepipeline v1.29.1 h1:AmUVmQ2xPDib5oF4EgCx7+YW6RETtbtFfxhGbHi+EB0= -github.com/aws/aws-sdk-go-v2/service/codepipeline v1.29.1/go.mod h1:na6xq+0NoaHlXbCYTRvrULaHmLNSByUleyJy9euDhtQ= +github.com/aws/aws-sdk-go-v2/service/codepipeline v1.32.3 h1:89/ZuJDR37mdsxy4WqVdMOq2MnLY/7gWvSZlfM+cXus= +github.com/aws/aws-sdk-go-v2/service/codepipeline v1.32.3/go.mod h1:y7TM6E4TCD8+x50VnNbAH3gwGvTu8zR4zTKdwdm4XqQ= github.com/aws/aws-sdk-go-v2/service/cognitoidentity v1.24.1 h1:grnSpw0UYD7mZpV4cbIrHroG5geUkLdZG9Nw6y+2mY4= github.com/aws/aws-sdk-go-v2/service/cognitoidentity v1.24.1/go.mod h1:GjlJPEWhuchMZu+5ANvFJ40v2D/Yf15GKtSQrEii9g8= -github.com/aws/aws-sdk-go-v2/service/cognitoidentityprovider v1.40.1 h1:5jYRvUIEI0LVOUYbI6ixev/ctOb8/0eJDFa6k39cMCk= -github.com/aws/aws-sdk-go-v2/service/cognitoidentityprovider v1.40.1/go.mod h1:im0buuAzIxokGb9JH/bXAhiDxp9OElYL6jSQXTLiRcA= +github.com/aws/aws-sdk-go-v2/service/cognitoidentityprovider v1.45.3 h1:MGNJDvz+5wf1CeBNvdmm2Fs1VEtppI07OqxQkOAtVVg= +github.com/aws/aws-sdk-go-v2/service/cognitoidentityprovider v1.45.3/go.mod h1:h5enb9YgyDSRi4uGwhSJ89n3iTr32JH71pSkS9T2llI= +github.com/aws/aws-sdk-go-v2/service/comprehend v1.34.3 h1:q+IKPIK+M0WdxPoVWwSgFXR3FEqmwOw4wMPk1NZ2qzg= +github.com/aws/aws-sdk-go-v2/service/comprehend v1.34.3/go.mod h1:Jw4CASgF23Mj7I5kYvmySYhA0coJ/XFPowiZzDO/ntI= github.com/aws/aws-sdk-go-v2/service/computeoptimizer v1.36.0 h1:M4beLC7La5LbQmUU+NCp4dOJ+1PDeJB7sxkvMREv5L4= github.com/aws/aws-sdk-go-v2/service/computeoptimizer v1.36.0/go.mod h1:l1VImHHo3aeITpaaUdoeWkUwo6rCKz4Nc4oRYThfP6k= github.com/aws/aws-sdk-go-v2/service/configservice v1.47.1 h1:w1ARKEDr+JYVWNgAJQtZEYI88FS8FKv9aVdg7K67ri4= @@ -137,108 +139,114 @@ github.com/aws/aws-sdk-go-v2/service/directconnect v1.26.0 h1:qA8fSFAItDBarBzz7j github.com/aws/aws-sdk-go-v2/service/directconnect v1.26.0/go.mod h1:kIsVf5ZeE9vMEzzl4itrMtUr4QIzdWnUyYMSpxIL9l0= github.com/aws/aws-sdk-go-v2/service/docdb v1.35.1 h1:ONQmD3KEK/HEN9Fd+DX97tN4spsRb8EigGX+Q2hkefE= github.com/aws/aws-sdk-go-v2/service/docdb v1.35.1/go.mod h1:F8EZZZUOZ0QNB1wiYJ5LQuzQUvXg0RPfMkZfYVglEH8= -github.com/aws/aws-sdk-go-v2/service/dynamodb v1.33.2 h1:ZRxyyP9Tfkf5G9baYHvbd+/GvtKrzh3EBSgvcrkxVzY= -github.com/aws/aws-sdk-go-v2/service/dynamodb v1.33.2/go.mod h1:zU5eWYw3HNkPtcrFwBAdMv3+h3dFpmB0ng7z8wOuSPc= +github.com/aws/aws-sdk-go-v2/service/dynamodb v1.35.3 h1:X4iS+RcIKHkAMQz47nDt/nHxZUCKdnfgw940yluJ29Q= +github.com/aws/aws-sdk-go-v2/service/dynamodb v1.35.3/go.mod h1:k5XW8MoMxsNZ20RJmsokakvENUwQyjv69R9GqrI4xdQ= github.com/aws/aws-sdk-go-v2/service/dynamodbstreams v1.21.1 h1:3NrodkeRcnK301QWIjCV4BibPEQjefanYpQ+0qWWsKQ= github.com/aws/aws-sdk-go-v2/service/dynamodbstreams v1.21.1/go.mod h1:REsB292vC0/tIV3dUQniYqsXj4hwQwV7IZMl7fnbpHU= -github.com/aws/aws-sdk-go-v2/service/ec2 v1.168.0 h1:xOPq0agGC1WMZvFpSZCKEjDVAQnLPZJZGvjuPVF2t9M= -github.com/aws/aws-sdk-go-v2/service/ec2 v1.168.0/go.mod h1:CtLD6CPq9z9dyMxV+H6/M5d9+/ea3dO80um029GXqV0= -github.com/aws/aws-sdk-go-v2/service/ecr v1.30.1 h1:zV3FlyuyPzfyFOXKu6mJW9JBGzdtOgpdlj3va+naOD8= -github.com/aws/aws-sdk-go-v2/service/ecr v1.30.1/go.mod h1:l0zC7cSb2vAH1fr8+BRlolWT9cwlKpbRC8PjW6tyyIU= -github.com/aws/aws-sdk-go-v2/service/ecrpublic v1.25.1 h1:54/7zy+oA2ep9UzWjAtccawCj3ZAXhMXxwBg0yNRxTA= -github.com/aws/aws-sdk-go-v2/service/ecrpublic v1.25.1/go.mod h1:2UjSvHCwdRoPF17osaRvfBXuo32KPSvTlGMii5YbjyU= -github.com/aws/aws-sdk-go-v2/service/ecs v1.44.1 h1:Kc0ubjRMW0nq5Tu2LDhQBOLzP2/oUceZNP0NUfU+MQo= -github.com/aws/aws-sdk-go-v2/service/ecs v1.44.1/go.mod h1:+l39x/ffnRnFeIAe3OzWX6LTv/fkLyo5zNehFgMEwzQ= -github.com/aws/aws-sdk-go-v2/service/efs v1.31.1 h1:cvGFfU0+Wa04EvZ7tjOU5Lfd2RpN5wc9aLIgTTnA1EA= -github.com/aws/aws-sdk-go-v2/service/efs v1.31.1/go.mod h1:KoCfH5bEaBQ2WLZim2slIgtCL1agZ2f9iN/zQBJmxr8= -github.com/aws/aws-sdk-go-v2/service/eks v1.46.0 h1:ZPhHHZtAjVohIGIVjXECPfljcPOQ+hjZ1IpgvjPTJ50= -github.com/aws/aws-sdk-go-v2/service/eks v1.46.0/go.mod h1:p4Yk0zfWEoLvvQ4V6XZrTmAAPzcevNnEsbUR82NAY0w= -github.com/aws/aws-sdk-go-v2/service/elasticache v1.40.1 h1:yJMmaQ3jTpCrsXl0lxQUsvlMZA4/B8ia+99eSbIBjAA= -github.com/aws/aws-sdk-go-v2/service/elasticache v1.40.1/go.mod h1:HfavnpYheVa3TXRxHNZYIM/BMI8hmSbtiSbYxqdri/4= +github.com/aws/aws-sdk-go-v2/service/ec2 v1.179.2 h1:rGBv2N0zWvNTKnxOfbBH4mNM8WMdDNkaxdqtz152G40= +github.com/aws/aws-sdk-go-v2/service/ec2 v1.179.2/go.mod h1:W6sNzs5T4VpZn1Vy+FMKw8s24vt5k6zPJXcNOK0asBo= +github.com/aws/aws-sdk-go-v2/service/ecr v1.35.3 h1:8/vARxqd0Pn2Gqhp+8PxxTm3HttUMR1i1vBBj7MNFfc= +github.com/aws/aws-sdk-go-v2/service/ecr v1.35.3/go.mod h1:oRaGEExKI6Pqcow+Tt7wpJf73/Srcj/CUJv5Eb9QFhg= +github.com/aws/aws-sdk-go-v2/service/ecrpublic v1.26.3 h1:banT9rlPxyfuirbcaMvLk8R/89ffGFesFkxBqA7MkPw= +github.com/aws/aws-sdk-go-v2/service/ecrpublic v1.26.3/go.mod h1:wtQIcTA5qkJq7k+Dx/jdDp+UZ/CU8uatz5K5LgB7QB4= +github.com/aws/aws-sdk-go-v2/service/ecs v1.46.3 h1:BVItlUrorHr7lLLxWKFUVXxwht6IVVqLTQLGc6YLB6U= +github.com/aws/aws-sdk-go-v2/service/ecs v1.46.3/go.mod h1:/IMvyX4u5s4Ed0kzD+vWdPK92zm/q4CN1afJeDCsdhE= +github.com/aws/aws-sdk-go-v2/service/efs v1.32.3 h1:AAYRq28CnLrjq6bN0cYwyOE/mVuSk/mXYJqRYCKZAvw= +github.com/aws/aws-sdk-go-v2/service/efs v1.32.3/go.mod h1:OjGU4D2nV44fe4FnNVY+6rgJVEGhzmVMG3YRhkfNA7U= +github.com/aws/aws-sdk-go-v2/service/eks v1.49.3 h1:4Aq01bwq1RnyMLAgx/6kB8cqvfLlQet5cWY3MVhlsqU= +github.com/aws/aws-sdk-go-v2/service/eks v1.49.3/go.mod h1:QUjwO93Ri00egMAeWw75dviZBM5pECLx0KNeNaBtTIM= +github.com/aws/aws-sdk-go-v2/service/elasticache v1.41.3 h1:hYP4kYiY2RQ8QDXBkIe9xD6B/fDTlGV3inxusAmpXzQ= +github.com/aws/aws-sdk-go-v2/service/elasticache v1.41.3/go.mod h1:EaaOoWGtdLYKuknbTnluNoN+qUUl6uZ6I7+Uwww9nBg= github.com/aws/aws-sdk-go-v2/service/elasticbeanstalk v1.24.1 h1:JQpNrllBoHIKSzwLVFK/XYsUJBhDNvIaYVBQNf/9vk0= github.com/aws/aws-sdk-go-v2/service/elasticbeanstalk v1.24.1/go.mod h1:JuMMy9DnDaLMb0pYz4v0kavMGRd+Me6kn5S9KWIUd4I= -github.com/aws/aws-sdk-go-v2/service/elasticloadbalancing v1.26.1 h1:/x4d5NeeoKJAhyZ5zHnBOaxOSotobVb9mXeprdl363I= -github.com/aws/aws-sdk-go-v2/service/elasticloadbalancing v1.26.1/go.mod h1:Dm9KFhagyV3Ecne6tpYIXWh51N/Q288vpm+0u3P/gbo= -github.com/aws/aws-sdk-go-v2/service/elasticloadbalancingv2 v1.33.1 h1:XuwjSEGfLxo6UJtpJVy/E80GpE1gNclDBv5k1nTQcCs= -github.com/aws/aws-sdk-go-v2/service/elasticloadbalancingv2 v1.33.1/go.mod h1:74D8OQ00uEvvpuG5e4VX+/2v3MC2pltRtzNyXJnEjrI= -github.com/aws/aws-sdk-go-v2/service/elasticsearchservice v1.29.1 h1:XSqXGoV8j2ZAXUQU0aBbAk/pktbcC9FKn8/F2sA58zg= -github.com/aws/aws-sdk-go-v2/service/elasticsearchservice v1.29.1/go.mod h1:eC0gnV0MZwdJBeytsEaFPoQc3huZ+0rNjmXbXbCChrQ= +github.com/aws/aws-sdk-go-v2/service/elasticloadbalancing v1.27.3 h1:6GwGMmJD+KxJ11vqvKX2jtcyfvurkp33SVp6OxYrIJg= +github.com/aws/aws-sdk-go-v2/service/elasticloadbalancing v1.27.3/go.mod h1:A6rhNF3Qz6pn97WX3DcIK7g6ODOCYR7t698ptify9eM= +github.com/aws/aws-sdk-go-v2/service/elasticloadbalancingv2 v1.38.3 h1:Tcyl8egpRWLz/ch9Pmn4kX75WsleGmnq+Kro9IqU3wA= +github.com/aws/aws-sdk-go-v2/service/elasticloadbalancingv2 v1.38.3/go.mod h1:V/sx2Ja18AlrvTGQsilx8CAH0CPm+hpKdT9RbSpceik= +github.com/aws/aws-sdk-go-v2/service/elasticsearchservice v1.31.3 h1:r0S/+4Jj46FVz8rv5SMCIl7TR08jGllS8L/J5efJWEg= +github.com/aws/aws-sdk-go-v2/service/elasticsearchservice v1.31.3/go.mod h1:SBlM+nGd+apEfj1alZOfCD1R0eRu1l07aPLE07NmcIQ= github.com/aws/aws-sdk-go-v2/service/elastictranscoder v1.24.0 h1:wYbZrhTk0fTXAhctRmFTsW+ASnlkO/hBqAAhiwZg/V4= github.com/aws/aws-sdk-go-v2/service/elastictranscoder v1.24.0/go.mod h1:/JTShMs//pjWsWNK2I6Rl0RIfF7P+Y8mK9SOVjJF7kc= github.com/aws/aws-sdk-go-v2/service/emr v1.40.1 h1:wH3N7EEy/KgQFvnH0qnrfAECHvlJ6DPiLlNJUgZEZO0= github.com/aws/aws-sdk-go-v2/service/emr v1.40.1/go.mod h1:mw5LOzaQgE+8Oy0dfhvHeiZTZporvugTccq121K12PQ= -github.com/aws/aws-sdk-go-v2/service/eventbridge v1.33.1 h1:3PRnz+WV+Bc5d9Gx98RvYYJQ32P0KlRUrHMULi3/kjw= -github.com/aws/aws-sdk-go-v2/service/eventbridge v1.33.1/go.mod h1:v4y6Klv2BhCY5bysrjNWKfZc1OSmc7x+fhTg4Bc42KY= -github.com/aws/aws-sdk-go-v2/service/firehose v1.30.1 h1:rUjrt0TdN9J3fXoAR48jQYPZG9CuTFFx8sRvNeewsFA= -github.com/aws/aws-sdk-go-v2/service/firehose v1.30.1/go.mod h1:OfHMrSBBxqqMlNKxYS+qN1iEIlak7LmjQokzFocNdEw= +github.com/aws/aws-sdk-go-v2/service/eventbridge v1.34.3 h1:voc3mmh8nP2y+XobELnq5ge7Om5FFJQ93AnTUTMwgUQ= +github.com/aws/aws-sdk-go-v2/service/eventbridge v1.34.3/go.mod h1:bcL34EfmexE+PLh2o4oC1VFpP82Ev8p4dL0PqdZ13dE= +github.com/aws/aws-sdk-go-v2/service/firehose v1.33.3 h1:imKHVpwVAqly9I2FOFrH8tCgO2mGd4icETW17FsbBO0= +github.com/aws/aws-sdk-go-v2/service/firehose v1.33.3/go.mod h1:tE+sNCaKv8bbkO+ZC6+pW78XLU/gIR3Cpf1u/bvNijE= github.com/aws/aws-sdk-go-v2/service/frauddetector v1.32.1 h1:FyE6+dKblIVjgQAuc0hHvLb7i2D2Z87D5pbUDHOYXVU= github.com/aws/aws-sdk-go-v2/service/frauddetector v1.32.1/go.mod h1:KiafkSloSJJ40l/kF9Yu0DvBQ1ZfZ5CQKqjVr38ExAw= github.com/aws/aws-sdk-go-v2/service/fsx v1.45.1 h1:hmEV5Fx21ckm0e2yYYTzQcbtCpZdUc6JdN1+9juIU/c= github.com/aws/aws-sdk-go-v2/service/fsx v1.45.1/go.mod h1:XHpjnYC3VOwFq9aJw149ZyL2FUhjpMlKL7O8Z3B8gb0= github.com/aws/aws-sdk-go-v2/service/glacier v1.23.1 h1:nUOHgAUOnQth5+fMWgCQiOEqH73fgqmueimUYJE/7rQ= github.com/aws/aws-sdk-go-v2/service/glacier v1.23.1/go.mod h1:29ythAZEVnLPIOCpzENgCzvZLoAHt8S8BHryPpm8EyI= -github.com/aws/aws-sdk-go-v2/service/glue v1.87.1 h1:W4Yfl+F8Vh4cM6y9mjHcJP2T7wQ64+kCUrnTc5iunB4= -github.com/aws/aws-sdk-go-v2/service/glue v1.87.1/go.mod h1:1vtzxi3eS5QgTckpUYUwKp6v+oqBuqD4U0Sukf62duA= +github.com/aws/aws-sdk-go-v2/service/glue v1.99.2 h1:pfX1qky3shRS3rgxkdXKtiNWtMUeGgOEFXEqIdTQYHQ= +github.com/aws/aws-sdk-go-v2/service/glue v1.99.2/go.mod h1:rCyUHLWGaSR9/oQgj2nGKRmPqFwtq3qxL14LkuQdadA= github.com/aws/aws-sdk-go-v2/service/guardduty v1.44.1 h1:0LOU9mO7AI2rjuuO9p8iymDR3jhY91d+P7XEjJkaa7w= github.com/aws/aws-sdk-go-v2/service/guardduty v1.44.1/go.mod h1:pqOGHA5mcb0tdNBQq7QjwhyXebpFvflQ2eU36zxgctM= -github.com/aws/aws-sdk-go-v2/service/iam v1.34.1 h1:BzAfH/XAECH4P7toscHvBbyw9zuaEMT8gzEo40BaLDs= -github.com/aws/aws-sdk-go-v2/service/iam v1.34.1/go.mod h1:gCfCySFdW8/FaTC6jzPwmML5bOUGty9Eq/+SU2PFv0M= +github.com/aws/aws-sdk-go-v2/service/iam v1.36.3 h1:dV9iimLEHKYAz2qTi+tGAD9QCnAG2pLD7HUEHB7m4mI= +github.com/aws/aws-sdk-go-v2/service/iam v1.36.3/go.mod h1:HSvujsK8xeEHMIB18oMXjSfqaN9cVqpo/MtHJIksQRk= github.com/aws/aws-sdk-go-v2/service/identitystore v1.24.1 h1:g2WNVRtXDsxOA+VEMXXzw8gvXFdUrkXehiFsPFzSi9w= github.com/aws/aws-sdk-go-v2/service/identitystore v1.24.1/go.mod h1:XnTkN4iDJq8dN7VBZZDZ5NOEup8V3s/POj4uBlSy574= github.com/aws/aws-sdk-go-v2/service/inspector v1.22.1 h1:COQwAP0shmNsGy8x683mcYJCcLK7yM4Y+5z/fscy9yM= github.com/aws/aws-sdk-go-v2/service/inspector v1.22.1/go.mod h1:1iaPaNFwt2BmSWCuG0LlSmC/SkUiDzeFASiKIsQK9EI= github.com/aws/aws-sdk-go-v2/service/inspector2 v1.27.1 h1:MrCy2Qee++yNI4t0adjhDrVi9xKhpPLiweIUy9HwJIc= github.com/aws/aws-sdk-go-v2/service/inspector2 v1.27.1/go.mod h1:5FPrmv5Cwaq8Fri4puvds50dVPMgGZlU5inTlDs1UJQ= -github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.11.3 h1:dT3MqvGhSoaIhRseqw2I0yH81l7wiR2vjs57O51EAm8= -github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.11.3/go.mod h1:GlAeCkHwugxdHaueRr4nhPuY+WW+gR8UjlcqzPr1SPI= -github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.3.15 h1:2jyRZ9rVIMisyQRnhSS/SqlckveoxXneIumECVFP91Y= -github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.3.15/go.mod h1:bDRG3m382v1KJBk1cKz7wIajg87/61EiiymEyfLvAe0= -github.com/aws/aws-sdk-go-v2/service/internal/endpoint-discovery v1.9.13 h1:TiBHJdrItjSsvfMRMNEPvu4gFqor6aghaQ5mS18i77c= -github.com/aws/aws-sdk-go-v2/service/internal/endpoint-discovery v1.9.13/go.mod h1:XN5B38yJn1XZvhyCeTzU5Ypha6+7UzVGj2w+aN0zn3k= -github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.11.15 h1:I9zMeF107l0rJrpnHpjEiiTSCKYAIw8mALiXcPsGBiA= -github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.11.15/go.mod h1:9xWJ3Q/S6Ojusz1UIkfycgD1mGirJfLLKqq3LPT7WN8= -github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.17.13 h1:Eq2THzHt6P41mpjS2sUzz/3dJYFRqdWZ+vQaEMm98EM= -github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.17.13/go.mod h1:FgwTca6puegxgCInYwGjmd4tB9195Dd6LCuA+8MjpWw= -github.com/aws/aws-sdk-go-v2/service/iot v1.54.1 h1:KzPLheBDB3RfKqQygxbH5eGcsdg2+m8WSxoqu3lCTcE= -github.com/aws/aws-sdk-go-v2/service/iot v1.54.1/go.mod h1:EJP1SO4EqqzQOilb640qcBW1eZGWCrYRjm5Fx96FeLs= -github.com/aws/aws-sdk-go-v2/service/kafka v1.34.1 h1:AgBv2EgMXguYPz1fpSyj51JuC6vXGNP0Wz3NNeHQLog= -github.com/aws/aws-sdk-go-v2/service/kafka v1.34.1/go.mod h1:/iV7HuLjhE4JD+xswkqjipO9tv7EPUbO+1QlaxB6BTA= -github.com/aws/aws-sdk-go-v2/service/kinesis v1.29.1 h1:UIEtjoWh7oqjHXdgdjOP/tinga1uKR9F//tiUNshE7w= -github.com/aws/aws-sdk-go-v2/service/kinesis v1.29.1/go.mod h1:tqz5Yq7ohiQIQ7qrj6e2fWJbT1Owq9zEo78mZb/+eWU= -github.com/aws/aws-sdk-go-v2/service/kms v1.35.1 h1:0gP2OJJT6HM2BYltZ9x+A87OE8LJL96DXeAAdLv3t1M= -github.com/aws/aws-sdk-go-v2/service/kms v1.35.1/go.mod h1:hGONorZkQCfR5DW6l2xdy7zC8vfO0r9pJlwyg6gmGeo= -github.com/aws/aws-sdk-go-v2/service/lambda v1.56.1 h1:d8ff+JrsS+nSjQK1/F8xPgBl/DeVIOzKbT4ElArntlA= -github.com/aws/aws-sdk-go-v2/service/lambda v1.56.1/go.mod h1:+DUS8jDnu671W48h4+Hl6xnNeRiz+TuycnxGz2RCTGg= +github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.11.5 h1:QFASJGfT8wMXtuP3D5CRmMjARHv9ZmzFUMJznHDOY3w= +github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.11.5/go.mod h1:QdZ3OmoIjSX+8D1OPAzPxDfjXASbBMDsz9qvtyIhtik= +github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.3.20 h1:rTWjG6AvWekO2B1LHeM3ktU7MqyX9rzWQ7hgzneZW7E= +github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.3.20/go.mod h1:RGW2DDpVc8hu6Y6yG8G5CHVmVOAn1oV8rNKOHRJyswg= +github.com/aws/aws-sdk-go-v2/service/internal/endpoint-discovery v1.9.19 h1:dOxqOlOEa2e2heC/74+ZzcJOa27+F1aXFZpYgY/4QfA= +github.com/aws/aws-sdk-go-v2/service/internal/endpoint-discovery v1.9.19/go.mod h1:aV6U1beLFvk3qAgognjS3wnGGoDId8hlPEiBsLHXVZE= +github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.11.20 h1:Xbwbmk44URTiHNx6PNo0ujDE6ERlsCKJD3u1zfnzAPg= +github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.11.20/go.mod h1:oAfOFzUB14ltPZj1rWwRc3d/6OgD76R8KlvU3EqM9Fg= +github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.17.18 h1:eb+tFOIl9ZsUe2259/BKPeniKuz4/02zZFH/i4Nf8Rg= +github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.17.18/go.mod h1:GVCC2IJNJTmdlyEsSmofEy7EfJncP7DNnXDzRjJ5Keg= +github.com/aws/aws-sdk-go-v2/service/iot v1.57.3 h1:7mgiOnM9d6CgI3EuyCPTwevkCvBqRGQ4h51QGR0/Yxk= +github.com/aws/aws-sdk-go-v2/service/iot v1.57.3/go.mod h1:wR4yGYW8QdKpmUJgboGVCW7fRSJI+Vi/20fEFHGNAJQ= +github.com/aws/aws-sdk-go-v2/service/kafka v1.37.3 h1:QrMp46glor8p8I0MBM/DqLn3Ljrikd35aUE/vT2ZXRQ= +github.com/aws/aws-sdk-go-v2/service/kafka v1.37.3/go.mod h1:fBPV+Vh4JdtCtsopwBKCqdma75qcOI8SD+MlJU+teXQ= +github.com/aws/aws-sdk-go-v2/service/keyspaces v1.13.3 h1:GPPcWkr8rsEdTRmMXBw9EEAAlT6zVFCmnW3PRpswCtY= +github.com/aws/aws-sdk-go-v2/service/keyspaces v1.13.3/go.mod h1:Sset1/AxzSJ8aosURhyLJm804sZ1cBkgdfhGyidqNO4= +github.com/aws/aws-sdk-go-v2/service/kinesis v1.31.2 h1:BCUoERI55kdfbqgxRnor5oOI8h3EEy/AlETa/UmHQZ0= +github.com/aws/aws-sdk-go-v2/service/kinesis v1.31.2/go.mod h1:/D7NWV/jWRxPDDsSySncYt8JT4QHYeqgiR7r2vP2hYw= +github.com/aws/aws-sdk-go-v2/service/kms v1.36.3 h1:iHi6lC6LfW6SNvB2bixmlOW3WMyWFrHZCWX+P+CCxMk= +github.com/aws/aws-sdk-go-v2/service/kms v1.36.3/go.mod h1:OHmlX4+o0XIlJAQGAHPIy0N9yZcYS/vNG+T7geSNcFw= +github.com/aws/aws-sdk-go-v2/service/lambda v1.62.1 h1:Psp52CBlJtOVDyI4UMCAfovD4spGvdqapsBJxWZe470= +github.com/aws/aws-sdk-go-v2/service/lambda v1.62.1/go.mod h1:mivSaHqW3Atf5TDU1YyujR+HMv+snxCMoYaVd9d30O4= github.com/aws/aws-sdk-go-v2/service/lightsail v1.39.1 h1:OIdINTNLFOqm7t91ew7+CgcIkvDCCTuK4rBuREBAC2Q= github.com/aws/aws-sdk-go-v2/service/lightsail v1.39.1/go.mod h1:nP29+6YQpLvD/o/8SXaaSVFdRdPCpLLZv6MVAFiPqIQ= -github.com/aws/aws-sdk-go-v2/service/mq v1.23.1 h1:TcIIYgAH1voIS33mcUFIdts9qJ4+mzGbnHExAzmjNPM= -github.com/aws/aws-sdk-go-v2/service/mq v1.23.1/go.mod h1:qo6k2hLt3/Oi0fTndXhdMCg005TzoqT313YrYMorrNI= +github.com/aws/aws-sdk-go-v2/service/mq v1.26.3 h1:OR+iWR2e0NgwAf0vcGIKASEe2iLn4ayOJf7+XOGrBlk= +github.com/aws/aws-sdk-go-v2/service/mq v1.26.3/go.mod h1:ECtcnA9ICTtcVS/HTQzg11Fvq/2SxpWSOZhQVfHedtE= github.com/aws/aws-sdk-go-v2/service/mwaa v1.28.1 h1:fzBc0gfOfrlcyP/COVDt8iGVUnQ4FX/qaasEAUeDLy0= github.com/aws/aws-sdk-go-v2/service/mwaa v1.28.1/go.mod h1:a46hMp6jog7U6rhMxmp0wwcGvPTJINQkc6EevZb7SNs= github.com/aws/aws-sdk-go-v2/service/neptune v1.32.1 h1:YmJY3sTbWtEWd47pgRoaL+JjVl7UK+NoyTEgtrm/TaU= github.com/aws/aws-sdk-go-v2/service/neptune v1.32.1/go.mod h1:1915OztjPgW+OP3osT/TVrqYKWUUoHYBk98y2OhV7YQ= -github.com/aws/aws-sdk-go-v2/service/networkfirewall v1.40.1 h1:zWux7BjNg0RtjVeA35hm5GrzQR2kz5ybK/4FS1YW4R0= -github.com/aws/aws-sdk-go-v2/service/networkfirewall v1.40.1/go.mod h1:qYXPjC7eYyNggJfdIFd5JoS4DFOXX1j1beVX3N/3SPY= +github.com/aws/aws-sdk-go-v2/service/networkfirewall v1.42.3 h1:oSjkDYO5jTr0TClWCzhx2ZU9fyfc0tEOaerRGUJDxrI= +github.com/aws/aws-sdk-go-v2/service/networkfirewall v1.42.3/go.mod h1:77c2LfAm2EnD4cFycPjK+xFzCHPvKFSHVE4tgQZdoX0= github.com/aws/aws-sdk-go-v2/service/networkmanager v1.28.0 h1:S6z85qce658vLxeNixXoaG5ik2oiv9E2TnbK1D1f6vk= github.com/aws/aws-sdk-go-v2/service/networkmanager v1.28.0/go.mod h1:p1iFqWXqFUzy8+Tan0OqMiLQv0cf+sXRmSTbal9Z9a8= -github.com/aws/aws-sdk-go-v2/service/organizations v1.30.0 h1:UBZxMASlLL9NmxzeqvMFYgavnXR8dqY8PQPnBURc//0= -github.com/aws/aws-sdk-go-v2/service/organizations v1.30.0/go.mod h1:ZEeCMh1nNfDZyRfCCoeAvqPNSQSF2bcWK5sOgmclQTM= -github.com/aws/aws-sdk-go-v2/service/qldb v1.22.1 h1:gpLL+eTaS4W3jVH88x811rgYLbUeGdtKenQgvZA6nBk= -github.com/aws/aws-sdk-go-v2/service/qldb v1.22.1/go.mod h1:zd8pWnlLZxx2dk3k1ekl9WJOdTZW0v10+lZnPUFztLs= +github.com/aws/aws-sdk-go-v2/service/opensearch v1.40.3 h1:E1oRSUVouFby+zAh7cDwTDEQ0DYajXoEg1du0jVD3SI= +github.com/aws/aws-sdk-go-v2/service/opensearch v1.40.3/go.mod h1:4rB9oWpduMw/+UqL/WdNLJZNF7iAwaJWwJ6GgsQqOjg= +github.com/aws/aws-sdk-go-v2/service/organizations v1.33.1 h1:DOn2tnxukKVl3HVoOnTeG+d3As/CowgF68GdbP0Qpuo= +github.com/aws/aws-sdk-go-v2/service/organizations v1.33.1/go.mod h1:jmnEAD25O7dBF6wdCj8hSdokY3GLszeIZfh5sVoYgFE= +github.com/aws/aws-sdk-go-v2/service/personalize v1.38.3 h1:nzSIQh3mGILoWlHQSYEYihBAC8/+TEjofnyr9zXC6H8= +github.com/aws/aws-sdk-go-v2/service/personalize v1.38.3/go.mod h1:qVWGHwJMlQgmuvi+QxfldutcchLryzfoQ3b3hY2pkw0= +github.com/aws/aws-sdk-go-v2/service/qldb v1.24.3 h1:RzMpW12sPwseA7XQmd0AK4KPfDOIeF2KcSbkUmH7uUM= +github.com/aws/aws-sdk-go-v2/service/qldb v1.24.3/go.mod h1:S6MPWo9u6LAkZV4nmGTUJ2CBeFko8MPiDJLx7tz9Bg8= github.com/aws/aws-sdk-go-v2/service/quicksight v1.65.1 h1:h5dt7ixf8Ftnc8rZr+0obX38uP3+5ZaLWSxbFVqgGSQ= github.com/aws/aws-sdk-go-v2/service/quicksight v1.65.1/go.mod h1:rah/87WxBZgnD1yxf6gJMyKZhtLjdAulZx8eNmyulig= github.com/aws/aws-sdk-go-v2/service/ram v1.26.1 h1:1UcUsMsHB7ZnpcUYNwBTX90hFjIZrhf8Xu00R9Vo+Kg= github.com/aws/aws-sdk-go-v2/service/ram v1.26.1/go.mod h1:e/3wE+afnOAeolpqyg8fKAQK/kKya+ycDW62/X4vjK8= -github.com/aws/aws-sdk-go-v2/service/rds v1.81.2 h1:8hS1TW26euZk4OZtZEYFDLGJ+8MDFRjtKLUBdLFbB64= -github.com/aws/aws-sdk-go-v2/service/rds v1.81.2/go.mod h1:EuF7sZqyUlv+NPw1x2hz0XZDrKfqnSh0qHA84xJ3Unw= -github.com/aws/aws-sdk-go-v2/service/redshift v1.45.1 h1:AdnF43k4XVzTTtVXtqyy2v20RiptDLmUX7ZuokdF5I0= -github.com/aws/aws-sdk-go-v2/service/redshift v1.45.1/go.mod h1:3S2IEN/LSwonlc30Hoyu06jBj/YOz6m+uHffkCJ2D3o= +github.com/aws/aws-sdk-go-v2/service/rds v1.85.2 h1:KDO/FSO8V+zlvnQF6v4nOariw2qwPx5/z2pyb6X7ibk= +github.com/aws/aws-sdk-go-v2/service/rds v1.85.2/go.mod h1:lhiPj6RvoJHWG2STp+k5az55YqGgFLBzkKYdYHgUh9g= +github.com/aws/aws-sdk-go-v2/service/redshift v1.47.3 h1:TRJP6RflPN5A4yRpyXgznsJTJMT46tKigNAKzd7owic= +github.com/aws/aws-sdk-go-v2/service/redshift v1.47.3/go.mod h1:Zco+4iYqPF1u1FXTB0fHaRNRKPi82yw1AHPqJM5pI7A= github.com/aws/aws-sdk-go-v2/service/resiliencehub v1.22.1 h1:RRN4czBy0/b2GHSthjqDU0CDkDZO30DmcI3mM/vsVp4= github.com/aws/aws-sdk-go-v2/service/resiliencehub v1.22.1/go.mod h1:dX24IHVdgw9cWhNi657MVh4ngJ6vY/aOeGYvCT4nF/s= github.com/aws/aws-sdk-go-v2/service/resourcegroups v1.23.1 h1:aR4MioMW7hiNGTcoz8rngzPF7U4oBssCr/N7oaNyr30= github.com/aws/aws-sdk-go-v2/service/resourcegroups v1.23.1/go.mod h1:gCiBxW2zE+VgC/gSU5a0gteSBjqo3uS906dLJoQgItw= -github.com/aws/aws-sdk-go-v2/service/route53 v1.41.1 h1:8evgBTGIqkBj8zWFZrjBExvC1/3Bgod5EHsmwmnHEy4= -github.com/aws/aws-sdk-go-v2/service/route53 v1.41.1/go.mod h1:aIGJVylrqjjBnf2NU2O1oHOOoBDFvHw6hy/GhelYksQ= +github.com/aws/aws-sdk-go-v2/service/route53 v1.44.3 h1:vYmafsIZWxc0EkIovYfjyfekHJogJjnIUXso5o7YPIA= +github.com/aws/aws-sdk-go-v2/service/route53 v1.44.3/go.mod h1:l2ABSKg3AibEJeR/l60cfeGU54UqF3VTgd51pq+vYhU= github.com/aws/aws-sdk-go-v2/service/route53domains v1.24.1 h1:G1w6P2mCgHTsLLjiUAADion/UFrbeSMEAiIpuQZnXQs= github.com/aws/aws-sdk-go-v2/service/route53domains v1.24.1/go.mod h1:c9sryrQoAKXDmxmV4D+5Tfcczro2hDyt93xqoht4KeM= github.com/aws/aws-sdk-go-v2/service/route53recoverycontrolconfig v1.22.1 h1:IciPPVwuC7bwQhXEnkLdcb9umDUEGy9syFjj52OD2EM= @@ -247,26 +255,26 @@ github.com/aws/aws-sdk-go-v2/service/route53recoveryreadiness v1.18.1 h1:UpugIBT github.com/aws/aws-sdk-go-v2/service/route53recoveryreadiness v1.18.1/go.mod h1:C2ew9rtH5eo+KuZUKVUCUku4U4MN21XcUPATtm9VLO0= github.com/aws/aws-sdk-go-v2/service/route53resolver v1.29.1 h1:FKXrnoUVpvnvnSjzEZw6ZI1KsgAqqL4MCVMorDIc1sk= github.com/aws/aws-sdk-go-v2/service/route53resolver v1.29.1/go.mod h1:smC9lwyqjIPl0ucpd8ZF848hVXiYvC3F4oHilm+TPK4= -github.com/aws/aws-sdk-go-v2/service/s3 v1.58.0 h1:4rhV0Hn+bf8IAIUphRX1moBcEvKJipCPmswMCl6Q5mw= -github.com/aws/aws-sdk-go-v2/service/s3 v1.58.0/go.mod h1:hdV0NTYd0RwV4FvNKhKUNbPLZoq9CTr/lke+3I7aCAI= -github.com/aws/aws-sdk-go-v2/service/s3control v1.46.1 h1:PGCbHXY4ykRTP072d2IZvJiFt6mW0RJ8vfFTdk2hLbA= -github.com/aws/aws-sdk-go-v2/service/s3control v1.46.1/go.mod h1:6rKG97PjdiPjxN2IR3yINOjfchz9OMYtkWchgcn6DWY= -github.com/aws/aws-sdk-go-v2/service/sagemaker v1.147.0 h1:9c/FPQabkOTS4v0h5OO6smEyTOWHmLqJjE3VrR6URyU= -github.com/aws/aws-sdk-go-v2/service/sagemaker v1.147.0/go.mod h1:AEggb/iREddAQJ3P+XrWvlL8SGSKg0/IvXlo2m8V5/Q= +github.com/aws/aws-sdk-go-v2/service/s3 v1.63.3 h1:3zt8qqznMuAZWDTDpcwv9Xr11M/lVj2FsRR7oYBt0OA= +github.com/aws/aws-sdk-go-v2/service/s3 v1.63.3/go.mod h1:NLTqRLe3pUNu3nTEHI6XlHLKYmc8fbHUdMxAB6+s41Q= +github.com/aws/aws-sdk-go-v2/service/s3control v1.48.3 h1:+EM+FAM1dlhX0TuKlR7tWSTiazcwQNU/lG6RNBunMyo= +github.com/aws/aws-sdk-go-v2/service/s3control v1.48.3/go.mod h1:OnvclTFylYBzFuko7L/GofARC4xh85D359PjECSqKZM= +github.com/aws/aws-sdk-go-v2/service/sagemaker v1.161.1 h1:YS9lbicBMTMFNH2IczY0KvsukyWvvcEjos8sk/VPLQY= +github.com/aws/aws-sdk-go-v2/service/sagemaker v1.161.1/go.mod h1:Tbr4Z2D/vjAaeWeAlwKLUTwEabATR12YTXcW9HFoSpA= github.com/aws/aws-sdk-go-v2/service/savingsplans v1.20.1 h1:ZpeVqoo85i4brNMFjtQy4jZpXfLIwAK2SjSO0Ux93GM= github.com/aws/aws-sdk-go-v2/service/savingsplans v1.20.1/go.mod h1:xoXt8GCHOl1nG/bV2GznMXvv2LKZ46yElIQ1y/vlkxk= github.com/aws/aws-sdk-go-v2/service/scheduler v1.9.1 h1:A46/5P4BsP3XUqm+ehaa3GzdqSUm63hElZkZjv60pto= github.com/aws/aws-sdk-go-v2/service/scheduler v1.9.1/go.mod h1:YR4bk2KhPbe9Ryes7kRZ/U3kRX6DdfS6xFfUc7RGj5Q= -github.com/aws/aws-sdk-go-v2/service/secretsmanager v1.31.1 h1:fMhrWVym3nTAcf3eT9XsYcfN1kgQ/7ZuVLGHjPAn6Ms= -github.com/aws/aws-sdk-go-v2/service/secretsmanager v1.31.1/go.mod h1:tBCf2+VgRT/Lk9KIlKpTxyCunzxHcP8BFPqcck5I9mM= +github.com/aws/aws-sdk-go-v2/service/secretsmanager v1.33.3 h1:W2M3kQSuN1+FXgV2wMv1JMWPxw/37wBN87QHYDuTV0Y= +github.com/aws/aws-sdk-go-v2/service/secretsmanager v1.33.3/go.mod h1:WyLS5qwXHtjKAONYZq/4ewdd+hcVsa3LBu77Ow5uj3k= github.com/aws/aws-sdk-go-v2/service/securityhub v1.50.2 h1:pgqmUvh3P6i5R+ViKo62HDoThqaJ75MixNSONjDAbvI= github.com/aws/aws-sdk-go-v2/service/securityhub v1.50.2/go.mod h1:0eCNhMYahG4Yj7uBDm9BTq8KoLmBmhxt4d36PfZ/uPU= github.com/aws/aws-sdk-go-v2/service/servicecatalog v1.29.1 h1:3c6NhASRO32jyf/GqggAMy5WDNIhUVEZ/RboGrANEew= github.com/aws/aws-sdk-go-v2/service/servicecatalog v1.29.1/go.mod h1:38wocZWfFQT/Ks/XoeKcGvu7efpAkBkW2hu8q8Kegqc= github.com/aws/aws-sdk-go-v2/service/servicecatalogappregistry v1.27.1 h1:WJR9PhUdNULh+L+C/ByCFFB8ldkTfj4c9HKiWV+esgk= github.com/aws/aws-sdk-go-v2/service/servicecatalogappregistry v1.27.1/go.mod h1:VHl0eZ8oYU2D0/BeBYTO5bJ6V1riuxCBQGEAjF+6Jx0= -github.com/aws/aws-sdk-go-v2/service/servicediscovery v1.30.1 h1:N19/J0IqsoNlkbXLe+JYWLjOyGmRijt6dw0+MaL/9wE= -github.com/aws/aws-sdk-go-v2/service/servicediscovery v1.30.1/go.mod h1:uuMsqZ2ATDqrzaAldWWuEUd9KGqi1NmnjroG6Eoe7W4= +github.com/aws/aws-sdk-go-v2/service/servicediscovery v1.32.3 h1:55Y/RewMJExiMaz4SUl9ZfjgM4Fi/caaN6wVJ+i3lto= +github.com/aws/aws-sdk-go-v2/service/servicediscovery v1.32.3/go.mod h1:hbMVfSdZneCht4UmPOsejDt93QnetQPFuLOOqbuybqs= github.com/aws/aws-sdk-go-v2/service/servicequotas v1.22.1 h1:QsHvqtdy0mGzpg/A+1lZX1ilf05Vuh2rSBzNJ3f3T1I= github.com/aws/aws-sdk-go-v2/service/servicequotas v1.22.1/go.mod h1:PyGv4oTed21K85Eu27j4u/8QyMlMHI0MivoNzziG6fg= github.com/aws/aws-sdk-go-v2/service/ses v1.23.1 h1:XDy5gu6vWlLrR964J3yOoefbuXPEjdMglBqeANCN3Do= @@ -279,20 +287,20 @@ github.com/aws/aws-sdk-go-v2/service/shield v1.26.1 h1:vlqoPRFrhs/djRKnrPNJvzzVL github.com/aws/aws-sdk-go-v2/service/shield v1.26.1/go.mod h1:1aUTOI7FTFp3ng7NH3C0UqDkbofoLb7NLcd/ufvlHdY= github.com/aws/aws-sdk-go-v2/service/signer v1.23.1 h1:H91003y5gB7UfahQ58w6GeMZfiNPTxTarpNj8fAJvfc= github.com/aws/aws-sdk-go-v2/service/signer v1.23.1/go.mod h1:KaQ1Ix0kfyv+PTMN9u3/+VRUeAMi59yzMpTkbQPXNr0= -github.com/aws/aws-sdk-go-v2/service/sns v1.31.1 h1:YeorxrZz8VsQHxSZ7cvbyd8urZP4e8ItAOcNuXjgzRg= -github.com/aws/aws-sdk-go-v2/service/sns v1.31.1/go.mod h1:RmlulELb79KvYsi2kwiSJBHEac5i/bTc0rqyTB0kmh4= -github.com/aws/aws-sdk-go-v2/service/sqs v1.34.1 h1:Tp1oKSfWHE8fTz0H+DuD05cXPJ96Z6Rko0W/dAp7wJ0= -github.com/aws/aws-sdk-go-v2/service/sqs v1.34.1/go.mod h1:5gGM2xv51W5Hkyr3vj7JTEf/b5oOCb7rXcEVbXrcTAU= -github.com/aws/aws-sdk-go-v2/service/ssm v1.51.1 h1:MuFdaoXYgw4CPsiSa2G/T5CGOuSk90lb/eSTa+lRp9I= -github.com/aws/aws-sdk-go-v2/service/ssm v1.51.1/go.mod h1:pC8vyMIahlJIUKdXBto0R+JzoTK7+iEplKqq7DbWodY= -github.com/aws/aws-sdk-go-v2/service/sso v1.22.1 h1:p1GahKIjyMDZtiKoIn0/jAj/TkMzfzndDv5+zi2Mhgc= -github.com/aws/aws-sdk-go-v2/service/sso v1.22.1/go.mod h1:/vWdhoIoYA5hYoPZ6fm7Sv4d8701PiG5VKe8/pPJL60= +github.com/aws/aws-sdk-go-v2/service/sns v1.32.3 h1:LC5JBrEAdJ0SSRLfNcLzOLsfoc3xO/BAsHiUNcQfDI4= +github.com/aws/aws-sdk-go-v2/service/sns v1.32.3/go.mod h1:ZO606Jfatw51c8q29gHVVCnufg2dq3MnmkNLlTZFrkE= +github.com/aws/aws-sdk-go-v2/service/sqs v1.35.3 h1:Lcs658WFW235QuUfpAdxd8RCy8Va2VUA7/U9iIrcjcY= +github.com/aws/aws-sdk-go-v2/service/sqs v1.35.3/go.mod h1:WuGxWQhu2LXoPGA2HBIbotpwhM6T4hAz0Ip/HjdxfJg= +github.com/aws/aws-sdk-go-v2/service/ssm v1.54.3 h1:Ctzev3ppcc46m2FgrLEZhsHMEr1G1lrJcd9Cmoy/QJk= +github.com/aws/aws-sdk-go-v2/service/ssm v1.54.3/go.mod h1:qs3TBNpFEnVubl0WL3jruj7NJMF1RCAPEPQ1f+fLTBE= +github.com/aws/aws-sdk-go-v2/service/sso v1.23.3 h1:rs4JCczF805+FDv2tRhZ1NU0RB2H6ryAvsWPanAr72Y= +github.com/aws/aws-sdk-go-v2/service/sso v1.23.3/go.mod h1:XRlMvmad0ZNL+75C5FYdMvbbLkd6qiqz6foR1nA1PXY= github.com/aws/aws-sdk-go-v2/service/ssoadmin v1.26.1 h1:IB7M3gfihqPbP4oXGenFluKta7S2OWMU5otcvclmA0w= github.com/aws/aws-sdk-go-v2/service/ssoadmin v1.26.1/go.mod h1:N/A1nm/r9ruAvskqhfpLEymbJtLJQV1s4HR9Mn8JUnY= -github.com/aws/aws-sdk-go-v2/service/ssooidc v1.26.2 h1:ORnrOK0C4WmYV/uYt3koHEWBLYsRDwk2Np+eEoyV4Z0= -github.com/aws/aws-sdk-go-v2/service/ssooidc v1.26.2/go.mod h1:xyFHA4zGxgYkdD73VeezHt3vSKEG9EmFnGwoKlP00u4= -github.com/aws/aws-sdk-go-v2/service/sts v1.30.1 h1:+woJ607dllHJQtsnJLi52ycuqHMwlW+Wqm2Ppsfp4nQ= -github.com/aws/aws-sdk-go-v2/service/sts v1.30.1/go.mod h1:jiNR3JqT15Dm+QWq2SRgh0x0bCNSRP2L25+CqPNpJlQ= +github.com/aws/aws-sdk-go-v2/service/ssooidc v1.27.3 h1:S7EPdMVZod8BGKQQPTBK+FcX9g7bKR7c4+HxWqHP7Vg= +github.com/aws/aws-sdk-go-v2/service/ssooidc v1.27.3/go.mod h1:FnvDM4sfa+isJ3kDXIzAB9GAwVSzFzSy97uZ3IsHo4E= +github.com/aws/aws-sdk-go-v2/service/sts v1.31.3 h1:VzudTFrDCIDakXtemR7l6Qzt2+JYsVqo2MxBPt5k8T8= +github.com/aws/aws-sdk-go-v2/service/sts v1.31.3/go.mod h1:yMWe0F+XG0DkRZK5ODZhG7BEFYhLXi2dqGsv6tX0cgI= github.com/aws/aws-sdk-go-v2/service/support v1.23.1 h1:H4qp/mzhZgeScaff2oFwwy3KwjaFpDeIYIWCs8+rJu8= github.com/aws/aws-sdk-go-v2/service/support v1.23.1/go.mod h1:f+3y31YJpykjxaY6/O4Ld0FbztFuhUUMCwub3NdXu4g= github.com/aws/aws-sdk-go-v2/service/timestreamwrite v1.26.1 h1:zmrL3QlVMeFFoSY7eeTxvyVkvXwbzH+4CkNk+IcCQ6c= @@ -303,16 +311,16 @@ github.com/aws/aws-sdk-go-v2/service/waf v1.22.1 h1:tThCZniinFeLPAoazNu7mim/ipCK github.com/aws/aws-sdk-go-v2/service/waf v1.22.1/go.mod h1:4o8nB9c6IGaAzCdx9maPjeKpwAVzEy3f/6yQtbEoBTs= github.com/aws/aws-sdk-go-v2/service/wafregional v1.22.1 h1:au7mSQqu+gxxQuG1P0YCgM0w0OP4Sk7rReHVWtua+dY= github.com/aws/aws-sdk-go-v2/service/wafregional v1.22.1/go.mod h1:wI+EyfF4sTj905uEIaSiflGusqxkizZ8BEsfjgglmCE= -github.com/aws/aws-sdk-go-v2/service/wafv2 v1.50.1 h1:cp9UYbI4IOMNczk/1PeGkUWfZH5xbdPGBgVVJs4MvgE= -github.com/aws/aws-sdk-go-v2/service/wafv2 v1.50.1/go.mod h1:LKpRTYGj4TQXkDRIdcH6U/BdiVSh+IPmXExACuDK+nQ= +github.com/aws/aws-sdk-go-v2/service/wafv2 v1.53.3 h1:8UTvslyRTYXkOzsha3LMpnSCkZ6gx08gm44Sw986DmQ= +github.com/aws/aws-sdk-go-v2/service/wafv2 v1.53.3/go.mod h1:VS4CvMgYBTMwXdqQq7U1AszFZFf3qi+9oDkz6Hm8OmI= github.com/aws/aws-sdk-go-v2/service/wellarchitected v1.31.1 h1:CzuwkrjJx71qGieDJofWaXlGXo7rBqbaC+sbaiuGo/M= github.com/aws/aws-sdk-go-v2/service/wellarchitected v1.31.1/go.mod h1:/nDTaO0dBchAbqwQrPFl81YyuxR8KLcJP67XzIIOrbg= github.com/aws/aws-sdk-go-v2/service/workspaces v1.40.1 h1:B3Y0d+jwez16NFDUGmEhXhx96EuwH07ERfHyMCjwDEQ= github.com/aws/aws-sdk-go-v2/service/workspaces v1.40.1/go.mod h1:u1LDClOljTCdY66v1x8jRqAzqr7f2tYSPbaOv+40PKM= github.com/aws/aws-sdk-go-v2/service/xray v1.26.1 h1:HYDnKTBHT0bDROhdSvrBOWO/hR3dk4zvQBxs1Hy8HsY= github.com/aws/aws-sdk-go-v2/service/xray v1.26.1/go.mod h1:hzagwUFkLbUYjoG391sGdiWWfZacwrwp5GZQQLz1sxg= -github.com/aws/smithy-go v1.20.3 h1:ryHwveWzPV5BIof6fyDvor6V3iUL7nTfiTKXHiW05nE= -github.com/aws/smithy-go v1.20.3/go.mod h1:krry+ya/rV9RDcV/Q16kpu6ypI4K2czasz0NC3qS14E= +github.com/aws/smithy-go v1.21.0 h1:H7L8dtDRk0P1Qm6y0ji7MCYMQObJ5R9CRpyPhRUkLYA= +github.com/aws/smithy-go v1.21.0/go.mod h1:irrKGvNn1InZwb2d7fkIRNucdfwR8R+Ts3wxYa/cJHg= github.com/aymerick/douceur v0.2.0 h1:Mv+mAeH1Q+n9Fr+oyamOlAkUNPWPlA8PPGR0QAaYuPk= github.com/aymerick/douceur v0.2.0/go.mod h1:wlT5vV2O3h55X9m7iVYN0TBM0NH/MmbLnd30/FjWUq4= github.com/bahlo/generic-list-go v0.2.0 h1:5sz/EEAK+ls5wF+NeqDpk5+iNdMDXrh3z3nPnH1Wvgk= @@ -547,13 +555,16 @@ github.com/tdewolff/test v1.0.11-0.20240106005702-7de5f7df4739 h1:IkjBCtQOOjIn03 github.com/tdewolff/test v1.0.11-0.20240106005702-7de5f7df4739/go.mod h1:XPuWBzvdUzhCuxWO1ojpXsyzsA5bFoS3tO/Q3kFuTG8= github.com/thoas/go-funk v0.9.3 h1:7+nAEx3kn5ZJcnDm2Bh23N2yOtweO14bi//dvRtgLpw= github.com/thoas/go-funk v0.9.3/go.mod h1:+IWnUfUmFO1+WVYQWQtIJHeRRdaIyyYglZN7xzUPe4Q= -github.com/tidwall/gjson v1.17.1 h1:wlYEnwqAHgzmhNUFfw7Xalt2JzQvsMx2Se4PcoFCT/U= -github.com/tidwall/gjson v1.17.1/go.mod h1:/wbyibRr2FHMks5tjHJ5F8dMZh3AcwJEMf5vlfC0lxk= +github.com/tidwall/gjson v1.14.2/go.mod h1:/wbyibRr2FHMks5tjHJ5F8dMZh3AcwJEMf5vlfC0lxk= +github.com/tidwall/gjson v1.17.3 h1:bwWLZU7icoKRG+C+0PNwIKC6FCJO/Q3p2pZvuP0jN94= +github.com/tidwall/gjson v1.17.3/go.mod h1:/wbyibRr2FHMks5tjHJ5F8dMZh3AcwJEMf5vlfC0lxk= github.com/tidwall/match v1.1.1 h1:+Ho715JplO36QYgwN9PGYNhgZvoUSc9X2c80KVTi+GA= github.com/tidwall/match v1.1.1/go.mod h1:eRSPERbgtNPcGhD8UCthc6PmLEQXEWd3PRB5JTxsfmM= github.com/tidwall/pretty v1.2.0/go.mod h1:ITEVvHYasfjBbM0u2Pg8T2nJnzm8xPwvNhhsoaGGjNU= github.com/tidwall/pretty v1.2.1 h1:qjsOFOWWQl+N3RsoF5/ssm1pHmJJwhjlSbZ51I6wMl4= github.com/tidwall/pretty v1.2.1/go.mod h1:ITEVvHYasfjBbM0u2Pg8T2nJnzm8xPwvNhhsoaGGjNU= +github.com/tidwall/sjson v1.2.5 h1:kLy8mja+1c9jlljvWTlSazM7cKDRfJuR/bOJhcY5NcY= +github.com/tidwall/sjson v1.2.5/go.mod h1:Fvgq9kS/6ociJEDnK0Fk1cpYF4FIW6ZF7LAe+6jwd28= github.com/twitchyliquid64/golang-asm v0.15.1 h1:SU5vSMR7hnwNxj24w34ZyCi/FmDZTkS4MhqMhdFk5YI= github.com/twitchyliquid64/golang-asm v0.15.1/go.mod h1:a1lVb/DtPvCB8fslRZhAngC2+aY1QWCk3Cedj/Gdt08= github.com/ugorji/go/codec v1.2.12 h1:9LC83zGrHhuUA9l16C9AHXAqEV/2wBQ4nkvumAE65EE= @@ -611,8 +622,8 @@ golang.org/x/arch v0.8.0 h1:3wRIsP3pM4yUptoR96otTUOXI367OS0+c9eeRi9doIc= golang.org/x/arch v0.8.0/go.mod h1:FEVrYAQjsQXMVJ1nsMoVVXPZg6p2JE2mx8psSWTDQys= golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= -golang.org/x/crypto v0.24.0 h1:mnl8DM0o513X8fdIkmyFE/5hTYxbwYOjDS/+rK6qpRI= -golang.org/x/crypto v0.24.0/go.mod h1:Z1PMYSOR5nyMcyAVAIQSKCDwalqy85Aqn1x3Ws4L5DM= +golang.org/x/crypto v0.27.0 h1:GXm2NjJrPaiv/h1tb2UH8QfgC/hOf/+z0p6PT8o1w7A= +golang.org/x/crypto v0.27.0/go.mod h1:1Xngt8kV6Dvbssa53Ziq6Eqn0HqbZi5Z6R0ZpwQzt70= golang.org/x/exp v0.0.0-20240613232115-7f521ea00fb8 h1:yixxcjnhBmY0nkL253HFVIm0JsFHwrHdT3Yh6szTnfY= golang.org/x/exp v0.0.0-20240613232115-7f521ea00fb8/go.mod h1:jj3sYF3dwk5D+ghuXyeI3r5MFf+NT2An6/9dOA95KSI= golang.org/x/mod v0.4.2/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= @@ -624,12 +635,12 @@ golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20210405180319-a5a99cb37ef4/go.mod h1:p54w0d4576C0XHj96bSt6lcn1PtDYWL6XObtHCRCNQM= golang.org/x/net v0.0.0-20211015210444-4f30a5c0130f/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= -golang.org/x/net v0.26.0 h1:soB7SVo0PWrY4vPW/+ay0jKDNScG2X9wFeYlXIvJsOQ= -golang.org/x/net v0.26.0/go.mod h1:5YKkiSynbBIh3p6iOc/vibscux0x38BZDkn8sCUPxHE= +golang.org/x/net v0.29.0 h1:5ORfpBpCs4HzDYoodCDBbwHzdR5UrLBZ3sOnUJmFoHo= +golang.org/x/net v0.29.0/go.mod h1:gLkgy8jTGERgjzMic6DS9+SP0ajcu6Xu3Orq/SpETg0= golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20210220032951-036812b2e83c/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.7.0 h1:YsImfSBoP9QPYL0xyKJPq0gcaJdG3rInoqxTWbfQu9M= -golang.org/x/sync v0.7.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk= +golang.org/x/sync v0.8.0 h1:3NFvSEYkUoMifnESzZl15y791HH1qU2xm6eCJU5ZPXQ= +golang.org/x/sync v0.8.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk= golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20191026070338-33540a1f6037/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= @@ -644,15 +655,15 @@ golang.org/x/sys v0.0.0-20220811171246-fbc7d0a398ab/go.mod h1:oPkhp1MJrh7nUepCBc golang.org/x/sys v0.5.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.12.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.21.0 h1:rF+pYz3DAGSQAxAu1CbC7catZg4ebC4UIeIhKxBZvws= -golang.org/x/sys v0.21.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= +golang.org/x/sys v0.25.0 h1:r+8e+loiHxRqhXVl6ML1nO3l1+oFoWbnlu2Ehimmi34= +golang.org/x/sys v0.25.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= golang.org/x/text v0.3.6/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= golang.org/x/text v0.3.7/go.mod h1:u+2+/6zg+i71rQMx5EYifcz6MCKuco9NR6JIITiCfzQ= -golang.org/x/text v0.16.0 h1:a94ExnEXNtEwYLGJSIUxnWoxoRz/ZcCsV63ROupILh4= -golang.org/x/text v0.16.0/go.mod h1:GhwF1Be+LQoKShO3cGOHzqOgRrGaYc9AvblQOmPVHnI= +golang.org/x/text v0.18.0 h1:XvMDiNzPAl0jr17s6W9lcaIhGUfUORdGCNsuLmPG224= +golang.org/x/text v0.18.0/go.mod h1:BuEKDfySbSR4drPmRPG/7iBdf8hvFMuRexcpahXilzY= golang.org/x/time v0.5.0 h1:o7cqy6amK/52YcAKIPlM3a+Fpj35zvRj2TP+e1xFSfk= golang.org/x/time v0.5.0/go.mod h1:3BpzKBy/shNhVucY/MWOyx10tF3SFh9QdLuxbVysPQM= golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= @@ -668,14 +679,14 @@ golang.org/x/xerrors v0.0.0-20231012003039-104605ab7028 h1:+cNy6SZtPcJQH3LJVLOSm golang.org/x/xerrors v0.0.0-20231012003039-104605ab7028/go.mod h1:NDW/Ps6MPRej6fsCIbMTohpP40sJ/P/vI1MoTEGwX90= gonum.org/v1/gonum v0.15.0 h1:2lYxjRbTYyxkJxlhC+LvJIx3SsANPdRybu1tGj9/OrQ= gonum.org/v1/gonum v0.15.0/go.mod h1:xzZVBJBtS+Mz4q0Yl2LJTk+OxOg4jiXZ7qBoM0uISGo= -google.golang.org/genproto/googleapis/api v0.0.0-20240624140628-dc46fd24d27d h1:Aqf0fiIdUQEj0Gn9mKFFXoQfTTEaNopWpfVyYADxiSg= -google.golang.org/genproto/googleapis/api v0.0.0-20240624140628-dc46fd24d27d/go.mod h1:Od4k8V1LQSizPRUK4OzZ7TBE/20k+jPczUDAEyvn69Y= -google.golang.org/genproto/googleapis/rpc v0.0.0-20240624140628-dc46fd24d27d h1:k3zyW3BYYR30e8v3x0bTDdE9vpYFjZHK+HcyqkrppWk= -google.golang.org/genproto/googleapis/rpc v0.0.0-20240624140628-dc46fd24d27d/go.mod h1:Ue6ibwXGpU+dqIcODieyLOcgj7z8+IcskoNIgZxtrFY= -google.golang.org/grpc v1.64.0 h1:KH3VH9y/MgNQg1dE7b3XfVK0GsPSIzJwdF617gUSbvY= -google.golang.org/grpc v1.64.0/go.mod h1:oxjF8E3FBnjp+/gVFYdWacaLDx9na1aqy9oovLpxQYg= -google.golang.org/protobuf v1.34.2 h1:6xV6lTsCfpGD21XK49h7MhtcApnLqkfYgPcdHftf6hg= -google.golang.org/protobuf v1.34.2/go.mod h1:qYOHts0dSfpeUzUFpOMr/WGzszTmLH+DiWniOlNbLDw= +google.golang.org/genproto/googleapis/api v0.0.0-20241007155032-5fefd90f89a9 h1:T6rh4haD3GVYsgEfWExoCZA2o2FmbNyKpTuAxbEFPTg= +google.golang.org/genproto/googleapis/api v0.0.0-20241007155032-5fefd90f89a9/go.mod h1:wp2WsuBYj6j8wUdo3ToZsdxxixbvQNAHqVJrTgi5E5M= +google.golang.org/genproto/googleapis/rpc v0.0.0-20241007155032-5fefd90f89a9 h1:QCqS/PdaHTSWGvupk2F/ehwHtGc0/GYkT+3GAcR1CCc= +google.golang.org/genproto/googleapis/rpc v0.0.0-20241007155032-5fefd90f89a9/go.mod h1:GX3210XPVPUjJbTUbvwI8f2IpZDMZuPJWDzDuebbviI= +google.golang.org/grpc v1.67.1 h1:zWnc1Vrcno+lHZCOofnIMvycFcc0QRGIzm9dhnDX68E= +google.golang.org/grpc v1.67.1/go.mod h1:1gLDyUQU7CTLJI90u3nXZ9ekeghjeM7pTDZlqFNg2AA= +google.golang.org/protobuf v1.35.1 h1:m3LfL6/Ca+fqnjnlqQXNpFPABW1UD7mjh8KO2mKFytA= +google.golang.org/protobuf v1.35.1/go.mod h1:9fA7Ob0pmnwhb644+1+CVWFRbNajQ6iRojtC/QF5bRE= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/check.v1 v1.0.0-20200902074654-038fdea0a05b/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c h1:Hei/4ADfdWqJk1ZMxUNpqntNwaWcugrBjAiHlqqRiVk= diff --git a/main.go b/main.go index 2e58fe1c..1256695e 100644 --- a/main.go +++ b/main.go @@ -4,7 +4,7 @@ import ( "context" "log" - internalPlugin "github.com/OpsHelmInc/cloudquery/resources/plugin" + internalPlugin "github.com/OpsHelmInc/cloudquery/v2/resources/plugin" "github.com/aws/aws-sdk-go-v2/aws" "github.com/cloudquery/plugin-sdk/v4/serve" ) diff --git a/resources/plugin/client.go b/resources/plugin/client.go index 1a049301..9411f230 100644 --- a/resources/plugin/client.go +++ b/resources/plugin/client.go @@ -5,8 +5,8 @@ import ( "encoding/json" "fmt" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/spec" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/spec" "github.com/aws/aws-sdk-go-v2/aws" "github.com/cloudquery/plugin-sdk/v4/message" "github.com/cloudquery/plugin-sdk/v4/plugin" diff --git a/resources/plugin/plugin.go b/resources/plugin/plugin.go index dcdb1ea2..a3f56220 100644 --- a/resources/plugin/plugin.go +++ b/resources/plugin/plugin.go @@ -4,7 +4,7 @@ import ( "maps" "strings" - "github.com/OpsHelmInc/cloudquery/client/spec" + "github.com/OpsHelmInc/cloudquery/v2/client/spec" "github.com/aws/aws-sdk-go-v2/aws" "github.com/cloudquery/plugin-sdk/v4/caser" "github.com/cloudquery/plugin-sdk/v4/docs" diff --git a/resources/plugin/tables.go b/resources/plugin/tables.go index ac270713..8fc5c2e8 100644 --- a/resources/plugin/tables.go +++ b/resources/plugin/tables.go @@ -3,115 +3,115 @@ package plugin import ( "fmt" - "github.com/OpsHelmInc/cloudquery/resources/services/accessanalyzer" - "github.com/OpsHelmInc/cloudquery/resources/services/acm" - "github.com/OpsHelmInc/cloudquery/resources/services/acmpca" - "github.com/OpsHelmInc/cloudquery/resources/services/amp" - "github.com/OpsHelmInc/cloudquery/resources/services/amplify" - "github.com/OpsHelmInc/cloudquery/resources/services/apigateway" - "github.com/OpsHelmInc/cloudquery/resources/services/apigatewayv2" - "github.com/OpsHelmInc/cloudquery/resources/services/appconfig" - "github.com/OpsHelmInc/cloudquery/resources/services/appflow" - "github.com/OpsHelmInc/cloudquery/resources/services/applicationautoscaling" - "github.com/OpsHelmInc/cloudquery/resources/services/appmesh" - "github.com/OpsHelmInc/cloudquery/resources/services/apprunner" - "github.com/OpsHelmInc/cloudquery/resources/services/appstream" - "github.com/OpsHelmInc/cloudquery/resources/services/appsync" - "github.com/OpsHelmInc/cloudquery/resources/services/athena" - "github.com/OpsHelmInc/cloudquery/resources/services/auditmanager" - "github.com/OpsHelmInc/cloudquery/resources/services/autoscaling" - "github.com/OpsHelmInc/cloudquery/resources/services/backup" - "github.com/OpsHelmInc/cloudquery/resources/services/batch" - "github.com/OpsHelmInc/cloudquery/resources/services/cloudformation" - "github.com/OpsHelmInc/cloudquery/resources/services/cloudfront" - "github.com/OpsHelmInc/cloudquery/resources/services/cloudhsmv2" - "github.com/OpsHelmInc/cloudquery/resources/services/cloudtrail" - "github.com/OpsHelmInc/cloudquery/resources/services/cloudwatch" - "github.com/OpsHelmInc/cloudquery/resources/services/cloudwatchlogs" - "github.com/OpsHelmInc/cloudquery/resources/services/codeartifact" - "github.com/OpsHelmInc/cloudquery/resources/services/codebuild" - "github.com/OpsHelmInc/cloudquery/resources/services/codecommit" - "github.com/OpsHelmInc/cloudquery/resources/services/codepipeline" - "github.com/OpsHelmInc/cloudquery/resources/services/cognito" - "github.com/OpsHelmInc/cloudquery/resources/services/config" - "github.com/OpsHelmInc/cloudquery/resources/services/dax" - "github.com/OpsHelmInc/cloudquery/resources/services/detective" - "github.com/OpsHelmInc/cloudquery/resources/services/directconnect" - "github.com/OpsHelmInc/cloudquery/resources/services/dms" - "github.com/OpsHelmInc/cloudquery/resources/services/docdb" - "github.com/OpsHelmInc/cloudquery/resources/services/dynamodb" - "github.com/OpsHelmInc/cloudquery/resources/services/dynamodbstreams" - "github.com/OpsHelmInc/cloudquery/resources/services/ec2" - "github.com/OpsHelmInc/cloudquery/resources/services/ecr" - "github.com/OpsHelmInc/cloudquery/resources/services/ecrpublic" - "github.com/OpsHelmInc/cloudquery/resources/services/ecs" - "github.com/OpsHelmInc/cloudquery/resources/services/efs" - "github.com/OpsHelmInc/cloudquery/resources/services/eks" - "github.com/OpsHelmInc/cloudquery/resources/services/elasticache" - "github.com/OpsHelmInc/cloudquery/resources/services/elasticbeanstalk" - "github.com/OpsHelmInc/cloudquery/resources/services/elasticsearch" - "github.com/OpsHelmInc/cloudquery/resources/services/elastictranscoder" - "github.com/OpsHelmInc/cloudquery/resources/services/elbv1" - "github.com/OpsHelmInc/cloudquery/resources/services/elbv2" - "github.com/OpsHelmInc/cloudquery/resources/services/emr" - "github.com/OpsHelmInc/cloudquery/resources/services/eventbridge" - "github.com/OpsHelmInc/cloudquery/resources/services/firehose" - "github.com/OpsHelmInc/cloudquery/resources/services/frauddetector" - "github.com/OpsHelmInc/cloudquery/resources/services/fsx" - "github.com/OpsHelmInc/cloudquery/resources/services/glacier" - "github.com/OpsHelmInc/cloudquery/resources/services/glue" - "github.com/OpsHelmInc/cloudquery/resources/services/guardduty" - "github.com/OpsHelmInc/cloudquery/resources/services/iam" - "github.com/OpsHelmInc/cloudquery/resources/services/identitystore" - "github.com/OpsHelmInc/cloudquery/resources/services/inspector" - "github.com/OpsHelmInc/cloudquery/resources/services/inspector2" - "github.com/OpsHelmInc/cloudquery/resources/services/iot" - "github.com/OpsHelmInc/cloudquery/resources/services/kafka" - "github.com/OpsHelmInc/cloudquery/resources/services/kinesis" - "github.com/OpsHelmInc/cloudquery/resources/services/kms" - "github.com/OpsHelmInc/cloudquery/resources/services/lambda" - "github.com/OpsHelmInc/cloudquery/resources/services/lightsail" - "github.com/OpsHelmInc/cloudquery/resources/services/mq" - "github.com/OpsHelmInc/cloudquery/resources/services/mwaa" - "github.com/OpsHelmInc/cloudquery/resources/services/neptune" - "github.com/OpsHelmInc/cloudquery/resources/services/networkfirewall" - "github.com/OpsHelmInc/cloudquery/resources/services/networkmanager" - "github.com/OpsHelmInc/cloudquery/resources/services/organizations" - "github.com/OpsHelmInc/cloudquery/resources/services/qldb" - "github.com/OpsHelmInc/cloudquery/resources/services/quicksight" - "github.com/OpsHelmInc/cloudquery/resources/services/ram" - "github.com/OpsHelmInc/cloudquery/resources/services/rds" - "github.com/OpsHelmInc/cloudquery/resources/services/redshift" - "github.com/OpsHelmInc/cloudquery/resources/services/resiliencehub" - "github.com/OpsHelmInc/cloudquery/resources/services/resourcegroups" - "github.com/OpsHelmInc/cloudquery/resources/services/route53" - "github.com/OpsHelmInc/cloudquery/resources/services/route53recoverycontrolconfig" - "github.com/OpsHelmInc/cloudquery/resources/services/route53recoveryreadiness" - "github.com/OpsHelmInc/cloudquery/resources/services/route53resolver" - "github.com/OpsHelmInc/cloudquery/resources/services/s3" - "github.com/OpsHelmInc/cloudquery/resources/services/sagemaker" - "github.com/OpsHelmInc/cloudquery/resources/services/savingsplans" - "github.com/OpsHelmInc/cloudquery/resources/services/scheduler" - "github.com/OpsHelmInc/cloudquery/resources/services/secretsmanager" - "github.com/OpsHelmInc/cloudquery/resources/services/securityhub" - "github.com/OpsHelmInc/cloudquery/resources/services/servicecatalog" - "github.com/OpsHelmInc/cloudquery/resources/services/servicediscovery" - "github.com/OpsHelmInc/cloudquery/resources/services/ses" - "github.com/OpsHelmInc/cloudquery/resources/services/shield" - "github.com/OpsHelmInc/cloudquery/resources/services/signer" - "github.com/OpsHelmInc/cloudquery/resources/services/sns" - "github.com/OpsHelmInc/cloudquery/resources/services/sqs" - "github.com/OpsHelmInc/cloudquery/resources/services/ssm" - "github.com/OpsHelmInc/cloudquery/resources/services/ssoadmin" - "github.com/OpsHelmInc/cloudquery/resources/services/stepfunctions" - "github.com/OpsHelmInc/cloudquery/resources/services/timestream" - "github.com/OpsHelmInc/cloudquery/resources/services/transfer" - "github.com/OpsHelmInc/cloudquery/resources/services/waf" - "github.com/OpsHelmInc/cloudquery/resources/services/wafregional" - "github.com/OpsHelmInc/cloudquery/resources/services/wafv2" - "github.com/OpsHelmInc/cloudquery/resources/services/wellarchitected" - "github.com/OpsHelmInc/cloudquery/resources/services/workspaces" - "github.com/OpsHelmInc/cloudquery/resources/services/xray" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/accessanalyzer" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/acm" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/acmpca" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/amp" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/amplify" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/apigateway" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/apigatewayv2" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/appconfig" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/appflow" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/applicationautoscaling" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/appmesh" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/apprunner" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/appstream" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/appsync" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/athena" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/auditmanager" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/autoscaling" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/backup" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/batch" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/cloudformation" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/cloudfront" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/cloudhsmv2" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/cloudtrail" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/cloudwatch" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/cloudwatchlogs" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/codeartifact" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/codebuild" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/codecommit" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/codepipeline" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/cognito" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/config" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/dax" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/detective" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/directconnect" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/dms" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/docdb" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/dynamodb" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/dynamodbstreams" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/ec2" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/ecr" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/ecrpublic" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/ecs" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/efs" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/eks" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/elasticache" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/elasticbeanstalk" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/elasticsearch" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/elastictranscoder" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/elbv1" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/elbv2" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/emr" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/eventbridge" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/firehose" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/frauddetector" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/fsx" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/glacier" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/glue" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/guardduty" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/iam" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/identitystore" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/inspector" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/inspector2" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/iot" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/kafka" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/kinesis" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/kms" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/lambda" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/lightsail" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/mq" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/mwaa" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/neptune" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/networkfirewall" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/networkmanager" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/organizations" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/qldb" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/quicksight" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/ram" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/rds" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/redshift" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/resiliencehub" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/resourcegroups" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/route53" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/route53recoverycontrolconfig" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/route53recoveryreadiness" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/route53resolver" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/s3" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/sagemaker" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/savingsplans" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/scheduler" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/secretsmanager" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/securityhub" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/servicecatalog" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/servicediscovery" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/ses" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/shield" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/signer" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/sns" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/sqs" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/ssm" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/ssoadmin" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/stepfunctions" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/timestream" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/transfer" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/waf" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/wafregional" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/wafv2" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/wellarchitected" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/workspaces" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/xray" "github.com/cloudquery/plugin-sdk/v4/schema" "github.com/cloudquery/plugin-sdk/v4/transformers" "github.com/cloudquery/plugin-sdk/v4/types" diff --git a/resources/services/accessanalyzer/analyzer_archive_rules.go b/resources/services/accessanalyzer/analyzer_archive_rules.go index 8256f94d..26b76160 100644 --- a/resources/services/accessanalyzer/analyzer_archive_rules.go +++ b/resources/services/accessanalyzer/analyzer_archive_rules.go @@ -3,7 +3,7 @@ package accessanalyzer import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/accessanalyzer" "github.com/aws/aws-sdk-go-v2/service/accessanalyzer/types" diff --git a/resources/services/accessanalyzer/analyzer_findings.go b/resources/services/accessanalyzer/analyzer_findings.go index 7629e233..87a501db 100644 --- a/resources/services/accessanalyzer/analyzer_findings.go +++ b/resources/services/accessanalyzer/analyzer_findings.go @@ -3,7 +3,7 @@ package accessanalyzer import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/accessanalyzer" "github.com/aws/aws-sdk-go-v2/service/accessanalyzer/types" diff --git a/resources/services/accessanalyzer/analyzers.go b/resources/services/accessanalyzer/analyzers.go index 891519b5..8a9b39e5 100644 --- a/resources/services/accessanalyzer/analyzers.go +++ b/resources/services/accessanalyzer/analyzers.go @@ -3,7 +3,7 @@ package accessanalyzer import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/accessanalyzer" "github.com/aws/aws-sdk-go-v2/service/accessanalyzer/types" diff --git a/resources/services/accessanalyzer/analyzers_mock_test.go b/resources/services/accessanalyzer/analyzers_mock_test.go index ad4b8f06..8bf80183 100644 --- a/resources/services/accessanalyzer/analyzers_mock_test.go +++ b/resources/services/accessanalyzer/analyzers_mock_test.go @@ -3,8 +3,8 @@ package accessanalyzer import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/accessanalyzer" "github.com/aws/aws-sdk-go-v2/service/accessanalyzer/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/acm/certificates.go b/resources/services/acm/certificates.go index 609d37c9..07303c94 100644 --- a/resources/services/acm/certificates.go +++ b/resources/services/acm/certificates.go @@ -3,7 +3,7 @@ package acm import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/acm" "github.com/aws/aws-sdk-go-v2/service/acm/types" diff --git a/resources/services/acm/certificates_mock_test.go b/resources/services/acm/certificates_mock_test.go index cb6a399a..7872bf05 100644 --- a/resources/services/acm/certificates_mock_test.go +++ b/resources/services/acm/certificates_mock_test.go @@ -3,8 +3,8 @@ package acm import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/acm" "github.com/aws/aws-sdk-go-v2/service/acm/types" diff --git a/resources/services/acmpca/certificate_authorities.go b/resources/services/acmpca/certificate_authorities.go index 5aff3072..b66e0a99 100644 --- a/resources/services/acmpca/certificate_authorities.go +++ b/resources/services/acmpca/certificate_authorities.go @@ -3,7 +3,7 @@ package acmpca import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/acmpca" "github.com/aws/aws-sdk-go-v2/service/acmpca/types" diff --git a/resources/services/acmpca/certificate_authorities_mock_test.go b/resources/services/acmpca/certificate_authorities_mock_test.go index 943a3991..4a28f02a 100644 --- a/resources/services/acmpca/certificate_authorities_mock_test.go +++ b/resources/services/acmpca/certificate_authorities_mock_test.go @@ -3,8 +3,8 @@ package acmpca import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/acmpca" "github.com/aws/aws-sdk-go-v2/service/acmpca/types" diff --git a/resources/services/amp/rule_groups_namespaces.go b/resources/services/amp/rule_groups_namespaces.go index 262dc300..d20bf387 100644 --- a/resources/services/amp/rule_groups_namespaces.go +++ b/resources/services/amp/rule_groups_namespaces.go @@ -3,7 +3,7 @@ package amp import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/amp" diff --git a/resources/services/amp/rule_groups_namespaces_mock_test.go b/resources/services/amp/rule_groups_namespaces_mock_test.go index 8fe59a66..37cf4bc8 100644 --- a/resources/services/amp/rule_groups_namespaces_mock_test.go +++ b/resources/services/amp/rule_groups_namespaces_mock_test.go @@ -3,7 +3,7 @@ package amp import ( "testing" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/amp" "github.com/aws/aws-sdk-go-v2/service/amp/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/amp/workspaces.go b/resources/services/amp/workspaces.go index 57578f4e..ff2dbcc7 100644 --- a/resources/services/amp/workspaces.go +++ b/resources/services/amp/workspaces.go @@ -3,7 +3,7 @@ package amp import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/amp" diff --git a/resources/services/amp/workspaces_mock_test.go b/resources/services/amp/workspaces_mock_test.go index cca20144..7dc5c63a 100644 --- a/resources/services/amp/workspaces_mock_test.go +++ b/resources/services/amp/workspaces_mock_test.go @@ -3,8 +3,8 @@ package amp import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/amp" "github.com/aws/aws-sdk-go-v2/service/amp/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/amplify/apps.go b/resources/services/amplify/apps.go index 0bec1f22..e9d66c70 100644 --- a/resources/services/amplify/apps.go +++ b/resources/services/amplify/apps.go @@ -3,7 +3,7 @@ package amplify import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/amplify" diff --git a/resources/services/amplify/apps_mock_test.go b/resources/services/amplify/apps_mock_test.go index ade82a72..77d9fb34 100644 --- a/resources/services/amplify/apps_mock_test.go +++ b/resources/services/amplify/apps_mock_test.go @@ -3,8 +3,8 @@ package amplify import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/amplify" "github.com/aws/aws-sdk-go-v2/service/amplify/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/apigateway/api_keys.go b/resources/services/apigateway/api_keys.go index 45258230..24742926 100644 --- a/resources/services/apigateway/api_keys.go +++ b/resources/services/apigateway/api_keys.go @@ -4,7 +4,7 @@ import ( "context" "fmt" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/aws/arn" diff --git a/resources/services/apigateway/api_keys_mock_test.go b/resources/services/apigateway/api_keys_mock_test.go index b8bb17e2..3dae779f 100644 --- a/resources/services/apigateway/api_keys_mock_test.go +++ b/resources/services/apigateway/api_keys_mock_test.go @@ -3,8 +3,8 @@ package apigateway import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/apigateway" "github.com/aws/aws-sdk-go-v2/service/apigateway/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/apigateway/client_certificates.go b/resources/services/apigateway/client_certificates.go index 23fba2b7..3ebfe9e1 100644 --- a/resources/services/apigateway/client_certificates.go +++ b/resources/services/apigateway/client_certificates.go @@ -4,7 +4,7 @@ import ( "context" "fmt" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/aws/arn" diff --git a/resources/services/apigateway/client_certificates_mock_test.go b/resources/services/apigateway/client_certificates_mock_test.go index e8ec07bb..70383797 100644 --- a/resources/services/apigateway/client_certificates_mock_test.go +++ b/resources/services/apigateway/client_certificates_mock_test.go @@ -3,8 +3,8 @@ package apigateway import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/apigateway" "github.com/aws/aws-sdk-go-v2/service/apigateway/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/apigateway/domain_name_base_path_mappings.go b/resources/services/apigateway/domain_name_base_path_mappings.go index e4657ea4..e53cf208 100644 --- a/resources/services/apigateway/domain_name_base_path_mappings.go +++ b/resources/services/apigateway/domain_name_base_path_mappings.go @@ -4,7 +4,7 @@ import ( "context" "fmt" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/aws/arn" diff --git a/resources/services/apigateway/domain_names.go b/resources/services/apigateway/domain_names.go index 80d2f459..7779007a 100644 --- a/resources/services/apigateway/domain_names.go +++ b/resources/services/apigateway/domain_names.go @@ -4,7 +4,7 @@ import ( "context" "fmt" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/aws/arn" diff --git a/resources/services/apigateway/domain_names_mock_test.go b/resources/services/apigateway/domain_names_mock_test.go index 4cc454bf..799b0152 100644 --- a/resources/services/apigateway/domain_names_mock_test.go +++ b/resources/services/apigateway/domain_names_mock_test.go @@ -3,8 +3,8 @@ package apigateway import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/apigateway" "github.com/aws/aws-sdk-go-v2/service/apigateway/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/apigateway/rest_api_authorizers.go b/resources/services/apigateway/rest_api_authorizers.go index 7569a294..3883f311 100644 --- a/resources/services/apigateway/rest_api_authorizers.go +++ b/resources/services/apigateway/rest_api_authorizers.go @@ -4,7 +4,7 @@ import ( "context" "fmt" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/aws/arn" diff --git a/resources/services/apigateway/rest_api_deployments.go b/resources/services/apigateway/rest_api_deployments.go index 91cf491f..79b333a9 100644 --- a/resources/services/apigateway/rest_api_deployments.go +++ b/resources/services/apigateway/rest_api_deployments.go @@ -4,7 +4,7 @@ import ( "context" "fmt" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/aws/arn" diff --git a/resources/services/apigateway/rest_api_documentation_parts.go b/resources/services/apigateway/rest_api_documentation_parts.go index 1bf8656e..c46adab3 100644 --- a/resources/services/apigateway/rest_api_documentation_parts.go +++ b/resources/services/apigateway/rest_api_documentation_parts.go @@ -4,7 +4,7 @@ import ( "context" "fmt" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/aws/arn" diff --git a/resources/services/apigateway/rest_api_documentation_versions.go b/resources/services/apigateway/rest_api_documentation_versions.go index 1ba0d682..6163c1a4 100644 --- a/resources/services/apigateway/rest_api_documentation_versions.go +++ b/resources/services/apigateway/rest_api_documentation_versions.go @@ -4,7 +4,7 @@ import ( "context" "fmt" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/aws/arn" diff --git a/resources/services/apigateway/rest_api_gateway_responses.go b/resources/services/apigateway/rest_api_gateway_responses.go index a2318c7b..f070ae4d 100644 --- a/resources/services/apigateway/rest_api_gateway_responses.go +++ b/resources/services/apigateway/rest_api_gateway_responses.go @@ -4,7 +4,7 @@ import ( "context" "fmt" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/aws/arn" diff --git a/resources/services/apigateway/rest_api_models.go b/resources/services/apigateway/rest_api_models.go index 197cb6eb..b528a868 100644 --- a/resources/services/apigateway/rest_api_models.go +++ b/resources/services/apigateway/rest_api_models.go @@ -4,7 +4,7 @@ import ( "context" "fmt" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/aws/arn" diff --git a/resources/services/apigateway/rest_api_request_validators.go b/resources/services/apigateway/rest_api_request_validators.go index 7c6a4ca4..c647b186 100644 --- a/resources/services/apigateway/rest_api_request_validators.go +++ b/resources/services/apigateway/rest_api_request_validators.go @@ -4,7 +4,7 @@ import ( "context" "fmt" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/aws/arn" diff --git a/resources/services/apigateway/rest_api_resource_method_integration.go b/resources/services/apigateway/rest_api_resource_method_integration.go index e86a5700..345e2b2c 100644 --- a/resources/services/apigateway/rest_api_resource_method_integration.go +++ b/resources/services/apigateway/rest_api_resource_method_integration.go @@ -4,7 +4,7 @@ import ( "context" "fmt" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/aws/arn" diff --git a/resources/services/apigateway/rest_api_resource_methods.go b/resources/services/apigateway/rest_api_resource_methods.go index 3e1bfb00..f9505d73 100644 --- a/resources/services/apigateway/rest_api_resource_methods.go +++ b/resources/services/apigateway/rest_api_resource_methods.go @@ -4,7 +4,7 @@ import ( "context" "fmt" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/aws/arn" diff --git a/resources/services/apigateway/rest_api_resources.go b/resources/services/apigateway/rest_api_resources.go index 922a6f07..f201cc78 100644 --- a/resources/services/apigateway/rest_api_resources.go +++ b/resources/services/apigateway/rest_api_resources.go @@ -4,7 +4,7 @@ import ( "context" "fmt" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/aws/arn" diff --git a/resources/services/apigateway/rest_api_stages.go b/resources/services/apigateway/rest_api_stages.go index a1b4eb17..a242685d 100644 --- a/resources/services/apigateway/rest_api_stages.go +++ b/resources/services/apigateway/rest_api_stages.go @@ -4,7 +4,7 @@ import ( "context" "fmt" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/aws/arn" diff --git a/resources/services/apigateway/rest_apis.go b/resources/services/apigateway/rest_apis.go index da34aeb8..f81f4fa1 100644 --- a/resources/services/apigateway/rest_apis.go +++ b/resources/services/apigateway/rest_apis.go @@ -4,7 +4,7 @@ import ( "context" "fmt" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/aws/arn" diff --git a/resources/services/apigateway/rest_apis_mock_test.go b/resources/services/apigateway/rest_apis_mock_test.go index d4052c95..a1c53e41 100644 --- a/resources/services/apigateway/rest_apis_mock_test.go +++ b/resources/services/apigateway/rest_apis_mock_test.go @@ -3,8 +3,8 @@ package apigateway import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/apigateway" "github.com/aws/aws-sdk-go-v2/service/apigateway/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/apigateway/usage_plan_keys.go b/resources/services/apigateway/usage_plan_keys.go index 51907ce1..0d018761 100644 --- a/resources/services/apigateway/usage_plan_keys.go +++ b/resources/services/apigateway/usage_plan_keys.go @@ -1,7 +1,7 @@ package apigateway import ( - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/apigateway/types" "github.com/cloudquery/plugin-sdk/v4/schema" diff --git a/resources/services/apigateway/usage_plans.go b/resources/services/apigateway/usage_plans.go index 76d3f44f..2992b2cc 100644 --- a/resources/services/apigateway/usage_plans.go +++ b/resources/services/apigateway/usage_plans.go @@ -4,7 +4,7 @@ import ( "context" "fmt" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/aws/arn" diff --git a/resources/services/apigateway/usage_plans_mock_test.go b/resources/services/apigateway/usage_plans_mock_test.go index 60a89757..ce30f63f 100644 --- a/resources/services/apigateway/usage_plans_mock_test.go +++ b/resources/services/apigateway/usage_plans_mock_test.go @@ -3,8 +3,8 @@ package apigateway import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/apigateway" "github.com/aws/aws-sdk-go-v2/service/apigateway/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/apigateway/vpc_links.go b/resources/services/apigateway/vpc_links.go index c43dea71..54c4fbd2 100644 --- a/resources/services/apigateway/vpc_links.go +++ b/resources/services/apigateway/vpc_links.go @@ -4,7 +4,7 @@ import ( "context" "fmt" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/aws/arn" diff --git a/resources/services/apigateway/vpc_links_mock_test.go b/resources/services/apigateway/vpc_links_mock_test.go index a579a6be..89c40252 100644 --- a/resources/services/apigateway/vpc_links_mock_test.go +++ b/resources/services/apigateway/vpc_links_mock_test.go @@ -3,8 +3,8 @@ package apigateway import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/apigateway" "github.com/aws/aws-sdk-go-v2/service/apigateway/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/apigatewayv2/api_authorizers.go b/resources/services/apigatewayv2/api_authorizers.go index 7f1c6290..2d8bb3ab 100644 --- a/resources/services/apigatewayv2/api_authorizers.go +++ b/resources/services/apigatewayv2/api_authorizers.go @@ -4,7 +4,7 @@ import ( "context" "fmt" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/aws/arn" diff --git a/resources/services/apigatewayv2/api_deployments.go b/resources/services/apigatewayv2/api_deployments.go index 242dcbff..49b43d65 100644 --- a/resources/services/apigatewayv2/api_deployments.go +++ b/resources/services/apigatewayv2/api_deployments.go @@ -4,7 +4,7 @@ import ( "context" "fmt" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/aws/arn" diff --git a/resources/services/apigatewayv2/api_integration_responses.go b/resources/services/apigatewayv2/api_integration_responses.go index 3188a092..5becfc03 100644 --- a/resources/services/apigatewayv2/api_integration_responses.go +++ b/resources/services/apigatewayv2/api_integration_responses.go @@ -4,7 +4,7 @@ import ( "context" "fmt" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/aws/arn" diff --git a/resources/services/apigatewayv2/api_integrations.go b/resources/services/apigatewayv2/api_integrations.go index a7de23ff..055d1f2e 100644 --- a/resources/services/apigatewayv2/api_integrations.go +++ b/resources/services/apigatewayv2/api_integrations.go @@ -4,7 +4,7 @@ import ( "context" "fmt" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/aws/arn" diff --git a/resources/services/apigatewayv2/api_models.go b/resources/services/apigatewayv2/api_models.go index 678e3b47..27a1f41d 100644 --- a/resources/services/apigatewayv2/api_models.go +++ b/resources/services/apigatewayv2/api_models.go @@ -4,7 +4,7 @@ import ( "context" "fmt" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/aws/arn" diff --git a/resources/services/apigatewayv2/api_route_responses.go b/resources/services/apigatewayv2/api_route_responses.go index 36016345..610a0d50 100644 --- a/resources/services/apigatewayv2/api_route_responses.go +++ b/resources/services/apigatewayv2/api_route_responses.go @@ -4,7 +4,7 @@ import ( "context" "fmt" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/aws/arn" diff --git a/resources/services/apigatewayv2/api_routes.go b/resources/services/apigatewayv2/api_routes.go index 26494698..b91a5c9c 100644 --- a/resources/services/apigatewayv2/api_routes.go +++ b/resources/services/apigatewayv2/api_routes.go @@ -4,7 +4,7 @@ import ( "context" "fmt" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/aws/arn" diff --git a/resources/services/apigatewayv2/api_stages.go b/resources/services/apigatewayv2/api_stages.go index bfc9035f..167a7a13 100644 --- a/resources/services/apigatewayv2/api_stages.go +++ b/resources/services/apigatewayv2/api_stages.go @@ -4,7 +4,7 @@ import ( "context" "fmt" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/aws/arn" diff --git a/resources/services/apigatewayv2/apis.go b/resources/services/apigatewayv2/apis.go index 32c7d190..114c0cf5 100644 --- a/resources/services/apigatewayv2/apis.go +++ b/resources/services/apigatewayv2/apis.go @@ -4,7 +4,7 @@ import ( "context" "fmt" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/aws/arn" diff --git a/resources/services/apigatewayv2/apis_mock_test.go b/resources/services/apigatewayv2/apis_mock_test.go index 728d5e31..eb850076 100644 --- a/resources/services/apigatewayv2/apis_mock_test.go +++ b/resources/services/apigatewayv2/apis_mock_test.go @@ -3,8 +3,8 @@ package apigatewayv2 import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/apigatewayv2" "github.com/aws/aws-sdk-go-v2/service/apigatewayv2/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/apigatewayv2/domain_name_rest_api_mappings.go b/resources/services/apigatewayv2/domain_name_rest_api_mappings.go index ee83018f..7ba176d0 100644 --- a/resources/services/apigatewayv2/domain_name_rest_api_mappings.go +++ b/resources/services/apigatewayv2/domain_name_rest_api_mappings.go @@ -4,7 +4,7 @@ import ( "context" "fmt" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/aws/arn" diff --git a/resources/services/apigatewayv2/domain_names.go b/resources/services/apigatewayv2/domain_names.go index 113ef10a..c7021e51 100644 --- a/resources/services/apigatewayv2/domain_names.go +++ b/resources/services/apigatewayv2/domain_names.go @@ -4,7 +4,7 @@ import ( "context" "fmt" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/aws/arn" diff --git a/resources/services/apigatewayv2/domain_names_mock_test.go b/resources/services/apigatewayv2/domain_names_mock_test.go index 5a32793a..30d26786 100644 --- a/resources/services/apigatewayv2/domain_names_mock_test.go +++ b/resources/services/apigatewayv2/domain_names_mock_test.go @@ -3,8 +3,8 @@ package apigatewayv2 import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/apigatewayv2" "github.com/aws/aws-sdk-go-v2/service/apigatewayv2/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/apigatewayv2/vpc_links.go b/resources/services/apigatewayv2/vpc_links.go index 4e52d24c..b30e67ab 100644 --- a/resources/services/apigatewayv2/vpc_links.go +++ b/resources/services/apigatewayv2/vpc_links.go @@ -4,7 +4,7 @@ import ( "context" "fmt" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/aws/arn" diff --git a/resources/services/apigatewayv2/vpc_links_mock_test.go b/resources/services/apigatewayv2/vpc_links_mock_test.go index 4d65e8b5..e8216d36 100644 --- a/resources/services/apigatewayv2/vpc_links_mock_test.go +++ b/resources/services/apigatewayv2/vpc_links_mock_test.go @@ -3,8 +3,8 @@ package apigatewayv2 import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/apigatewayv2" "github.com/aws/aws-sdk-go-v2/service/apigatewayv2/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/appconfig/applications.go b/resources/services/appconfig/applications.go index 2e921320..9ae4d074 100644 --- a/resources/services/appconfig/applications.go +++ b/resources/services/appconfig/applications.go @@ -4,7 +4,7 @@ import ( "context" "fmt" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/aws/arn" diff --git a/resources/services/appconfig/applications_mock_test.go b/resources/services/appconfig/applications_mock_test.go index 34c1d97e..cf375cc9 100644 --- a/resources/services/appconfig/applications_mock_test.go +++ b/resources/services/appconfig/applications_mock_test.go @@ -3,8 +3,8 @@ package appconfig import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/appconfig" "github.com/aws/aws-sdk-go-v2/service/appconfig/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/appconfig/configuration_profiles.go b/resources/services/appconfig/configuration_profiles.go index 836b79d4..d0bbd251 100644 --- a/resources/services/appconfig/configuration_profiles.go +++ b/resources/services/appconfig/configuration_profiles.go @@ -4,7 +4,7 @@ import ( "context" "fmt" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/aws/arn" diff --git a/resources/services/appconfig/deployment_strategies.go b/resources/services/appconfig/deployment_strategies.go index df234967..ac26fb1c 100644 --- a/resources/services/appconfig/deployment_strategies.go +++ b/resources/services/appconfig/deployment_strategies.go @@ -4,7 +4,7 @@ import ( "context" "fmt" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/aws/arn" diff --git a/resources/services/appconfig/deployment_strategies_mock_test.go b/resources/services/appconfig/deployment_strategies_mock_test.go index cd56815c..eb1415b3 100644 --- a/resources/services/appconfig/deployment_strategies_mock_test.go +++ b/resources/services/appconfig/deployment_strategies_mock_test.go @@ -3,8 +3,8 @@ package appconfig import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/appconfig" "github.com/aws/aws-sdk-go-v2/service/appconfig/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/appconfig/environments.go b/resources/services/appconfig/environments.go index 864fbf7e..fe6848dd 100644 --- a/resources/services/appconfig/environments.go +++ b/resources/services/appconfig/environments.go @@ -4,7 +4,7 @@ import ( "context" "fmt" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/aws/arn" diff --git a/resources/services/appconfig/hosted_config_versions.go b/resources/services/appconfig/hosted_config_versions.go index 64474e0f..908d2b0a 100644 --- a/resources/services/appconfig/hosted_config_versions.go +++ b/resources/services/appconfig/hosted_config_versions.go @@ -4,7 +4,7 @@ import ( "context" "fmt" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/aws/arn" diff --git a/resources/services/appflow/flows.go b/resources/services/appflow/flows.go index 650882f6..30751b4b 100644 --- a/resources/services/appflow/flows.go +++ b/resources/services/appflow/flows.go @@ -3,7 +3,7 @@ package appflow import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/appflow" "github.com/aws/aws-sdk-go-v2/service/appflow/types" diff --git a/resources/services/appflow/flows_mock_test.go b/resources/services/appflow/flows_mock_test.go index c54a7c2b..5e8ea9c0 100644 --- a/resources/services/appflow/flows_mock_test.go +++ b/resources/services/appflow/flows_mock_test.go @@ -3,8 +3,8 @@ package appflow import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/appflow" "github.com/aws/aws-sdk-go-v2/service/appflow/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/applicationautoscaling/policies.go b/resources/services/applicationautoscaling/policies.go index c9241510..0db4ecac 100644 --- a/resources/services/applicationautoscaling/policies.go +++ b/resources/services/applicationautoscaling/policies.go @@ -3,7 +3,7 @@ package applicationautoscaling import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/applicationautoscaling" "github.com/aws/aws-sdk-go-v2/service/applicationautoscaling/types" diff --git a/resources/services/applicationautoscaling/policies_mock_test.go b/resources/services/applicationautoscaling/policies_mock_test.go index eccf1a46..d0efc15f 100644 --- a/resources/services/applicationautoscaling/policies_mock_test.go +++ b/resources/services/applicationautoscaling/policies_mock_test.go @@ -3,8 +3,8 @@ package applicationautoscaling import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/applicationautoscaling" "github.com/aws/aws-sdk-go-v2/service/applicationautoscaling/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/applicationautoscaling/scalable_targets.go b/resources/services/applicationautoscaling/scalable_targets.go index 861fcac0..2bd7c525 100644 --- a/resources/services/applicationautoscaling/scalable_targets.go +++ b/resources/services/applicationautoscaling/scalable_targets.go @@ -3,7 +3,7 @@ package applicationautoscaling import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/applicationautoscaling" "github.com/aws/aws-sdk-go-v2/service/applicationautoscaling/types" diff --git a/resources/services/applicationautoscaling/scalable_targets_mock_test.go b/resources/services/applicationautoscaling/scalable_targets_mock_test.go index b215805f..cb447e9e 100644 --- a/resources/services/applicationautoscaling/scalable_targets_mock_test.go +++ b/resources/services/applicationautoscaling/scalable_targets_mock_test.go @@ -3,8 +3,8 @@ package applicationautoscaling import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/applicationautoscaling" "github.com/aws/aws-sdk-go-v2/service/applicationautoscaling/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/applicationautoscaling/scheduled_actions.go b/resources/services/applicationautoscaling/scheduled_actions.go index a5d5abda..cd064584 100644 --- a/resources/services/applicationautoscaling/scheduled_actions.go +++ b/resources/services/applicationautoscaling/scheduled_actions.go @@ -3,7 +3,7 @@ package applicationautoscaling import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/applicationautoscaling" "github.com/aws/aws-sdk-go-v2/service/applicationautoscaling/types" diff --git a/resources/services/applicationautoscaling/scheduled_actions_mock_test.go b/resources/services/applicationautoscaling/scheduled_actions_mock_test.go index ad2ecee0..09c9a6e3 100644 --- a/resources/services/applicationautoscaling/scheduled_actions_mock_test.go +++ b/resources/services/applicationautoscaling/scheduled_actions_mock_test.go @@ -3,8 +3,8 @@ package applicationautoscaling import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/applicationautoscaling" "github.com/aws/aws-sdk-go-v2/service/applicationautoscaling/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/appmesh/meshes.go b/resources/services/appmesh/meshes.go index 2d876d74..d78e008c 100644 --- a/resources/services/appmesh/meshes.go +++ b/resources/services/appmesh/meshes.go @@ -3,7 +3,7 @@ package appmesh import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/appmesh" "github.com/aws/aws-sdk-go-v2/service/appmesh/types" diff --git a/resources/services/appmesh/meshes_mock_test.go b/resources/services/appmesh/meshes_mock_test.go index a352b869..36ebbded 100644 --- a/resources/services/appmesh/meshes_mock_test.go +++ b/resources/services/appmesh/meshes_mock_test.go @@ -3,8 +3,8 @@ package appmesh import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/appmesh" "github.com/aws/aws-sdk-go-v2/service/appmesh/types" diff --git a/resources/services/appmesh/virtual_gateways.go b/resources/services/appmesh/virtual_gateways.go index 87d27a4d..83f8b763 100644 --- a/resources/services/appmesh/virtual_gateways.go +++ b/resources/services/appmesh/virtual_gateways.go @@ -3,7 +3,7 @@ package appmesh import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/appmesh" "github.com/aws/aws-sdk-go-v2/service/appmesh/types" diff --git a/resources/services/appmesh/virtual_nodes.go b/resources/services/appmesh/virtual_nodes.go index 81cd0de1..e230d8c7 100644 --- a/resources/services/appmesh/virtual_nodes.go +++ b/resources/services/appmesh/virtual_nodes.go @@ -3,7 +3,7 @@ package appmesh import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/appmesh" "github.com/aws/aws-sdk-go-v2/service/appmesh/types" diff --git a/resources/services/appmesh/virtual_routers.go b/resources/services/appmesh/virtual_routers.go index 949a64f8..f542ecbb 100644 --- a/resources/services/appmesh/virtual_routers.go +++ b/resources/services/appmesh/virtual_routers.go @@ -3,7 +3,7 @@ package appmesh import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/appmesh" "github.com/aws/aws-sdk-go-v2/service/appmesh/types" diff --git a/resources/services/appmesh/virtual_services.go b/resources/services/appmesh/virtual_services.go index 5b42b0cd..d7ed7421 100644 --- a/resources/services/appmesh/virtual_services.go +++ b/resources/services/appmesh/virtual_services.go @@ -3,7 +3,7 @@ package appmesh import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/appmesh" "github.com/aws/aws-sdk-go-v2/service/appmesh/types" diff --git a/resources/services/apprunner/auto_scaling_configuration_mock_test.go b/resources/services/apprunner/auto_scaling_configuration_mock_test.go index d166d4dd..2876970d 100644 --- a/resources/services/apprunner/auto_scaling_configuration_mock_test.go +++ b/resources/services/apprunner/auto_scaling_configuration_mock_test.go @@ -3,8 +3,8 @@ package apprunner import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/apprunner" "github.com/aws/aws-sdk-go-v2/service/apprunner/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/apprunner/auto_scaling_configurations.go b/resources/services/apprunner/auto_scaling_configurations.go index 14f71357..df2ff678 100644 --- a/resources/services/apprunner/auto_scaling_configurations.go +++ b/resources/services/apprunner/auto_scaling_configurations.go @@ -3,7 +3,7 @@ package apprunner import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/apprunner" "github.com/aws/aws-sdk-go-v2/service/apprunner/types" diff --git a/resources/services/apprunner/connections.go b/resources/services/apprunner/connections.go index c9312356..851eb48f 100644 --- a/resources/services/apprunner/connections.go +++ b/resources/services/apprunner/connections.go @@ -3,7 +3,7 @@ package apprunner import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/apprunner" "github.com/aws/aws-sdk-go-v2/service/apprunner/types" diff --git a/resources/services/apprunner/connections_mock_test.go b/resources/services/apprunner/connections_mock_test.go index 57a6067d..fdbab753 100644 --- a/resources/services/apprunner/connections_mock_test.go +++ b/resources/services/apprunner/connections_mock_test.go @@ -3,8 +3,8 @@ package apprunner import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/apprunner" "github.com/aws/aws-sdk-go-v2/service/apprunner/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/apprunner/custom_domains.go b/resources/services/apprunner/custom_domains.go index 2f211022..a291c75e 100644 --- a/resources/services/apprunner/custom_domains.go +++ b/resources/services/apprunner/custom_domains.go @@ -3,7 +3,7 @@ package apprunner import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/apprunner" "github.com/aws/aws-sdk-go-v2/service/apprunner/types" diff --git a/resources/services/apprunner/observability_configuration_mock_test.go b/resources/services/apprunner/observability_configuration_mock_test.go index 2653ec71..93668d30 100644 --- a/resources/services/apprunner/observability_configuration_mock_test.go +++ b/resources/services/apprunner/observability_configuration_mock_test.go @@ -3,8 +3,8 @@ package apprunner import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/apprunner" "github.com/aws/aws-sdk-go-v2/service/apprunner/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/apprunner/observability_configurations.go b/resources/services/apprunner/observability_configurations.go index c124f021..0d93c0ed 100644 --- a/resources/services/apprunner/observability_configurations.go +++ b/resources/services/apprunner/observability_configurations.go @@ -3,7 +3,7 @@ package apprunner import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/apprunner" "github.com/aws/aws-sdk-go-v2/service/apprunner/types" diff --git a/resources/services/apprunner/operations.go b/resources/services/apprunner/operations.go index c079537e..06dfcadc 100644 --- a/resources/services/apprunner/operations.go +++ b/resources/services/apprunner/operations.go @@ -3,7 +3,7 @@ package apprunner import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/apprunner" "github.com/aws/aws-sdk-go-v2/service/apprunner/types" diff --git a/resources/services/apprunner/services.go b/resources/services/apprunner/services.go index 58211aa1..3dae0b17 100644 --- a/resources/services/apprunner/services.go +++ b/resources/services/apprunner/services.go @@ -3,7 +3,7 @@ package apprunner import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/apprunner" "github.com/aws/aws-sdk-go-v2/service/apprunner/types" diff --git a/resources/services/apprunner/services_mock_test.go b/resources/services/apprunner/services_mock_test.go index e10bb583..0ff2cff6 100644 --- a/resources/services/apprunner/services_mock_test.go +++ b/resources/services/apprunner/services_mock_test.go @@ -3,8 +3,8 @@ package apprunner import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/apprunner" "github.com/aws/aws-sdk-go-v2/service/apprunner/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/apprunner/tag_fetch.go b/resources/services/apprunner/tag_fetch.go index b0044be0..d732f5b9 100644 --- a/resources/services/apprunner/tag_fetch.go +++ b/resources/services/apprunner/tag_fetch.go @@ -4,7 +4,7 @@ import ( "context" "strings" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/apprunner" "github.com/cloudquery/plugin-sdk/v4/schema" diff --git a/resources/services/apprunner/vpc_connector_mock_test.go b/resources/services/apprunner/vpc_connector_mock_test.go index 983a9c26..5907f6f1 100644 --- a/resources/services/apprunner/vpc_connector_mock_test.go +++ b/resources/services/apprunner/vpc_connector_mock_test.go @@ -3,8 +3,8 @@ package apprunner import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/apprunner" "github.com/aws/aws-sdk-go-v2/service/apprunner/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/apprunner/vpc_connectors.go b/resources/services/apprunner/vpc_connectors.go index 6bd2a302..85c468e3 100644 --- a/resources/services/apprunner/vpc_connectors.go +++ b/resources/services/apprunner/vpc_connectors.go @@ -3,7 +3,7 @@ package apprunner import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/apprunner" "github.com/aws/aws-sdk-go-v2/service/apprunner/types" diff --git a/resources/services/apprunner/vpc_ingress_connection_mock_test.go b/resources/services/apprunner/vpc_ingress_connection_mock_test.go index b50a5333..414a9b99 100644 --- a/resources/services/apprunner/vpc_ingress_connection_mock_test.go +++ b/resources/services/apprunner/vpc_ingress_connection_mock_test.go @@ -3,8 +3,8 @@ package apprunner import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/apprunner" "github.com/aws/aws-sdk-go-v2/service/apprunner/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/apprunner/vpc_ingress_connections.go b/resources/services/apprunner/vpc_ingress_connections.go index 39fb60e9..adbdebfd 100644 --- a/resources/services/apprunner/vpc_ingress_connections.go +++ b/resources/services/apprunner/vpc_ingress_connections.go @@ -3,7 +3,7 @@ package apprunner import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/apprunner" "github.com/aws/aws-sdk-go-v2/service/apprunner/types" diff --git a/resources/services/appstream/app_blocks.go b/resources/services/appstream/app_blocks.go index f2c9532e..aae5aeab 100644 --- a/resources/services/appstream/app_blocks.go +++ b/resources/services/appstream/app_blocks.go @@ -3,7 +3,7 @@ package appstream import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/appstream" diff --git a/resources/services/appstream/app_blocks_mock_test.go b/resources/services/appstream/app_blocks_mock_test.go index 48d28836..8052b125 100644 --- a/resources/services/appstream/app_blocks_mock_test.go +++ b/resources/services/appstream/app_blocks_mock_test.go @@ -3,8 +3,8 @@ package appstream import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/appstream" "github.com/aws/aws-sdk-go-v2/service/appstream/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/appstream/application_fleet_associations.go b/resources/services/appstream/application_fleet_associations.go index 0d7ca9a6..3f34aead 100644 --- a/resources/services/appstream/application_fleet_associations.go +++ b/resources/services/appstream/application_fleet_associations.go @@ -3,7 +3,7 @@ package appstream import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/appstream" diff --git a/resources/services/appstream/applications.go b/resources/services/appstream/applications.go index 032b0536..d38f856d 100644 --- a/resources/services/appstream/applications.go +++ b/resources/services/appstream/applications.go @@ -3,7 +3,7 @@ package appstream import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/appstream" diff --git a/resources/services/appstream/applications_mock_test.go b/resources/services/appstream/applications_mock_test.go index 1b16352b..198749df 100644 --- a/resources/services/appstream/applications_mock_test.go +++ b/resources/services/appstream/applications_mock_test.go @@ -3,8 +3,8 @@ package appstream import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/appstream" "github.com/aws/aws-sdk-go-v2/service/appstream/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/appstream/fleets.go b/resources/services/appstream/fleets.go index db80988e..ce132e43 100644 --- a/resources/services/appstream/fleets.go +++ b/resources/services/appstream/fleets.go @@ -3,7 +3,7 @@ package appstream import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/appstream" diff --git a/resources/services/appstream/fleets_mock_test.go b/resources/services/appstream/fleets_mock_test.go index 91893b25..116e8b74 100644 --- a/resources/services/appstream/fleets_mock_test.go +++ b/resources/services/appstream/fleets_mock_test.go @@ -3,8 +3,8 @@ package appstream import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/appstream" "github.com/aws/aws-sdk-go-v2/service/appstream/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/appstream/image_builders.go b/resources/services/appstream/image_builders.go index ed2f9214..2b35e0cb 100644 --- a/resources/services/appstream/image_builders.go +++ b/resources/services/appstream/image_builders.go @@ -3,7 +3,7 @@ package appstream import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/appstream" diff --git a/resources/services/appstream/image_builders_mock_test.go b/resources/services/appstream/image_builders_mock_test.go index fa32c022..d2ff694a 100644 --- a/resources/services/appstream/image_builders_mock_test.go +++ b/resources/services/appstream/image_builders_mock_test.go @@ -3,8 +3,8 @@ package appstream import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/appstream" "github.com/aws/aws-sdk-go-v2/service/appstream/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/appstream/images.go b/resources/services/appstream/images.go index ed6d192d..0a2eacba 100644 --- a/resources/services/appstream/images.go +++ b/resources/services/appstream/images.go @@ -3,7 +3,7 @@ package appstream import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/appstream" diff --git a/resources/services/appstream/images_mock_test.go b/resources/services/appstream/images_mock_test.go index 8a775070..0327b54a 100644 --- a/resources/services/appstream/images_mock_test.go +++ b/resources/services/appstream/images_mock_test.go @@ -3,8 +3,8 @@ package appstream import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/appstream" "github.com/aws/aws-sdk-go-v2/service/appstream/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/appstream/stack_entitlements.go b/resources/services/appstream/stack_entitlements.go index af499bd7..3f795841 100644 --- a/resources/services/appstream/stack_entitlements.go +++ b/resources/services/appstream/stack_entitlements.go @@ -3,7 +3,7 @@ package appstream import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/appstream" diff --git a/resources/services/appstream/stack_user_associations.go b/resources/services/appstream/stack_user_associations.go index 9aa5519f..46506eea 100644 --- a/resources/services/appstream/stack_user_associations.go +++ b/resources/services/appstream/stack_user_associations.go @@ -3,7 +3,7 @@ package appstream import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/appstream" diff --git a/resources/services/appstream/stacks.go b/resources/services/appstream/stacks.go index 0039322b..7193ea29 100644 --- a/resources/services/appstream/stacks.go +++ b/resources/services/appstream/stacks.go @@ -3,7 +3,7 @@ package appstream import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/appstream" diff --git a/resources/services/appstream/stacks_mock_test.go b/resources/services/appstream/stacks_mock_test.go index 16acca86..7bf4b3d5 100644 --- a/resources/services/appstream/stacks_mock_test.go +++ b/resources/services/appstream/stacks_mock_test.go @@ -3,8 +3,8 @@ package appstream import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/appstream" "github.com/aws/aws-sdk-go-v2/service/appstream/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/appstream/users.go b/resources/services/appstream/users.go index c974d374..9548c329 100644 --- a/resources/services/appstream/users.go +++ b/resources/services/appstream/users.go @@ -3,7 +3,7 @@ package appstream import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/appstream" diff --git a/resources/services/appstream/users_mock_test.go b/resources/services/appstream/users_mock_test.go index bd941aa4..209c7004 100644 --- a/resources/services/appstream/users_mock_test.go +++ b/resources/services/appstream/users_mock_test.go @@ -3,8 +3,8 @@ package appstream import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/appstream" "github.com/aws/aws-sdk-go-v2/service/appstream/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/appsync/graphql_apis.go b/resources/services/appsync/graphql_apis.go index b3c5deeb..b8b8c6b1 100644 --- a/resources/services/appsync/graphql_apis.go +++ b/resources/services/appsync/graphql_apis.go @@ -3,7 +3,7 @@ package appsync import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/appsync" diff --git a/resources/services/appsync/graphql_apis_mock_test.go b/resources/services/appsync/graphql_apis_mock_test.go index a10ab3c2..443f4fcc 100644 --- a/resources/services/appsync/graphql_apis_mock_test.go +++ b/resources/services/appsync/graphql_apis_mock_test.go @@ -3,8 +3,8 @@ package appsync import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/appsync" "github.com/aws/aws-sdk-go-v2/service/appsync/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/athena/data_catalog_database_tables.go b/resources/services/athena/data_catalog_database_tables.go index 0fc93413..bc3fb18c 100644 --- a/resources/services/athena/data_catalog_database_tables.go +++ b/resources/services/athena/data_catalog_database_tables.go @@ -3,7 +3,7 @@ package athena import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/athena" "github.com/aws/aws-sdk-go-v2/service/athena/types" diff --git a/resources/services/athena/data_catalog_databases.go b/resources/services/athena/data_catalog_databases.go index 51069325..9f96a31f 100644 --- a/resources/services/athena/data_catalog_databases.go +++ b/resources/services/athena/data_catalog_databases.go @@ -3,7 +3,7 @@ package athena import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/athena" "github.com/aws/aws-sdk-go-v2/service/athena/types" diff --git a/resources/services/athena/data_catalogs.go b/resources/services/athena/data_catalogs.go index 27b60dc7..aa141b8e 100644 --- a/resources/services/athena/data_catalogs.go +++ b/resources/services/athena/data_catalogs.go @@ -4,7 +4,7 @@ import ( "context" "fmt" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws/arn" "github.com/aws/aws-sdk-go-v2/service/athena" diff --git a/resources/services/athena/data_catalogs_mock_test.go b/resources/services/athena/data_catalogs_mock_test.go index 3962f253..06347e58 100644 --- a/resources/services/athena/data_catalogs_mock_test.go +++ b/resources/services/athena/data_catalogs_mock_test.go @@ -3,8 +3,8 @@ package athena import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/athena" "github.com/cloudquery/plugin-sdk/v4/faker" "github.com/golang/mock/gomock" diff --git a/resources/services/athena/work_group_named_queries.go b/resources/services/athena/work_group_named_queries.go index b455ce36..0212ad3c 100644 --- a/resources/services/athena/work_group_named_queries.go +++ b/resources/services/athena/work_group_named_queries.go @@ -3,7 +3,7 @@ package athena import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/athena" diff --git a/resources/services/athena/work_group_prepared_statements.go b/resources/services/athena/work_group_prepared_statements.go index 5f18eccb..7892bdc9 100644 --- a/resources/services/athena/work_group_prepared_statements.go +++ b/resources/services/athena/work_group_prepared_statements.go @@ -3,7 +3,7 @@ package athena import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/athena" "github.com/aws/aws-sdk-go-v2/service/athena/types" diff --git a/resources/services/athena/work_group_query_executions.go b/resources/services/athena/work_group_query_executions.go index 48cbe807..1bea8cb4 100644 --- a/resources/services/athena/work_group_query_executions.go +++ b/resources/services/athena/work_group_query_executions.go @@ -3,7 +3,7 @@ package athena import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/athena" diff --git a/resources/services/athena/work_groups.go b/resources/services/athena/work_groups.go index d3be1597..399ff6d2 100644 --- a/resources/services/athena/work_groups.go +++ b/resources/services/athena/work_groups.go @@ -4,7 +4,7 @@ import ( "context" "fmt" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws/arn" "github.com/aws/aws-sdk-go-v2/service/athena" diff --git a/resources/services/athena/work_groups_mock_test.go b/resources/services/athena/work_groups_mock_test.go index e9da6772..07a989b9 100644 --- a/resources/services/athena/work_groups_mock_test.go +++ b/resources/services/athena/work_groups_mock_test.go @@ -3,8 +3,8 @@ package athena import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/athena" "github.com/cloudquery/plugin-sdk/v4/faker" "github.com/golang/mock/gomock" diff --git a/resources/services/auditmanager/assesments.go b/resources/services/auditmanager/assesments.go index 32459c3b..ae927c33 100644 --- a/resources/services/auditmanager/assesments.go +++ b/resources/services/auditmanager/assesments.go @@ -3,7 +3,7 @@ package auditmanager import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/auditmanager" "github.com/aws/aws-sdk-go-v2/service/auditmanager/types" diff --git a/resources/services/auditmanager/assesments_mock_test.go b/resources/services/auditmanager/assesments_mock_test.go index 5c67daee..2023474b 100644 --- a/resources/services/auditmanager/assesments_mock_test.go +++ b/resources/services/auditmanager/assesments_mock_test.go @@ -3,8 +3,8 @@ package auditmanager import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/auditmanager" "github.com/aws/aws-sdk-go-v2/service/auditmanager/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/autoscaling/group_lifecycle_hooks.go b/resources/services/autoscaling/group_lifecycle_hooks.go index ae4d8ac2..511c4c5c 100644 --- a/resources/services/autoscaling/group_lifecycle_hooks.go +++ b/resources/services/autoscaling/group_lifecycle_hooks.go @@ -3,8 +3,8 @@ package autoscaling import ( "context" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/resources/services/autoscaling/models" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/autoscaling/models" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/autoscaling" "github.com/aws/aws-sdk-go-v2/service/autoscaling/types" diff --git a/resources/services/autoscaling/group_scaling_policies.go b/resources/services/autoscaling/group_scaling_policies.go index daa601fe..e1a1b433 100644 --- a/resources/services/autoscaling/group_scaling_policies.go +++ b/resources/services/autoscaling/group_scaling_policies.go @@ -3,8 +3,8 @@ package autoscaling import ( "context" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/resources/services/autoscaling/models" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/autoscaling/models" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/autoscaling" "github.com/aws/aws-sdk-go-v2/service/autoscaling/types" diff --git a/resources/services/autoscaling/groups.go b/resources/services/autoscaling/groups.go index 05d26ea3..b60243ae 100644 --- a/resources/services/autoscaling/groups.go +++ b/resources/services/autoscaling/groups.go @@ -3,8 +3,8 @@ package autoscaling import ( "context" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/resources/services/autoscaling/models" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/autoscaling/models" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/autoscaling" diff --git a/resources/services/autoscaling/groups_mock_test.go b/resources/services/autoscaling/groups_mock_test.go index 5548f131..3585536d 100644 --- a/resources/services/autoscaling/groups_mock_test.go +++ b/resources/services/autoscaling/groups_mock_test.go @@ -3,8 +3,8 @@ package autoscaling import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/autoscaling" "github.com/cloudquery/plugin-sdk/v4/faker" "github.com/golang/mock/gomock" diff --git a/resources/services/autoscaling/launch_configuration_mock_test.go b/resources/services/autoscaling/launch_configuration_mock_test.go index 4f95ab2d..937da439 100644 --- a/resources/services/autoscaling/launch_configuration_mock_test.go +++ b/resources/services/autoscaling/launch_configuration_mock_test.go @@ -3,8 +3,8 @@ package autoscaling import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/autoscaling" "github.com/aws/aws-sdk-go-v2/service/autoscaling/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/autoscaling/launch_configurations.go b/resources/services/autoscaling/launch_configurations.go index 66f6b0c4..6320e16c 100644 --- a/resources/services/autoscaling/launch_configurations.go +++ b/resources/services/autoscaling/launch_configurations.go @@ -3,7 +3,7 @@ package autoscaling import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/autoscaling" "github.com/aws/aws-sdk-go-v2/service/autoscaling/types" diff --git a/resources/services/autoscaling/scheduled_actions.go b/resources/services/autoscaling/scheduled_actions.go index 9e23cf60..e637eed1 100644 --- a/resources/services/autoscaling/scheduled_actions.go +++ b/resources/services/autoscaling/scheduled_actions.go @@ -3,7 +3,7 @@ package autoscaling import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/autoscaling" diff --git a/resources/services/autoscaling/scheduled_actions_mock_test.go b/resources/services/autoscaling/scheduled_actions_mock_test.go index e59d787b..c91e46a3 100644 --- a/resources/services/autoscaling/scheduled_actions_mock_test.go +++ b/resources/services/autoscaling/scheduled_actions_mock_test.go @@ -3,8 +3,8 @@ package autoscaling import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/autoscaling" "github.com/aws/aws-sdk-go-v2/service/autoscaling/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/backup/plan_selections.go b/resources/services/backup/plan_selections.go index a75f4085..fe5fe8d5 100644 --- a/resources/services/backup/plan_selections.go +++ b/resources/services/backup/plan_selections.go @@ -3,7 +3,7 @@ package backup import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/backup" diff --git a/resources/services/backup/plans.go b/resources/services/backup/plans.go index dfa33f1d..ae1323b5 100644 --- a/resources/services/backup/plans.go +++ b/resources/services/backup/plans.go @@ -3,7 +3,7 @@ package backup import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/backup" diff --git a/resources/services/backup/plans_mock_test.go b/resources/services/backup/plans_mock_test.go index 04d94827..9059d534 100644 --- a/resources/services/backup/plans_mock_test.go +++ b/resources/services/backup/plans_mock_test.go @@ -3,8 +3,8 @@ package backup import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/backup" "github.com/aws/aws-sdk-go-v2/service/backup/types" diff --git a/resources/services/backup/protected_resources.go b/resources/services/backup/protected_resources.go index f6c20cba..09ec7670 100644 --- a/resources/services/backup/protected_resources.go +++ b/resources/services/backup/protected_resources.go @@ -3,7 +3,7 @@ package backup import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/backup" diff --git a/resources/services/backup/protected_resources_mock_test.go b/resources/services/backup/protected_resources_mock_test.go index 940cc0c9..3563f80a 100644 --- a/resources/services/backup/protected_resources_mock_test.go +++ b/resources/services/backup/protected_resources_mock_test.go @@ -3,8 +3,8 @@ package backup import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/backup" "github.com/aws/aws-sdk-go-v2/service/backup/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/backup/report_plans.go b/resources/services/backup/report_plans.go index bc02a2ca..e02adfa8 100644 --- a/resources/services/backup/report_plans.go +++ b/resources/services/backup/report_plans.go @@ -3,7 +3,7 @@ package backup import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/backup" "github.com/aws/aws-sdk-go-v2/service/backup/types" diff --git a/resources/services/backup/report_plans_mock_test.go b/resources/services/backup/report_plans_mock_test.go index 9c122bbb..f31a2bb4 100644 --- a/resources/services/backup/report_plans_mock_test.go +++ b/resources/services/backup/report_plans_mock_test.go @@ -3,8 +3,8 @@ package backup import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/backup" "github.com/aws/aws-sdk-go-v2/service/backup/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/backup/vault_recovery_points.go b/resources/services/backup/vault_recovery_points.go index c72662cc..6f043f8b 100644 --- a/resources/services/backup/vault_recovery_points.go +++ b/resources/services/backup/vault_recovery_points.go @@ -4,7 +4,7 @@ import ( "context" "strings" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/aws/arn" diff --git a/resources/services/backup/vaults.go b/resources/services/backup/vaults.go index c6ecff10..4281c50d 100644 --- a/resources/services/backup/vaults.go +++ b/resources/services/backup/vaults.go @@ -5,7 +5,7 @@ import ( "encoding/json" "strings" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/backup" diff --git a/resources/services/backup/vaults_mock_test.go b/resources/services/backup/vaults_mock_test.go index 2b857a4c..2262eb86 100644 --- a/resources/services/backup/vaults_mock_test.go +++ b/resources/services/backup/vaults_mock_test.go @@ -3,8 +3,8 @@ package backup import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/backup" "github.com/aws/aws-sdk-go-v2/service/backup/types" diff --git a/resources/services/batch/compute_environments.go b/resources/services/batch/compute_environments.go index de7816ee..a9970de2 100644 --- a/resources/services/batch/compute_environments.go +++ b/resources/services/batch/compute_environments.go @@ -3,7 +3,7 @@ package batch import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/batch" diff --git a/resources/services/batch/compute_environments_mock_test.go b/resources/services/batch/compute_environments_mock_test.go index a8f6ca0e..e7bf42ab 100644 --- a/resources/services/batch/compute_environments_mock_test.go +++ b/resources/services/batch/compute_environments_mock_test.go @@ -3,8 +3,8 @@ package batch import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/batch" "github.com/aws/aws-sdk-go-v2/service/batch/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/batch/job_definitions.go b/resources/services/batch/job_definitions.go index 7b4ea8ad..ac15dedf 100644 --- a/resources/services/batch/job_definitions.go +++ b/resources/services/batch/job_definitions.go @@ -3,7 +3,7 @@ package batch import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/batch" diff --git a/resources/services/batch/job_definitions_mock_test.go b/resources/services/batch/job_definitions_mock_test.go index f92a0de0..7297d6cc 100644 --- a/resources/services/batch/job_definitions_mock_test.go +++ b/resources/services/batch/job_definitions_mock_test.go @@ -3,8 +3,8 @@ package batch import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/batch" "github.com/aws/aws-sdk-go-v2/service/batch/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/batch/job_queues.go b/resources/services/batch/job_queues.go index a57a8250..f8024eb4 100644 --- a/resources/services/batch/job_queues.go +++ b/resources/services/batch/job_queues.go @@ -3,7 +3,7 @@ package batch import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/batch" diff --git a/resources/services/batch/job_queues_mock_test.go b/resources/services/batch/job_queues_mock_test.go index 7eee90c3..c0c9971b 100644 --- a/resources/services/batch/job_queues_mock_test.go +++ b/resources/services/batch/job_queues_mock_test.go @@ -3,8 +3,8 @@ package batch import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/batch" "github.com/aws/aws-sdk-go-v2/service/batch/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/batch/jobs.go b/resources/services/batch/jobs.go index 1cbf3e4e..3f80f0ff 100644 --- a/resources/services/batch/jobs.go +++ b/resources/services/batch/jobs.go @@ -3,7 +3,7 @@ package batch import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/batch" diff --git a/resources/services/batch/jobs_mock_test.go b/resources/services/batch/jobs_mock_test.go index 0ea8abf1..f21a102b 100644 --- a/resources/services/batch/jobs_mock_test.go +++ b/resources/services/batch/jobs_mock_test.go @@ -3,8 +3,8 @@ package batch import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/batch" "github.com/aws/aws-sdk-go-v2/service/batch/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/cloudformation/stack_instance_resource_drifts.go b/resources/services/cloudformation/stack_instance_resource_drifts.go index cb45d228..3b857716 100644 --- a/resources/services/cloudformation/stack_instance_resource_drifts.go +++ b/resources/services/cloudformation/stack_instance_resource_drifts.go @@ -3,8 +3,8 @@ package cloudformation import ( "context" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/resources/services/cloudformation/models" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/cloudformation/models" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/cloudformation" diff --git a/resources/services/cloudformation/stack_instances.go b/resources/services/cloudformation/stack_instances.go index 5c400326..fe3e0c4d 100644 --- a/resources/services/cloudformation/stack_instances.go +++ b/resources/services/cloudformation/stack_instances.go @@ -3,8 +3,8 @@ package cloudformation import ( "context" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/resources/services/cloudformation/models" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/cloudformation/models" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/cloudformation" diff --git a/resources/services/cloudformation/stack_resources.go b/resources/services/cloudformation/stack_resources.go index 41c42971..a19569ea 100644 --- a/resources/services/cloudformation/stack_resources.go +++ b/resources/services/cloudformation/stack_resources.go @@ -3,7 +3,7 @@ package cloudformation import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/cloudformation" "github.com/aws/aws-sdk-go-v2/service/cloudformation/types" diff --git a/resources/services/cloudformation/stack_templates.go b/resources/services/cloudformation/stack_templates.go index e7bc530c..93e83936 100644 --- a/resources/services/cloudformation/stack_templates.go +++ b/resources/services/cloudformation/stack_templates.go @@ -5,7 +5,7 @@ import ( "encoding/json" "fmt" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/cloudformation" "github.com/aws/aws-sdk-go-v2/service/cloudformation/types" diff --git a/resources/services/cloudformation/stacks.go b/resources/services/cloudformation/stacks.go index 4489037c..43427566 100644 --- a/resources/services/cloudformation/stacks.go +++ b/resources/services/cloudformation/stacks.go @@ -3,7 +3,7 @@ package cloudformation import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/cloudformation" "github.com/aws/aws-sdk-go-v2/service/cloudformation/types" diff --git a/resources/services/cloudformation/stacks_mock_test.go b/resources/services/cloudformation/stacks_mock_test.go index d813564c..80a166ca 100644 --- a/resources/services/cloudformation/stacks_mock_test.go +++ b/resources/services/cloudformation/stacks_mock_test.go @@ -3,8 +3,8 @@ package cloudformation import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/cloudformation" "github.com/aws/aws-sdk-go-v2/service/cloudformation/types" diff --git a/resources/services/cloudformation/stackset_mock_test.go b/resources/services/cloudformation/stackset_mock_test.go index 3b029221..cff891ba 100644 --- a/resources/services/cloudformation/stackset_mock_test.go +++ b/resources/services/cloudformation/stackset_mock_test.go @@ -3,8 +3,8 @@ package cloudformation import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/cloudformation" "github.com/aws/aws-sdk-go-v2/service/cloudformation/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/cloudformation/stackset_operation_results.go b/resources/services/cloudformation/stackset_operation_results.go index 6a47310e..b2830171 100644 --- a/resources/services/cloudformation/stackset_operation_results.go +++ b/resources/services/cloudformation/stackset_operation_results.go @@ -3,8 +3,8 @@ package cloudformation import ( "context" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/resources/services/cloudformation/models" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/cloudformation/models" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/cloudformation" "github.com/aws/aws-sdk-go-v2/service/cloudformation/types" diff --git a/resources/services/cloudformation/stackset_operations.go b/resources/services/cloudformation/stackset_operations.go index 4fffb3a5..a5981b74 100644 --- a/resources/services/cloudformation/stackset_operations.go +++ b/resources/services/cloudformation/stackset_operations.go @@ -3,8 +3,8 @@ package cloudformation import ( "context" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/resources/services/cloudformation/models" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/cloudformation/models" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/cloudformation" "github.com/cloudquery/plugin-sdk/v4/schema" diff --git a/resources/services/cloudformation/stacksets.go b/resources/services/cloudformation/stacksets.go index 20168151..bf146a53 100644 --- a/resources/services/cloudformation/stacksets.go +++ b/resources/services/cloudformation/stacksets.go @@ -3,8 +3,8 @@ package cloudformation import ( "context" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/resources/services/cloudformation/models" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/cloudformation/models" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/cloudformation" "github.com/aws/aws-sdk-go-v2/service/cloudformation/types" diff --git a/resources/services/cloudformation/template_summaries.go b/resources/services/cloudformation/template_summaries.go index f30fffb0..97dc0a2b 100644 --- a/resources/services/cloudformation/template_summaries.go +++ b/resources/services/cloudformation/template_summaries.go @@ -3,7 +3,7 @@ package cloudformation import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/cloudformation" "github.com/aws/aws-sdk-go-v2/service/cloudformation/types" diff --git a/resources/services/cloudfront/cache_policies.go b/resources/services/cloudfront/cache_policies.go index a999b2f0..059dbacc 100644 --- a/resources/services/cloudfront/cache_policies.go +++ b/resources/services/cloudfront/cache_policies.go @@ -3,7 +3,7 @@ package cloudfront import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/cloudfront" diff --git a/resources/services/cloudfront/cache_policies_mock_test.go b/resources/services/cloudfront/cache_policies_mock_test.go index c0f81ffa..6b38b7cd 100644 --- a/resources/services/cloudfront/cache_policies_mock_test.go +++ b/resources/services/cloudfront/cache_policies_mock_test.go @@ -3,8 +3,8 @@ package cloudfront import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/cloudfront" cloudfrontTypes "github.com/aws/aws-sdk-go-v2/service/cloudfront/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/cloudfront/distributions.go b/resources/services/cloudfront/distributions.go index 19aa9441..983a3bda 100644 --- a/resources/services/cloudfront/distributions.go +++ b/resources/services/cloudfront/distributions.go @@ -3,7 +3,7 @@ package cloudfront import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/cloudfront" "github.com/aws/aws-sdk-go-v2/service/cloudfront/types" diff --git a/resources/services/cloudfront/distributions_mock_test.go b/resources/services/cloudfront/distributions_mock_test.go index 399d89eb..54d3a42a 100644 --- a/resources/services/cloudfront/distributions_mock_test.go +++ b/resources/services/cloudfront/distributions_mock_test.go @@ -3,8 +3,8 @@ package cloudfront import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/cloudfront" cloudfrontTypes "github.com/aws/aws-sdk-go-v2/service/cloudfront/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/cloudfront/functions.go b/resources/services/cloudfront/functions.go index 9d381d36..6108f4f3 100644 --- a/resources/services/cloudfront/functions.go +++ b/resources/services/cloudfront/functions.go @@ -3,7 +3,7 @@ package cloudfront import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/cloudfront" diff --git a/resources/services/cloudfront/functions_mock_test.go b/resources/services/cloudfront/functions_mock_test.go index cfe2cb2f..3abdc002 100644 --- a/resources/services/cloudfront/functions_mock_test.go +++ b/resources/services/cloudfront/functions_mock_test.go @@ -3,8 +3,8 @@ package cloudfront import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/cloudfront" cloudfrontTypes "github.com/aws/aws-sdk-go-v2/service/cloudfront/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/cloudhsmv2/backups.go b/resources/services/cloudhsmv2/backups.go index f9140245..f7d83b89 100644 --- a/resources/services/cloudhsmv2/backups.go +++ b/resources/services/cloudhsmv2/backups.go @@ -3,7 +3,7 @@ package cloudhsmv2 import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/aws/arn" diff --git a/resources/services/cloudhsmv2/backups_mock_test.go b/resources/services/cloudhsmv2/backups_mock_test.go index 0e7eaccf..e20f2651 100644 --- a/resources/services/cloudhsmv2/backups_mock_test.go +++ b/resources/services/cloudhsmv2/backups_mock_test.go @@ -3,8 +3,8 @@ package cloudhsmv2 import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/cloudhsmv2" "github.com/aws/aws-sdk-go-v2/service/cloudhsmv2/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/cloudhsmv2/clusters.go b/resources/services/cloudhsmv2/clusters.go index 40ddf18b..e0fafc21 100644 --- a/resources/services/cloudhsmv2/clusters.go +++ b/resources/services/cloudhsmv2/clusters.go @@ -3,7 +3,7 @@ package cloudhsmv2 import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/aws/arn" diff --git a/resources/services/cloudhsmv2/clusters_mock_test.go b/resources/services/cloudhsmv2/clusters_mock_test.go index 7f13b368..3c3f942d 100644 --- a/resources/services/cloudhsmv2/clusters_mock_test.go +++ b/resources/services/cloudhsmv2/clusters_mock_test.go @@ -3,8 +3,8 @@ package cloudhsmv2 import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/cloudhsmv2" "github.com/aws/aws-sdk-go-v2/service/cloudhsmv2/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/cloudtrail/channels.go b/resources/services/cloudtrail/channels.go index defa89fa..0d2f8fc1 100644 --- a/resources/services/cloudtrail/channels.go +++ b/resources/services/cloudtrail/channels.go @@ -5,7 +5,7 @@ import ( "github.com/apache/arrow/go/v16/arrow" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/aws/aws-sdk-go-v2/service/cloudtrail" "github.com/aws/aws-sdk-go-v2/service/cloudtrail/types" "github.com/cloudquery/plugin-sdk/v4/schema" diff --git a/resources/services/cloudtrail/channels_mock_test.go b/resources/services/cloudtrail/channels_mock_test.go index aef08ede..2bb8a6c7 100644 --- a/resources/services/cloudtrail/channels_mock_test.go +++ b/resources/services/cloudtrail/channels_mock_test.go @@ -3,8 +3,8 @@ package cloudtrail import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/cloudtrail" "github.com/aws/aws-sdk-go-v2/service/cloudtrail/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/cloudtrail/trail_event_selectors.go b/resources/services/cloudtrail/trail_event_selectors.go index 6fa784ef..470a23c1 100644 --- a/resources/services/cloudtrail/trail_event_selectors.go +++ b/resources/services/cloudtrail/trail_event_selectors.go @@ -3,8 +3,8 @@ package cloudtrail import ( "context" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/resources/services/cloudtrail/models" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/cloudtrail/models" "github.com/aws/aws-sdk-go-v2/service/cloudtrail" "github.com/cloudquery/plugin-sdk/v4/schema" "github.com/cloudquery/plugin-sdk/v4/transformers" diff --git a/resources/services/cloudtrail/trails.go b/resources/services/cloudtrail/trails.go index a3b78171..d96d13f0 100644 --- a/resources/services/cloudtrail/trails.go +++ b/resources/services/cloudtrail/trails.go @@ -5,8 +5,8 @@ import ( "fmt" "regexp" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/resources/services/cloudtrail/models" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/cloudtrail/models" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/aws/arn" diff --git a/resources/services/cloudtrail/trails_mock_test.go b/resources/services/cloudtrail/trails_mock_test.go index 90afe4a9..4b2d89c2 100644 --- a/resources/services/cloudtrail/trails_mock_test.go +++ b/resources/services/cloudtrail/trails_mock_test.go @@ -3,8 +3,8 @@ package cloudtrail import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/cloudtrail" "github.com/aws/aws-sdk-go-v2/service/cloudtrail/types" diff --git a/resources/services/cloudwatch/alarms.go b/resources/services/cloudwatch/alarms.go index 6acd3436..c0c1b44d 100644 --- a/resources/services/cloudwatch/alarms.go +++ b/resources/services/cloudwatch/alarms.go @@ -3,7 +3,7 @@ package cloudwatch import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/cloudwatch" "github.com/aws/aws-sdk-go-v2/service/cloudwatch/types" diff --git a/resources/services/cloudwatch/alarms_mock_test.go b/resources/services/cloudwatch/alarms_mock_test.go index d22cab5c..bf63d5f6 100644 --- a/resources/services/cloudwatch/alarms_mock_test.go +++ b/resources/services/cloudwatch/alarms_mock_test.go @@ -3,8 +3,8 @@ package cloudwatch import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/cloudwatch" "github.com/aws/aws-sdk-go-v2/service/cloudwatch/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/cloudwatchlogs/data_protection_policies.go b/resources/services/cloudwatchlogs/data_protection_policies.go index b09f3935..76268ea4 100644 --- a/resources/services/cloudwatchlogs/data_protection_policies.go +++ b/resources/services/cloudwatchlogs/data_protection_policies.go @@ -3,7 +3,7 @@ package cloudwatchlogs import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/cloudwatchlogs" "github.com/aws/aws-sdk-go-v2/service/cloudwatchlogs/types" diff --git a/resources/services/cloudwatchlogs/log_groups.go b/resources/services/cloudwatchlogs/log_groups.go index 1a6095ca..f36cc943 100644 --- a/resources/services/cloudwatchlogs/log_groups.go +++ b/resources/services/cloudwatchlogs/log_groups.go @@ -3,7 +3,7 @@ package cloudwatchlogs import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/cloudwatchlogs" "github.com/aws/aws-sdk-go-v2/service/cloudwatchlogs/types" diff --git a/resources/services/cloudwatchlogs/log_groups_mock_test.go b/resources/services/cloudwatchlogs/log_groups_mock_test.go index fa50194f..e330a1d6 100644 --- a/resources/services/cloudwatchlogs/log_groups_mock_test.go +++ b/resources/services/cloudwatchlogs/log_groups_mock_test.go @@ -3,8 +3,8 @@ package cloudwatchlogs import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/cloudwatchlogs" "github.com/aws/aws-sdk-go-v2/service/cloudwatchlogs/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/cloudwatchlogs/subscription_filters.go b/resources/services/cloudwatchlogs/subscription_filters.go index 2c5466ce..73f13261 100644 --- a/resources/services/cloudwatchlogs/subscription_filters.go +++ b/resources/services/cloudwatchlogs/subscription_filters.go @@ -3,7 +3,7 @@ package cloudwatchlogs import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/cloudwatchlogs" "github.com/aws/aws-sdk-go-v2/service/cloudwatchlogs/types" diff --git a/resources/services/codeartifact/domains.go b/resources/services/codeartifact/domains.go index 1b896779..5f228f28 100644 --- a/resources/services/codeartifact/domains.go +++ b/resources/services/codeartifact/domains.go @@ -3,7 +3,7 @@ package codeartifact import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/codeartifact" "github.com/aws/aws-sdk-go-v2/service/codeartifact/types" diff --git a/resources/services/codeartifact/domains_mock_test.go b/resources/services/codeartifact/domains_mock_test.go index 615ccf91..295acbce 100644 --- a/resources/services/codeartifact/domains_mock_test.go +++ b/resources/services/codeartifact/domains_mock_test.go @@ -3,8 +3,8 @@ package codeartifact import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/codeartifact" "github.com/aws/aws-sdk-go-v2/service/codeartifact/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/codeartifact/helpers.go b/resources/services/codeartifact/helpers.go index c740c783..463c722e 100644 --- a/resources/services/codeartifact/helpers.go +++ b/resources/services/codeartifact/helpers.go @@ -3,7 +3,7 @@ package codeartifact import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/aws/aws-sdk-go-v2/service/codeartifact" "github.com/cloudquery/plugin-sdk/v4/schema" diff --git a/resources/services/codeartifact/repositories.go b/resources/services/codeartifact/repositories.go index 37706399..03581864 100644 --- a/resources/services/codeartifact/repositories.go +++ b/resources/services/codeartifact/repositories.go @@ -3,7 +3,7 @@ package codeartifact import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/codeartifact" "github.com/aws/aws-sdk-go-v2/service/codeartifact/types" diff --git a/resources/services/codeartifact/repositories_mock_test.go b/resources/services/codeartifact/repositories_mock_test.go index db8b8ba9..321c331d 100644 --- a/resources/services/codeartifact/repositories_mock_test.go +++ b/resources/services/codeartifact/repositories_mock_test.go @@ -3,8 +3,8 @@ package codeartifact import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/codeartifact" "github.com/aws/aws-sdk-go-v2/service/codeartifact/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/codebuild/builds.go b/resources/services/codebuild/builds.go index c84fec25..2209b429 100644 --- a/resources/services/codebuild/builds.go +++ b/resources/services/codebuild/builds.go @@ -3,7 +3,7 @@ package codebuild import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/aws/aws-sdk-go-v2/service/codebuild" "github.com/aws/aws-sdk-go-v2/service/codebuild/types" "github.com/cloudquery/plugin-sdk/v4/schema" diff --git a/resources/services/codebuild/projects.go b/resources/services/codebuild/projects.go index 2490a6d5..026e9d66 100644 --- a/resources/services/codebuild/projects.go +++ b/resources/services/codebuild/projects.go @@ -3,7 +3,7 @@ package codebuild import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/codebuild" "github.com/aws/aws-sdk-go-v2/service/codebuild/types" diff --git a/resources/services/codebuild/projects_mock_test.go b/resources/services/codebuild/projects_mock_test.go index 44f1c3de..62c59214 100644 --- a/resources/services/codebuild/projects_mock_test.go +++ b/resources/services/codebuild/projects_mock_test.go @@ -3,8 +3,8 @@ package codebuild import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/codebuild" "github.com/cloudquery/plugin-sdk/v4/faker" "github.com/golang/mock/gomock" diff --git a/resources/services/codebuild/source_credentials.go b/resources/services/codebuild/source_credentials.go index fb6e0c4e..f334f00b 100644 --- a/resources/services/codebuild/source_credentials.go +++ b/resources/services/codebuild/source_credentials.go @@ -3,7 +3,7 @@ package codebuild import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/codebuild" "github.com/aws/aws-sdk-go-v2/service/codebuild/types" diff --git a/resources/services/codebuild/source_credentials_mock_test.go b/resources/services/codebuild/source_credentials_mock_test.go index 84cc595c..d97196af 100644 --- a/resources/services/codebuild/source_credentials_mock_test.go +++ b/resources/services/codebuild/source_credentials_mock_test.go @@ -3,8 +3,8 @@ package codebuild import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/codebuild" "github.com/cloudquery/plugin-sdk/v4/faker" "github.com/golang/mock/gomock" diff --git a/resources/services/codecommit/repositories.go b/resources/services/codecommit/repositories.go index d3f318d1..5083f1a7 100644 --- a/resources/services/codecommit/repositories.go +++ b/resources/services/codecommit/repositories.go @@ -3,7 +3,7 @@ package codecommit import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/codecommit" diff --git a/resources/services/codecommit/repositories_mock_test.go b/resources/services/codecommit/repositories_mock_test.go index b48ba0b9..3ef7a6a1 100644 --- a/resources/services/codecommit/repositories_mock_test.go +++ b/resources/services/codecommit/repositories_mock_test.go @@ -3,8 +3,8 @@ package codecommit import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/codecommit" "github.com/aws/aws-sdk-go-v2/service/codecommit/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/codepipeline/pipelines.go b/resources/services/codepipeline/pipelines.go index 5a5f8207..2f5d25b4 100644 --- a/resources/services/codepipeline/pipelines.go +++ b/resources/services/codepipeline/pipelines.go @@ -3,7 +3,7 @@ package codepipeline import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws/arn" "github.com/aws/aws-sdk-go-v2/service/codepipeline" diff --git a/resources/services/codepipeline/pipelines_mock_test.go b/resources/services/codepipeline/pipelines_mock_test.go index fc6c5615..e5853415 100644 --- a/resources/services/codepipeline/pipelines_mock_test.go +++ b/resources/services/codepipeline/pipelines_mock_test.go @@ -3,8 +3,8 @@ package codepipeline import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/codepipeline" "github.com/aws/aws-sdk-go-v2/service/codepipeline/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/codepipeline/webhooks.go b/resources/services/codepipeline/webhooks.go index 22123203..919bd146 100644 --- a/resources/services/codepipeline/webhooks.go +++ b/resources/services/codepipeline/webhooks.go @@ -3,7 +3,7 @@ package codepipeline import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/codepipeline" "github.com/aws/aws-sdk-go-v2/service/codepipeline/types" diff --git a/resources/services/codepipeline/webhooks_mock_test.go b/resources/services/codepipeline/webhooks_mock_test.go index 0c9448ee..3749c684 100644 --- a/resources/services/codepipeline/webhooks_mock_test.go +++ b/resources/services/codepipeline/webhooks_mock_test.go @@ -3,8 +3,8 @@ package codepipeline import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/codepipeline" "github.com/aws/aws-sdk-go-v2/service/codepipeline/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/cognito/identity_pools.go b/resources/services/cognito/identity_pools.go index ddf82c7a..bba4140b 100644 --- a/resources/services/cognito/identity_pools.go +++ b/resources/services/cognito/identity_pools.go @@ -3,7 +3,7 @@ package cognito import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/cognitoidentity" diff --git a/resources/services/cognito/identity_pools_mock_test.go b/resources/services/cognito/identity_pools_mock_test.go index b10a79bc..a39757e2 100644 --- a/resources/services/cognito/identity_pools_mock_test.go +++ b/resources/services/cognito/identity_pools_mock_test.go @@ -3,8 +3,8 @@ package cognito import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/cognitoidentity" "github.com/aws/aws-sdk-go-v2/service/cognitoidentity/types" diff --git a/resources/services/cognito/user_pool_identity_providers.go b/resources/services/cognito/user_pool_identity_providers.go index 16117824..db1fa733 100644 --- a/resources/services/cognito/user_pool_identity_providers.go +++ b/resources/services/cognito/user_pool_identity_providers.go @@ -3,7 +3,7 @@ package cognito import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/cognitoidentityprovider" "github.com/aws/aws-sdk-go-v2/service/cognitoidentityprovider/types" diff --git a/resources/services/cognito/user_pools.go b/resources/services/cognito/user_pools.go index 391f88e4..aaed4a7b 100644 --- a/resources/services/cognito/user_pools.go +++ b/resources/services/cognito/user_pools.go @@ -3,7 +3,7 @@ package cognito import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/cognitoidentityprovider" diff --git a/resources/services/cognito/user_pools_mock_test.go b/resources/services/cognito/user_pools_mock_test.go index 8d5eb8f7..c22e37f7 100644 --- a/resources/services/cognito/user_pools_mock_test.go +++ b/resources/services/cognito/user_pools_mock_test.go @@ -3,8 +3,8 @@ package cognito import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/cognitoidentityprovider" "github.com/aws/aws-sdk-go-v2/service/cognitoidentityprovider/types" diff --git a/resources/services/config/config_rule_compliance_details.go b/resources/services/config/config_rule_compliance_details.go index 0063c650..74df764e 100644 --- a/resources/services/config/config_rule_compliance_details.go +++ b/resources/services/config/config_rule_compliance_details.go @@ -3,7 +3,7 @@ package config import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/configservice" "github.com/aws/aws-sdk-go-v2/service/configservice/types" diff --git a/resources/services/config/config_rule_compliance_details_mock_test.go b/resources/services/config/config_rule_compliance_details_mock_test.go index a2871367..1132492a 100644 --- a/resources/services/config/config_rule_compliance_details_mock_test.go +++ b/resources/services/config/config_rule_compliance_details_mock_test.go @@ -3,8 +3,8 @@ package config import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/configservice" "github.com/aws/aws-sdk-go-v2/service/configservice/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/config/config_rule_compliances.go b/resources/services/config/config_rule_compliances.go index 81937da2..e9440481 100644 --- a/resources/services/config/config_rule_compliances.go +++ b/resources/services/config/config_rule_compliances.go @@ -3,7 +3,7 @@ package config import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/configservice" diff --git a/resources/services/config/config_rules.go b/resources/services/config/config_rules.go index ce810a73..d8a4b1b0 100644 --- a/resources/services/config/config_rules.go +++ b/resources/services/config/config_rules.go @@ -3,7 +3,7 @@ package config import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/configservice" "github.com/aws/aws-sdk-go-v2/service/configservice/types" diff --git a/resources/services/config/config_rules_mock_test.go b/resources/services/config/config_rules_mock_test.go index 59070470..af1c0324 100644 --- a/resources/services/config/config_rules_mock_test.go +++ b/resources/services/config/config_rules_mock_test.go @@ -3,8 +3,8 @@ package config import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/configservice" "github.com/aws/aws-sdk-go-v2/service/configservice/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/config/configuration_aggregators.go b/resources/services/config/configuration_aggregators.go index cb81a658..5bc0eb56 100644 --- a/resources/services/config/configuration_aggregators.go +++ b/resources/services/config/configuration_aggregators.go @@ -3,7 +3,7 @@ package config import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/configservice" "github.com/aws/aws-sdk-go-v2/service/configservice/types" diff --git a/resources/services/config/configuration_aggregators_mock_test.go b/resources/services/config/configuration_aggregators_mock_test.go index d0cbbd3f..f9d34bf2 100644 --- a/resources/services/config/configuration_aggregators_mock_test.go +++ b/resources/services/config/configuration_aggregators_mock_test.go @@ -3,8 +3,8 @@ package config import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/configservice" "github.com/aws/aws-sdk-go-v2/service/configservice/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/config/configuration_recorders.go b/resources/services/config/configuration_recorders.go index 62f3ed70..fa6bd8f1 100644 --- a/resources/services/config/configuration_recorders.go +++ b/resources/services/config/configuration_recorders.go @@ -4,8 +4,8 @@ import ( "context" "fmt" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/resources/services/config/models" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/config/models" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/aws/arn" diff --git a/resources/services/config/configuration_recorders_mock_test.go b/resources/services/config/configuration_recorders_mock_test.go index a20a44b7..1e9df886 100644 --- a/resources/services/config/configuration_recorders_mock_test.go +++ b/resources/services/config/configuration_recorders_mock_test.go @@ -3,8 +3,8 @@ package config import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/configservice" "github.com/aws/aws-sdk-go-v2/service/configservice/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/config/conformance_pack_mock_test.go b/resources/services/config/conformance_pack_mock_test.go index b00a637c..c237a4f3 100644 --- a/resources/services/config/conformance_pack_mock_test.go +++ b/resources/services/config/conformance_pack_mock_test.go @@ -3,8 +3,8 @@ package config import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/configservice" "github.com/aws/aws-sdk-go-v2/service/configservice/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/config/conformance_pack_rule_compliances.go b/resources/services/config/conformance_pack_rule_compliances.go index 43d52601..ec8da56f 100644 --- a/resources/services/config/conformance_pack_rule_compliances.go +++ b/resources/services/config/conformance_pack_rule_compliances.go @@ -3,8 +3,8 @@ package config import ( "context" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/resources/services/config/models" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/config/models" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/configservice" "github.com/aws/aws-sdk-go-v2/service/configservice/types" diff --git a/resources/services/config/conformance_packs.go b/resources/services/config/conformance_packs.go index 36963bfb..51dd9c89 100644 --- a/resources/services/config/conformance_packs.go +++ b/resources/services/config/conformance_packs.go @@ -4,7 +4,7 @@ import ( "context" "errors" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/configservice" "github.com/aws/aws-sdk-go-v2/service/configservice/types" diff --git a/resources/services/config/remediation_configurations.go b/resources/services/config/remediation_configurations.go index 935be9a6..12ff7603 100644 --- a/resources/services/config/remediation_configurations.go +++ b/resources/services/config/remediation_configurations.go @@ -3,7 +3,7 @@ package config import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/configservice" "github.com/aws/aws-sdk-go-v2/service/configservice/types" diff --git a/resources/services/config/remediation_configurations_mock_test.go b/resources/services/config/remediation_configurations_mock_test.go index bdfeb6f3..24d16aac 100644 --- a/resources/services/config/remediation_configurations_mock_test.go +++ b/resources/services/config/remediation_configurations_mock_test.go @@ -3,8 +3,8 @@ package config import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/configservice" "github.com/aws/aws-sdk-go-v2/service/configservice/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/dax/clusters.go b/resources/services/dax/clusters.go index d04f9c1d..1d9b6d19 100644 --- a/resources/services/dax/clusters.go +++ b/resources/services/dax/clusters.go @@ -3,7 +3,7 @@ package dax import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/dax" diff --git a/resources/services/dax/clusters_mock_test.go b/resources/services/dax/clusters_mock_test.go index 5b56f957..a7c1e79b 100644 --- a/resources/services/dax/clusters_mock_test.go +++ b/resources/services/dax/clusters_mock_test.go @@ -3,8 +3,8 @@ package dax import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/dax" "github.com/aws/aws-sdk-go-v2/service/dax/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/detective/graphs.go b/resources/services/detective/graphs.go index 33d96a2a..333aa3bf 100644 --- a/resources/services/detective/graphs.go +++ b/resources/services/detective/graphs.go @@ -3,7 +3,7 @@ package detective import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/detective" "github.com/aws/aws-sdk-go-v2/service/detective/types" diff --git a/resources/services/detective/graphs_mock_test.go b/resources/services/detective/graphs_mock_test.go index 68d162d9..b2ead6a2 100644 --- a/resources/services/detective/graphs_mock_test.go +++ b/resources/services/detective/graphs_mock_test.go @@ -3,8 +3,8 @@ package detective import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/detective" "github.com/aws/aws-sdk-go-v2/service/detective/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/detective/members.go b/resources/services/detective/members.go index ebb2de50..a9eda932 100644 --- a/resources/services/detective/members.go +++ b/resources/services/detective/members.go @@ -3,7 +3,7 @@ package detective import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/detective" "github.com/aws/aws-sdk-go-v2/service/detective/types" diff --git a/resources/services/directconnect/connections.go b/resources/services/directconnect/connections.go index 13452a23..225cdd0e 100644 --- a/resources/services/directconnect/connections.go +++ b/resources/services/directconnect/connections.go @@ -3,7 +3,7 @@ package directconnect import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/directconnect" "github.com/aws/aws-sdk-go-v2/service/directconnect/types" diff --git a/resources/services/directconnect/connections_mock_test.go b/resources/services/directconnect/connections_mock_test.go index 878c5d85..a1d1db2c 100644 --- a/resources/services/directconnect/connections_mock_test.go +++ b/resources/services/directconnect/connections_mock_test.go @@ -3,8 +3,8 @@ package directconnect import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/directconnect" "github.com/aws/aws-sdk-go-v2/service/directconnect/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/directconnect/gateway_associations.go b/resources/services/directconnect/gateway_associations.go index 8bcb931f..ac0bd5f0 100644 --- a/resources/services/directconnect/gateway_associations.go +++ b/resources/services/directconnect/gateway_associations.go @@ -3,7 +3,7 @@ package directconnect import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/directconnect" diff --git a/resources/services/directconnect/gateway_attachments.go b/resources/services/directconnect/gateway_attachments.go index 79749863..f792e4f8 100644 --- a/resources/services/directconnect/gateway_attachments.go +++ b/resources/services/directconnect/gateway_attachments.go @@ -3,7 +3,7 @@ package directconnect import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/directconnect" diff --git a/resources/services/directconnect/gateway_mock_test.go b/resources/services/directconnect/gateway_mock_test.go index 312d3007..a1d1cecb 100644 --- a/resources/services/directconnect/gateway_mock_test.go +++ b/resources/services/directconnect/gateway_mock_test.go @@ -3,8 +3,8 @@ package directconnect import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/directconnect" "github.com/aws/aws-sdk-go-v2/service/directconnect/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/directconnect/gateways.go b/resources/services/directconnect/gateways.go index 080e31a0..2ad0f4d9 100644 --- a/resources/services/directconnect/gateways.go +++ b/resources/services/directconnect/gateways.go @@ -4,7 +4,7 @@ import ( "context" "strings" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/aws/arn" diff --git a/resources/services/directconnect/lags.go b/resources/services/directconnect/lags.go index 76c36027..36c9e755 100644 --- a/resources/services/directconnect/lags.go +++ b/resources/services/directconnect/lags.go @@ -3,7 +3,7 @@ package directconnect import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/directconnect" "github.com/aws/aws-sdk-go-v2/service/directconnect/types" diff --git a/resources/services/directconnect/lags_mock_test.go b/resources/services/directconnect/lags_mock_test.go index e922962d..ece4c285 100644 --- a/resources/services/directconnect/lags_mock_test.go +++ b/resources/services/directconnect/lags_mock_test.go @@ -3,8 +3,8 @@ package directconnect import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/directconnect" "github.com/aws/aws-sdk-go-v2/service/directconnect/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/directconnect/virtual_interfaces.go b/resources/services/directconnect/virtual_interfaces.go index 087645ca..fc1a8772 100644 --- a/resources/services/directconnect/virtual_interfaces.go +++ b/resources/services/directconnect/virtual_interfaces.go @@ -3,7 +3,7 @@ package directconnect import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/directconnect" "github.com/aws/aws-sdk-go-v2/service/directconnect/types" diff --git a/resources/services/directconnect/virtual_interfaces_mock_test.go b/resources/services/directconnect/virtual_interfaces_mock_test.go index a9ee8d8a..5d270e64 100644 --- a/resources/services/directconnect/virtual_interfaces_mock_test.go +++ b/resources/services/directconnect/virtual_interfaces_mock_test.go @@ -3,8 +3,8 @@ package directconnect import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/directconnect" "github.com/aws/aws-sdk-go-v2/service/directconnect/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/dms/replication_instances.go b/resources/services/dms/replication_instances.go index 1d323da9..0891c9e2 100644 --- a/resources/services/dms/replication_instances.go +++ b/resources/services/dms/replication_instances.go @@ -3,8 +3,8 @@ package dms import ( "context" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/resources/services/dms/models" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/dms/models" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/databasemigrationservice" "github.com/cloudquery/plugin-sdk/v4/schema" diff --git a/resources/services/dms/replication_instances_mock_test.go b/resources/services/dms/replication_instances_mock_test.go index 48ec3e2a..a86a6907 100644 --- a/resources/services/dms/replication_instances_mock_test.go +++ b/resources/services/dms/replication_instances_mock_test.go @@ -3,8 +3,8 @@ package dms import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/databasemigrationservice" "github.com/aws/aws-sdk-go-v2/service/databasemigrationservice/types" diff --git a/resources/services/dms/tags.go b/resources/services/dms/tags.go index cac712de..7d1fe1c8 100644 --- a/resources/services/dms/tags.go +++ b/resources/services/dms/tags.go @@ -3,7 +3,7 @@ package dms import ( "context" - "github.com/OpsHelmInc/cloudquery/client/services" + "github.com/OpsHelmInc/cloudquery/v2/client/services" "github.com/aws/aws-sdk-go-v2/service/databasemigrationservice" "github.com/thoas/go-funk" ) diff --git a/resources/services/dms/tags_test.go b/resources/services/dms/tags_test.go index b45f2784..547ca0af 100644 --- a/resources/services/dms/tags_test.go +++ b/resources/services/dms/tags_test.go @@ -4,7 +4,7 @@ import ( "context" "testing" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/databasemigrationservice" "github.com/aws/aws-sdk-go-v2/service/databasemigrationservice/types" diff --git a/resources/services/docdb/certificates.go b/resources/services/docdb/certificates.go index 995f944e..ba975957 100644 --- a/resources/services/docdb/certificates.go +++ b/resources/services/docdb/certificates.go @@ -3,7 +3,7 @@ package docdb import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/docdb" "github.com/aws/aws-sdk-go-v2/service/docdb/types" diff --git a/resources/services/docdb/certificates_mock_test.go b/resources/services/docdb/certificates_mock_test.go index 4323d639..a6822d5c 100644 --- a/resources/services/docdb/certificates_mock_test.go +++ b/resources/services/docdb/certificates_mock_test.go @@ -3,8 +3,8 @@ package docdb import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/docdb" "github.com/cloudquery/plugin-sdk/v4/faker" "github.com/golang/mock/gomock" diff --git a/resources/services/docdb/cluster_parameter_groups.go b/resources/services/docdb/cluster_parameter_groups.go index d8b2be6a..1d1350ed 100644 --- a/resources/services/docdb/cluster_parameter_groups.go +++ b/resources/services/docdb/cluster_parameter_groups.go @@ -3,7 +3,7 @@ package docdb import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/docdb" "github.com/aws/aws-sdk-go-v2/service/docdb/types" diff --git a/resources/services/docdb/cluster_parameter_groups_mock_test.go b/resources/services/docdb/cluster_parameter_groups_mock_test.go index 89f0ca40..fd58b640 100644 --- a/resources/services/docdb/cluster_parameter_groups_mock_test.go +++ b/resources/services/docdb/cluster_parameter_groups_mock_test.go @@ -3,8 +3,8 @@ package docdb import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/docdb" "github.com/cloudquery/plugin-sdk/v4/faker" "github.com/golang/mock/gomock" diff --git a/resources/services/docdb/cluster_snapshots.go b/resources/services/docdb/cluster_snapshots.go index 7ba17920..27fe41e5 100644 --- a/resources/services/docdb/cluster_snapshots.go +++ b/resources/services/docdb/cluster_snapshots.go @@ -3,7 +3,7 @@ package docdb import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/docdb" "github.com/aws/aws-sdk-go-v2/service/docdb/types" diff --git a/resources/services/docdb/clusters.go b/resources/services/docdb/clusters.go index dfd98d3c..3f65dee8 100644 --- a/resources/services/docdb/clusters.go +++ b/resources/services/docdb/clusters.go @@ -3,7 +3,7 @@ package docdb import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/docdb" diff --git a/resources/services/docdb/clusters_mock_test.go b/resources/services/docdb/clusters_mock_test.go index de67c7da..23f27fcd 100644 --- a/resources/services/docdb/clusters_mock_test.go +++ b/resources/services/docdb/clusters_mock_test.go @@ -3,8 +3,8 @@ package docdb import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/docdb" "github.com/cloudquery/plugin-sdk/v4/faker" "github.com/golang/mock/gomock" diff --git a/resources/services/docdb/event_subscriptions.go b/resources/services/docdb/event_subscriptions.go index b0562117..36bea7ab 100644 --- a/resources/services/docdb/event_subscriptions.go +++ b/resources/services/docdb/event_subscriptions.go @@ -3,7 +3,7 @@ package docdb import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/docdb" diff --git a/resources/services/docdb/event_subscriptions_mock_test.go b/resources/services/docdb/event_subscriptions_mock_test.go index e44d4897..2ef38d04 100644 --- a/resources/services/docdb/event_subscriptions_mock_test.go +++ b/resources/services/docdb/event_subscriptions_mock_test.go @@ -3,8 +3,8 @@ package docdb import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/docdb" "github.com/cloudquery/plugin-sdk/v4/faker" "github.com/golang/mock/gomock" diff --git a/resources/services/docdb/global_clusters.go b/resources/services/docdb/global_clusters.go index d75cf2a2..046afe7a 100644 --- a/resources/services/docdb/global_clusters.go +++ b/resources/services/docdb/global_clusters.go @@ -3,7 +3,7 @@ package docdb import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/docdb" diff --git a/resources/services/docdb/helpers.go b/resources/services/docdb/helpers.go index 9b64273d..d16a3ae0 100644 --- a/resources/services/docdb/helpers.go +++ b/resources/services/docdb/helpers.go @@ -3,7 +3,7 @@ package docdb import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/docdb" "github.com/cloudquery/plugin-sdk/v4/schema" diff --git a/resources/services/docdb/instances.go b/resources/services/docdb/instances.go index d875bc0f..76a11e8e 100644 --- a/resources/services/docdb/instances.go +++ b/resources/services/docdb/instances.go @@ -3,7 +3,7 @@ package docdb import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/docdb" diff --git a/resources/services/docdb/subnet_groups.go b/resources/services/docdb/subnet_groups.go index b4e09c14..ba096eb1 100644 --- a/resources/services/docdb/subnet_groups.go +++ b/resources/services/docdb/subnet_groups.go @@ -3,7 +3,7 @@ package docdb import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/docdb" "github.com/aws/aws-sdk-go-v2/service/docdb/types" diff --git a/resources/services/docdb/subnet_groups_mock_test.go b/resources/services/docdb/subnet_groups_mock_test.go index a014da2a..ab1e90eb 100644 --- a/resources/services/docdb/subnet_groups_mock_test.go +++ b/resources/services/docdb/subnet_groups_mock_test.go @@ -3,8 +3,8 @@ package docdb import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/docdb" "github.com/cloudquery/plugin-sdk/v4/faker" "github.com/golang/mock/gomock" diff --git a/resources/services/dynamodb/backups.go b/resources/services/dynamodb/backups.go index d3dafdb5..6d964d1d 100644 --- a/resources/services/dynamodb/backups.go +++ b/resources/services/dynamodb/backups.go @@ -3,7 +3,7 @@ package dynamodb import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/dynamodb" diff --git a/resources/services/dynamodb/backups_mock_test.go b/resources/services/dynamodb/backups_mock_test.go index 9805084b..792cd1bd 100644 --- a/resources/services/dynamodb/backups_mock_test.go +++ b/resources/services/dynamodb/backups_mock_test.go @@ -3,8 +3,8 @@ package dynamodb import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/dynamodb" "github.com/aws/aws-sdk-go-v2/service/dynamodb/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/dynamodb/export_mock_test.go b/resources/services/dynamodb/export_mock_test.go index 3a2622a8..1fb2198f 100644 --- a/resources/services/dynamodb/export_mock_test.go +++ b/resources/services/dynamodb/export_mock_test.go @@ -3,8 +3,8 @@ package dynamodb import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/dynamodb" "github.com/aws/aws-sdk-go-v2/service/dynamodb/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/dynamodb/exports.go b/resources/services/dynamodb/exports.go index 2e649dd8..181391e8 100644 --- a/resources/services/dynamodb/exports.go +++ b/resources/services/dynamodb/exports.go @@ -3,7 +3,7 @@ package dynamodb import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/dynamodb" "github.com/aws/aws-sdk-go-v2/service/dynamodb/types" diff --git a/resources/services/dynamodb/global_tables.go b/resources/services/dynamodb/global_tables.go index a79b8607..a9cca7d8 100644 --- a/resources/services/dynamodb/global_tables.go +++ b/resources/services/dynamodb/global_tables.go @@ -3,7 +3,7 @@ package dynamodb import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/dynamodb" diff --git a/resources/services/dynamodb/global_tables_mock_test.go b/resources/services/dynamodb/global_tables_mock_test.go index 10e35413..35887588 100644 --- a/resources/services/dynamodb/global_tables_mock_test.go +++ b/resources/services/dynamodb/global_tables_mock_test.go @@ -3,8 +3,8 @@ package dynamodb import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/dynamodb" "github.com/aws/aws-sdk-go-v2/service/dynamodb/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/dynamodb/table_continuous_backups.go b/resources/services/dynamodb/table_continuous_backups.go index 125b4f5b..0198a4c0 100644 --- a/resources/services/dynamodb/table_continuous_backups.go +++ b/resources/services/dynamodb/table_continuous_backups.go @@ -3,7 +3,7 @@ package dynamodb import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/dynamodb" "github.com/aws/aws-sdk-go-v2/service/dynamodb/types" diff --git a/resources/services/dynamodb/table_replica_auto_scalings.go b/resources/services/dynamodb/table_replica_auto_scalings.go index f83760a1..7392fb63 100644 --- a/resources/services/dynamodb/table_replica_auto_scalings.go +++ b/resources/services/dynamodb/table_replica_auto_scalings.go @@ -3,7 +3,7 @@ package dynamodb import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/dynamodb" diff --git a/resources/services/dynamodb/tables.go b/resources/services/dynamodb/tables.go index a3358dc4..7b416bca 100644 --- a/resources/services/dynamodb/tables.go +++ b/resources/services/dynamodb/tables.go @@ -3,7 +3,7 @@ package dynamodb import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/dynamodb" diff --git a/resources/services/dynamodb/tables_mock_test.go b/resources/services/dynamodb/tables_mock_test.go index 84b23dfc..1aa73cd5 100644 --- a/resources/services/dynamodb/tables_mock_test.go +++ b/resources/services/dynamodb/tables_mock_test.go @@ -3,8 +3,8 @@ package dynamodb import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/dynamodb" "github.com/aws/aws-sdk-go-v2/service/dynamodb/types" diff --git a/resources/services/dynamodbstreams/streams.go b/resources/services/dynamodbstreams/streams.go index 1467e063..af6fb208 100644 --- a/resources/services/dynamodbstreams/streams.go +++ b/resources/services/dynamodbstreams/streams.go @@ -3,7 +3,7 @@ package dynamodbstreams import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/dynamodbstreams" diff --git a/resources/services/dynamodbstreams/streams_mock_test.go b/resources/services/dynamodbstreams/streams_mock_test.go index b8e9af23..ed5fb387 100644 --- a/resources/services/dynamodbstreams/streams_mock_test.go +++ b/resources/services/dynamodbstreams/streams_mock_test.go @@ -3,8 +3,8 @@ package dynamodbstreams import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/dynamodbstreams" "github.com/aws/aws-sdk-go-v2/service/dynamodbstreams/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/ec2/capacity_reservations.go b/resources/services/ec2/capacity_reservations.go index 890d4294..02edb4c1 100644 --- a/resources/services/ec2/capacity_reservations.go +++ b/resources/services/ec2/capacity_reservations.go @@ -3,7 +3,7 @@ package ec2 import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/ec2" "github.com/aws/aws-sdk-go-v2/service/ec2/types" diff --git a/resources/services/ec2/capacity_reservations_mock_test.go b/resources/services/ec2/capacity_reservations_mock_test.go index f9f8cd72..e73750a2 100644 --- a/resources/services/ec2/capacity_reservations_mock_test.go +++ b/resources/services/ec2/capacity_reservations_mock_test.go @@ -3,8 +3,8 @@ package ec2 import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/ec2" "github.com/aws/aws-sdk-go-v2/service/ec2/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/ec2/customer_gateways.go b/resources/services/ec2/customer_gateways.go index f4824522..6f13f713 100644 --- a/resources/services/ec2/customer_gateways.go +++ b/resources/services/ec2/customer_gateways.go @@ -3,7 +3,7 @@ package ec2 import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/aws/arn" diff --git a/resources/services/ec2/customer_gateways_mock_test.go b/resources/services/ec2/customer_gateways_mock_test.go index 5d9e5118..ef0ddba0 100644 --- a/resources/services/ec2/customer_gateways_mock_test.go +++ b/resources/services/ec2/customer_gateways_mock_test.go @@ -3,8 +3,8 @@ package ec2 import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/ec2" "github.com/aws/aws-sdk-go-v2/service/ec2/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/ec2/ebs_snapshot_attributes.go b/resources/services/ec2/ebs_snapshot_attributes.go index b3b234ed..0a534974 100644 --- a/resources/services/ec2/ebs_snapshot_attributes.go +++ b/resources/services/ec2/ebs_snapshot_attributes.go @@ -3,7 +3,7 @@ package ec2 import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/ec2" diff --git a/resources/services/ec2/ebs_snapshots.go b/resources/services/ec2/ebs_snapshots.go index 9da13066..7bb1ec17 100644 --- a/resources/services/ec2/ebs_snapshots.go +++ b/resources/services/ec2/ebs_snapshots.go @@ -3,7 +3,7 @@ package ec2 import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/aws/arn" diff --git a/resources/services/ec2/ebs_snapshots_mock_test.go b/resources/services/ec2/ebs_snapshots_mock_test.go index 8e0e54f8..81a6155c 100644 --- a/resources/services/ec2/ebs_snapshots_mock_test.go +++ b/resources/services/ec2/ebs_snapshots_mock_test.go @@ -3,8 +3,8 @@ package ec2 import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/ec2" "github.com/aws/aws-sdk-go-v2/service/ec2/types" diff --git a/resources/services/ec2/ebs_volumes.go b/resources/services/ec2/ebs_volumes.go index cdbd66a7..15b03e90 100644 --- a/resources/services/ec2/ebs_volumes.go +++ b/resources/services/ec2/ebs_volumes.go @@ -3,7 +3,7 @@ package ec2 import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/aws/arn" diff --git a/resources/services/ec2/ebs_volumes_mock_test.go b/resources/services/ec2/ebs_volumes_mock_test.go index 458dc1fe..021a83d7 100644 --- a/resources/services/ec2/ebs_volumes_mock_test.go +++ b/resources/services/ec2/ebs_volumes_mock_test.go @@ -3,8 +3,8 @@ package ec2 import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/ec2" "github.com/cloudquery/plugin-sdk/v4/faker" "github.com/golang/mock/gomock" diff --git a/resources/services/ec2/egress_only_internet_gateways.go b/resources/services/ec2/egress_only_internet_gateways.go index 3985484b..0b82d32e 100644 --- a/resources/services/ec2/egress_only_internet_gateways.go +++ b/resources/services/ec2/egress_only_internet_gateways.go @@ -3,7 +3,7 @@ package ec2 import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/aws/arn" diff --git a/resources/services/ec2/egress_only_internet_gateways_mock_test.go b/resources/services/ec2/egress_only_internet_gateways_mock_test.go index 5c942827..025d2ac1 100644 --- a/resources/services/ec2/egress_only_internet_gateways_mock_test.go +++ b/resources/services/ec2/egress_only_internet_gateways_mock_test.go @@ -3,8 +3,8 @@ package ec2 import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/ec2" "github.com/cloudquery/plugin-sdk/v4/faker" "github.com/golang/mock/gomock" diff --git a/resources/services/ec2/eips.go b/resources/services/ec2/eips.go index c80dfb5d..af56f8f8 100644 --- a/resources/services/ec2/eips.go +++ b/resources/services/ec2/eips.go @@ -3,7 +3,7 @@ package ec2 import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/ec2" "github.com/aws/aws-sdk-go-v2/service/ec2/types" diff --git a/resources/services/ec2/flow_logs.go b/resources/services/ec2/flow_logs.go index ae5ea9c7..cffe2cb3 100644 --- a/resources/services/ec2/flow_logs.go +++ b/resources/services/ec2/flow_logs.go @@ -3,7 +3,7 @@ package ec2 import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/aws/arn" diff --git a/resources/services/ec2/flow_logs_mock_test.go b/resources/services/ec2/flow_logs_mock_test.go index f483f064..a61b50af 100644 --- a/resources/services/ec2/flow_logs_mock_test.go +++ b/resources/services/ec2/flow_logs_mock_test.go @@ -3,8 +3,8 @@ package ec2 import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/ec2" "github.com/aws/aws-sdk-go-v2/service/ec2/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/ec2/hosts.go b/resources/services/ec2/hosts.go index 1ea51c3d..481fd7c9 100644 --- a/resources/services/ec2/hosts.go +++ b/resources/services/ec2/hosts.go @@ -3,7 +3,7 @@ package ec2 import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/aws/arn" diff --git a/resources/services/ec2/hosts_mock_test.go b/resources/services/ec2/hosts_mock_test.go index 90a9e283..a470f8b3 100644 --- a/resources/services/ec2/hosts_mock_test.go +++ b/resources/services/ec2/hosts_mock_test.go @@ -3,8 +3,8 @@ package ec2 import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/ec2" "github.com/aws/aws-sdk-go-v2/service/ec2/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/ec2/image_attributes.go b/resources/services/ec2/image_attributes.go index 8ba70226..b451c6f7 100644 --- a/resources/services/ec2/image_attributes.go +++ b/resources/services/ec2/image_attributes.go @@ -3,7 +3,7 @@ package ec2 import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/ec2" diff --git a/resources/services/ec2/image_last_launched.go b/resources/services/ec2/image_last_launched.go index e04c2502..bf2176d4 100644 --- a/resources/services/ec2/image_last_launched.go +++ b/resources/services/ec2/image_last_launched.go @@ -3,7 +3,7 @@ package ec2 import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/ec2" diff --git a/resources/services/ec2/images.go b/resources/services/ec2/images.go index 41b1ecc2..2e0e8989 100644 --- a/resources/services/ec2/images.go +++ b/resources/services/ec2/images.go @@ -4,7 +4,7 @@ import ( "context" "reflect" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/aws/arn" diff --git a/resources/services/ec2/images_mock_test.go b/resources/services/ec2/images_mock_test.go index 04de23e9..82092832 100644 --- a/resources/services/ec2/images_mock_test.go +++ b/resources/services/ec2/images_mock_test.go @@ -3,8 +3,8 @@ package ec2 import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/ec2" "github.com/aws/aws-sdk-go-v2/service/ec2/types" diff --git a/resources/services/ec2/instance_connect.go b/resources/services/ec2/instance_connect.go index 7a966d75..d8c86424 100644 --- a/resources/services/ec2/instance_connect.go +++ b/resources/services/ec2/instance_connect.go @@ -3,7 +3,7 @@ package ec2 import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/ec2" "github.com/aws/aws-sdk-go-v2/service/ec2/types" diff --git a/resources/services/ec2/instance_connect_mock_test.go b/resources/services/ec2/instance_connect_mock_test.go index b97587de..323502f9 100644 --- a/resources/services/ec2/instance_connect_mock_test.go +++ b/resources/services/ec2/instance_connect_mock_test.go @@ -3,8 +3,8 @@ package ec2 import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/ec2" "github.com/aws/aws-sdk-go-v2/service/ec2/types" "github.com/aws/smithy-go/middleware" diff --git a/resources/services/ec2/instances.go b/resources/services/ec2/instances.go index d045448d..3607d3c0 100644 --- a/resources/services/ec2/instances.go +++ b/resources/services/ec2/instances.go @@ -5,7 +5,7 @@ import ( "regexp" "time" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/aws/arn" diff --git a/resources/services/ec2/instances_mock_test.go b/resources/services/ec2/instances_mock_test.go index ef117c74..fa5be442 100644 --- a/resources/services/ec2/instances_mock_test.go +++ b/resources/services/ec2/instances_mock_test.go @@ -3,8 +3,8 @@ package ec2 import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/ec2" "github.com/aws/aws-sdk-go-v2/service/ec2/types" diff --git a/resources/services/ec2/internet_gateways.go b/resources/services/ec2/internet_gateways.go index e517c55d..e85e6797 100644 --- a/resources/services/ec2/internet_gateways.go +++ b/resources/services/ec2/internet_gateways.go @@ -3,7 +3,7 @@ package ec2 import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/aws/arn" diff --git a/resources/services/ec2/internet_gateways_mock_test.go b/resources/services/ec2/internet_gateways_mock_test.go index 75b4aa22..5872d2a9 100644 --- a/resources/services/ec2/internet_gateways_mock_test.go +++ b/resources/services/ec2/internet_gateways_mock_test.go @@ -3,8 +3,8 @@ package ec2 import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/ec2" "github.com/aws/aws-sdk-go-v2/service/ec2/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/ec2/key_pairs.go b/resources/services/ec2/key_pairs.go index 96bb98ad..105cad5f 100644 --- a/resources/services/ec2/key_pairs.go +++ b/resources/services/ec2/key_pairs.go @@ -3,7 +3,7 @@ package ec2 import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/aws/arn" diff --git a/resources/services/ec2/key_pairs_mock_test.go b/resources/services/ec2/key_pairs_mock_test.go index 4b440b25..8f87fed0 100644 --- a/resources/services/ec2/key_pairs_mock_test.go +++ b/resources/services/ec2/key_pairs_mock_test.go @@ -3,8 +3,8 @@ package ec2 import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/ec2" "github.com/aws/aws-sdk-go-v2/service/ec2/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/ec2/launch_template_versions.go b/resources/services/ec2/launch_template_versions.go index 33bd44dd..bda2a609 100644 --- a/resources/services/ec2/launch_template_versions.go +++ b/resources/services/ec2/launch_template_versions.go @@ -4,7 +4,7 @@ import ( "context" "fmt" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/aws/arn" diff --git a/resources/services/ec2/launch_template_versions_mock_test.go b/resources/services/ec2/launch_template_versions_mock_test.go index df246e6c..f6d3e35d 100644 --- a/resources/services/ec2/launch_template_versions_mock_test.go +++ b/resources/services/ec2/launch_template_versions_mock_test.go @@ -3,8 +3,8 @@ package ec2 import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/ec2" "github.com/aws/aws-sdk-go-v2/service/ec2/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/ec2/launch_templates.go b/resources/services/ec2/launch_templates.go index c9ff29c4..1d0b721b 100644 --- a/resources/services/ec2/launch_templates.go +++ b/resources/services/ec2/launch_templates.go @@ -3,7 +3,7 @@ package ec2 import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/aws/arn" diff --git a/resources/services/ec2/launch_templates_mock_test.go b/resources/services/ec2/launch_templates_mock_test.go index d2d632e9..5061552f 100644 --- a/resources/services/ec2/launch_templates_mock_test.go +++ b/resources/services/ec2/launch_templates_mock_test.go @@ -3,8 +3,8 @@ package ec2 import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/ec2" "github.com/aws/aws-sdk-go-v2/service/ec2/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/ec2/managed_prefix_lists.go b/resources/services/ec2/managed_prefix_lists.go index 766403ab..ae1305cc 100644 --- a/resources/services/ec2/managed_prefix_lists.go +++ b/resources/services/ec2/managed_prefix_lists.go @@ -3,7 +3,7 @@ package ec2 import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/ec2" "github.com/aws/aws-sdk-go-v2/service/ec2/types" diff --git a/resources/services/ec2/managed_prefix_lists_mock_test.go b/resources/services/ec2/managed_prefix_lists_mock_test.go index 88ca108c..4cf2b5ca 100644 --- a/resources/services/ec2/managed_prefix_lists_mock_test.go +++ b/resources/services/ec2/managed_prefix_lists_mock_test.go @@ -3,8 +3,8 @@ package ec2 import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/ec2" "github.com/aws/aws-sdk-go-v2/service/ec2/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/ec2/nat_gateways.go b/resources/services/ec2/nat_gateways.go index fd58e397..e86e693a 100644 --- a/resources/services/ec2/nat_gateways.go +++ b/resources/services/ec2/nat_gateways.go @@ -3,7 +3,7 @@ package ec2 import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/aws/arn" diff --git a/resources/services/ec2/nat_gateways_mock_test.go b/resources/services/ec2/nat_gateways_mock_test.go index a437533d..08230545 100644 --- a/resources/services/ec2/nat_gateways_mock_test.go +++ b/resources/services/ec2/nat_gateways_mock_test.go @@ -3,8 +3,8 @@ package ec2 import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/ec2" "github.com/aws/aws-sdk-go-v2/service/ec2/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/ec2/network_acls.go b/resources/services/ec2/network_acls.go index d172a8d0..b86039e2 100644 --- a/resources/services/ec2/network_acls.go +++ b/resources/services/ec2/network_acls.go @@ -3,7 +3,7 @@ package ec2 import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/aws/arn" diff --git a/resources/services/ec2/network_acls_mock_test.go b/resources/services/ec2/network_acls_mock_test.go index 0f6a8ca9..df39220b 100644 --- a/resources/services/ec2/network_acls_mock_test.go +++ b/resources/services/ec2/network_acls_mock_test.go @@ -3,8 +3,8 @@ package ec2 import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/ec2" "github.com/aws/aws-sdk-go-v2/service/ec2/types" diff --git a/resources/services/ec2/network_interfaces.go b/resources/services/ec2/network_interfaces.go index 3dabfb02..7ae79581 100644 --- a/resources/services/ec2/network_interfaces.go +++ b/resources/services/ec2/network_interfaces.go @@ -3,7 +3,7 @@ package ec2 import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/aws/arn" diff --git a/resources/services/ec2/network_interfaces_mock_test.go b/resources/services/ec2/network_interfaces_mock_test.go index ff0be5c1..3f6f589c 100644 --- a/resources/services/ec2/network_interfaces_mock_test.go +++ b/resources/services/ec2/network_interfaces_mock_test.go @@ -3,8 +3,8 @@ package ec2 import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/ec2" "github.com/cloudquery/plugin-sdk/v4/faker" "github.com/golang/mock/gomock" diff --git a/resources/services/ec2/regional_config_mock_test.go b/resources/services/ec2/regional_config_mock_test.go index dec9650f..21c95f6d 100644 --- a/resources/services/ec2/regional_config_mock_test.go +++ b/resources/services/ec2/regional_config_mock_test.go @@ -3,8 +3,8 @@ package ec2 import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/ec2" "github.com/golang/mock/gomock" diff --git a/resources/services/ec2/regional_configs.go b/resources/services/ec2/regional_configs.go index 5939025e..5659cd42 100644 --- a/resources/services/ec2/regional_configs.go +++ b/resources/services/ec2/regional_configs.go @@ -3,8 +3,8 @@ package ec2 import ( "context" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/resources/services/ec2/models" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/ec2/models" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws/arn" "github.com/aws/aws-sdk-go-v2/service/ec2" diff --git a/resources/services/ec2/regions.go b/resources/services/ec2/regions.go index fca74289..7575903b 100644 --- a/resources/services/ec2/regions.go +++ b/resources/services/ec2/regions.go @@ -3,7 +3,7 @@ package ec2 import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/aws/arn" diff --git a/resources/services/ec2/regions_mock_test.go b/resources/services/ec2/regions_mock_test.go index 952dd87e..1fdc4c3b 100644 --- a/resources/services/ec2/regions_mock_test.go +++ b/resources/services/ec2/regions_mock_test.go @@ -3,8 +3,8 @@ package ec2 import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/ec2" "github.com/aws/aws-sdk-go-v2/service/ec2/types" diff --git a/resources/services/ec2/reserved_instances.go b/resources/services/ec2/reserved_instances.go index 07217079..af296b21 100644 --- a/resources/services/ec2/reserved_instances.go +++ b/resources/services/ec2/reserved_instances.go @@ -3,7 +3,7 @@ package ec2 import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/aws/arn" diff --git a/resources/services/ec2/reserved_instances_mock_test.go b/resources/services/ec2/reserved_instances_mock_test.go index 58c6c9f9..0758f370 100644 --- a/resources/services/ec2/reserved_instances_mock_test.go +++ b/resources/services/ec2/reserved_instances_mock_test.go @@ -3,8 +3,8 @@ package ec2 import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/ec2" "github.com/aws/aws-sdk-go-v2/service/ec2/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/ec2/route_tables.go b/resources/services/ec2/route_tables.go index d6926e2e..459dde0e 100644 --- a/resources/services/ec2/route_tables.go +++ b/resources/services/ec2/route_tables.go @@ -3,7 +3,7 @@ package ec2 import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/aws/arn" diff --git a/resources/services/ec2/route_tables_mock_test.go b/resources/services/ec2/route_tables_mock_test.go index 293e1343..3a12bef2 100644 --- a/resources/services/ec2/route_tables_mock_test.go +++ b/resources/services/ec2/route_tables_mock_test.go @@ -3,8 +3,8 @@ package ec2 import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/ec2" "github.com/aws/aws-sdk-go-v2/service/ec2/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/ec2/security_groups.go b/resources/services/ec2/security_groups.go index 701b8b30..0531356f 100644 --- a/resources/services/ec2/security_groups.go +++ b/resources/services/ec2/security_groups.go @@ -3,7 +3,7 @@ package ec2 import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/aws/arn" diff --git a/resources/services/ec2/security_groups_mock_test.go b/resources/services/ec2/security_groups_mock_test.go index c5c5118b..56fc6095 100644 --- a/resources/services/ec2/security_groups_mock_test.go +++ b/resources/services/ec2/security_groups_mock_test.go @@ -3,8 +3,8 @@ package ec2 import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/ec2" "github.com/aws/aws-sdk-go-v2/service/ec2/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/ec2/subnets.go b/resources/services/ec2/subnets.go index 08db6917..472bdd75 100644 --- a/resources/services/ec2/subnets.go +++ b/resources/services/ec2/subnets.go @@ -3,7 +3,7 @@ package ec2 import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/ec2" "github.com/aws/aws-sdk-go-v2/service/ec2/types" diff --git a/resources/services/ec2/subnets_mock_test.go b/resources/services/ec2/subnets_mock_test.go index e129321b..ffe02175 100644 --- a/resources/services/ec2/subnets_mock_test.go +++ b/resources/services/ec2/subnets_mock_test.go @@ -3,8 +3,8 @@ package ec2 import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/ec2" "github.com/aws/aws-sdk-go-v2/service/ec2/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/ec2/transit_gateway_attachments.go b/resources/services/ec2/transit_gateway_attachments.go index 40184fa1..394d2ae2 100644 --- a/resources/services/ec2/transit_gateway_attachments.go +++ b/resources/services/ec2/transit_gateway_attachments.go @@ -3,7 +3,7 @@ package ec2 import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/ec2" diff --git a/resources/services/ec2/transit_gateway_multicast_domains.go b/resources/services/ec2/transit_gateway_multicast_domains.go index 9e6b4c29..82644c7d 100644 --- a/resources/services/ec2/transit_gateway_multicast_domains.go +++ b/resources/services/ec2/transit_gateway_multicast_domains.go @@ -3,7 +3,7 @@ package ec2 import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/ec2" diff --git a/resources/services/ec2/transit_gateway_peering_attachments.go b/resources/services/ec2/transit_gateway_peering_attachments.go index c5ac8f0a..667b50bb 100644 --- a/resources/services/ec2/transit_gateway_peering_attachments.go +++ b/resources/services/ec2/transit_gateway_peering_attachments.go @@ -3,7 +3,7 @@ package ec2 import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/ec2" diff --git a/resources/services/ec2/transit_gateway_route_tables.go b/resources/services/ec2/transit_gateway_route_tables.go index 12559617..fba47adc 100644 --- a/resources/services/ec2/transit_gateway_route_tables.go +++ b/resources/services/ec2/transit_gateway_route_tables.go @@ -3,7 +3,7 @@ package ec2 import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/ec2" diff --git a/resources/services/ec2/transit_gateway_vpc_attachments.go b/resources/services/ec2/transit_gateway_vpc_attachments.go index 1254c521..12e2945c 100644 --- a/resources/services/ec2/transit_gateway_vpc_attachments.go +++ b/resources/services/ec2/transit_gateway_vpc_attachments.go @@ -3,7 +3,7 @@ package ec2 import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/ec2" diff --git a/resources/services/ec2/transit_gateways.go b/resources/services/ec2/transit_gateways.go index 25c5b8a1..d8c1d3b9 100644 --- a/resources/services/ec2/transit_gateways.go +++ b/resources/services/ec2/transit_gateways.go @@ -3,7 +3,7 @@ package ec2 import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/ec2" "github.com/aws/aws-sdk-go-v2/service/ec2/types" diff --git a/resources/services/ec2/transit_gateways_mock_test.go b/resources/services/ec2/transit_gateways_mock_test.go index 6699d7f6..1e4b9d99 100644 --- a/resources/services/ec2/transit_gateways_mock_test.go +++ b/resources/services/ec2/transit_gateways_mock_test.go @@ -3,8 +3,8 @@ package ec2 import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/ec2" "github.com/aws/aws-sdk-go-v2/service/ec2/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/ec2/vpc_endpoint_service_permissions.go b/resources/services/ec2/vpc_endpoint_service_permissions.go index dc37d0eb..959f845a 100644 --- a/resources/services/ec2/vpc_endpoint_service_permissions.go +++ b/resources/services/ec2/vpc_endpoint_service_permissions.go @@ -3,7 +3,7 @@ package ec2 import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/ec2" "github.com/aws/aws-sdk-go-v2/service/ec2/types" diff --git a/resources/services/ec2/vpc_endpoint_services.go b/resources/services/ec2/vpc_endpoint_services.go index c7382d71..0e08b9e8 100644 --- a/resources/services/ec2/vpc_endpoint_services.go +++ b/resources/services/ec2/vpc_endpoint_services.go @@ -3,7 +3,7 @@ package ec2 import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/ec2" "github.com/aws/aws-sdk-go-v2/service/ec2/types" diff --git a/resources/services/ec2/vpc_endpoint_services_mock_test.go b/resources/services/ec2/vpc_endpoint_services_mock_test.go index a7117c20..1da19de9 100644 --- a/resources/services/ec2/vpc_endpoint_services_mock_test.go +++ b/resources/services/ec2/vpc_endpoint_services_mock_test.go @@ -3,8 +3,8 @@ package ec2 import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/ec2" "github.com/aws/aws-sdk-go-v2/service/ec2/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/ec2/vpc_endpoints.go b/resources/services/ec2/vpc_endpoints.go index 3ba98388..c27b7853 100644 --- a/resources/services/ec2/vpc_endpoints.go +++ b/resources/services/ec2/vpc_endpoints.go @@ -3,7 +3,7 @@ package ec2 import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/aws/arn" diff --git a/resources/services/ec2/vpc_endpoints_mock_test.go b/resources/services/ec2/vpc_endpoints_mock_test.go index 0643e857..b3a8c742 100644 --- a/resources/services/ec2/vpc_endpoints_mock_test.go +++ b/resources/services/ec2/vpc_endpoints_mock_test.go @@ -3,8 +3,8 @@ package ec2 import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/ec2" "github.com/aws/aws-sdk-go-v2/service/ec2/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/ec2/vpc_peering_connections.go b/resources/services/ec2/vpc_peering_connections.go index 82cff4c5..872d8f6b 100644 --- a/resources/services/ec2/vpc_peering_connections.go +++ b/resources/services/ec2/vpc_peering_connections.go @@ -3,7 +3,7 @@ package ec2 import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/aws/arn" diff --git a/resources/services/ec2/vpcs.go b/resources/services/ec2/vpcs.go index ef806d5f..aea03e9a 100644 --- a/resources/services/ec2/vpcs.go +++ b/resources/services/ec2/vpcs.go @@ -3,7 +3,7 @@ package ec2 import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/aws/arn" diff --git a/resources/services/ec2/vpcs_mock_test.go b/resources/services/ec2/vpcs_mock_test.go index d8b2ccbf..5093f8fe 100644 --- a/resources/services/ec2/vpcs_mock_test.go +++ b/resources/services/ec2/vpcs_mock_test.go @@ -3,8 +3,8 @@ package ec2 import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/ec2" "github.com/aws/aws-sdk-go-v2/service/ec2/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/ec2/vpcs_peering_connections_mock_test.go b/resources/services/ec2/vpcs_peering_connections_mock_test.go index b5cd126e..3ef45da8 100644 --- a/resources/services/ec2/vpcs_peering_connections_mock_test.go +++ b/resources/services/ec2/vpcs_peering_connections_mock_test.go @@ -3,8 +3,8 @@ package ec2 import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/ec2" "github.com/aws/aws-sdk-go-v2/service/ec2/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/ec2/vpn_connections.go b/resources/services/ec2/vpn_connections.go index b66c7269..c8456581 100644 --- a/resources/services/ec2/vpn_connections.go +++ b/resources/services/ec2/vpn_connections.go @@ -3,7 +3,7 @@ package ec2 import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/aws/aws-sdk-go-v2/service/ec2" "github.com/aws/aws-sdk-go-v2/service/ec2/types" "github.com/cloudquery/plugin-sdk/v4/schema" diff --git a/resources/services/ec2/vpn_connections_mock_test.go b/resources/services/ec2/vpn_connections_mock_test.go index f7126669..e912f59f 100644 --- a/resources/services/ec2/vpn_connections_mock_test.go +++ b/resources/services/ec2/vpn_connections_mock_test.go @@ -3,8 +3,8 @@ package ec2 import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/ec2" "github.com/aws/aws-sdk-go-v2/service/ec2/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/ec2/vpn_gateways.go b/resources/services/ec2/vpn_gateways.go index 77909524..eb224195 100644 --- a/resources/services/ec2/vpn_gateways.go +++ b/resources/services/ec2/vpn_gateways.go @@ -3,7 +3,7 @@ package ec2 import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/aws/arn" diff --git a/resources/services/ec2/vpn_gateways_mock_test.go b/resources/services/ec2/vpn_gateways_mock_test.go index 4588d942..f7d648e4 100644 --- a/resources/services/ec2/vpn_gateways_mock_test.go +++ b/resources/services/ec2/vpn_gateways_mock_test.go @@ -3,8 +3,8 @@ package ec2 import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/ec2" "github.com/aws/aws-sdk-go-v2/service/ec2/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/ecr/lifecycle_policy.go b/resources/services/ecr/lifecycle_policy.go index e665898f..e16779d0 100644 --- a/resources/services/ecr/lifecycle_policy.go +++ b/resources/services/ecr/lifecycle_policy.go @@ -3,7 +3,7 @@ package ecr import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/ecr" "github.com/aws/aws-sdk-go-v2/service/ecr/types" diff --git a/resources/services/ecr/repositories.go b/resources/services/ecr/repositories.go index 38677aab..760155d0 100644 --- a/resources/services/ecr/repositories.go +++ b/resources/services/ecr/repositories.go @@ -3,7 +3,7 @@ package ecr import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/ecr" diff --git a/resources/services/ecr/repositories_mock_test.go b/resources/services/ecr/repositories_mock_test.go index 3fd2df9b..a03b9ad8 100644 --- a/resources/services/ecr/repositories_mock_test.go +++ b/resources/services/ecr/repositories_mock_test.go @@ -3,8 +3,8 @@ package ecr import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/ecr" "github.com/aws/aws-sdk-go-v2/service/ecr/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/ecr/repository_image_scan_findings.go b/resources/services/ecr/repository_image_scan_findings.go index d51e563e..e6db694b 100644 --- a/resources/services/ecr/repository_image_scan_findings.go +++ b/resources/services/ecr/repository_image_scan_findings.go @@ -3,7 +3,7 @@ package ecr import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/ecr" diff --git a/resources/services/ecr/repository_images.go b/resources/services/ecr/repository_images.go index c65ca5bc..d4cd80fe 100644 --- a/resources/services/ecr/repository_images.go +++ b/resources/services/ecr/repository_images.go @@ -3,7 +3,7 @@ package ecr import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/ecr" diff --git a/resources/services/ecr/repository_policy.go b/resources/services/ecr/repository_policy.go index e83a2092..4ecb1651 100644 --- a/resources/services/ecr/repository_policy.go +++ b/resources/services/ecr/repository_policy.go @@ -3,7 +3,7 @@ package ecr import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/ecr" "github.com/aws/aws-sdk-go-v2/service/ecr/types" diff --git a/resources/services/ecrpublic/repositories.go b/resources/services/ecrpublic/repositories.go index 69f5a699..9036f1bd 100644 --- a/resources/services/ecrpublic/repositories.go +++ b/resources/services/ecrpublic/repositories.go @@ -3,7 +3,7 @@ package ecrpublic import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/ecrpublic" diff --git a/resources/services/ecrpublic/repositories_mock_test.go b/resources/services/ecrpublic/repositories_mock_test.go index 2d64893c..bdc14684 100644 --- a/resources/services/ecrpublic/repositories_mock_test.go +++ b/resources/services/ecrpublic/repositories_mock_test.go @@ -3,8 +3,8 @@ package ecrpublic import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/ecrpublic" "github.com/aws/aws-sdk-go-v2/service/ecrpublic/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/ecrpublic/repository_images.go b/resources/services/ecrpublic/repository_images.go index 47f0f45e..12f7fc35 100644 --- a/resources/services/ecrpublic/repository_images.go +++ b/resources/services/ecrpublic/repository_images.go @@ -3,7 +3,7 @@ package ecrpublic import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/aws/arn" diff --git a/resources/services/ecs/cluster_container_instances.go b/resources/services/ecs/cluster_container_instances.go index 2a13fe88..93232e9a 100644 --- a/resources/services/ecs/cluster_container_instances.go +++ b/resources/services/ecs/cluster_container_instances.go @@ -3,7 +3,7 @@ package ecs import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/ecs" "github.com/aws/aws-sdk-go-v2/service/ecs/types" diff --git a/resources/services/ecs/cluster_mock_test.go b/resources/services/ecs/cluster_mock_test.go index ca015d5c..55eeab48 100644 --- a/resources/services/ecs/cluster_mock_test.go +++ b/resources/services/ecs/cluster_mock_test.go @@ -3,8 +3,8 @@ package ecs import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/ecs" "github.com/aws/aws-sdk-go-v2/service/ecs/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/ecs/cluster_services.go b/resources/services/ecs/cluster_services.go index 903f178d..cb172de2 100644 --- a/resources/services/ecs/cluster_services.go +++ b/resources/services/ecs/cluster_services.go @@ -3,7 +3,7 @@ package ecs import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/ecs" "github.com/aws/aws-sdk-go-v2/service/ecs/types" diff --git a/resources/services/ecs/cluster_task_sets.go b/resources/services/ecs/cluster_task_sets.go index c8739634..eba543a0 100644 --- a/resources/services/ecs/cluster_task_sets.go +++ b/resources/services/ecs/cluster_task_sets.go @@ -3,7 +3,7 @@ package ecs import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/ecs" "github.com/aws/aws-sdk-go-v2/service/ecs/types" diff --git a/resources/services/ecs/cluster_tasks.go b/resources/services/ecs/cluster_tasks.go index ffd2dbeb..a89084fd 100644 --- a/resources/services/ecs/cluster_tasks.go +++ b/resources/services/ecs/cluster_tasks.go @@ -3,7 +3,7 @@ package ecs import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/ecs" diff --git a/resources/services/ecs/clusters.go b/resources/services/ecs/clusters.go index 7af91d25..a5825b50 100644 --- a/resources/services/ecs/clusters.go +++ b/resources/services/ecs/clusters.go @@ -3,7 +3,7 @@ package ecs import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/ecs" "github.com/aws/aws-sdk-go-v2/service/ecs/types" diff --git a/resources/services/ecs/task_definitions.go b/resources/services/ecs/task_definitions.go index b2b6fa39..81a99f41 100644 --- a/resources/services/ecs/task_definitions.go +++ b/resources/services/ecs/task_definitions.go @@ -4,8 +4,8 @@ import ( "context" "errors" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/resources/services/ecs/models" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/ecs/models" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/ecs" diff --git a/resources/services/ecs/task_definitions_mock_test.go b/resources/services/ecs/task_definitions_mock_test.go index 4b88e5ba..97ca1eea 100644 --- a/resources/services/ecs/task_definitions_mock_test.go +++ b/resources/services/ecs/task_definitions_mock_test.go @@ -3,8 +3,8 @@ package ecs import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/ecs" "github.com/cloudquery/plugin-sdk/v4/faker" "github.com/golang/mock/gomock" diff --git a/resources/services/efs/accesspoints.go b/resources/services/efs/accesspoints.go index 73c534ac..bdd817b6 100644 --- a/resources/services/efs/accesspoints.go +++ b/resources/services/efs/accesspoints.go @@ -3,7 +3,7 @@ package efs import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/efs" "github.com/aws/aws-sdk-go-v2/service/efs/types" diff --git a/resources/services/efs/accesspoints_mock_test.go b/resources/services/efs/accesspoints_mock_test.go index ee1021c8..0d40b496 100644 --- a/resources/services/efs/accesspoints_mock_test.go +++ b/resources/services/efs/accesspoints_mock_test.go @@ -3,8 +3,8 @@ package efs import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/efs" "github.com/aws/aws-sdk-go-v2/service/efs/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/efs/filesystems.go b/resources/services/efs/filesystems.go index da70982e..a68ba356 100644 --- a/resources/services/efs/filesystems.go +++ b/resources/services/efs/filesystems.go @@ -3,7 +3,7 @@ package efs import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/efs" "github.com/aws/aws-sdk-go-v2/service/efs/types" diff --git a/resources/services/efs/filesystems_mock_test.go b/resources/services/efs/filesystems_mock_test.go index 715e4313..e802bca6 100644 --- a/resources/services/efs/filesystems_mock_test.go +++ b/resources/services/efs/filesystems_mock_test.go @@ -3,8 +3,8 @@ package efs import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/efs" "github.com/aws/aws-sdk-go-v2/service/efs/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/eks/add_ons.go b/resources/services/eks/add_ons.go index ca148c36..df8d4ef8 100644 --- a/resources/services/eks/add_ons.go +++ b/resources/services/eks/add_ons.go @@ -3,7 +3,7 @@ package eks import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/eks" "github.com/aws/aws-sdk-go-v2/service/eks/types" diff --git a/resources/services/eks/clusters.go b/resources/services/eks/clusters.go index e431d2bf..438bc826 100644 --- a/resources/services/eks/clusters.go +++ b/resources/services/eks/clusters.go @@ -3,7 +3,7 @@ package eks import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/eks" "github.com/aws/aws-sdk-go-v2/service/eks/types" diff --git a/resources/services/eks/clusters_mock_test.go b/resources/services/eks/clusters_mock_test.go index c43818df..bd628074 100644 --- a/resources/services/eks/clusters_mock_test.go +++ b/resources/services/eks/clusters_mock_test.go @@ -3,8 +3,8 @@ package eks import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/eks" "github.com/aws/aws-sdk-go-v2/service/eks/types" diff --git a/resources/services/eks/fargate_profiles.go b/resources/services/eks/fargate_profiles.go index c212bed4..cafba1c3 100644 --- a/resources/services/eks/fargate_profiles.go +++ b/resources/services/eks/fargate_profiles.go @@ -3,7 +3,7 @@ package eks import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/eks" "github.com/aws/aws-sdk-go-v2/service/eks/types" diff --git a/resources/services/eks/identity_provider_configs.go b/resources/services/eks/identity_provider_configs.go index 50560a03..3d4d20e0 100644 --- a/resources/services/eks/identity_provider_configs.go +++ b/resources/services/eks/identity_provider_configs.go @@ -3,7 +3,7 @@ package eks import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/eks" diff --git a/resources/services/eks/node_groups.go b/resources/services/eks/node_groups.go index 23cd8128..d8a80f36 100644 --- a/resources/services/eks/node_groups.go +++ b/resources/services/eks/node_groups.go @@ -3,7 +3,7 @@ package eks import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/eks" "github.com/aws/aws-sdk-go-v2/service/eks/types" diff --git a/resources/services/elasticache/clusters.go b/resources/services/elasticache/clusters.go index 691a5b56..7ba82551 100644 --- a/resources/services/elasticache/clusters.go +++ b/resources/services/elasticache/clusters.go @@ -3,7 +3,7 @@ package elasticache import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/elasticache" diff --git a/resources/services/elasticache/clusters_mock_test.go b/resources/services/elasticache/clusters_mock_test.go index 23b0c47c..074dd380 100644 --- a/resources/services/elasticache/clusters_mock_test.go +++ b/resources/services/elasticache/clusters_mock_test.go @@ -3,8 +3,8 @@ package elasticache import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/elasticache" "github.com/aws/aws-sdk-go-v2/service/elasticache/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/elasticache/global_replication_groups.go b/resources/services/elasticache/global_replication_groups.go index 78daa025..85049700 100644 --- a/resources/services/elasticache/global_replication_groups.go +++ b/resources/services/elasticache/global_replication_groups.go @@ -3,7 +3,7 @@ package elasticache import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/elasticache" "github.com/aws/aws-sdk-go-v2/service/elasticache/types" diff --git a/resources/services/elasticache/global_replication_groups_mock_test.go b/resources/services/elasticache/global_replication_groups_mock_test.go index 902d81c9..3b2e75c3 100644 --- a/resources/services/elasticache/global_replication_groups_mock_test.go +++ b/resources/services/elasticache/global_replication_groups_mock_test.go @@ -3,8 +3,8 @@ package elasticache import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/elasticache" "github.com/cloudquery/plugin-sdk/v4/faker" "github.com/golang/mock/gomock" diff --git a/resources/services/elasticache/parameter_groups.go b/resources/services/elasticache/parameter_groups.go index 4dad1019..85992adb 100644 --- a/resources/services/elasticache/parameter_groups.go +++ b/resources/services/elasticache/parameter_groups.go @@ -3,7 +3,7 @@ package elasticache import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/elasticache" "github.com/aws/aws-sdk-go-v2/service/elasticache/types" diff --git a/resources/services/elasticache/parameter_groups_mock_test.go b/resources/services/elasticache/parameter_groups_mock_test.go index fd9b239c..04214a42 100644 --- a/resources/services/elasticache/parameter_groups_mock_test.go +++ b/resources/services/elasticache/parameter_groups_mock_test.go @@ -3,8 +3,8 @@ package elasticache import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/elasticache" "github.com/cloudquery/plugin-sdk/v4/faker" "github.com/golang/mock/gomock" diff --git a/resources/services/elasticache/replication_groups.go b/resources/services/elasticache/replication_groups.go index 6b7d9382..e6ba5be4 100644 --- a/resources/services/elasticache/replication_groups.go +++ b/resources/services/elasticache/replication_groups.go @@ -3,7 +3,7 @@ package elasticache import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/elasticache" "github.com/aws/aws-sdk-go-v2/service/elasticache/types" diff --git a/resources/services/elasticache/replication_groups_mock_test.go b/resources/services/elasticache/replication_groups_mock_test.go index 9c78c377..74dfaea7 100644 --- a/resources/services/elasticache/replication_groups_mock_test.go +++ b/resources/services/elasticache/replication_groups_mock_test.go @@ -3,8 +3,8 @@ package elasticache import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/elasticache" "github.com/aws/aws-sdk-go-v2/service/elasticache/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/elasticache/reserved_cache_nodes.go b/resources/services/elasticache/reserved_cache_nodes.go index d6a9df13..b2981698 100644 --- a/resources/services/elasticache/reserved_cache_nodes.go +++ b/resources/services/elasticache/reserved_cache_nodes.go @@ -3,7 +3,7 @@ package elasticache import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/elasticache" "github.com/aws/aws-sdk-go-v2/service/elasticache/types" diff --git a/resources/services/elasticache/reserved_cache_nodes_mock_test.go b/resources/services/elasticache/reserved_cache_nodes_mock_test.go index 9d18ea5e..4dd21fd2 100644 --- a/resources/services/elasticache/reserved_cache_nodes_mock_test.go +++ b/resources/services/elasticache/reserved_cache_nodes_mock_test.go @@ -3,8 +3,8 @@ package elasticache import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/elasticache" "github.com/cloudquery/plugin-sdk/v4/faker" "github.com/golang/mock/gomock" diff --git a/resources/services/elasticache/service_updates.go b/resources/services/elasticache/service_updates.go index d3eec47c..830274f4 100644 --- a/resources/services/elasticache/service_updates.go +++ b/resources/services/elasticache/service_updates.go @@ -3,7 +3,7 @@ package elasticache import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/aws/arn" diff --git a/resources/services/elasticache/service_updates_mock_test.go b/resources/services/elasticache/service_updates_mock_test.go index 05ba8671..fe8f4f97 100644 --- a/resources/services/elasticache/service_updates_mock_test.go +++ b/resources/services/elasticache/service_updates_mock_test.go @@ -3,8 +3,8 @@ package elasticache import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/elasticache" "github.com/cloudquery/plugin-sdk/v4/faker" "github.com/golang/mock/gomock" diff --git a/resources/services/elasticache/snapshots.go b/resources/services/elasticache/snapshots.go index 33454098..3f4d6db7 100644 --- a/resources/services/elasticache/snapshots.go +++ b/resources/services/elasticache/snapshots.go @@ -3,7 +3,7 @@ package elasticache import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/elasticache" "github.com/aws/aws-sdk-go-v2/service/elasticache/types" diff --git a/resources/services/elasticache/snapshots_mock_test.go b/resources/services/elasticache/snapshots_mock_test.go index 6d29fbaa..642c820c 100644 --- a/resources/services/elasticache/snapshots_mock_test.go +++ b/resources/services/elasticache/snapshots_mock_test.go @@ -3,8 +3,8 @@ package elasticache import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/elasticache" "github.com/cloudquery/plugin-sdk/v4/faker" "github.com/golang/mock/gomock" diff --git a/resources/services/elasticache/subnet_groups.go b/resources/services/elasticache/subnet_groups.go index c7658aa2..ef964b0f 100644 --- a/resources/services/elasticache/subnet_groups.go +++ b/resources/services/elasticache/subnet_groups.go @@ -3,7 +3,7 @@ package elasticache import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/elasticache" "github.com/aws/aws-sdk-go-v2/service/elasticache/types" diff --git a/resources/services/elasticache/subnet_groups_mock_test.go b/resources/services/elasticache/subnet_groups_mock_test.go index 17fb6173..662f3697 100644 --- a/resources/services/elasticache/subnet_groups_mock_test.go +++ b/resources/services/elasticache/subnet_groups_mock_test.go @@ -3,8 +3,8 @@ package elasticache import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/elasticache" "github.com/cloudquery/plugin-sdk/v4/faker" "github.com/golang/mock/gomock" diff --git a/resources/services/elasticache/user_groups.go b/resources/services/elasticache/user_groups.go index b3c805b4..a5d90222 100644 --- a/resources/services/elasticache/user_groups.go +++ b/resources/services/elasticache/user_groups.go @@ -3,7 +3,7 @@ package elasticache import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/elasticache" "github.com/aws/aws-sdk-go-v2/service/elasticache/types" diff --git a/resources/services/elasticache/user_groups_mock_test.go b/resources/services/elasticache/user_groups_mock_test.go index 3fa8b997..71f7314d 100644 --- a/resources/services/elasticache/user_groups_mock_test.go +++ b/resources/services/elasticache/user_groups_mock_test.go @@ -3,8 +3,8 @@ package elasticache import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/elasticache" "github.com/cloudquery/plugin-sdk/v4/faker" "github.com/golang/mock/gomock" diff --git a/resources/services/elasticache/users.go b/resources/services/elasticache/users.go index e467422b..ccdb8bf9 100644 --- a/resources/services/elasticache/users.go +++ b/resources/services/elasticache/users.go @@ -3,7 +3,7 @@ package elasticache import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/elasticache" "github.com/aws/aws-sdk-go-v2/service/elasticache/types" diff --git a/resources/services/elasticache/users_mock_test.go b/resources/services/elasticache/users_mock_test.go index a68b4227..8d984b71 100644 --- a/resources/services/elasticache/users_mock_test.go +++ b/resources/services/elasticache/users_mock_test.go @@ -3,8 +3,8 @@ package elasticache import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/elasticache" "github.com/cloudquery/plugin-sdk/v4/faker" "github.com/golang/mock/gomock" diff --git a/resources/services/elasticbeanstalk/application_versions.go b/resources/services/elasticbeanstalk/application_versions.go index c09db854..f32f8ecc 100644 --- a/resources/services/elasticbeanstalk/application_versions.go +++ b/resources/services/elasticbeanstalk/application_versions.go @@ -3,7 +3,7 @@ package elasticbeanstalk import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/elasticbeanstalk" diff --git a/resources/services/elasticbeanstalk/application_versions_mock_test.go b/resources/services/elasticbeanstalk/application_versions_mock_test.go index 865b0c60..105fcf16 100644 --- a/resources/services/elasticbeanstalk/application_versions_mock_test.go +++ b/resources/services/elasticbeanstalk/application_versions_mock_test.go @@ -3,8 +3,8 @@ package elasticbeanstalk import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/elasticbeanstalk" elasticbeanstalkTypes "github.com/aws/aws-sdk-go-v2/service/elasticbeanstalk/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/elasticbeanstalk/applications.go b/resources/services/elasticbeanstalk/applications.go index 993d6f50..0b64ab78 100644 --- a/resources/services/elasticbeanstalk/applications.go +++ b/resources/services/elasticbeanstalk/applications.go @@ -3,7 +3,7 @@ package elasticbeanstalk import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/elasticbeanstalk" "github.com/aws/aws-sdk-go-v2/service/elasticbeanstalk/types" diff --git a/resources/services/elasticbeanstalk/applications_mock_test.go b/resources/services/elasticbeanstalk/applications_mock_test.go index ea6506c9..1da6d054 100644 --- a/resources/services/elasticbeanstalk/applications_mock_test.go +++ b/resources/services/elasticbeanstalk/applications_mock_test.go @@ -3,8 +3,8 @@ package elasticbeanstalk import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/elasticbeanstalk" elasticbeanstalkTypes "github.com/aws/aws-sdk-go-v2/service/elasticbeanstalk/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/elasticbeanstalk/configuration_options.go b/resources/services/elasticbeanstalk/configuration_options.go index bd35640c..529fe46b 100644 --- a/resources/services/elasticbeanstalk/configuration_options.go +++ b/resources/services/elasticbeanstalk/configuration_options.go @@ -4,8 +4,8 @@ import ( "context" "fmt" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/resources/services/elasticbeanstalk/models" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/elasticbeanstalk/models" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/aws/arn" diff --git a/resources/services/elasticbeanstalk/configuration_settings.go b/resources/services/elasticbeanstalk/configuration_settings.go index fdaa0cce..b1377622 100644 --- a/resources/services/elasticbeanstalk/configuration_settings.go +++ b/resources/services/elasticbeanstalk/configuration_settings.go @@ -4,8 +4,8 @@ import ( "context" "fmt" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/resources/services/elasticbeanstalk/models" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/elasticbeanstalk/models" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/aws/arn" diff --git a/resources/services/elasticbeanstalk/environments.go b/resources/services/elasticbeanstalk/environments.go index cbe766f3..7e06f45c 100644 --- a/resources/services/elasticbeanstalk/environments.go +++ b/resources/services/elasticbeanstalk/environments.go @@ -3,7 +3,7 @@ package elasticbeanstalk import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/elasticbeanstalk" diff --git a/resources/services/elasticbeanstalk/envrionments_mock_test.go b/resources/services/elasticbeanstalk/envrionments_mock_test.go index e2f64214..1d36564c 100644 --- a/resources/services/elasticbeanstalk/envrionments_mock_test.go +++ b/resources/services/elasticbeanstalk/envrionments_mock_test.go @@ -3,8 +3,8 @@ package elasticbeanstalk import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/elasticbeanstalk" elasticbeanstalkTypes "github.com/aws/aws-sdk-go-v2/service/elasticbeanstalk/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/elasticsearch/domains.go b/resources/services/elasticsearch/domains.go index 4a0ccb17..1a0b7304 100644 --- a/resources/services/elasticsearch/domains.go +++ b/resources/services/elasticsearch/domains.go @@ -3,7 +3,7 @@ package elasticsearch import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/elasticsearchservice" diff --git a/resources/services/elasticsearch/domains_mock_test.go b/resources/services/elasticsearch/domains_mock_test.go index a4f7352c..71a63ee6 100644 --- a/resources/services/elasticsearch/domains_mock_test.go +++ b/resources/services/elasticsearch/domains_mock_test.go @@ -3,8 +3,8 @@ package elasticsearch import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/elasticsearchservice" "github.com/aws/aws-sdk-go-v2/service/elasticsearchservice/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/elastictranscoder/pipeline_jobs.go b/resources/services/elastictranscoder/pipeline_jobs.go index 2fdda98f..bea2f168 100644 --- a/resources/services/elastictranscoder/pipeline_jobs.go +++ b/resources/services/elastictranscoder/pipeline_jobs.go @@ -3,7 +3,7 @@ package elastictranscoder import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/elastictranscoder" diff --git a/resources/services/elastictranscoder/pipelines.go b/resources/services/elastictranscoder/pipelines.go index f4ad8d5f..f481302a 100644 --- a/resources/services/elastictranscoder/pipelines.go +++ b/resources/services/elastictranscoder/pipelines.go @@ -3,7 +3,7 @@ package elastictranscoder import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/elastictranscoder" "github.com/aws/aws-sdk-go-v2/service/elastictranscoder/types" diff --git a/resources/services/elastictranscoder/pipelines_mock_test.go b/resources/services/elastictranscoder/pipelines_mock_test.go index aca48c42..e5611507 100644 --- a/resources/services/elastictranscoder/pipelines_mock_test.go +++ b/resources/services/elastictranscoder/pipelines_mock_test.go @@ -3,8 +3,8 @@ package elastictranscoder import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/elastictranscoder" "github.com/aws/aws-sdk-go-v2/service/elastictranscoder/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/elastictranscoder/presets.go b/resources/services/elastictranscoder/presets.go index 476700ae..7bad67b7 100644 --- a/resources/services/elastictranscoder/presets.go +++ b/resources/services/elastictranscoder/presets.go @@ -3,7 +3,7 @@ package elastictranscoder import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/elastictranscoder" "github.com/aws/aws-sdk-go-v2/service/elastictranscoder/types" diff --git a/resources/services/elastictranscoder/presets_mock_test.go b/resources/services/elastictranscoder/presets_mock_test.go index 1192c6bc..b824754a 100644 --- a/resources/services/elastictranscoder/presets_mock_test.go +++ b/resources/services/elastictranscoder/presets_mock_test.go @@ -3,8 +3,8 @@ package elastictranscoder import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/elastictranscoder" "github.com/aws/aws-sdk-go-v2/service/elastictranscoder/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/elbv1/load_balancer_policies.go b/resources/services/elbv1/load_balancer_policies.go index 286a76f3..7e4c526c 100644 --- a/resources/services/elbv1/load_balancer_policies.go +++ b/resources/services/elbv1/load_balancer_policies.go @@ -3,8 +3,8 @@ package elbv1 import ( "context" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/resources/services/elbv1/models" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/elbv1/models" "github.com/apache/arrow/go/v16/arrow" elbv1 "github.com/aws/aws-sdk-go-v2/service/elasticloadbalancing" "github.com/aws/aws-sdk-go-v2/service/elasticloadbalancing/types" diff --git a/resources/services/elbv1/load_balancers.go b/resources/services/elbv1/load_balancers.go index 43ade559..465098b1 100644 --- a/resources/services/elbv1/load_balancers.go +++ b/resources/services/elbv1/load_balancers.go @@ -3,8 +3,8 @@ package elbv1 import ( "context" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/resources/services/elbv1/models" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/elbv1/models" "github.com/apache/arrow/go/v16/arrow" elbv1 "github.com/aws/aws-sdk-go-v2/service/elasticloadbalancing" "github.com/aws/aws-sdk-go-v2/service/elasticloadbalancing/types" diff --git a/resources/services/elbv1/load_balancers_mock_test.go b/resources/services/elbv1/load_balancers_mock_test.go index ea30071a..f4d78a14 100644 --- a/resources/services/elbv1/load_balancers_mock_test.go +++ b/resources/services/elbv1/load_balancers_mock_test.go @@ -3,8 +3,8 @@ package elbv1 import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/elasticloadbalancing" elbv1Types "github.com/aws/aws-sdk-go-v2/service/elasticloadbalancing/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/elbv2/listener_certificates.go b/resources/services/elbv2/listener_certificates.go index 6c0aee8e..7682cb23 100644 --- a/resources/services/elbv2/listener_certificates.go +++ b/resources/services/elbv2/listener_certificates.go @@ -3,7 +3,7 @@ package elbv2 import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" elbv2 "github.com/aws/aws-sdk-go-v2/service/elasticloadbalancingv2" diff --git a/resources/services/elbv2/listener_rules.go b/resources/services/elbv2/listener_rules.go index 198befe8..0372c085 100644 --- a/resources/services/elbv2/listener_rules.go +++ b/resources/services/elbv2/listener_rules.go @@ -3,7 +3,7 @@ package elbv2 import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" elbv2 "github.com/aws/aws-sdk-go-v2/service/elasticloadbalancingv2" diff --git a/resources/services/elbv2/listeners.go b/resources/services/elbv2/listeners.go index 7d78ee16..b16423f7 100644 --- a/resources/services/elbv2/listeners.go +++ b/resources/services/elbv2/listeners.go @@ -3,7 +3,7 @@ package elbv2 import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" elbv2 "github.com/aws/aws-sdk-go-v2/service/elasticloadbalancingv2" "github.com/aws/aws-sdk-go-v2/service/elasticloadbalancingv2/types" diff --git a/resources/services/elbv2/load_balancer_attributes.go b/resources/services/elbv2/load_balancer_attributes.go index 897e3a47..17d92fd1 100644 --- a/resources/services/elbv2/load_balancer_attributes.go +++ b/resources/services/elbv2/load_balancer_attributes.go @@ -3,7 +3,7 @@ package elbv2 import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" elbv2 "github.com/aws/aws-sdk-go-v2/service/elasticloadbalancingv2" "github.com/aws/aws-sdk-go-v2/service/elasticloadbalancingv2/types" diff --git a/resources/services/elbv2/load_balancer_web_acls.go b/resources/services/elbv2/load_balancer_web_acls.go index b264749f..8b130910 100644 --- a/resources/services/elbv2/load_balancer_web_acls.go +++ b/resources/services/elbv2/load_balancer_web_acls.go @@ -9,7 +9,7 @@ import ( "github.com/aws/aws-sdk-go-v2/service/wafv2" wafv2types "github.com/aws/aws-sdk-go-v2/service/wafv2/types" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/cloudquery/plugin-sdk/v4/schema" "github.com/cloudquery/plugin-sdk/v4/transformers" ) diff --git a/resources/services/elbv2/load_balancers.go b/resources/services/elbv2/load_balancers.go index 52a3b81b..3f79e1de 100644 --- a/resources/services/elbv2/load_balancers.go +++ b/resources/services/elbv2/load_balancers.go @@ -3,7 +3,7 @@ package elbv2 import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" elbv2 "github.com/aws/aws-sdk-go-v2/service/elasticloadbalancingv2" "github.com/aws/aws-sdk-go-v2/service/elasticloadbalancingv2/types" diff --git a/resources/services/elbv2/load_balancers_mock_test.go b/resources/services/elbv2/load_balancers_mock_test.go index 2f97a615..40930890 100644 --- a/resources/services/elbv2/load_balancers_mock_test.go +++ b/resources/services/elbv2/load_balancers_mock_test.go @@ -3,8 +3,8 @@ package elbv2 import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/elasticloadbalancingv2" elbv2Types "github.com/aws/aws-sdk-go-v2/service/elasticloadbalancingv2/types" "github.com/aws/aws-sdk-go-v2/service/wafv2" diff --git a/resources/services/elbv2/target_group_target_health_descriptions.go b/resources/services/elbv2/target_group_target_health_descriptions.go index f3066fd0..511c6e23 100644 --- a/resources/services/elbv2/target_group_target_health_descriptions.go +++ b/resources/services/elbv2/target_group_target_health_descriptions.go @@ -3,7 +3,7 @@ package elbv2 import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" elbv2 "github.com/aws/aws-sdk-go-v2/service/elasticloadbalancingv2" "github.com/aws/aws-sdk-go-v2/service/elasticloadbalancingv2/types" diff --git a/resources/services/elbv2/target_groups.go b/resources/services/elbv2/target_groups.go index 36d795e5..ac305af6 100644 --- a/resources/services/elbv2/target_groups.go +++ b/resources/services/elbv2/target_groups.go @@ -3,7 +3,7 @@ package elbv2 import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" elbv2 "github.com/aws/aws-sdk-go-v2/service/elasticloadbalancingv2" "github.com/aws/aws-sdk-go-v2/service/elasticloadbalancingv2/types" diff --git a/resources/services/elbv2/target_groups_mock_test.go b/resources/services/elbv2/target_groups_mock_test.go index fdd57119..58785e1b 100644 --- a/resources/services/elbv2/target_groups_mock_test.go +++ b/resources/services/elbv2/target_groups_mock_test.go @@ -3,8 +3,8 @@ package elbv2 import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/elasticloadbalancingv2" elbv2Types "github.com/aws/aws-sdk-go-v2/service/elasticloadbalancingv2/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/emr/cluster_instance_fleets.go b/resources/services/emr/cluster_instance_fleets.go index ac7d10fe..5fbdbd4e 100644 --- a/resources/services/emr/cluster_instance_fleets.go +++ b/resources/services/emr/cluster_instance_fleets.go @@ -3,7 +3,7 @@ package emr import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/emr" "github.com/aws/aws-sdk-go-v2/service/emr/types" diff --git a/resources/services/emr/cluster_instance_groups.go b/resources/services/emr/cluster_instance_groups.go index 7990cd8d..5521b26f 100644 --- a/resources/services/emr/cluster_instance_groups.go +++ b/resources/services/emr/cluster_instance_groups.go @@ -3,7 +3,7 @@ package emr import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/emr" "github.com/aws/aws-sdk-go-v2/service/emr/types" diff --git a/resources/services/emr/cluster_instances.go b/resources/services/emr/cluster_instances.go index 3ca110eb..903f4d72 100644 --- a/resources/services/emr/cluster_instances.go +++ b/resources/services/emr/cluster_instances.go @@ -3,7 +3,7 @@ package emr import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/aws/arn" diff --git a/resources/services/emr/clusters.go b/resources/services/emr/clusters.go index 070229cd..aa405115 100644 --- a/resources/services/emr/clusters.go +++ b/resources/services/emr/clusters.go @@ -3,7 +3,7 @@ package emr import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/emr" "github.com/aws/aws-sdk-go-v2/service/emr/types" diff --git a/resources/services/emr/clusters_mock_test.go b/resources/services/emr/clusters_mock_test.go index 5468e258..ecc5afc0 100644 --- a/resources/services/emr/clusters_mock_test.go +++ b/resources/services/emr/clusters_mock_test.go @@ -3,8 +3,8 @@ package emr import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/emr" "github.com/aws/aws-sdk-go-v2/service/emr/types" diff --git a/resources/services/emr/notebook_executions.go b/resources/services/emr/notebook_executions.go index 8bcfd93d..bb47c995 100644 --- a/resources/services/emr/notebook_executions.go +++ b/resources/services/emr/notebook_executions.go @@ -3,7 +3,7 @@ package emr import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/emr" "github.com/aws/aws-sdk-go-v2/service/emr/types" diff --git a/resources/services/emr/steps.go b/resources/services/emr/steps.go index 0b4c3a94..b2da233b 100644 --- a/resources/services/emr/steps.go +++ b/resources/services/emr/steps.go @@ -3,7 +3,7 @@ package emr import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/emr" "github.com/aws/aws-sdk-go-v2/service/emr/types" diff --git a/resources/services/emr/studio_session_mapping.go b/resources/services/emr/studio_session_mapping.go index bb3e9d7f..c659a7ab 100644 --- a/resources/services/emr/studio_session_mapping.go +++ b/resources/services/emr/studio_session_mapping.go @@ -3,7 +3,7 @@ package emr import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/emr" "github.com/aws/aws-sdk-go-v2/service/emr/types" diff --git a/resources/services/emr/studios.go b/resources/services/emr/studios.go index a9fe4e7e..3c95a6c1 100644 --- a/resources/services/emr/studios.go +++ b/resources/services/emr/studios.go @@ -3,7 +3,7 @@ package emr import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/emr" "github.com/aws/aws-sdk-go-v2/service/emr/types" diff --git a/resources/services/emr/studios_test.go b/resources/services/emr/studios_test.go index dc881c9e..60b5566f 100644 --- a/resources/services/emr/studios_test.go +++ b/resources/services/emr/studios_test.go @@ -1,8 +1,8 @@ package emr import ( - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/emr" "github.com/aws/aws-sdk-go-v2/service/emr/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/eventbridge/api_destinations.go b/resources/services/eventbridge/api_destinations.go index ebdb50b2..b684f21a 100644 --- a/resources/services/eventbridge/api_destinations.go +++ b/resources/services/eventbridge/api_destinations.go @@ -3,7 +3,7 @@ package eventbridge import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/eventbridge" diff --git a/resources/services/eventbridge/api_destinations_mock_test.go b/resources/services/eventbridge/api_destinations_mock_test.go index 6872d6df..9089c731 100644 --- a/resources/services/eventbridge/api_destinations_mock_test.go +++ b/resources/services/eventbridge/api_destinations_mock_test.go @@ -3,8 +3,8 @@ package eventbridge import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/eventbridge" "github.com/aws/aws-sdk-go-v2/service/eventbridge/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/eventbridge/archives.go b/resources/services/eventbridge/archives.go index 33b934b5..254e47d2 100644 --- a/resources/services/eventbridge/archives.go +++ b/resources/services/eventbridge/archives.go @@ -3,7 +3,7 @@ package eventbridge import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/aws/arn" diff --git a/resources/services/eventbridge/archives_mock_test.go b/resources/services/eventbridge/archives_mock_test.go index 89287901..cccbd6e3 100644 --- a/resources/services/eventbridge/archives_mock_test.go +++ b/resources/services/eventbridge/archives_mock_test.go @@ -3,8 +3,8 @@ package eventbridge import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/eventbridge" "github.com/aws/aws-sdk-go-v2/service/eventbridge/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/eventbridge/connections.go b/resources/services/eventbridge/connections.go index 333af181..6a4c47cf 100644 --- a/resources/services/eventbridge/connections.go +++ b/resources/services/eventbridge/connections.go @@ -3,7 +3,7 @@ package eventbridge import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/eventbridge" diff --git a/resources/services/eventbridge/connections_mock_test.go b/resources/services/eventbridge/connections_mock_test.go index 288ae574..2accd2ac 100644 --- a/resources/services/eventbridge/connections_mock_test.go +++ b/resources/services/eventbridge/connections_mock_test.go @@ -3,8 +3,8 @@ package eventbridge import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/eventbridge" "github.com/aws/aws-sdk-go-v2/service/eventbridge/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/eventbridge/endpoints.go b/resources/services/eventbridge/endpoints.go index 44d9f3b8..3d322c70 100644 --- a/resources/services/eventbridge/endpoints.go +++ b/resources/services/eventbridge/endpoints.go @@ -3,7 +3,7 @@ package eventbridge import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/eventbridge" diff --git a/resources/services/eventbridge/endpoints_mock_test.go b/resources/services/eventbridge/endpoints_mock_test.go index 7db709d3..057a0236 100644 --- a/resources/services/eventbridge/endpoints_mock_test.go +++ b/resources/services/eventbridge/endpoints_mock_test.go @@ -3,8 +3,8 @@ package eventbridge import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/eventbridge" "github.com/aws/aws-sdk-go-v2/service/eventbridge/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/eventbridge/event_bus_rules.go b/resources/services/eventbridge/event_bus_rules.go index 38bacdfa..c228e22d 100644 --- a/resources/services/eventbridge/event_bus_rules.go +++ b/resources/services/eventbridge/event_bus_rules.go @@ -3,7 +3,7 @@ package eventbridge import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/eventbridge" diff --git a/resources/services/eventbridge/event_bus_targets.go b/resources/services/eventbridge/event_bus_targets.go index 96edfd94..a90f3999 100644 --- a/resources/services/eventbridge/event_bus_targets.go +++ b/resources/services/eventbridge/event_bus_targets.go @@ -3,7 +3,7 @@ package eventbridge import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/eventbridge" diff --git a/resources/services/eventbridge/event_buses.go b/resources/services/eventbridge/event_buses.go index d9149cac..1234e37d 100644 --- a/resources/services/eventbridge/event_buses.go +++ b/resources/services/eventbridge/event_buses.go @@ -3,7 +3,7 @@ package eventbridge import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/eventbridge" diff --git a/resources/services/eventbridge/event_buses_mock_test.go b/resources/services/eventbridge/event_buses_mock_test.go index 0e36a923..a1d0f2a1 100644 --- a/resources/services/eventbridge/event_buses_mock_test.go +++ b/resources/services/eventbridge/event_buses_mock_test.go @@ -3,8 +3,8 @@ package eventbridge import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/eventbridge" "github.com/aws/aws-sdk-go-v2/service/eventbridge/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/eventbridge/event_sources.go b/resources/services/eventbridge/event_sources.go index ac8712f9..fd2dff69 100644 --- a/resources/services/eventbridge/event_sources.go +++ b/resources/services/eventbridge/event_sources.go @@ -3,7 +3,7 @@ package eventbridge import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/eventbridge" diff --git a/resources/services/eventbridge/event_sources_mock_test.go b/resources/services/eventbridge/event_sources_mock_test.go index 12860990..d6c4337d 100644 --- a/resources/services/eventbridge/event_sources_mock_test.go +++ b/resources/services/eventbridge/event_sources_mock_test.go @@ -3,8 +3,8 @@ package eventbridge import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/eventbridge" "github.com/aws/aws-sdk-go-v2/service/eventbridge/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/eventbridge/replays.go b/resources/services/eventbridge/replays.go index f6ab2a4c..feb318aa 100644 --- a/resources/services/eventbridge/replays.go +++ b/resources/services/eventbridge/replays.go @@ -3,7 +3,7 @@ package eventbridge import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/eventbridge" diff --git a/resources/services/eventbridge/replays_mock_test.go b/resources/services/eventbridge/replays_mock_test.go index c51ce058..ebb3d905 100644 --- a/resources/services/eventbridge/replays_mock_test.go +++ b/resources/services/eventbridge/replays_mock_test.go @@ -3,8 +3,8 @@ package eventbridge import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/eventbridge" "github.com/aws/aws-sdk-go-v2/service/eventbridge/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/firehose/delivery_streams.go b/resources/services/firehose/delivery_streams.go index 08dc6731..1020a3e1 100644 --- a/resources/services/firehose/delivery_streams.go +++ b/resources/services/firehose/delivery_streams.go @@ -3,7 +3,7 @@ package firehose import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/firehose" diff --git a/resources/services/firehose/delivery_streams_mock_test.go b/resources/services/firehose/delivery_streams_mock_test.go index ce30b8a2..5432965f 100644 --- a/resources/services/firehose/delivery_streams_mock_test.go +++ b/resources/services/firehose/delivery_streams_mock_test.go @@ -3,8 +3,8 @@ package firehose import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/firehose" "github.com/aws/aws-sdk-go-v2/service/firehose/types" diff --git a/resources/services/frauddetector/batch_imports.go b/resources/services/frauddetector/batch_imports.go index 686db484..9fe1ccba 100644 --- a/resources/services/frauddetector/batch_imports.go +++ b/resources/services/frauddetector/batch_imports.go @@ -3,7 +3,7 @@ package frauddetector import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/frauddetector" "github.com/aws/aws-sdk-go-v2/service/frauddetector/types" diff --git a/resources/services/frauddetector/batch_imports_mock_test.go b/resources/services/frauddetector/batch_imports_mock_test.go index cf05c13a..30e96287 100644 --- a/resources/services/frauddetector/batch_imports_mock_test.go +++ b/resources/services/frauddetector/batch_imports_mock_test.go @@ -3,8 +3,8 @@ package frauddetector import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/frauddetector" "github.com/aws/aws-sdk-go-v2/service/frauddetector/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/frauddetector/batch_predictions.go b/resources/services/frauddetector/batch_predictions.go index 933b435f..d55e9ebc 100644 --- a/resources/services/frauddetector/batch_predictions.go +++ b/resources/services/frauddetector/batch_predictions.go @@ -3,7 +3,7 @@ package frauddetector import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/frauddetector" "github.com/aws/aws-sdk-go-v2/service/frauddetector/types" diff --git a/resources/services/frauddetector/batch_predictions_mock_test.go b/resources/services/frauddetector/batch_predictions_mock_test.go index 8f1b27b5..f00abb50 100644 --- a/resources/services/frauddetector/batch_predictions_mock_test.go +++ b/resources/services/frauddetector/batch_predictions_mock_test.go @@ -3,8 +3,8 @@ package frauddetector import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/frauddetector" "github.com/aws/aws-sdk-go-v2/service/frauddetector/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/frauddetector/detectors.go b/resources/services/frauddetector/detectors.go index 860352ed..11ee01ef 100644 --- a/resources/services/frauddetector/detectors.go +++ b/resources/services/frauddetector/detectors.go @@ -3,7 +3,7 @@ package frauddetector import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/frauddetector" "github.com/aws/aws-sdk-go-v2/service/frauddetector/types" diff --git a/resources/services/frauddetector/detectors_mock_test.go b/resources/services/frauddetector/detectors_mock_test.go index 4057e29e..83440a26 100644 --- a/resources/services/frauddetector/detectors_mock_test.go +++ b/resources/services/frauddetector/detectors_mock_test.go @@ -3,8 +3,8 @@ package frauddetector import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/frauddetector" "github.com/aws/aws-sdk-go-v2/service/frauddetector/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/frauddetector/entity_types.go b/resources/services/frauddetector/entity_types.go index 41aeaff0..bd694207 100644 --- a/resources/services/frauddetector/entity_types.go +++ b/resources/services/frauddetector/entity_types.go @@ -3,7 +3,7 @@ package frauddetector import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/frauddetector" "github.com/aws/aws-sdk-go-v2/service/frauddetector/types" diff --git a/resources/services/frauddetector/entity_types_mock_test.go b/resources/services/frauddetector/entity_types_mock_test.go index e3a4266e..13e8e676 100644 --- a/resources/services/frauddetector/entity_types_mock_test.go +++ b/resources/services/frauddetector/entity_types_mock_test.go @@ -3,8 +3,8 @@ package frauddetector import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/frauddetector" "github.com/aws/aws-sdk-go-v2/service/frauddetector/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/frauddetector/event_types.go b/resources/services/frauddetector/event_types.go index b6022692..9fbb5beb 100644 --- a/resources/services/frauddetector/event_types.go +++ b/resources/services/frauddetector/event_types.go @@ -3,7 +3,7 @@ package frauddetector import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/frauddetector" "github.com/aws/aws-sdk-go-v2/service/frauddetector/types" diff --git a/resources/services/frauddetector/event_types_mock_test.go b/resources/services/frauddetector/event_types_mock_test.go index 0357c832..f11813c5 100644 --- a/resources/services/frauddetector/event_types_mock_test.go +++ b/resources/services/frauddetector/event_types_mock_test.go @@ -3,8 +3,8 @@ package frauddetector import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/frauddetector" "github.com/aws/aws-sdk-go-v2/service/frauddetector/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/frauddetector/external_models.go b/resources/services/frauddetector/external_models.go index 91f6c2f0..f191ef93 100644 --- a/resources/services/frauddetector/external_models.go +++ b/resources/services/frauddetector/external_models.go @@ -3,7 +3,7 @@ package frauddetector import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/frauddetector" "github.com/aws/aws-sdk-go-v2/service/frauddetector/types" diff --git a/resources/services/frauddetector/external_models_mock_test.go b/resources/services/frauddetector/external_models_mock_test.go index 4dd44eb5..97020f21 100644 --- a/resources/services/frauddetector/external_models_mock_test.go +++ b/resources/services/frauddetector/external_models_mock_test.go @@ -3,8 +3,8 @@ package frauddetector import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/frauddetector" "github.com/aws/aws-sdk-go-v2/service/frauddetector/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/frauddetector/labels.go b/resources/services/frauddetector/labels.go index 76b4d125..1233ba69 100644 --- a/resources/services/frauddetector/labels.go +++ b/resources/services/frauddetector/labels.go @@ -8,7 +8,7 @@ import ( "github.com/aws/aws-sdk-go-v2/service/frauddetector/types" sdkTypes "github.com/cloudquery/plugin-sdk/v4/types" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/cloudquery/plugin-sdk/v4/schema" "github.com/cloudquery/plugin-sdk/v4/transformers" ) diff --git a/resources/services/frauddetector/labels_mock_test.go b/resources/services/frauddetector/labels_mock_test.go index 3f91600b..ba2bc0ab 100644 --- a/resources/services/frauddetector/labels_mock_test.go +++ b/resources/services/frauddetector/labels_mock_test.go @@ -3,8 +3,8 @@ package frauddetector import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/frauddetector" "github.com/aws/aws-sdk-go-v2/service/frauddetector/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/frauddetector/model_versions.go b/resources/services/frauddetector/model_versions.go index 3575a095..7e9a065a 100644 --- a/resources/services/frauddetector/model_versions.go +++ b/resources/services/frauddetector/model_versions.go @@ -3,7 +3,7 @@ package frauddetector import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/frauddetector" "github.com/aws/aws-sdk-go-v2/service/frauddetector/types" diff --git a/resources/services/frauddetector/model_versions_mock_test.go b/resources/services/frauddetector/model_versions_mock_test.go index b9197825..33e80681 100644 --- a/resources/services/frauddetector/model_versions_mock_test.go +++ b/resources/services/frauddetector/model_versions_mock_test.go @@ -3,7 +3,7 @@ package frauddetector import ( "testing" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/frauddetector" "github.com/aws/aws-sdk-go-v2/service/frauddetector/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/frauddetector/models.go b/resources/services/frauddetector/models.go index d819f863..5f380dea 100644 --- a/resources/services/frauddetector/models.go +++ b/resources/services/frauddetector/models.go @@ -3,7 +3,7 @@ package frauddetector import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/frauddetector" "github.com/aws/aws-sdk-go-v2/service/frauddetector/types" diff --git a/resources/services/frauddetector/models_mock_test.go b/resources/services/frauddetector/models_mock_test.go index b3ae912e..ac2bc4c0 100644 --- a/resources/services/frauddetector/models_mock_test.go +++ b/resources/services/frauddetector/models_mock_test.go @@ -3,8 +3,8 @@ package frauddetector import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/frauddetector" "github.com/aws/aws-sdk-go-v2/service/frauddetector/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/frauddetector/outcomes.go b/resources/services/frauddetector/outcomes.go index fe74c5f8..27489c6f 100644 --- a/resources/services/frauddetector/outcomes.go +++ b/resources/services/frauddetector/outcomes.go @@ -3,7 +3,7 @@ package frauddetector import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/frauddetector" "github.com/aws/aws-sdk-go-v2/service/frauddetector/types" diff --git a/resources/services/frauddetector/outcomes_mock_test.go b/resources/services/frauddetector/outcomes_mock_test.go index 323e94ac..d35da80b 100644 --- a/resources/services/frauddetector/outcomes_mock_test.go +++ b/resources/services/frauddetector/outcomes_mock_test.go @@ -3,8 +3,8 @@ package frauddetector import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/frauddetector" "github.com/aws/aws-sdk-go-v2/service/frauddetector/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/frauddetector/rules.go b/resources/services/frauddetector/rules.go index f48336b1..e4f1f94d 100644 --- a/resources/services/frauddetector/rules.go +++ b/resources/services/frauddetector/rules.go @@ -3,7 +3,7 @@ package frauddetector import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/frauddetector" "github.com/aws/aws-sdk-go-v2/service/frauddetector/types" diff --git a/resources/services/frauddetector/rules_mock_test.go b/resources/services/frauddetector/rules_mock_test.go index 6ffffde9..08b64930 100644 --- a/resources/services/frauddetector/rules_mock_test.go +++ b/resources/services/frauddetector/rules_mock_test.go @@ -3,7 +3,7 @@ package frauddetector import ( "testing" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/frauddetector" "github.com/aws/aws-sdk-go-v2/service/frauddetector/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/frauddetector/tag_fetch.go b/resources/services/frauddetector/tag_fetch.go index 17320e10..8fae3b2f 100644 --- a/resources/services/frauddetector/tag_fetch.go +++ b/resources/services/frauddetector/tag_fetch.go @@ -3,7 +3,7 @@ package frauddetector import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/frauddetector" "github.com/cloudquery/plugin-sdk/v4/schema" diff --git a/resources/services/frauddetector/tags_mock_test.go b/resources/services/frauddetector/tags_mock_test.go index 989af0bf..1657688c 100644 --- a/resources/services/frauddetector/tags_mock_test.go +++ b/resources/services/frauddetector/tags_mock_test.go @@ -3,7 +3,7 @@ package frauddetector import ( "testing" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/frauddetector" "github.com/aws/aws-sdk-go-v2/service/frauddetector/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/frauddetector/variables.go b/resources/services/frauddetector/variables.go index 28ce16c0..09d8b9b7 100644 --- a/resources/services/frauddetector/variables.go +++ b/resources/services/frauddetector/variables.go @@ -3,7 +3,7 @@ package frauddetector import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/frauddetector" "github.com/aws/aws-sdk-go-v2/service/frauddetector/types" diff --git a/resources/services/frauddetector/variables_mock_test.go b/resources/services/frauddetector/variables_mock_test.go index fb8d039c..e883d03c 100644 --- a/resources/services/frauddetector/variables_mock_test.go +++ b/resources/services/frauddetector/variables_mock_test.go @@ -3,8 +3,8 @@ package frauddetector import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/frauddetector" "github.com/aws/aws-sdk-go-v2/service/frauddetector/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/fsx/data_repository_associations.go b/resources/services/fsx/data_repository_associations.go index 94b1cf0e..3b2f3639 100644 --- a/resources/services/fsx/data_repository_associations.go +++ b/resources/services/fsx/data_repository_associations.go @@ -3,7 +3,7 @@ package fsx import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/fsx" diff --git a/resources/services/fsx/data_repository_associations_test.go b/resources/services/fsx/data_repository_associations_test.go index 9a860968..881532f7 100644 --- a/resources/services/fsx/data_repository_associations_test.go +++ b/resources/services/fsx/data_repository_associations_test.go @@ -3,8 +3,8 @@ package fsx import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/fsx" "github.com/aws/aws-sdk-go-v2/service/fsx/types" diff --git a/resources/services/fsx/data_repository_tasks.go b/resources/services/fsx/data_repository_tasks.go index e0738b29..a2d4ee44 100644 --- a/resources/services/fsx/data_repository_tasks.go +++ b/resources/services/fsx/data_repository_tasks.go @@ -3,7 +3,7 @@ package fsx import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/fsx" diff --git a/resources/services/fsx/data_repository_tasks_test.go b/resources/services/fsx/data_repository_tasks_test.go index 40fcd40f..415ee699 100644 --- a/resources/services/fsx/data_repository_tasks_test.go +++ b/resources/services/fsx/data_repository_tasks_test.go @@ -3,8 +3,8 @@ package fsx import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/fsx" "github.com/aws/aws-sdk-go-v2/service/fsx/types" diff --git a/resources/services/fsx/file_caches.go b/resources/services/fsx/file_caches.go index c61643aa..fcd77a2b 100644 --- a/resources/services/fsx/file_caches.go +++ b/resources/services/fsx/file_caches.go @@ -3,7 +3,7 @@ package fsx import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/fsx" diff --git a/resources/services/fsx/file_caches_test.go b/resources/services/fsx/file_caches_test.go index 27a877f0..42a23faf 100644 --- a/resources/services/fsx/file_caches_test.go +++ b/resources/services/fsx/file_caches_test.go @@ -3,8 +3,8 @@ package fsx import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/fsx" "github.com/aws/aws-sdk-go-v2/service/fsx/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/fsx/file_systems.go b/resources/services/fsx/file_systems.go index d207193e..d6b6f03f 100644 --- a/resources/services/fsx/file_systems.go +++ b/resources/services/fsx/file_systems.go @@ -3,7 +3,7 @@ package fsx import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/fsx" diff --git a/resources/services/fsx/file_systems_test.go b/resources/services/fsx/file_systems_test.go index 641f5d46..f2db8858 100644 --- a/resources/services/fsx/file_systems_test.go +++ b/resources/services/fsx/file_systems_test.go @@ -3,8 +3,8 @@ package fsx import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/fsx" "github.com/aws/aws-sdk-go-v2/service/fsx/types" diff --git a/resources/services/fsx/snapshots.go b/resources/services/fsx/snapshots.go index b52adfc6..a43dd15a 100644 --- a/resources/services/fsx/snapshots.go +++ b/resources/services/fsx/snapshots.go @@ -3,7 +3,7 @@ package fsx import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/fsx" diff --git a/resources/services/fsx/snapshots_test.go b/resources/services/fsx/snapshots_test.go index d3c44063..84f266fb 100644 --- a/resources/services/fsx/snapshots_test.go +++ b/resources/services/fsx/snapshots_test.go @@ -3,8 +3,8 @@ package fsx import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/fsx" "github.com/aws/aws-sdk-go-v2/service/fsx/types" diff --git a/resources/services/fsx/storage_virtual_machines.go b/resources/services/fsx/storage_virtual_machines.go index 4d25d474..fde5133f 100644 --- a/resources/services/fsx/storage_virtual_machines.go +++ b/resources/services/fsx/storage_virtual_machines.go @@ -3,7 +3,7 @@ package fsx import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/fsx" diff --git a/resources/services/fsx/storage_virtual_machines_test.go b/resources/services/fsx/storage_virtual_machines_test.go index 77ef4975..a069eb4e 100644 --- a/resources/services/fsx/storage_virtual_machines_test.go +++ b/resources/services/fsx/storage_virtual_machines_test.go @@ -3,8 +3,8 @@ package fsx import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/fsx" "github.com/aws/aws-sdk-go-v2/service/fsx/types" diff --git a/resources/services/fsx/volumes.go b/resources/services/fsx/volumes.go index 1ac79d6a..2fab91d5 100644 --- a/resources/services/fsx/volumes.go +++ b/resources/services/fsx/volumes.go @@ -3,7 +3,7 @@ package fsx import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/fsx" diff --git a/resources/services/fsx/volumes_test.go b/resources/services/fsx/volumes_test.go index 2321d800..002fda16 100644 --- a/resources/services/fsx/volumes_test.go +++ b/resources/services/fsx/volumes_test.go @@ -3,8 +3,8 @@ package fsx import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/fsx" "github.com/aws/aws-sdk-go-v2/service/fsx/types" diff --git a/resources/services/glacier/vault_access_policies.go b/resources/services/glacier/vault_access_policies.go index 03a5fafc..ba48b915 100644 --- a/resources/services/glacier/vault_access_policies.go +++ b/resources/services/glacier/vault_access_policies.go @@ -3,7 +3,7 @@ package glacier import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/glacier" "github.com/aws/aws-sdk-go-v2/service/glacier/types" diff --git a/resources/services/glacier/vault_lock_policies.go b/resources/services/glacier/vault_lock_policies.go index 468dfc84..f8b2b9b4 100644 --- a/resources/services/glacier/vault_lock_policies.go +++ b/resources/services/glacier/vault_lock_policies.go @@ -3,7 +3,7 @@ package glacier import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/glacier" "github.com/aws/aws-sdk-go-v2/service/glacier/types" diff --git a/resources/services/glacier/vault_notifications.go b/resources/services/glacier/vault_notifications.go index 99860d3c..a57a494c 100644 --- a/resources/services/glacier/vault_notifications.go +++ b/resources/services/glacier/vault_notifications.go @@ -3,7 +3,7 @@ package glacier import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/glacier" "github.com/aws/aws-sdk-go-v2/service/glacier/types" diff --git a/resources/services/glacier/vaults.go b/resources/services/glacier/vaults.go index 33b2928e..6b58d56f 100644 --- a/resources/services/glacier/vaults.go +++ b/resources/services/glacier/vaults.go @@ -3,7 +3,7 @@ package glacier import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/glacier" "github.com/aws/aws-sdk-go-v2/service/glacier/types" diff --git a/resources/services/glacier/vaults_mock_test.go b/resources/services/glacier/vaults_mock_test.go index c7c4e03a..3f15b044 100644 --- a/resources/services/glacier/vaults_mock_test.go +++ b/resources/services/glacier/vaults_mock_test.go @@ -3,8 +3,8 @@ package glacier import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/glacier" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/glue/connections.go b/resources/services/glue/connections.go index 98323fcf..01514beb 100644 --- a/resources/services/glue/connections.go +++ b/resources/services/glue/connections.go @@ -3,7 +3,7 @@ package glue import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/aws/arn" diff --git a/resources/services/glue/connections_test.go b/resources/services/glue/connections_test.go index b906d4d1..9e0a0ca3 100644 --- a/resources/services/glue/connections_test.go +++ b/resources/services/glue/connections_test.go @@ -3,8 +3,8 @@ package glue import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/glue" "github.com/cloudquery/plugin-sdk/v4/faker" "github.com/golang/mock/gomock" diff --git a/resources/services/glue/crawlers.go b/resources/services/glue/crawlers.go index c129e100..5fbd8969 100644 --- a/resources/services/glue/crawlers.go +++ b/resources/services/glue/crawlers.go @@ -4,7 +4,7 @@ import ( "context" "fmt" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/aws/arn" diff --git a/resources/services/glue/crawlers_test.go b/resources/services/glue/crawlers_test.go index 17527452..dd6597cc 100644 --- a/resources/services/glue/crawlers_test.go +++ b/resources/services/glue/crawlers_test.go @@ -3,8 +3,8 @@ package glue import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/glue" "github.com/cloudquery/plugin-sdk/v4/faker" "github.com/golang/mock/gomock" diff --git a/resources/services/glue/database_table_indexes.go b/resources/services/glue/database_table_indexes.go index 375c9daa..0a9a70b8 100644 --- a/resources/services/glue/database_table_indexes.go +++ b/resources/services/glue/database_table_indexes.go @@ -3,7 +3,7 @@ package glue import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/glue" "github.com/aws/aws-sdk-go-v2/service/glue/types" diff --git a/resources/services/glue/database_tables.go b/resources/services/glue/database_tables.go index 1c17b0e1..d5d18e55 100644 --- a/resources/services/glue/database_tables.go +++ b/resources/services/glue/database_tables.go @@ -3,7 +3,7 @@ package glue import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/glue" "github.com/aws/aws-sdk-go-v2/service/glue/types" diff --git a/resources/services/glue/databases.go b/resources/services/glue/databases.go index 39f0eea7..fc80be9f 100644 --- a/resources/services/glue/databases.go +++ b/resources/services/glue/databases.go @@ -3,7 +3,7 @@ package glue import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/aws/arn" diff --git a/resources/services/glue/databases_mock_test.go b/resources/services/glue/databases_mock_test.go index f3dd3565..a794bb5d 100644 --- a/resources/services/glue/databases_mock_test.go +++ b/resources/services/glue/databases_mock_test.go @@ -3,8 +3,8 @@ package glue import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/glue" "github.com/cloudquery/plugin-sdk/v4/faker" "github.com/golang/mock/gomock" diff --git a/resources/services/glue/dev_endpoints.go b/resources/services/glue/dev_endpoints.go index 63fe2a4a..32fa117a 100644 --- a/resources/services/glue/dev_endpoints.go +++ b/resources/services/glue/dev_endpoints.go @@ -3,7 +3,7 @@ package glue import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/aws/arn" diff --git a/resources/services/glue/dev_endpoints_test.go b/resources/services/glue/dev_endpoints_test.go index b55b45ec..63b01396 100644 --- a/resources/services/glue/dev_endpoints_test.go +++ b/resources/services/glue/dev_endpoints_test.go @@ -3,8 +3,8 @@ package glue import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/glue" "github.com/cloudquery/plugin-sdk/v4/faker" "github.com/golang/mock/gomock" diff --git a/resources/services/glue/job_runs.go b/resources/services/glue/job_runs.go index 126caa6f..a9e33465 100644 --- a/resources/services/glue/job_runs.go +++ b/resources/services/glue/job_runs.go @@ -3,7 +3,7 @@ package glue import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/glue" "github.com/aws/aws-sdk-go-v2/service/glue/types" diff --git a/resources/services/glue/jobs.go b/resources/services/glue/jobs.go index cad9b33d..65ae3973 100644 --- a/resources/services/glue/jobs.go +++ b/resources/services/glue/jobs.go @@ -3,7 +3,7 @@ package glue import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/aws/arn" diff --git a/resources/services/glue/jobs_test.go b/resources/services/glue/jobs_test.go index 2fc4ef24..f800ac3a 100644 --- a/resources/services/glue/jobs_test.go +++ b/resources/services/glue/jobs_test.go @@ -3,8 +3,8 @@ package glue import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/glue" "github.com/aws/aws-sdk-go-v2/service/glue/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/glue/ml_transform_task_runs.go b/resources/services/glue/ml_transform_task_runs.go index 33b8b00a..627c5724 100644 --- a/resources/services/glue/ml_transform_task_runs.go +++ b/resources/services/glue/ml_transform_task_runs.go @@ -3,7 +3,7 @@ package glue import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/glue" "github.com/aws/aws-sdk-go-v2/service/glue/types" diff --git a/resources/services/glue/ml_transforms.go b/resources/services/glue/ml_transforms.go index 4ff1208b..e3e9c449 100644 --- a/resources/services/glue/ml_transforms.go +++ b/resources/services/glue/ml_transforms.go @@ -3,7 +3,7 @@ package glue import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/aws/arn" diff --git a/resources/services/glue/ml_transforms_test.go b/resources/services/glue/ml_transforms_test.go index 19ed8c84..331cc344 100644 --- a/resources/services/glue/ml_transforms_test.go +++ b/resources/services/glue/ml_transforms_test.go @@ -3,8 +3,8 @@ package glue import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/glue" "github.com/cloudquery/plugin-sdk/v4/faker" "github.com/golang/mock/gomock" diff --git a/resources/services/glue/registries.go b/resources/services/glue/registries.go index 08535387..e14262ff 100644 --- a/resources/services/glue/registries.go +++ b/resources/services/glue/registries.go @@ -3,7 +3,7 @@ package glue import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/glue" diff --git a/resources/services/glue/registries_test.go b/resources/services/glue/registries_test.go index 5bea683a..5c78f6e0 100644 --- a/resources/services/glue/registries_test.go +++ b/resources/services/glue/registries_test.go @@ -3,8 +3,8 @@ package glue import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/glue" "github.com/aws/aws-sdk-go-v2/service/glue/types" diff --git a/resources/services/glue/registry_schema_versions.go b/resources/services/glue/registry_schema_versions.go index 845a28a7..df6dea25 100644 --- a/resources/services/glue/registry_schema_versions.go +++ b/resources/services/glue/registry_schema_versions.go @@ -3,7 +3,7 @@ package glue import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/glue" diff --git a/resources/services/glue/registry_schemas.go b/resources/services/glue/registry_schemas.go index aecb06c5..fe7b9cce 100644 --- a/resources/services/glue/registry_schemas.go +++ b/resources/services/glue/registry_schemas.go @@ -3,7 +3,7 @@ package glue import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/glue" diff --git a/resources/services/glue/security_configurations.go b/resources/services/glue/security_configurations.go index cec5d42f..3321a05f 100644 --- a/resources/services/glue/security_configurations.go +++ b/resources/services/glue/security_configurations.go @@ -3,7 +3,7 @@ package glue import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/aws/aws-sdk-go-v2/service/glue" "github.com/aws/aws-sdk-go-v2/service/glue/types" "github.com/cloudquery/plugin-sdk/v4/schema" diff --git a/resources/services/glue/security_configurations_test.go b/resources/services/glue/security_configurations_test.go index 46a230be..a58f8296 100644 --- a/resources/services/glue/security_configurations_test.go +++ b/resources/services/glue/security_configurations_test.go @@ -3,8 +3,8 @@ package glue import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/glue" "github.com/cloudquery/plugin-sdk/v4/faker" "github.com/golang/mock/gomock" diff --git a/resources/services/glue/tags.go b/resources/services/glue/tags.go index 1a78323a..f09d7bfc 100644 --- a/resources/services/glue/tags.go +++ b/resources/services/glue/tags.go @@ -3,7 +3,7 @@ package glue import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/glue" "github.com/cloudquery/plugin-sdk/v4/schema" diff --git a/resources/services/glue/triggers.go b/resources/services/glue/triggers.go index a9569e49..5ef1484c 100644 --- a/resources/services/glue/triggers.go +++ b/resources/services/glue/triggers.go @@ -3,7 +3,7 @@ package glue import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/aws/arn" diff --git a/resources/services/glue/triggers_test.go b/resources/services/glue/triggers_test.go index cb472322..9139a2b7 100644 --- a/resources/services/glue/triggers_test.go +++ b/resources/services/glue/triggers_test.go @@ -3,8 +3,8 @@ package glue import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/glue" "github.com/aws/aws-sdk-go-v2/service/glue/types" diff --git a/resources/services/glue/workflows.go b/resources/services/glue/workflows.go index 0a76844f..b536f693 100644 --- a/resources/services/glue/workflows.go +++ b/resources/services/glue/workflows.go @@ -3,7 +3,7 @@ package glue import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/aws/arn" diff --git a/resources/services/glue/workflows_test.go b/resources/services/glue/workflows_test.go index 54cd7cb2..5f9b131b 100644 --- a/resources/services/glue/workflows_test.go +++ b/resources/services/glue/workflows_test.go @@ -3,8 +3,8 @@ package glue import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/glue" "github.com/aws/aws-sdk-go-v2/service/glue/types" diff --git a/resources/services/guardduty/detector_filters.go b/resources/services/guardduty/detector_filters.go index 9644e78b..f874dee5 100644 --- a/resources/services/guardduty/detector_filters.go +++ b/resources/services/guardduty/detector_filters.go @@ -3,8 +3,8 @@ package guardduty import ( "context" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/resources/services/guardduty/models" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/guardduty/models" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/guardduty" diff --git a/resources/services/guardduty/detector_findings.go b/resources/services/guardduty/detector_findings.go index 45e89a03..ffe59a3f 100644 --- a/resources/services/guardduty/detector_findings.go +++ b/resources/services/guardduty/detector_findings.go @@ -3,8 +3,8 @@ package guardduty import ( "context" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/resources/services/guardduty/models" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/guardduty/models" "github.com/aws/aws-sdk-go-v2/service/guardduty" "github.com/aws/aws-sdk-go-v2/service/guardduty/types" "github.com/cloudquery/plugin-sdk/v4/schema" diff --git a/resources/services/guardduty/detector_ipsets.go b/resources/services/guardduty/detector_ipsets.go index 688e2281..cf18a039 100644 --- a/resources/services/guardduty/detector_ipsets.go +++ b/resources/services/guardduty/detector_ipsets.go @@ -3,8 +3,8 @@ package guardduty import ( "context" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/resources/services/guardduty/models" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/guardduty/models" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/guardduty" "github.com/cloudquery/plugin-sdk/v4/schema" diff --git a/resources/services/guardduty/detector_members.go b/resources/services/guardduty/detector_members.go index 6bc1a409..fe7df2de 100644 --- a/resources/services/guardduty/detector_members.go +++ b/resources/services/guardduty/detector_members.go @@ -3,8 +3,8 @@ package guardduty import ( "context" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/resources/services/guardduty/models" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/guardduty/models" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/guardduty" "github.com/aws/aws-sdk-go-v2/service/guardduty/types" diff --git a/resources/services/guardduty/detector_publishing_destinations.go b/resources/services/guardduty/detector_publishing_destinations.go index 81550733..dc8bbf1b 100644 --- a/resources/services/guardduty/detector_publishing_destinations.go +++ b/resources/services/guardduty/detector_publishing_destinations.go @@ -3,8 +3,8 @@ package guardduty import ( "context" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/resources/services/guardduty/models" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/guardduty/models" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/guardduty" diff --git a/resources/services/guardduty/detector_threat_intel_sets.go b/resources/services/guardduty/detector_threat_intel_sets.go index fa1256cc..4f812caf 100644 --- a/resources/services/guardduty/detector_threat_intel_sets.go +++ b/resources/services/guardduty/detector_threat_intel_sets.go @@ -3,8 +3,8 @@ package guardduty import ( "context" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/resources/services/guardduty/models" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/guardduty/models" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/guardduty" diff --git a/resources/services/guardduty/detectors.go b/resources/services/guardduty/detectors.go index 6bb7efdf..a2948dba 100644 --- a/resources/services/guardduty/detectors.go +++ b/resources/services/guardduty/detectors.go @@ -3,8 +3,8 @@ package guardduty import ( "context" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/resources/services/guardduty/models" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/guardduty/models" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/guardduty" "github.com/cloudquery/plugin-sdk/v4/schema" diff --git a/resources/services/guardduty/detectors_mock_test.go b/resources/services/guardduty/detectors_mock_test.go index 323cd0fc..f24b7bc1 100644 --- a/resources/services/guardduty/detectors_mock_test.go +++ b/resources/services/guardduty/detectors_mock_test.go @@ -4,8 +4,8 @@ import ( "testing" "time" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/guardduty" gdTypes "github.com/aws/aws-sdk-go-v2/service/guardduty/types" diff --git a/resources/services/iam/credential_reports.go b/resources/services/iam/credential_reports.go index 77ef7040..f9b66497 100644 --- a/resources/services/iam/credential_reports.go +++ b/resources/services/iam/credential_reports.go @@ -5,8 +5,8 @@ import ( "errors" "time" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/resources/services/iam/models" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/iam/models" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/iam" "github.com/aws/smithy-go" diff --git a/resources/services/iam/credential_reports_mock_test.go b/resources/services/iam/credential_reports_mock_test.go index ff3da5ea..d6baee2e 100644 --- a/resources/services/iam/credential_reports_mock_test.go +++ b/resources/services/iam/credential_reports_mock_test.go @@ -5,9 +5,9 @@ import ( "sync" "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" - "github.com/OpsHelmInc/cloudquery/resources/services/iam/models" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/iam/models" "github.com/aws/aws-sdk-go-v2/service/iam" "github.com/golang/mock/gomock" "github.com/rs/zerolog" diff --git a/resources/services/iam/group_attached_policies.go b/resources/services/iam/group_attached_policies.go index 03a05d99..6c766bf6 100644 --- a/resources/services/iam/group_attached_policies.go +++ b/resources/services/iam/group_attached_policies.go @@ -3,7 +3,7 @@ package iam import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/OpsHelmInc/ohaws" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/iam" diff --git a/resources/services/iam/group_policies.go b/resources/services/iam/group_policies.go index e713759e..5def4d35 100644 --- a/resources/services/iam/group_policies.go +++ b/resources/services/iam/group_policies.go @@ -5,7 +5,7 @@ import ( "encoding/json" "net/url" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/OpsHelmInc/ohaws" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/iam" diff --git a/resources/services/iam/groups.go b/resources/services/iam/groups.go index 25938987..d449749c 100644 --- a/resources/services/iam/groups.go +++ b/resources/services/iam/groups.go @@ -4,7 +4,7 @@ import ( "context" "fmt" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/OpsHelmInc/ohaws" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" diff --git a/resources/services/iam/groups_mock_test.go b/resources/services/iam/groups_mock_test.go index 2ef00f4d..89be584f 100644 --- a/resources/services/iam/groups_mock_test.go +++ b/resources/services/iam/groups_mock_test.go @@ -3,8 +3,8 @@ package iam import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/iam" iamTypes "github.com/aws/aws-sdk-go-v2/service/iam/types" diff --git a/resources/services/iam/instance_profiles.go b/resources/services/iam/instance_profiles.go index 1a62168a..1158827c 100644 --- a/resources/services/iam/instance_profiles.go +++ b/resources/services/iam/instance_profiles.go @@ -3,7 +3,7 @@ package iam import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/iam" "github.com/aws/aws-sdk-go-v2/service/iam/types" diff --git a/resources/services/iam/instance_profiles_mock_test.go b/resources/services/iam/instance_profiles_mock_test.go index 92aac408..721a20ad 100644 --- a/resources/services/iam/instance_profiles_mock_test.go +++ b/resources/services/iam/instance_profiles_mock_test.go @@ -3,8 +3,8 @@ package iam import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/iam" iamTypes "github.com/aws/aws-sdk-go-v2/service/iam/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/iam/mfa_devices.go b/resources/services/iam/mfa_devices.go index 2892513f..809eadd1 100644 --- a/resources/services/iam/mfa_devices.go +++ b/resources/services/iam/mfa_devices.go @@ -3,7 +3,7 @@ package iam import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/iam" "github.com/aws/aws-sdk-go-v2/service/iam/types" diff --git a/resources/services/iam/openid_connect_identity_providers.go b/resources/services/iam/openid_connect_identity_providers.go index 731ce6dc..dc38c79f 100644 --- a/resources/services/iam/openid_connect_identity_providers.go +++ b/resources/services/iam/openid_connect_identity_providers.go @@ -3,8 +3,8 @@ package iam import ( "context" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/resources/services/iam/models" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/iam/models" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/iam" "github.com/aws/aws-sdk-go-v2/service/iam/types" diff --git a/resources/services/iam/openid_connect_identity_providers_mock_test.go b/resources/services/iam/openid_connect_identity_providers_mock_test.go index bff1ccbf..43dfc371 100644 --- a/resources/services/iam/openid_connect_identity_providers_mock_test.go +++ b/resources/services/iam/openid_connect_identity_providers_mock_test.go @@ -3,8 +3,8 @@ package iam import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/iam" iamTypes "github.com/aws/aws-sdk-go-v2/service/iam/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/iam/password_policies.go b/resources/services/iam/password_policies.go index 144240b8..ace6376d 100644 --- a/resources/services/iam/password_policies.go +++ b/resources/services/iam/password_policies.go @@ -3,8 +3,8 @@ package iam import ( "context" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/resources/services/iam/models" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/iam/models" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws/arn" "github.com/aws/aws-sdk-go-v2/service/iam" diff --git a/resources/services/iam/password_policies_mock_test.go b/resources/services/iam/password_policies_mock_test.go index 1c56f2a8..fb2a1472 100644 --- a/resources/services/iam/password_policies_mock_test.go +++ b/resources/services/iam/password_policies_mock_test.go @@ -3,8 +3,8 @@ package iam import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/iam" iamTypes "github.com/aws/aws-sdk-go-v2/service/iam/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/iam/policies.go b/resources/services/iam/policies.go index d26e0580..3029a570 100644 --- a/resources/services/iam/policies.go +++ b/resources/services/iam/policies.go @@ -3,7 +3,7 @@ package iam import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/aws/arn" diff --git a/resources/services/iam/policies_mock_test.go b/resources/services/iam/policies_mock_test.go index 121f23f5..8278ad7a 100644 --- a/resources/services/iam/policies_mock_test.go +++ b/resources/services/iam/policies_mock_test.go @@ -4,8 +4,8 @@ import ( "testing" "time" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/iam" iamTypes "github.com/aws/aws-sdk-go-v2/service/iam/types" diff --git a/resources/services/iam/policy_versions.go b/resources/services/iam/policy_versions.go index a7d09faa..fab2b537 100644 --- a/resources/services/iam/policy_versions.go +++ b/resources/services/iam/policy_versions.go @@ -4,7 +4,7 @@ import ( "context" "net/url" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/iam" diff --git a/resources/services/iam/role_attached_policies.go b/resources/services/iam/role_attached_policies.go index fa0eb47d..f38061c5 100644 --- a/resources/services/iam/role_attached_policies.go +++ b/resources/services/iam/role_attached_policies.go @@ -3,7 +3,7 @@ package iam import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/iam" "github.com/aws/aws-sdk-go-v2/service/iam/types" diff --git a/resources/services/iam/role_policies.go b/resources/services/iam/role_policies.go index ea2341f1..050a78dc 100644 --- a/resources/services/iam/role_policies.go +++ b/resources/services/iam/role_policies.go @@ -5,7 +5,7 @@ import ( "encoding/json" "net/url" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/iam" "github.com/aws/aws-sdk-go-v2/service/iam/types" diff --git a/resources/services/iam/roles.go b/resources/services/iam/roles.go index 2809470c..2df60583 100644 --- a/resources/services/iam/roles.go +++ b/resources/services/iam/roles.go @@ -5,7 +5,7 @@ import ( "encoding/json" "net/url" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/iam" "github.com/aws/aws-sdk-go-v2/service/iam/types" diff --git a/resources/services/iam/roles_mock_test.go b/resources/services/iam/roles_mock_test.go index eba563a5..78544ce1 100644 --- a/resources/services/iam/roles_mock_test.go +++ b/resources/services/iam/roles_mock_test.go @@ -3,8 +3,8 @@ package iam import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/iam" iamTypes "github.com/aws/aws-sdk-go-v2/service/iam/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/iam/saml_identity_providers.go b/resources/services/iam/saml_identity_providers.go index 7c246c79..3b944f94 100644 --- a/resources/services/iam/saml_identity_providers.go +++ b/resources/services/iam/saml_identity_providers.go @@ -3,8 +3,8 @@ package iam import ( "context" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/resources/services/iam/models" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/iam/models" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/iam" "github.com/aws/aws-sdk-go-v2/service/iam/types" diff --git a/resources/services/iam/saml_identity_providers_mock_test.go b/resources/services/iam/saml_identity_providers_mock_test.go index 4683e40d..29218e23 100644 --- a/resources/services/iam/saml_identity_providers_mock_test.go +++ b/resources/services/iam/saml_identity_providers_mock_test.go @@ -3,8 +3,8 @@ package iam import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/iam" iamTypes "github.com/aws/aws-sdk-go-v2/service/iam/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/iam/server_certificates.go b/resources/services/iam/server_certificates.go index ba67e618..85ea7294 100644 --- a/resources/services/iam/server_certificates.go +++ b/resources/services/iam/server_certificates.go @@ -3,7 +3,7 @@ package iam import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/iam" "github.com/aws/aws-sdk-go-v2/service/iam/types" diff --git a/resources/services/iam/server_certificates_mock_test.go b/resources/services/iam/server_certificates_mock_test.go index 82162dd7..8195699d 100644 --- a/resources/services/iam/server_certificates_mock_test.go +++ b/resources/services/iam/server_certificates_mock_test.go @@ -3,8 +3,8 @@ package iam import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/iam" iamTypes "github.com/aws/aws-sdk-go-v2/service/iam/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/iam/signing_certificates.go b/resources/services/iam/signing_certificates.go index 9667b015..21a15ac3 100644 --- a/resources/services/iam/signing_certificates.go +++ b/resources/services/iam/signing_certificates.go @@ -3,7 +3,7 @@ package iam import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/iam" "github.com/aws/aws-sdk-go-v2/service/iam/types" diff --git a/resources/services/iam/ssh_public_keys.go b/resources/services/iam/ssh_public_keys.go index da60e661..1b3b1db9 100644 --- a/resources/services/iam/ssh_public_keys.go +++ b/resources/services/iam/ssh_public_keys.go @@ -3,7 +3,7 @@ package iam import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/iam" "github.com/aws/aws-sdk-go-v2/service/iam/types" diff --git a/resources/services/iam/user_access_keys.go b/resources/services/iam/user_access_keys.go index 22488af4..e52a57a4 100644 --- a/resources/services/iam/user_access_keys.go +++ b/resources/services/iam/user_access_keys.go @@ -3,8 +3,8 @@ package iam import ( "context" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/resources/services/iam/models" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/iam/models" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/iam" "github.com/aws/aws-sdk-go-v2/service/iam/types" diff --git a/resources/services/iam/user_attached_policies.go b/resources/services/iam/user_attached_policies.go index f4b3b90b..9c4c13f5 100644 --- a/resources/services/iam/user_attached_policies.go +++ b/resources/services/iam/user_attached_policies.go @@ -3,7 +3,7 @@ package iam import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/iam" "github.com/aws/aws-sdk-go-v2/service/iam/types" diff --git a/resources/services/iam/user_groups.go b/resources/services/iam/user_groups.go index 33ccf303..46b50884 100644 --- a/resources/services/iam/user_groups.go +++ b/resources/services/iam/user_groups.go @@ -3,7 +3,7 @@ package iam import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/iam" "github.com/aws/aws-sdk-go-v2/service/iam/types" diff --git a/resources/services/iam/user_policies.go b/resources/services/iam/user_policies.go index 639c85eb..dad75b1d 100644 --- a/resources/services/iam/user_policies.go +++ b/resources/services/iam/user_policies.go @@ -5,7 +5,7 @@ import ( "encoding/json" "net/url" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/iam" "github.com/aws/aws-sdk-go-v2/service/iam/types" diff --git a/resources/services/iam/users.go b/resources/services/iam/users.go index 4461884c..f97878df 100644 --- a/resources/services/iam/users.go +++ b/resources/services/iam/users.go @@ -3,7 +3,7 @@ package iam import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/iam" diff --git a/resources/services/iam/users_mock_test.go b/resources/services/iam/users_mock_test.go index ca1dc124..013b6c44 100644 --- a/resources/services/iam/users_mock_test.go +++ b/resources/services/iam/users_mock_test.go @@ -3,8 +3,8 @@ package iam import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/iam" "github.com/aws/aws-sdk-go-v2/service/iam/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/identitystore/group_memberships.go b/resources/services/identitystore/group_memberships.go index 4c6c25ee..9fa4d99a 100644 --- a/resources/services/identitystore/group_memberships.go +++ b/resources/services/identitystore/group_memberships.go @@ -3,7 +3,7 @@ package identitystore import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/aws/arn" diff --git a/resources/services/identitystore/groups.go b/resources/services/identitystore/groups.go index 1c187e6a..e484fb4a 100644 --- a/resources/services/identitystore/groups.go +++ b/resources/services/identitystore/groups.go @@ -3,7 +3,7 @@ package identitystore import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/aws/arn" diff --git a/resources/services/identitystore/groups_mock_test.go b/resources/services/identitystore/groups_mock_test.go index a3a83dd2..796871b6 100644 --- a/resources/services/identitystore/groups_mock_test.go +++ b/resources/services/identitystore/groups_mock_test.go @@ -3,8 +3,8 @@ package identitystore import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/identitystore" iTypes "github.com/aws/aws-sdk-go-v2/service/identitystore/types" "github.com/aws/aws-sdk-go-v2/service/ssoadmin" diff --git a/resources/services/identitystore/instance_fetch.go b/resources/services/identitystore/instance_fetch.go index 0925d006..d68b3e78 100644 --- a/resources/services/identitystore/instance_fetch.go +++ b/resources/services/identitystore/instance_fetch.go @@ -3,7 +3,7 @@ package identitystore import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/aws/aws-sdk-go-v2/service/ssoadmin" "github.com/aws/aws-sdk-go-v2/service/ssoadmin/types" "github.com/cloudquery/plugin-sdk/v4/schema" diff --git a/resources/services/identitystore/users.go b/resources/services/identitystore/users.go index 8ee59c46..ff2af620 100644 --- a/resources/services/identitystore/users.go +++ b/resources/services/identitystore/users.go @@ -3,7 +3,7 @@ package identitystore import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/aws/arn" diff --git a/resources/services/identitystore/users_mock_test.go b/resources/services/identitystore/users_mock_test.go index d139dd34..f024dd39 100644 --- a/resources/services/identitystore/users_mock_test.go +++ b/resources/services/identitystore/users_mock_test.go @@ -3,8 +3,8 @@ package identitystore import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/identitystore" iTypes "github.com/aws/aws-sdk-go-v2/service/identitystore/types" "github.com/aws/aws-sdk-go-v2/service/ssoadmin" diff --git a/resources/services/inspector/findings.go b/resources/services/inspector/findings.go index 08e2b051..549df4ee 100644 --- a/resources/services/inspector/findings.go +++ b/resources/services/inspector/findings.go @@ -3,7 +3,7 @@ package inspector import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/inspector" diff --git a/resources/services/inspector/findings_mock_test.go b/resources/services/inspector/findings_mock_test.go index b4a24c68..eb299ccc 100644 --- a/resources/services/inspector/findings_mock_test.go +++ b/resources/services/inspector/findings_mock_test.go @@ -3,8 +3,8 @@ package inspector import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/inspector" "github.com/aws/aws-sdk-go-v2/service/inspector/types" diff --git a/resources/services/inspector2/findings.go b/resources/services/inspector2/findings.go index f64db13f..bddd0ec2 100644 --- a/resources/services/inspector2/findings.go +++ b/resources/services/inspector2/findings.go @@ -3,7 +3,7 @@ package inspector2 import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/inspector2" diff --git a/resources/services/inspector2/findings_mock_test.go b/resources/services/inspector2/findings_mock_test.go index 6546dca6..6c62015c 100644 --- a/resources/services/inspector2/findings_mock_test.go +++ b/resources/services/inspector2/findings_mock_test.go @@ -3,8 +3,8 @@ package inspector2 import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/inspector2" "github.com/aws/aws-sdk-go-v2/service/inspector2/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/iot/billing_groups.go b/resources/services/iot/billing_groups.go index 12d47036..9f9e9e86 100644 --- a/resources/services/iot/billing_groups.go +++ b/resources/services/iot/billing_groups.go @@ -3,7 +3,7 @@ package iot import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/iot" diff --git a/resources/services/iot/billing_groups_mock_test.go b/resources/services/iot/billing_groups_mock_test.go index 0683eddd..0c4d3f4e 100644 --- a/resources/services/iot/billing_groups_mock_test.go +++ b/resources/services/iot/billing_groups_mock_test.go @@ -3,8 +3,8 @@ package iot import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/iot" "github.com/cloudquery/plugin-sdk/v4/faker" "github.com/golang/mock/gomock" diff --git a/resources/services/iot/ca_certificates.go b/resources/services/iot/ca_certificates.go index c7dd26ca..a33690d5 100644 --- a/resources/services/iot/ca_certificates.go +++ b/resources/services/iot/ca_certificates.go @@ -3,7 +3,7 @@ package iot import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/iot" diff --git a/resources/services/iot/ca_certificates_mock_test.go b/resources/services/iot/ca_certificates_mock_test.go index 892d345e..4bb3537d 100644 --- a/resources/services/iot/ca_certificates_mock_test.go +++ b/resources/services/iot/ca_certificates_mock_test.go @@ -3,8 +3,8 @@ package iot import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/iot" "github.com/cloudquery/plugin-sdk/v4/faker" "github.com/golang/mock/gomock" diff --git a/resources/services/iot/certificates.go b/resources/services/iot/certificates.go index 23a0837e..f2c26380 100644 --- a/resources/services/iot/certificates.go +++ b/resources/services/iot/certificates.go @@ -3,7 +3,7 @@ package iot import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/iot" diff --git a/resources/services/iot/certificates_mock_test.go b/resources/services/iot/certificates_mock_test.go index fed6dfb5..ca56b759 100644 --- a/resources/services/iot/certificates_mock_test.go +++ b/resources/services/iot/certificates_mock_test.go @@ -3,8 +3,8 @@ package iot import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/iot" "github.com/cloudquery/plugin-sdk/v4/faker" "github.com/golang/mock/gomock" diff --git a/resources/services/iot/jobs.go b/resources/services/iot/jobs.go index 5c99fa68..94222b75 100644 --- a/resources/services/iot/jobs.go +++ b/resources/services/iot/jobs.go @@ -3,7 +3,7 @@ package iot import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/iot" diff --git a/resources/services/iot/jobs_mock_test.go b/resources/services/iot/jobs_mock_test.go index 99390c67..f4f8c866 100644 --- a/resources/services/iot/jobs_mock_test.go +++ b/resources/services/iot/jobs_mock_test.go @@ -3,8 +3,8 @@ package iot import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/iot" "github.com/cloudquery/plugin-sdk/v4/faker" "github.com/golang/mock/gomock" diff --git a/resources/services/iot/policies.go b/resources/services/iot/policies.go index 614ceb9f..450d96ca 100644 --- a/resources/services/iot/policies.go +++ b/resources/services/iot/policies.go @@ -3,7 +3,7 @@ package iot import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/iot" diff --git a/resources/services/iot/policies_mock_test.go b/resources/services/iot/policies_mock_test.go index cc683ab4..74fd672c 100644 --- a/resources/services/iot/policies_mock_test.go +++ b/resources/services/iot/policies_mock_test.go @@ -3,8 +3,8 @@ package iot import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/iot" "github.com/cloudquery/plugin-sdk/v4/faker" "github.com/golang/mock/gomock" diff --git a/resources/services/iot/security_profiles.go b/resources/services/iot/security_profiles.go index 0fa25b5a..67f80411 100644 --- a/resources/services/iot/security_profiles.go +++ b/resources/services/iot/security_profiles.go @@ -3,7 +3,7 @@ package iot import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/iot" diff --git a/resources/services/iot/security_profiles_mock_test.go b/resources/services/iot/security_profiles_mock_test.go index 35639957..68e14618 100644 --- a/resources/services/iot/security_profiles_mock_test.go +++ b/resources/services/iot/security_profiles_mock_test.go @@ -3,8 +3,8 @@ package iot import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/iot" "github.com/cloudquery/plugin-sdk/v4/faker" "github.com/golang/mock/gomock" diff --git a/resources/services/iot/streams.go b/resources/services/iot/streams.go index ca34af97..e0327fe8 100644 --- a/resources/services/iot/streams.go +++ b/resources/services/iot/streams.go @@ -3,7 +3,7 @@ package iot import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/iot" diff --git a/resources/services/iot/streams_mock_test.go b/resources/services/iot/streams_mock_test.go index 892b9049..a77b36ef 100644 --- a/resources/services/iot/streams_mock_test.go +++ b/resources/services/iot/streams_mock_test.go @@ -3,8 +3,8 @@ package iot import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/iot" "github.com/cloudquery/plugin-sdk/v4/faker" "github.com/golang/mock/gomock" diff --git a/resources/services/iot/tags.go b/resources/services/iot/tags.go index 223825c6..a3fcd65a 100644 --- a/resources/services/iot/tags.go +++ b/resources/services/iot/tags.go @@ -3,8 +3,8 @@ package iot import ( "context" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/services" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/services" "github.com/aws/aws-sdk-go-v2/service/iot" "github.com/cloudquery/plugin-sdk/v4/schema" ) diff --git a/resources/services/iot/thing_groups.go b/resources/services/iot/thing_groups.go index ab33953d..1cec87be 100644 --- a/resources/services/iot/thing_groups.go +++ b/resources/services/iot/thing_groups.go @@ -3,7 +3,7 @@ package iot import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/iot" diff --git a/resources/services/iot/thing_groups_mock_test.go b/resources/services/iot/thing_groups_mock_test.go index 2fe8e505..402b526b 100644 --- a/resources/services/iot/thing_groups_mock_test.go +++ b/resources/services/iot/thing_groups_mock_test.go @@ -3,8 +3,8 @@ package iot import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/iot" "github.com/cloudquery/plugin-sdk/v4/faker" "github.com/golang/mock/gomock" diff --git a/resources/services/iot/thing_types.go b/resources/services/iot/thing_types.go index c8bbebad..6f33d92c 100644 --- a/resources/services/iot/thing_types.go +++ b/resources/services/iot/thing_types.go @@ -3,7 +3,7 @@ package iot import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/iot" diff --git a/resources/services/iot/thing_types_mock_test.go b/resources/services/iot/thing_types_mock_test.go index 9f7a9bf3..f1810400 100644 --- a/resources/services/iot/thing_types_mock_test.go +++ b/resources/services/iot/thing_types_mock_test.go @@ -3,8 +3,8 @@ package iot import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/iot" "github.com/cloudquery/plugin-sdk/v4/faker" "github.com/golang/mock/gomock" diff --git a/resources/services/iot/things.go b/resources/services/iot/things.go index 822422d0..d9d20e10 100644 --- a/resources/services/iot/things.go +++ b/resources/services/iot/things.go @@ -3,7 +3,7 @@ package iot import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/iot" diff --git a/resources/services/iot/things_mock_test.go b/resources/services/iot/things_mock_test.go index d46cb4b0..f50e5b17 100644 --- a/resources/services/iot/things_mock_test.go +++ b/resources/services/iot/things_mock_test.go @@ -3,8 +3,8 @@ package iot import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/iot" "github.com/aws/aws-sdk-go-v2/service/iot/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/iot/topic_rules.go b/resources/services/iot/topic_rules.go index 50ddc243..f8fac651 100644 --- a/resources/services/iot/topic_rules.go +++ b/resources/services/iot/topic_rules.go @@ -3,7 +3,7 @@ package iot import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/iot" diff --git a/resources/services/iot/topic_rules_mock_test.go b/resources/services/iot/topic_rules_mock_test.go index 66df6aea..6a95797a 100644 --- a/resources/services/iot/topic_rules_mock_test.go +++ b/resources/services/iot/topic_rules_mock_test.go @@ -3,8 +3,8 @@ package iot import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/iot" "github.com/aws/aws-sdk-go-v2/service/iot/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/kafka/cluster_operations.go b/resources/services/kafka/cluster_operations.go index bc0b0bc3..9359cd2e 100644 --- a/resources/services/kafka/cluster_operations.go +++ b/resources/services/kafka/cluster_operations.go @@ -3,7 +3,7 @@ package kafka import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/kafka" "github.com/aws/aws-sdk-go-v2/service/kafka/types" diff --git a/resources/services/kafka/cluster_operations_mock_test.go b/resources/services/kafka/cluster_operations_mock_test.go index 380e25f3..434d6d70 100644 --- a/resources/services/kafka/cluster_operations_mock_test.go +++ b/resources/services/kafka/cluster_operations_mock_test.go @@ -3,7 +3,7 @@ package kafka import ( "testing" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/kafka" "github.com/aws/aws-sdk-go-v2/service/kafka/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/kafka/clusters.go b/resources/services/kafka/clusters.go index 4dea09b8..42d9a645 100644 --- a/resources/services/kafka/clusters.go +++ b/resources/services/kafka/clusters.go @@ -3,7 +3,7 @@ package kafka import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/kafka" "github.com/aws/aws-sdk-go-v2/service/kafka/types" diff --git a/resources/services/kafka/clusters_mock_test.go b/resources/services/kafka/clusters_mock_test.go index aa27aefa..26f885e1 100644 --- a/resources/services/kafka/clusters_mock_test.go +++ b/resources/services/kafka/clusters_mock_test.go @@ -3,8 +3,8 @@ package kafka import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/kafka" "github.com/aws/aws-sdk-go-v2/service/kafka/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/kafka/configurations.go b/resources/services/kafka/configurations.go index 66f01a5e..a9672df6 100644 --- a/resources/services/kafka/configurations.go +++ b/resources/services/kafka/configurations.go @@ -3,7 +3,7 @@ package kafka import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/kafka" "github.com/aws/aws-sdk-go-v2/service/kafka/types" diff --git a/resources/services/kafka/configurations_mock_test.go b/resources/services/kafka/configurations_mock_test.go index de367122..d6f25266 100644 --- a/resources/services/kafka/configurations_mock_test.go +++ b/resources/services/kafka/configurations_mock_test.go @@ -3,8 +3,8 @@ package kafka import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/kafka" "github.com/aws/aws-sdk-go-v2/service/kafka/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/kafka/helpers.go b/resources/services/kafka/helpers.go index da894e92..215a9c57 100644 --- a/resources/services/kafka/helpers.go +++ b/resources/services/kafka/helpers.go @@ -3,7 +3,7 @@ package kafka import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/kafka" "github.com/aws/aws-sdk-go-v2/service/kafka/types" diff --git a/resources/services/kafka/nodes.go b/resources/services/kafka/nodes.go index 2fd3cbc4..93b22288 100644 --- a/resources/services/kafka/nodes.go +++ b/resources/services/kafka/nodes.go @@ -3,7 +3,7 @@ package kafka import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/kafka" "github.com/aws/aws-sdk-go-v2/service/kafka/types" diff --git a/resources/services/kafka/nodes_mock_test.go b/resources/services/kafka/nodes_mock_test.go index e4fadd24..698eb4ef 100644 --- a/resources/services/kafka/nodes_mock_test.go +++ b/resources/services/kafka/nodes_mock_test.go @@ -3,7 +3,7 @@ package kafka import ( "testing" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/kafka" "github.com/aws/aws-sdk-go-v2/service/kafka/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/kinesis/streams.go b/resources/services/kinesis/streams.go index 3582a6b3..d583d012 100644 --- a/resources/services/kinesis/streams.go +++ b/resources/services/kinesis/streams.go @@ -3,7 +3,7 @@ package kinesis import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/kinesis" diff --git a/resources/services/kinesis/streams_mock_test.go b/resources/services/kinesis/streams_mock_test.go index c089bac9..08d62529 100644 --- a/resources/services/kinesis/streams_mock_test.go +++ b/resources/services/kinesis/streams_mock_test.go @@ -4,8 +4,8 @@ import ( "testing" "time" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/kinesis" "github.com/aws/aws-sdk-go-v2/service/kinesis/types" diff --git a/resources/services/kms/aliases.go b/resources/services/kms/aliases.go index 17dee9d2..a16436a6 100644 --- a/resources/services/kms/aliases.go +++ b/resources/services/kms/aliases.go @@ -3,7 +3,7 @@ package kms import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/kms" "github.com/aws/aws-sdk-go-v2/service/kms/types" diff --git a/resources/services/kms/aliases_mock_test.go b/resources/services/kms/aliases_mock_test.go index f6072738..e701f729 100644 --- a/resources/services/kms/aliases_mock_test.go +++ b/resources/services/kms/aliases_mock_test.go @@ -3,8 +3,8 @@ package kms import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/kms" "github.com/cloudquery/plugin-sdk/v4/faker" "github.com/golang/mock/gomock" diff --git a/resources/services/kms/key_grants.go b/resources/services/kms/key_grants.go index ac905c32..cde661e9 100644 --- a/resources/services/kms/key_grants.go +++ b/resources/services/kms/key_grants.go @@ -3,7 +3,7 @@ package kms import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/kms" diff --git a/resources/services/kms/key_policies.go b/resources/services/kms/key_policies.go index daeeef04..291f1279 100644 --- a/resources/services/kms/key_policies.go +++ b/resources/services/kms/key_policies.go @@ -3,7 +3,7 @@ package kms import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/kms" diff --git a/resources/services/kms/keys.go b/resources/services/kms/keys.go index 34fd724b..0ccb6fef 100644 --- a/resources/services/kms/keys.go +++ b/resources/services/kms/keys.go @@ -3,7 +3,7 @@ package kms import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/kms" diff --git a/resources/services/kms/keys_mock_test.go b/resources/services/kms/keys_mock_test.go index 192dffc8..7e40bc93 100644 --- a/resources/services/kms/keys_mock_test.go +++ b/resources/services/kms/keys_mock_test.go @@ -3,8 +3,8 @@ package kms import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/kms" "github.com/aws/aws-sdk-go-v2/service/kms/types" diff --git a/resources/services/lambda/function_aliases.go b/resources/services/lambda/function_aliases.go index 143a71a8..2cac91c8 100644 --- a/resources/services/lambda/function_aliases.go +++ b/resources/services/lambda/function_aliases.go @@ -3,7 +3,7 @@ package lambda import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/lambda" "github.com/aws/aws-sdk-go-v2/service/lambda/types" diff --git a/resources/services/lambda/function_concurrency_configs.go b/resources/services/lambda/function_concurrency_configs.go index f9305a36..3778d9ba 100644 --- a/resources/services/lambda/function_concurrency_configs.go +++ b/resources/services/lambda/function_concurrency_configs.go @@ -3,7 +3,7 @@ package lambda import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/aws/aws-sdk-go-v2/service/lambda" "github.com/aws/aws-sdk-go-v2/service/lambda/types" "github.com/cloudquery/plugin-sdk/v4/schema" diff --git a/resources/services/lambda/function_event_invoke_configs.go b/resources/services/lambda/function_event_invoke_configs.go index ef32b235..5a6cfce0 100644 --- a/resources/services/lambda/function_event_invoke_configs.go +++ b/resources/services/lambda/function_event_invoke_configs.go @@ -3,7 +3,7 @@ package lambda import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/aws/aws-sdk-go-v2/service/lambda" "github.com/aws/aws-sdk-go-v2/service/lambda/types" "github.com/cloudquery/plugin-sdk/v4/schema" diff --git a/resources/services/lambda/function_event_source_mappings.go b/resources/services/lambda/function_event_source_mappings.go index fa7d0399..98e2ad6d 100644 --- a/resources/services/lambda/function_event_source_mappings.go +++ b/resources/services/lambda/function_event_source_mappings.go @@ -3,7 +3,7 @@ package lambda import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/aws/aws-sdk-go-v2/service/lambda" "github.com/aws/aws-sdk-go-v2/service/lambda/types" "github.com/cloudquery/plugin-sdk/v4/schema" diff --git a/resources/services/lambda/function_url_configs.go b/resources/services/lambda/function_url_configs.go index 51b50d33..2d460daf 100644 --- a/resources/services/lambda/function_url_configs.go +++ b/resources/services/lambda/function_url_configs.go @@ -3,7 +3,7 @@ package lambda import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/aws/aws-sdk-go-v2/service/lambda" "github.com/aws/aws-sdk-go-v2/service/lambda/types" "github.com/cloudquery/plugin-sdk/v4/schema" diff --git a/resources/services/lambda/function_versions.go b/resources/services/lambda/function_versions.go index bdd66d73..aaece6bf 100644 --- a/resources/services/lambda/function_versions.go +++ b/resources/services/lambda/function_versions.go @@ -3,7 +3,7 @@ package lambda import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/lambda" "github.com/aws/aws-sdk-go-v2/service/lambda/types" diff --git a/resources/services/lambda/functions.go b/resources/services/lambda/functions.go index e4ed203b..fc2649b9 100644 --- a/resources/services/lambda/functions.go +++ b/resources/services/lambda/functions.go @@ -4,7 +4,7 @@ import ( "context" "encoding/json" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/lambda" diff --git a/resources/services/lambda/functions_mock_test.go b/resources/services/lambda/functions_mock_test.go index 9394ec49..61da2c0b 100644 --- a/resources/services/lambda/functions_mock_test.go +++ b/resources/services/lambda/functions_mock_test.go @@ -3,8 +3,8 @@ package lambda import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/lambda" "github.com/aws/aws-sdk-go-v2/service/lambda/types" diff --git a/resources/services/lambda/layer_version_policies.go b/resources/services/lambda/layer_version_policies.go index 47a2060f..9540514e 100644 --- a/resources/services/lambda/layer_version_policies.go +++ b/resources/services/lambda/layer_version_policies.go @@ -1,7 +1,7 @@ package lambda import ( - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/lambda" "github.com/cloudquery/plugin-sdk/v4/schema" diff --git a/resources/services/lambda/layer_versions.go b/resources/services/lambda/layer_versions.go index c973c61c..b2cca0fd 100644 --- a/resources/services/lambda/layer_versions.go +++ b/resources/services/lambda/layer_versions.go @@ -1,7 +1,7 @@ package lambda import ( - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/lambda/types" "github.com/cloudquery/plugin-sdk/v4/schema" diff --git a/resources/services/lambda/layers.go b/resources/services/lambda/layers.go index dc87e19d..c45a8961 100644 --- a/resources/services/lambda/layers.go +++ b/resources/services/lambda/layers.go @@ -3,7 +3,7 @@ package lambda import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/lambda" diff --git a/resources/services/lambda/layers_mock_test.go b/resources/services/lambda/layers_mock_test.go index e930981e..756e272a 100644 --- a/resources/services/lambda/layers_mock_test.go +++ b/resources/services/lambda/layers_mock_test.go @@ -3,8 +3,8 @@ package lambda import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/lambda" "github.com/aws/aws-sdk-go-v2/service/lambda/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/lightsail/alarms.go b/resources/services/lightsail/alarms.go index 2a47396e..09482a65 100644 --- a/resources/services/lightsail/alarms.go +++ b/resources/services/lightsail/alarms.go @@ -3,7 +3,7 @@ package lightsail import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/lightsail" diff --git a/resources/services/lightsail/alarms_mock_test.go b/resources/services/lightsail/alarms_mock_test.go index 051bfbf0..62195e23 100644 --- a/resources/services/lightsail/alarms_mock_test.go +++ b/resources/services/lightsail/alarms_mock_test.go @@ -3,8 +3,8 @@ package lightsail import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/lightsail" "github.com/cloudquery/plugin-sdk/v4/faker" "github.com/golang/mock/gomock" diff --git a/resources/services/lightsail/bucket_access_keys.go b/resources/services/lightsail/bucket_access_keys.go index 8e08809f..ba34cd8f 100644 --- a/resources/services/lightsail/bucket_access_keys.go +++ b/resources/services/lightsail/bucket_access_keys.go @@ -3,7 +3,7 @@ package lightsail import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/lightsail" "github.com/aws/aws-sdk-go-v2/service/lightsail/types" diff --git a/resources/services/lightsail/buckets.go b/resources/services/lightsail/buckets.go index ad7575de..5e8b6504 100644 --- a/resources/services/lightsail/buckets.go +++ b/resources/services/lightsail/buckets.go @@ -3,7 +3,7 @@ package lightsail import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/lightsail" diff --git a/resources/services/lightsail/buckets_mock_test.go b/resources/services/lightsail/buckets_mock_test.go index aa8cafe6..1d2d66c5 100644 --- a/resources/services/lightsail/buckets_mock_test.go +++ b/resources/services/lightsail/buckets_mock_test.go @@ -3,8 +3,8 @@ package lightsail import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/lightsail" "github.com/cloudquery/plugin-sdk/v4/faker" "github.com/golang/mock/gomock" diff --git a/resources/services/lightsail/certificates.go b/resources/services/lightsail/certificates.go index 85990be4..ef17db4e 100644 --- a/resources/services/lightsail/certificates.go +++ b/resources/services/lightsail/certificates.go @@ -3,7 +3,7 @@ package lightsail import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/lightsail" "github.com/aws/aws-sdk-go-v2/service/lightsail/types" diff --git a/resources/services/lightsail/certificates_mock_test.go b/resources/services/lightsail/certificates_mock_test.go index 273fb8b2..fd421006 100644 --- a/resources/services/lightsail/certificates_mock_test.go +++ b/resources/services/lightsail/certificates_mock_test.go @@ -3,8 +3,8 @@ package lightsail import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/lightsail" "github.com/cloudquery/plugin-sdk/v4/faker" "github.com/golang/mock/gomock" diff --git a/resources/services/lightsail/container_service_deployments.go b/resources/services/lightsail/container_service_deployments.go index ba54fbff..0d4f75e5 100644 --- a/resources/services/lightsail/container_service_deployments.go +++ b/resources/services/lightsail/container_service_deployments.go @@ -3,7 +3,7 @@ package lightsail import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/lightsail" "github.com/aws/aws-sdk-go-v2/service/lightsail/types" diff --git a/resources/services/lightsail/container_service_images.go b/resources/services/lightsail/container_service_images.go index 27b1163d..06878d20 100644 --- a/resources/services/lightsail/container_service_images.go +++ b/resources/services/lightsail/container_service_images.go @@ -3,7 +3,7 @@ package lightsail import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/lightsail" "github.com/aws/aws-sdk-go-v2/service/lightsail/types" diff --git a/resources/services/lightsail/container_services.go b/resources/services/lightsail/container_services.go index f911fe5b..b50a2aa5 100644 --- a/resources/services/lightsail/container_services.go +++ b/resources/services/lightsail/container_services.go @@ -3,7 +3,7 @@ package lightsail import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/lightsail" "github.com/aws/aws-sdk-go-v2/service/lightsail/types" diff --git a/resources/services/lightsail/container_services_mock_test.go b/resources/services/lightsail/container_services_mock_test.go index 4f60ce09..5a763f39 100644 --- a/resources/services/lightsail/container_services_mock_test.go +++ b/resources/services/lightsail/container_services_mock_test.go @@ -3,8 +3,8 @@ package lightsail import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/lightsail" "github.com/aws/aws-sdk-go-v2/service/lightsail/types" diff --git a/resources/services/lightsail/database_events.go b/resources/services/lightsail/database_events.go index 6ec73b59..3a44def5 100644 --- a/resources/services/lightsail/database_events.go +++ b/resources/services/lightsail/database_events.go @@ -3,7 +3,7 @@ package lightsail import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/lightsail" diff --git a/resources/services/lightsail/database_log_events.go b/resources/services/lightsail/database_log_events.go index 8c8789f0..2215dcdf 100644 --- a/resources/services/lightsail/database_log_events.go +++ b/resources/services/lightsail/database_log_events.go @@ -4,8 +4,8 @@ import ( "context" "time" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/resources/services/lightsail/models" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/lightsail/models" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/lightsail" diff --git a/resources/services/lightsail/database_parameters.go b/resources/services/lightsail/database_parameters.go index f860a600..0db7e083 100644 --- a/resources/services/lightsail/database_parameters.go +++ b/resources/services/lightsail/database_parameters.go @@ -3,7 +3,7 @@ package lightsail import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/lightsail" diff --git a/resources/services/lightsail/database_snapshots.go b/resources/services/lightsail/database_snapshots.go index 2c7199f3..bc8df852 100644 --- a/resources/services/lightsail/database_snapshots.go +++ b/resources/services/lightsail/database_snapshots.go @@ -3,7 +3,7 @@ package lightsail import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/lightsail" diff --git a/resources/services/lightsail/database_snapshots_mock_test.go b/resources/services/lightsail/database_snapshots_mock_test.go index 632e8669..9be2c1b0 100644 --- a/resources/services/lightsail/database_snapshots_mock_test.go +++ b/resources/services/lightsail/database_snapshots_mock_test.go @@ -3,8 +3,8 @@ package lightsail import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/lightsail" "github.com/cloudquery/plugin-sdk/v4/faker" "github.com/golang/mock/gomock" diff --git a/resources/services/lightsail/databases.go b/resources/services/lightsail/databases.go index 90d1bcde..dcb2faab 100644 --- a/resources/services/lightsail/databases.go +++ b/resources/services/lightsail/databases.go @@ -3,7 +3,7 @@ package lightsail import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/lightsail" diff --git a/resources/services/lightsail/databases_mock_test.go b/resources/services/lightsail/databases_mock_test.go index 4ba60472..81e10123 100644 --- a/resources/services/lightsail/databases_mock_test.go +++ b/resources/services/lightsail/databases_mock_test.go @@ -3,8 +3,8 @@ package lightsail import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/lightsail" "github.com/cloudquery/plugin-sdk/v4/faker" "github.com/golang/mock/gomock" diff --git a/resources/services/lightsail/disk_snapshots.go b/resources/services/lightsail/disk_snapshots.go index 24109930..6298f705 100644 --- a/resources/services/lightsail/disk_snapshots.go +++ b/resources/services/lightsail/disk_snapshots.go @@ -3,7 +3,7 @@ package lightsail import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/lightsail" diff --git a/resources/services/lightsail/disks.go b/resources/services/lightsail/disks.go index f790188c..2d289f94 100644 --- a/resources/services/lightsail/disks.go +++ b/resources/services/lightsail/disks.go @@ -3,7 +3,7 @@ package lightsail import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/lightsail" diff --git a/resources/services/lightsail/disks_mock_test.go b/resources/services/lightsail/disks_mock_test.go index 444eb045..e5d76fd8 100644 --- a/resources/services/lightsail/disks_mock_test.go +++ b/resources/services/lightsail/disks_mock_test.go @@ -3,8 +3,8 @@ package lightsail import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/lightsail" "github.com/cloudquery/plugin-sdk/v4/faker" "github.com/golang/mock/gomock" diff --git a/resources/services/lightsail/distributions.go b/resources/services/lightsail/distributions.go index 0e03831d..dff4136f 100644 --- a/resources/services/lightsail/distributions.go +++ b/resources/services/lightsail/distributions.go @@ -3,8 +3,8 @@ package lightsail import ( "context" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/resources/services/lightsail/models" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/lightsail/models" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/lightsail" diff --git a/resources/services/lightsail/distributions_mock_test.go b/resources/services/lightsail/distributions_mock_test.go index c7a8a626..6ea2bce1 100644 --- a/resources/services/lightsail/distributions_mock_test.go +++ b/resources/services/lightsail/distributions_mock_test.go @@ -3,8 +3,8 @@ package lightsail import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/lightsail" "github.com/cloudquery/plugin-sdk/v4/faker" "github.com/golang/mock/gomock" diff --git a/resources/services/lightsail/instance_port_states.go b/resources/services/lightsail/instance_port_states.go index e21b346b..23f4a8ba 100644 --- a/resources/services/lightsail/instance_port_states.go +++ b/resources/services/lightsail/instance_port_states.go @@ -4,7 +4,7 @@ import ( "context" "strings" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/lightsail" "github.com/aws/aws-sdk-go-v2/service/lightsail/types" diff --git a/resources/services/lightsail/instance_snapshots.go b/resources/services/lightsail/instance_snapshots.go index ab7e5f3e..2a1004d6 100644 --- a/resources/services/lightsail/instance_snapshots.go +++ b/resources/services/lightsail/instance_snapshots.go @@ -3,7 +3,7 @@ package lightsail import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/lightsail" diff --git a/resources/services/lightsail/instance_snapshots_mock_test.go b/resources/services/lightsail/instance_snapshots_mock_test.go index 96727ead..fa26623e 100644 --- a/resources/services/lightsail/instance_snapshots_mock_test.go +++ b/resources/services/lightsail/instance_snapshots_mock_test.go @@ -3,8 +3,8 @@ package lightsail import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/lightsail" "github.com/cloudquery/plugin-sdk/v4/faker" "github.com/golang/mock/gomock" diff --git a/resources/services/lightsail/instances.go b/resources/services/lightsail/instances.go index 441c7586..5d352296 100644 --- a/resources/services/lightsail/instances.go +++ b/resources/services/lightsail/instances.go @@ -3,7 +3,7 @@ package lightsail import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/lightsail" diff --git a/resources/services/lightsail/instances_mock_test.go b/resources/services/lightsail/instances_mock_test.go index b5b8c9a4..41fc4056 100644 --- a/resources/services/lightsail/instances_mock_test.go +++ b/resources/services/lightsail/instances_mock_test.go @@ -3,8 +3,8 @@ package lightsail import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/lightsail" "github.com/aws/aws-sdk-go-v2/service/lightsail/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/lightsail/load_balancer_tls_certificates.go b/resources/services/lightsail/load_balancer_tls_certificates.go index 9b4d604d..7928c104 100644 --- a/resources/services/lightsail/load_balancer_tls_certificates.go +++ b/resources/services/lightsail/load_balancer_tls_certificates.go @@ -3,7 +3,7 @@ package lightsail import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/lightsail" "github.com/aws/aws-sdk-go-v2/service/lightsail/types" diff --git a/resources/services/lightsail/load_balancers.go b/resources/services/lightsail/load_balancers.go index 62ce507f..18bbcff0 100644 --- a/resources/services/lightsail/load_balancers.go +++ b/resources/services/lightsail/load_balancers.go @@ -3,7 +3,7 @@ package lightsail import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/lightsail" diff --git a/resources/services/lightsail/load_balancers_mock_test.go b/resources/services/lightsail/load_balancers_mock_test.go index 611f685a..b8faac53 100644 --- a/resources/services/lightsail/load_balancers_mock_test.go +++ b/resources/services/lightsail/load_balancers_mock_test.go @@ -3,8 +3,8 @@ package lightsail import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/lightsail" "github.com/cloudquery/plugin-sdk/v4/faker" "github.com/golang/mock/gomock" diff --git a/resources/services/lightsail/static_ips.go b/resources/services/lightsail/static_ips.go index feb48622..610edb9c 100644 --- a/resources/services/lightsail/static_ips.go +++ b/resources/services/lightsail/static_ips.go @@ -3,7 +3,7 @@ package lightsail import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/lightsail" diff --git a/resources/services/lightsail/static_ips_mock_test.go b/resources/services/lightsail/static_ips_mock_test.go index e62b23ee..cd971252 100644 --- a/resources/services/lightsail/static_ips_mock_test.go +++ b/resources/services/lightsail/static_ips_mock_test.go @@ -3,8 +3,8 @@ package lightsail import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/lightsail" "github.com/cloudquery/plugin-sdk/v4/faker" "github.com/golang/mock/gomock" diff --git a/resources/services/mq/broker_configuration_revisions.go b/resources/services/mq/broker_configuration_revisions.go index 35ff342b..d6218050 100644 --- a/resources/services/mq/broker_configuration_revisions.go +++ b/resources/services/mq/broker_configuration_revisions.go @@ -11,7 +11,7 @@ import ( xj "github.com/basgys/goxml2json" sdkTypes "github.com/cloudquery/plugin-sdk/v4/types" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/mq" "github.com/aws/aws-sdk-go-v2/service/mq/types" diff --git a/resources/services/mq/broker_configurations.go b/resources/services/mq/broker_configurations.go index 97694f88..fb7620a8 100644 --- a/resources/services/mq/broker_configurations.go +++ b/resources/services/mq/broker_configurations.go @@ -3,7 +3,7 @@ package mq import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/mq" "github.com/cloudquery/plugin-sdk/v4/schema" diff --git a/resources/services/mq/broker_users.go b/resources/services/mq/broker_users.go index 6210b466..20e414c0 100644 --- a/resources/services/mq/broker_users.go +++ b/resources/services/mq/broker_users.go @@ -3,7 +3,7 @@ package mq import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/mq" "github.com/cloudquery/plugin-sdk/v4/schema" diff --git a/resources/services/mq/brokers.go b/resources/services/mq/brokers.go index 6a4b53a2..d55921c8 100644 --- a/resources/services/mq/brokers.go +++ b/resources/services/mq/brokers.go @@ -3,7 +3,7 @@ package mq import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/mq" "github.com/aws/aws-sdk-go-v2/service/mq/types" diff --git a/resources/services/mq/brokers_mock_test.go b/resources/services/mq/brokers_mock_test.go index c63535f4..9073d08c 100644 --- a/resources/services/mq/brokers_mock_test.go +++ b/resources/services/mq/brokers_mock_test.go @@ -3,8 +3,8 @@ package mq import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/mq" "github.com/aws/aws-sdk-go-v2/service/mq/types" diff --git a/resources/services/mwaa/environments.go b/resources/services/mwaa/environments.go index 2aff6759..cd063ba9 100644 --- a/resources/services/mwaa/environments.go +++ b/resources/services/mwaa/environments.go @@ -3,7 +3,7 @@ package mwaa import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/mwaa" "github.com/aws/aws-sdk-go-v2/service/mwaa/types" diff --git a/resources/services/mwaa/environments_mock_test.go b/resources/services/mwaa/environments_mock_test.go index 865692bc..c941cdb9 100644 --- a/resources/services/mwaa/environments_mock_test.go +++ b/resources/services/mwaa/environments_mock_test.go @@ -3,8 +3,8 @@ package mwaa import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/mwaa" "github.com/aws/aws-sdk-go-v2/service/mwaa/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/neptune/cluster_parameter_group_parameters.go b/resources/services/neptune/cluster_parameter_group_parameters.go index 22c1f39e..1c9ac20e 100644 --- a/resources/services/neptune/cluster_parameter_group_parameters.go +++ b/resources/services/neptune/cluster_parameter_group_parameters.go @@ -3,7 +3,7 @@ package neptune import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/neptune" "github.com/aws/aws-sdk-go-v2/service/neptune/types" diff --git a/resources/services/neptune/cluster_parameter_groups.go b/resources/services/neptune/cluster_parameter_groups.go index ee53c522..2de17692 100644 --- a/resources/services/neptune/cluster_parameter_groups.go +++ b/resources/services/neptune/cluster_parameter_groups.go @@ -3,7 +3,7 @@ package neptune import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/neptune" diff --git a/resources/services/neptune/cluster_parameter_groups_mock_test.go b/resources/services/neptune/cluster_parameter_groups_mock_test.go index 630cd5f3..4e7775b1 100644 --- a/resources/services/neptune/cluster_parameter_groups_mock_test.go +++ b/resources/services/neptune/cluster_parameter_groups_mock_test.go @@ -3,8 +3,8 @@ package neptune import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/neptune" "github.com/aws/aws-sdk-go-v2/service/neptune/types" diff --git a/resources/services/neptune/cluster_snapshots.go b/resources/services/neptune/cluster_snapshots.go index 551fc989..9f25fe60 100644 --- a/resources/services/neptune/cluster_snapshots.go +++ b/resources/services/neptune/cluster_snapshots.go @@ -3,7 +3,7 @@ package neptune import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/neptune" diff --git a/resources/services/neptune/cluster_snapshots_mock_test.go b/resources/services/neptune/cluster_snapshots_mock_test.go index cba7b467..45c833a9 100644 --- a/resources/services/neptune/cluster_snapshots_mock_test.go +++ b/resources/services/neptune/cluster_snapshots_mock_test.go @@ -3,8 +3,8 @@ package neptune import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/neptune" "github.com/aws/aws-sdk-go-v2/service/neptune/types" diff --git a/resources/services/neptune/clusters.go b/resources/services/neptune/clusters.go index 2f01aadd..894c22e7 100644 --- a/resources/services/neptune/clusters.go +++ b/resources/services/neptune/clusters.go @@ -3,7 +3,7 @@ package neptune import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/neptune" diff --git a/resources/services/neptune/db_parameter_group_db_parameters.go b/resources/services/neptune/db_parameter_group_db_parameters.go index 677753bc..1f9d4ac4 100644 --- a/resources/services/neptune/db_parameter_group_db_parameters.go +++ b/resources/services/neptune/db_parameter_group_db_parameters.go @@ -1,7 +1,7 @@ package neptune import ( - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/neptune/types" "github.com/cloudquery/plugin-sdk/v4/schema" diff --git a/resources/services/neptune/db_parameter_groups.go b/resources/services/neptune/db_parameter_groups.go index aa64fa08..da134a89 100644 --- a/resources/services/neptune/db_parameter_groups.go +++ b/resources/services/neptune/db_parameter_groups.go @@ -3,7 +3,7 @@ package neptune import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/neptune" diff --git a/resources/services/neptune/db_parameter_groups_mock_test.go b/resources/services/neptune/db_parameter_groups_mock_test.go index fa7064d9..7c410944 100644 --- a/resources/services/neptune/db_parameter_groups_mock_test.go +++ b/resources/services/neptune/db_parameter_groups_mock_test.go @@ -3,8 +3,8 @@ package neptune import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/neptune" "github.com/aws/aws-sdk-go-v2/service/neptune/types" diff --git a/resources/services/neptune/event_subscriptions.go b/resources/services/neptune/event_subscriptions.go index aaa15e05..101f5803 100644 --- a/resources/services/neptune/event_subscriptions.go +++ b/resources/services/neptune/event_subscriptions.go @@ -3,7 +3,7 @@ package neptune import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/neptune" diff --git a/resources/services/neptune/event_subscriptions_mock_test.go b/resources/services/neptune/event_subscriptions_mock_test.go index 8f38315d..d51d38f5 100644 --- a/resources/services/neptune/event_subscriptions_mock_test.go +++ b/resources/services/neptune/event_subscriptions_mock_test.go @@ -3,8 +3,8 @@ package neptune import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/neptune" "github.com/aws/aws-sdk-go-v2/service/neptune/types" diff --git a/resources/services/neptune/global_clusters.go b/resources/services/neptune/global_clusters.go index 1a85e800..b731e29a 100644 --- a/resources/services/neptune/global_clusters.go +++ b/resources/services/neptune/global_clusters.go @@ -3,7 +3,7 @@ package neptune import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/neptune" "github.com/aws/aws-sdk-go-v2/service/neptune/types" diff --git a/resources/services/neptune/global_clusters_mock_test.go b/resources/services/neptune/global_clusters_mock_test.go index 6312ec1d..351d17d1 100644 --- a/resources/services/neptune/global_clusters_mock_test.go +++ b/resources/services/neptune/global_clusters_mock_test.go @@ -3,8 +3,8 @@ package neptune import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/neptune" "github.com/aws/aws-sdk-go-v2/service/neptune/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/neptune/instances.go b/resources/services/neptune/instances.go index 7e310576..122e8f30 100644 --- a/resources/services/neptune/instances.go +++ b/resources/services/neptune/instances.go @@ -3,7 +3,7 @@ package neptune import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/neptune" diff --git a/resources/services/neptune/mock_test.go b/resources/services/neptune/mock_test.go index 900cc3f3..7eb814b3 100644 --- a/resources/services/neptune/mock_test.go +++ b/resources/services/neptune/mock_test.go @@ -3,8 +3,8 @@ package neptune import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/neptune" "github.com/aws/aws-sdk-go-v2/service/neptune/types" diff --git a/resources/services/neptune/subnet_groups.go b/resources/services/neptune/subnet_groups.go index 176b4fdc..556afef4 100644 --- a/resources/services/neptune/subnet_groups.go +++ b/resources/services/neptune/subnet_groups.go @@ -3,7 +3,7 @@ package neptune import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/neptune" diff --git a/resources/services/networkfirewall/firewall_policies.go b/resources/services/networkfirewall/firewall_policies.go index a504fc42..5f396f33 100644 --- a/resources/services/networkfirewall/firewall_policies.go +++ b/resources/services/networkfirewall/firewall_policies.go @@ -3,8 +3,8 @@ package networkfirewall import ( "context" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/resources/services/networkfirewall/models" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/networkfirewall/models" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/networkfirewall" "github.com/aws/aws-sdk-go-v2/service/networkfirewall/types" diff --git a/resources/services/networkfirewall/firewall_policies_mock_test.go b/resources/services/networkfirewall/firewall_policies_mock_test.go index 6b56830b..b7691469 100644 --- a/resources/services/networkfirewall/firewall_policies_mock_test.go +++ b/resources/services/networkfirewall/firewall_policies_mock_test.go @@ -3,8 +3,8 @@ package networkfirewall import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/networkfirewall" "github.com/aws/aws-sdk-go-v2/service/networkfirewall/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/networkfirewall/firewalls.go b/resources/services/networkfirewall/firewalls.go index 6c52af12..cab0a614 100644 --- a/resources/services/networkfirewall/firewalls.go +++ b/resources/services/networkfirewall/firewalls.go @@ -3,8 +3,8 @@ package networkfirewall import ( "context" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/resources/services/networkfirewall/models" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/networkfirewall/models" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/networkfirewall" "github.com/aws/aws-sdk-go-v2/service/networkfirewall/types" diff --git a/resources/services/networkfirewall/firewalls_mock_test.go b/resources/services/networkfirewall/firewalls_mock_test.go index c99d21ba..9ee6bd99 100644 --- a/resources/services/networkfirewall/firewalls_mock_test.go +++ b/resources/services/networkfirewall/firewalls_mock_test.go @@ -3,8 +3,8 @@ package networkfirewall import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/networkfirewall" "github.com/aws/aws-sdk-go-v2/service/networkfirewall/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/networkfirewall/rule_groups.go b/resources/services/networkfirewall/rule_groups.go index 426829b5..b33d54c8 100644 --- a/resources/services/networkfirewall/rule_groups.go +++ b/resources/services/networkfirewall/rule_groups.go @@ -3,8 +3,8 @@ package networkfirewall import ( "context" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/resources/services/networkfirewall/models" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/networkfirewall/models" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/networkfirewall" "github.com/aws/aws-sdk-go-v2/service/networkfirewall/types" diff --git a/resources/services/networkfirewall/rule_groups_mock_test.go b/resources/services/networkfirewall/rule_groups_mock_test.go index 3f31e756..68f9bff1 100644 --- a/resources/services/networkfirewall/rule_groups_mock_test.go +++ b/resources/services/networkfirewall/rule_groups_mock_test.go @@ -3,8 +3,8 @@ package networkfirewall import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/networkfirewall" "github.com/aws/aws-sdk-go-v2/service/networkfirewall/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/networkfirewall/tls_inspection_configurations.go b/resources/services/networkfirewall/tls_inspection_configurations.go index 0278bbbe..dd4e58a2 100644 --- a/resources/services/networkfirewall/tls_inspection_configurations.go +++ b/resources/services/networkfirewall/tls_inspection_configurations.go @@ -3,8 +3,8 @@ package networkfirewall import ( "context" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/resources/services/networkfirewall/models" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/networkfirewall/models" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/networkfirewall" "github.com/aws/aws-sdk-go-v2/service/networkfirewall/types" diff --git a/resources/services/networkfirewall/tls_inspection_configurations_mock_test.go b/resources/services/networkfirewall/tls_inspection_configurations_mock_test.go index 50aec7e4..5b7d0779 100644 --- a/resources/services/networkfirewall/tls_inspection_configurations_mock_test.go +++ b/resources/services/networkfirewall/tls_inspection_configurations_mock_test.go @@ -3,8 +3,8 @@ package networkfirewall import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/networkfirewall" "github.com/aws/aws-sdk-go-v2/service/networkfirewall/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/networkmanager/global_networks.go b/resources/services/networkmanager/global_networks.go index 7048532e..00b56408 100644 --- a/resources/services/networkmanager/global_networks.go +++ b/resources/services/networkmanager/global_networks.go @@ -3,7 +3,7 @@ package networkmanager import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/networkmanager" "github.com/aws/aws-sdk-go-v2/service/networkmanager/types" diff --git a/resources/services/networkmanager/global_networks_mock_test.go b/resources/services/networkmanager/global_networks_mock_test.go index 798cd891..f1e67bc5 100644 --- a/resources/services/networkmanager/global_networks_mock_test.go +++ b/resources/services/networkmanager/global_networks_mock_test.go @@ -3,8 +3,8 @@ package networkmanager import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/networkmanager" "github.com/aws/aws-sdk-go-v2/service/networkmanager/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/networkmanager/link.go b/resources/services/networkmanager/link.go index 56b06206..0b66b3a5 100644 --- a/resources/services/networkmanager/link.go +++ b/resources/services/networkmanager/link.go @@ -3,7 +3,7 @@ package networkmanager import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/networkmanager" "github.com/aws/aws-sdk-go-v2/service/networkmanager/types" diff --git a/resources/services/networkmanager/sites.go b/resources/services/networkmanager/sites.go index 8bf3567a..db1ae2e6 100644 --- a/resources/services/networkmanager/sites.go +++ b/resources/services/networkmanager/sites.go @@ -3,7 +3,7 @@ package networkmanager import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/networkmanager" "github.com/aws/aws-sdk-go-v2/service/networkmanager/types" diff --git a/resources/services/networkmanager/transit_gateway_registrations.go b/resources/services/networkmanager/transit_gateway_registrations.go index d3fee29b..9da0c7bd 100644 --- a/resources/services/networkmanager/transit_gateway_registrations.go +++ b/resources/services/networkmanager/transit_gateway_registrations.go @@ -3,7 +3,7 @@ package networkmanager import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/aws/aws-sdk-go-v2/service/networkmanager" "github.com/aws/aws-sdk-go-v2/service/networkmanager/types" "github.com/cloudquery/plugin-sdk/v4/schema" diff --git a/resources/services/organizations/account_parents.go b/resources/services/organizations/account_parents.go index 00e32bd1..b65673d2 100644 --- a/resources/services/organizations/account_parents.go +++ b/resources/services/organizations/account_parents.go @@ -3,7 +3,7 @@ package organizations import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/organizations" "github.com/aws/aws-sdk-go-v2/service/organizations/types" diff --git a/resources/services/organizations/accounts.go b/resources/services/organizations/accounts.go index c160eb05..ae46f861 100644 --- a/resources/services/organizations/accounts.go +++ b/resources/services/organizations/accounts.go @@ -3,7 +3,7 @@ package organizations import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/organizations" "github.com/aws/aws-sdk-go-v2/service/organizations/types" diff --git a/resources/services/organizations/accounts_mock_test.go b/resources/services/organizations/accounts_mock_test.go index 3a93f92f..b0f5d103 100644 --- a/resources/services/organizations/accounts_mock_test.go +++ b/resources/services/organizations/accounts_mock_test.go @@ -3,8 +3,8 @@ package organizations import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/organizations" organizationsTypes "github.com/aws/aws-sdk-go-v2/service/organizations/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/organizations/delegated_admins.go b/resources/services/organizations/delegated_admins.go index 7a168052..c87485ca 100644 --- a/resources/services/organizations/delegated_admins.go +++ b/resources/services/organizations/delegated_admins.go @@ -3,7 +3,7 @@ package organizations import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/organizations" "github.com/aws/aws-sdk-go-v2/service/organizations/types" diff --git a/resources/services/organizations/delegated_admins_mock_test.go b/resources/services/organizations/delegated_admins_mock_test.go index 7c5874c3..f921ffb1 100644 --- a/resources/services/organizations/delegated_admins_mock_test.go +++ b/resources/services/organizations/delegated_admins_mock_test.go @@ -3,8 +3,8 @@ package organizations import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/organizations" "github.com/aws/aws-sdk-go-v2/service/organizations/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/organizations/delegated_services.go b/resources/services/organizations/delegated_services.go index 9a91362f..f32cbf90 100644 --- a/resources/services/organizations/delegated_services.go +++ b/resources/services/organizations/delegated_services.go @@ -3,7 +3,7 @@ package organizations import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/aws/aws-sdk-go-v2/service/organizations" "github.com/aws/aws-sdk-go-v2/service/organizations/types" "github.com/cloudquery/plugin-sdk/v4/schema" diff --git a/resources/services/organizations/organizational_unit_parents.go b/resources/services/organizations/organizational_unit_parents.go index 91ca37dc..42a85e99 100644 --- a/resources/services/organizations/organizational_unit_parents.go +++ b/resources/services/organizations/organizational_unit_parents.go @@ -3,7 +3,7 @@ package organizations import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/organizations" "github.com/aws/aws-sdk-go-v2/service/organizations/types" diff --git a/resources/services/organizations/organizational_units.go b/resources/services/organizations/organizational_units.go index a794ec0d..2c0f2b60 100644 --- a/resources/services/organizations/organizational_units.go +++ b/resources/services/organizations/organizational_units.go @@ -3,8 +3,8 @@ package organizations import ( "context" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/services" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/services" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/organizations" diff --git a/resources/services/organizations/organizational_units_mock_test.go b/resources/services/organizations/organizational_units_mock_test.go index 067588fd..3a147482 100644 --- a/resources/services/organizations/organizational_units_mock_test.go +++ b/resources/services/organizations/organizational_units_mock_test.go @@ -3,8 +3,8 @@ package organizations import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/organizations" "github.com/aws/aws-sdk-go-v2/service/organizations/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/organizations/organizations.go b/resources/services/organizations/organizations.go index b2971935..86b57e38 100644 --- a/resources/services/organizations/organizations.go +++ b/resources/services/organizations/organizations.go @@ -3,7 +3,7 @@ package organizations import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/organizations" "github.com/aws/aws-sdk-go-v2/service/organizations/types" diff --git a/resources/services/organizations/organizations_mock_test.go b/resources/services/organizations/organizations_mock_test.go index 6c499565..4a65aea0 100644 --- a/resources/services/organizations/organizations_mock_test.go +++ b/resources/services/organizations/organizations_mock_test.go @@ -3,8 +3,8 @@ package organizations import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/organizations" "github.com/cloudquery/plugin-sdk/v4/faker" "github.com/golang/mock/gomock" diff --git a/resources/services/organizations/policies.go b/resources/services/organizations/policies.go index c8efea43..4cbce882 100644 --- a/resources/services/organizations/policies.go +++ b/resources/services/organizations/policies.go @@ -3,7 +3,7 @@ package organizations import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/organizations" "github.com/aws/aws-sdk-go-v2/service/organizations/types" diff --git a/resources/services/organizations/resource_policies.go b/resources/services/organizations/resource_policies.go index cd3a5283..a885392c 100644 --- a/resources/services/organizations/resource_policies.go +++ b/resources/services/organizations/resource_policies.go @@ -3,7 +3,7 @@ package organizations import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/organizations" "github.com/aws/aws-sdk-go-v2/service/organizations/types" diff --git a/resources/services/organizations/resource_policies_mock_test.go b/resources/services/organizations/resource_policies_mock_test.go index 583132a2..6cdac9a3 100644 --- a/resources/services/organizations/resource_policies_mock_test.go +++ b/resources/services/organizations/resource_policies_mock_test.go @@ -3,8 +3,8 @@ package organizations import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/organizations" "github.com/cloudquery/plugin-sdk/v4/faker" "github.com/golang/mock/gomock" diff --git a/resources/services/organizations/roots.go b/resources/services/organizations/roots.go index e148f0ea..b39c5e52 100644 --- a/resources/services/organizations/roots.go +++ b/resources/services/organizations/roots.go @@ -3,7 +3,7 @@ package organizations import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/organizations" "github.com/aws/aws-sdk-go-v2/service/organizations/types" diff --git a/resources/services/organizations/roots_mock_test.go b/resources/services/organizations/roots_mock_test.go index 6aa28d13..098ecba8 100644 --- a/resources/services/organizations/roots_mock_test.go +++ b/resources/services/organizations/roots_mock_test.go @@ -3,8 +3,8 @@ package organizations import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/organizations" "github.com/aws/aws-sdk-go-v2/service/organizations/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/qldb/ledger_journal_kinesis_streams.go b/resources/services/qldb/ledger_journal_kinesis_streams.go index 85df1c98..e76036a7 100644 --- a/resources/services/qldb/ledger_journal_kinesis_streams.go +++ b/resources/services/qldb/ledger_journal_kinesis_streams.go @@ -3,7 +3,7 @@ package qldb import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/qldb" diff --git a/resources/services/qldb/ledger_journal_s3_exports.go b/resources/services/qldb/ledger_journal_s3_exports.go index 4c8f0aa6..c2c8dcc6 100644 --- a/resources/services/qldb/ledger_journal_s3_exports.go +++ b/resources/services/qldb/ledger_journal_s3_exports.go @@ -3,7 +3,7 @@ package qldb import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/qldb" diff --git a/resources/services/qldb/ledgers.go b/resources/services/qldb/ledgers.go index e506ae07..fff70358 100644 --- a/resources/services/qldb/ledgers.go +++ b/resources/services/qldb/ledgers.go @@ -3,7 +3,7 @@ package qldb import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/qldb" "github.com/aws/aws-sdk-go-v2/service/qldb/types" diff --git a/resources/services/qldb/ledgers_mock_test.go b/resources/services/qldb/ledgers_mock_test.go index fc856e96..0824cf16 100644 --- a/resources/services/qldb/ledgers_mock_test.go +++ b/resources/services/qldb/ledgers_mock_test.go @@ -3,8 +3,8 @@ package qldb import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/qldb" "github.com/aws/aws-sdk-go-v2/service/qldb/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/quicksight/analyses.go b/resources/services/quicksight/analyses.go index d454ba05..13ab6c16 100644 --- a/resources/services/quicksight/analyses.go +++ b/resources/services/quicksight/analyses.go @@ -3,7 +3,7 @@ package quicksight import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/quicksight" diff --git a/resources/services/quicksight/analyses_mock_test.go b/resources/services/quicksight/analyses_mock_test.go index ee8670fd..c0b79298 100644 --- a/resources/services/quicksight/analyses_mock_test.go +++ b/resources/services/quicksight/analyses_mock_test.go @@ -3,8 +3,8 @@ package quicksight import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/quicksight" "github.com/cloudquery/plugin-sdk/v4/faker" "github.com/golang/mock/gomock" diff --git a/resources/services/quicksight/dashboards.go b/resources/services/quicksight/dashboards.go index 072ab77b..87f0eba5 100644 --- a/resources/services/quicksight/dashboards.go +++ b/resources/services/quicksight/dashboards.go @@ -3,7 +3,7 @@ package quicksight import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/quicksight" diff --git a/resources/services/quicksight/dashboards_mock_test.go b/resources/services/quicksight/dashboards_mock_test.go index 42064adb..ace101ad 100644 --- a/resources/services/quicksight/dashboards_mock_test.go +++ b/resources/services/quicksight/dashboards_mock_test.go @@ -3,8 +3,8 @@ package quicksight import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/quicksight" "github.com/cloudquery/plugin-sdk/v4/faker" "github.com/golang/mock/gomock" diff --git a/resources/services/quicksight/data_sets.go b/resources/services/quicksight/data_sets.go index 2a0c3413..87cd4ef6 100644 --- a/resources/services/quicksight/data_sets.go +++ b/resources/services/quicksight/data_sets.go @@ -3,7 +3,7 @@ package quicksight import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/quicksight" diff --git a/resources/services/quicksight/data_sets_mock_test.go b/resources/services/quicksight/data_sets_mock_test.go index deeb9455..f85f63e4 100644 --- a/resources/services/quicksight/data_sets_mock_test.go +++ b/resources/services/quicksight/data_sets_mock_test.go @@ -3,8 +3,8 @@ package quicksight import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/quicksight" "github.com/cloudquery/plugin-sdk/v4/faker" "github.com/golang/mock/gomock" diff --git a/resources/services/quicksight/data_sources.go b/resources/services/quicksight/data_sources.go index ddbc3a13..6dd3549e 100644 --- a/resources/services/quicksight/data_sources.go +++ b/resources/services/quicksight/data_sources.go @@ -3,7 +3,7 @@ package quicksight import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/quicksight" diff --git a/resources/services/quicksight/data_sources_mock_test.go b/resources/services/quicksight/data_sources_mock_test.go index 510c1a56..433d7a87 100644 --- a/resources/services/quicksight/data_sources_mock_test.go +++ b/resources/services/quicksight/data_sources_mock_test.go @@ -3,8 +3,8 @@ package quicksight import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/quicksight" "github.com/cloudquery/plugin-sdk/v4/faker" "github.com/golang/mock/gomock" diff --git a/resources/services/quicksight/folders.go b/resources/services/quicksight/folders.go index 3ac0fb51..b3c12c9f 100644 --- a/resources/services/quicksight/folders.go +++ b/resources/services/quicksight/folders.go @@ -3,7 +3,7 @@ package quicksight import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/quicksight" diff --git a/resources/services/quicksight/folders_mock_test.go b/resources/services/quicksight/folders_mock_test.go index 3da1fb82..a5674e2e 100644 --- a/resources/services/quicksight/folders_mock_test.go +++ b/resources/services/quicksight/folders_mock_test.go @@ -3,8 +3,8 @@ package quicksight import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/quicksight" "github.com/cloudquery/plugin-sdk/v4/faker" "github.com/golang/mock/gomock" diff --git a/resources/services/quicksight/group_members.go b/resources/services/quicksight/group_members.go index 2f7ee9d7..54fec55c 100644 --- a/resources/services/quicksight/group_members.go +++ b/resources/services/quicksight/group_members.go @@ -3,7 +3,7 @@ package quicksight import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/quicksight" diff --git a/resources/services/quicksight/groups.go b/resources/services/quicksight/groups.go index 75aeea15..8c0f6ef0 100644 --- a/resources/services/quicksight/groups.go +++ b/resources/services/quicksight/groups.go @@ -3,7 +3,7 @@ package quicksight import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/quicksight" diff --git a/resources/services/quicksight/groups_mock_test.go b/resources/services/quicksight/groups_mock_test.go index eef74691..6e7b72dd 100644 --- a/resources/services/quicksight/groups_mock_test.go +++ b/resources/services/quicksight/groups_mock_test.go @@ -3,8 +3,8 @@ package quicksight import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/quicksight" "github.com/cloudquery/plugin-sdk/v4/faker" "github.com/golang/mock/gomock" diff --git a/resources/services/quicksight/ingestions.go b/resources/services/quicksight/ingestions.go index 8b936a13..338ffdc2 100644 --- a/resources/services/quicksight/ingestions.go +++ b/resources/services/quicksight/ingestions.go @@ -3,7 +3,7 @@ package quicksight import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/quicksight" diff --git a/resources/services/quicksight/tag_fetch.go b/resources/services/quicksight/tag_fetch.go index 9233b21a..2d2af5da 100644 --- a/resources/services/quicksight/tag_fetch.go +++ b/resources/services/quicksight/tag_fetch.go @@ -3,7 +3,7 @@ package quicksight import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/aws/aws-sdk-go-v2/service/quicksight" "github.com/cloudquery/plugin-sdk/v4/schema" sdkTypes "github.com/cloudquery/plugin-sdk/v4/types" diff --git a/resources/services/quicksight/templates.go b/resources/services/quicksight/templates.go index 8e250794..f7c19e7a 100644 --- a/resources/services/quicksight/templates.go +++ b/resources/services/quicksight/templates.go @@ -3,7 +3,7 @@ package quicksight import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/quicksight" diff --git a/resources/services/quicksight/templates_mock_test.go b/resources/services/quicksight/templates_mock_test.go index e6de449c..6a68bee9 100644 --- a/resources/services/quicksight/templates_mock_test.go +++ b/resources/services/quicksight/templates_mock_test.go @@ -3,8 +3,8 @@ package quicksight import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/quicksight" "github.com/cloudquery/plugin-sdk/v4/faker" "github.com/golang/mock/gomock" diff --git a/resources/services/quicksight/users.go b/resources/services/quicksight/users.go index b90570b0..b3a8a07b 100644 --- a/resources/services/quicksight/users.go +++ b/resources/services/quicksight/users.go @@ -3,7 +3,7 @@ package quicksight import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/quicksight" diff --git a/resources/services/quicksight/users_mock_test.go b/resources/services/quicksight/users_mock_test.go index c84c431c..5f72f621 100644 --- a/resources/services/quicksight/users_mock_test.go +++ b/resources/services/quicksight/users_mock_test.go @@ -3,8 +3,8 @@ package quicksight import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/quicksight" "github.com/cloudquery/plugin-sdk/v4/faker" "github.com/golang/mock/gomock" diff --git a/resources/services/ram/resource_share_invitations.go b/resources/services/ram/resource_share_invitations.go index f1af463e..6599a373 100644 --- a/resources/services/ram/resource_share_invitations.go +++ b/resources/services/ram/resource_share_invitations.go @@ -4,7 +4,7 @@ import ( "context" "fmt" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/ram" "github.com/aws/aws-sdk-go-v2/service/ram/types" diff --git a/resources/services/ram/resource_share_invitations_mock_test.go b/resources/services/ram/resource_share_invitations_mock_test.go index cb189aa2..379282ee 100644 --- a/resources/services/ram/resource_share_invitations_mock_test.go +++ b/resources/services/ram/resource_share_invitations_mock_test.go @@ -3,8 +3,8 @@ package ram import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/ram" "github.com/aws/aws-sdk-go-v2/service/ram/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/ram/resource_share_permissions.go b/resources/services/ram/resource_share_permissions.go index 4835c562..9a3889f0 100644 --- a/resources/services/ram/resource_share_permissions.go +++ b/resources/services/ram/resource_share_permissions.go @@ -4,7 +4,7 @@ import ( "context" "strconv" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/ram" diff --git a/resources/services/ram/resource_shares.go b/resources/services/ram/resource_shares.go index bbf8ae99..b100ab24 100644 --- a/resources/services/ram/resource_shares.go +++ b/resources/services/ram/resource_shares.go @@ -3,7 +3,7 @@ package ram import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/ram" diff --git a/resources/services/ram/resource_shares_mock_test.go b/resources/services/ram/resource_shares_mock_test.go index aa0ab040..e38cf605 100644 --- a/resources/services/ram/resource_shares_mock_test.go +++ b/resources/services/ram/resource_shares_mock_test.go @@ -4,8 +4,8 @@ import ( "fmt" "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/ram" "github.com/aws/aws-sdk-go-v2/service/ram/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/ram/resources.go b/resources/services/ram/resources.go index d3ae146f..6048f152 100644 --- a/resources/services/ram/resources.go +++ b/resources/services/ram/resources.go @@ -3,7 +3,7 @@ package ram import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/ram" diff --git a/resources/services/ram/resources_mock_test.go b/resources/services/ram/resources_mock_test.go index 28ea8a9c..c6b0cffa 100644 --- a/resources/services/ram/resources_mock_test.go +++ b/resources/services/ram/resources_mock_test.go @@ -3,8 +3,8 @@ package ram import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/ram" "github.com/aws/aws-sdk-go-v2/service/ram/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/rds/certificates.go b/resources/services/rds/certificates.go index d2084ddb..c44b9936 100644 --- a/resources/services/rds/certificates.go +++ b/resources/services/rds/certificates.go @@ -3,7 +3,7 @@ package rds import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/rds" "github.com/aws/aws-sdk-go-v2/service/rds/types" diff --git a/resources/services/rds/cluster_backtracks.go b/resources/services/rds/cluster_backtracks.go index f69f3696..60ecac57 100644 --- a/resources/services/rds/cluster_backtracks.go +++ b/resources/services/rds/cluster_backtracks.go @@ -3,7 +3,7 @@ package rds import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/rds" diff --git a/resources/services/rds/cluster_backtracks_mock_test.go b/resources/services/rds/cluster_backtracks_mock_test.go index 382e5f25..11076139 100644 --- a/resources/services/rds/cluster_backtracks_mock_test.go +++ b/resources/services/rds/cluster_backtracks_mock_test.go @@ -3,7 +3,7 @@ package rds import ( "testing" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/rds" "github.com/aws/aws-sdk-go-v2/service/rds/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/rds/cluster_parameter_group_parameters.go b/resources/services/rds/cluster_parameter_group_parameters.go index bc9a4abf..52ad808e 100644 --- a/resources/services/rds/cluster_parameter_group_parameters.go +++ b/resources/services/rds/cluster_parameter_group_parameters.go @@ -3,7 +3,7 @@ package rds import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/rds" "github.com/aws/aws-sdk-go-v2/service/rds/types" diff --git a/resources/services/rds/cluster_parameter_groups.go b/resources/services/rds/cluster_parameter_groups.go index 503cbd64..9fe8d942 100644 --- a/resources/services/rds/cluster_parameter_groups.go +++ b/resources/services/rds/cluster_parameter_groups.go @@ -3,7 +3,7 @@ package rds import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/rds" "github.com/aws/aws-sdk-go-v2/service/rds/types" diff --git a/resources/services/rds/cluster_parameter_groups_mock_test.go b/resources/services/rds/cluster_parameter_groups_mock_test.go index a36ed34d..124b1c51 100644 --- a/resources/services/rds/cluster_parameter_groups_mock_test.go +++ b/resources/services/rds/cluster_parameter_groups_mock_test.go @@ -3,8 +3,8 @@ package rds import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/rds" "github.com/aws/aws-sdk-go-v2/service/rds/types" diff --git a/resources/services/rds/cluster_snapshots.go b/resources/services/rds/cluster_snapshots.go index 6ebd4dda..5b5f1f97 100644 --- a/resources/services/rds/cluster_snapshots.go +++ b/resources/services/rds/cluster_snapshots.go @@ -3,7 +3,7 @@ package rds import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/rds" "github.com/aws/aws-sdk-go-v2/service/rds/types" diff --git a/resources/services/rds/cluster_snapshots_mock_test.go b/resources/services/rds/cluster_snapshots_mock_test.go index 6b6b6b5a..8b7941ca 100644 --- a/resources/services/rds/cluster_snapshots_mock_test.go +++ b/resources/services/rds/cluster_snapshots_mock_test.go @@ -3,8 +3,8 @@ package rds import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/rds" "github.com/aws/aws-sdk-go-v2/service/rds/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/rds/clusters.go b/resources/services/rds/clusters.go index 72f5e6f7..07ea9a01 100644 --- a/resources/services/rds/clusters.go +++ b/resources/services/rds/clusters.go @@ -3,7 +3,7 @@ package rds import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/rds" "github.com/aws/aws-sdk-go-v2/service/rds/types" diff --git a/resources/services/rds/db_parameter_group_db_parameters.go b/resources/services/rds/db_parameter_group_db_parameters.go index 4b87b98f..f588fa31 100644 --- a/resources/services/rds/db_parameter_group_db_parameters.go +++ b/resources/services/rds/db_parameter_group_db_parameters.go @@ -1,7 +1,7 @@ package rds import ( - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/rds/types" "github.com/cloudquery/plugin-sdk/v4/schema" diff --git a/resources/services/rds/db_parameter_groups.go b/resources/services/rds/db_parameter_groups.go index c7bc864f..26c0cf8b 100644 --- a/resources/services/rds/db_parameter_groups.go +++ b/resources/services/rds/db_parameter_groups.go @@ -3,7 +3,7 @@ package rds import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/rds" "github.com/aws/aws-sdk-go-v2/service/rds/types" diff --git a/resources/services/rds/db_parameter_groups_mock_test.go b/resources/services/rds/db_parameter_groups_mock_test.go index dd6d83bf..e31405bc 100644 --- a/resources/services/rds/db_parameter_groups_mock_test.go +++ b/resources/services/rds/db_parameter_groups_mock_test.go @@ -3,8 +3,8 @@ package rds import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/rds" "github.com/aws/aws-sdk-go-v2/service/rds/types" diff --git a/resources/services/rds/db_proxies.go b/resources/services/rds/db_proxies.go index e15e68e5..a0971694 100644 --- a/resources/services/rds/db_proxies.go +++ b/resources/services/rds/db_proxies.go @@ -3,7 +3,7 @@ package rds import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/rds" "github.com/aws/aws-sdk-go-v2/service/rds/types" diff --git a/resources/services/rds/db_proxies_mock_test.go b/resources/services/rds/db_proxies_mock_test.go index c049aabd..46463ddc 100644 --- a/resources/services/rds/db_proxies_mock_test.go +++ b/resources/services/rds/db_proxies_mock_test.go @@ -3,8 +3,8 @@ package rds import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/rds" "github.com/aws/aws-sdk-go-v2/service/rds/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/rds/db_security_groups.go b/resources/services/rds/db_security_groups.go index 6c24c76a..115fb6e0 100644 --- a/resources/services/rds/db_security_groups.go +++ b/resources/services/rds/db_security_groups.go @@ -3,7 +3,7 @@ package rds import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/rds" "github.com/aws/aws-sdk-go-v2/service/rds/types" diff --git a/resources/services/rds/db_security_groups_mock_test.go b/resources/services/rds/db_security_groups_mock_test.go index a15f08e9..def8bdb5 100644 --- a/resources/services/rds/db_security_groups_mock_test.go +++ b/resources/services/rds/db_security_groups_mock_test.go @@ -3,8 +3,8 @@ package rds import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/rds" "github.com/aws/aws-sdk-go-v2/service/rds/types" diff --git a/resources/services/rds/db_snapshots.go b/resources/services/rds/db_snapshots.go index 0bda1421..4088ea1e 100644 --- a/resources/services/rds/db_snapshots.go +++ b/resources/services/rds/db_snapshots.go @@ -3,8 +3,8 @@ package rds import ( "context" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/resources/services/rds/models" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/rds/models" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/rds" "github.com/aws/aws-sdk-go-v2/service/rds/types" diff --git a/resources/services/rds/db_snapshots_mock_test.go b/resources/services/rds/db_snapshots_mock_test.go index 8e579f4f..8c558939 100644 --- a/resources/services/rds/db_snapshots_mock_test.go +++ b/resources/services/rds/db_snapshots_mock_test.go @@ -3,8 +3,8 @@ package rds import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/rds" "github.com/aws/aws-sdk-go-v2/service/rds/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/rds/event_subscriptions.go b/resources/services/rds/event_subscriptions.go index 59796029..229cbaaa 100644 --- a/resources/services/rds/event_subscriptions.go +++ b/resources/services/rds/event_subscriptions.go @@ -3,7 +3,7 @@ package rds import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/rds" "github.com/aws/aws-sdk-go-v2/service/rds/types" diff --git a/resources/services/rds/event_subscriptions_mock_test.go b/resources/services/rds/event_subscriptions_mock_test.go index 4edf1206..1caf6bc1 100644 --- a/resources/services/rds/event_subscriptions_mock_test.go +++ b/resources/services/rds/event_subscriptions_mock_test.go @@ -3,8 +3,8 @@ package rds import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/rds" "github.com/aws/aws-sdk-go-v2/service/rds/types" diff --git a/resources/services/rds/fetch_rds_tags.go b/resources/services/rds/fetch_rds_tags.go index b32da94c..406146ef 100644 --- a/resources/services/rds/fetch_rds_tags.go +++ b/resources/services/rds/fetch_rds_tags.go @@ -3,7 +3,7 @@ package rds import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/aws/aws-sdk-go-v2/service/rds" "github.com/cloudquery/plugin-sdk/v4/schema" "github.com/thoas/go-funk" diff --git a/resources/services/rds/instances.go b/resources/services/rds/instances.go index a909c0ed..b7f1db1b 100644 --- a/resources/services/rds/instances.go +++ b/resources/services/rds/instances.go @@ -3,7 +3,7 @@ package rds import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/rds" "github.com/aws/aws-sdk-go-v2/service/rds/types" diff --git a/resources/services/rds/mock_test.go b/resources/services/rds/mock_test.go index 60ed18de..29667b29 100644 --- a/resources/services/rds/mock_test.go +++ b/resources/services/rds/mock_test.go @@ -3,8 +3,8 @@ package rds import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/rds" rdsTypes "github.com/aws/aws-sdk-go-v2/service/rds/types" diff --git a/resources/services/rds/option_groups.go b/resources/services/rds/option_groups.go index 03662cf2..7e8a4391 100644 --- a/resources/services/rds/option_groups.go +++ b/resources/services/rds/option_groups.go @@ -3,7 +3,7 @@ package rds import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/rds" "github.com/aws/aws-sdk-go-v2/service/rds/types" diff --git a/resources/services/rds/option_groups_mock_test.go b/resources/services/rds/option_groups_mock_test.go index 49783699..e19a4edb 100644 --- a/resources/services/rds/option_groups_mock_test.go +++ b/resources/services/rds/option_groups_mock_test.go @@ -3,8 +3,8 @@ package rds import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/rds" "github.com/aws/aws-sdk-go-v2/service/rds/types" diff --git a/resources/services/rds/reserved_instances.go b/resources/services/rds/reserved_instances.go index c51eb814..925043a0 100644 --- a/resources/services/rds/reserved_instances.go +++ b/resources/services/rds/reserved_instances.go @@ -3,7 +3,7 @@ package rds import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/rds" "github.com/aws/aws-sdk-go-v2/service/rds/types" diff --git a/resources/services/rds/subnet_groups.go b/resources/services/rds/subnet_groups.go index 93187a20..ae59b52e 100644 --- a/resources/services/rds/subnet_groups.go +++ b/resources/services/rds/subnet_groups.go @@ -3,7 +3,7 @@ package rds import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/rds" "github.com/aws/aws-sdk-go-v2/service/rds/types" diff --git a/resources/services/redshift/cluster_parameter_groups.go b/resources/services/redshift/cluster_parameter_groups.go index 4cba67ba..10743cbe 100644 --- a/resources/services/redshift/cluster_parameter_groups.go +++ b/resources/services/redshift/cluster_parameter_groups.go @@ -3,7 +3,7 @@ package redshift import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/redshift/types" "github.com/cloudquery/plugin-sdk/v4/schema" diff --git a/resources/services/redshift/cluster_parameters.go b/resources/services/redshift/cluster_parameters.go index 9471356d..c854e55e 100644 --- a/resources/services/redshift/cluster_parameters.go +++ b/resources/services/redshift/cluster_parameters.go @@ -3,7 +3,7 @@ package redshift import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/redshift" "github.com/aws/aws-sdk-go-v2/service/redshift/types" diff --git a/resources/services/redshift/clusters.go b/resources/services/redshift/clusters.go index f1431f62..d18c9e1e 100644 --- a/resources/services/redshift/clusters.go +++ b/resources/services/redshift/clusters.go @@ -4,7 +4,7 @@ import ( "context" "fmt" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/redshift" "github.com/aws/aws-sdk-go-v2/service/redshift/types" diff --git a/resources/services/redshift/clusters_mock_test.go b/resources/services/redshift/clusters_mock_test.go index 98f9351b..a098348b 100644 --- a/resources/services/redshift/clusters_mock_test.go +++ b/resources/services/redshift/clusters_mock_test.go @@ -3,8 +3,8 @@ package redshift import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/redshift" "github.com/aws/aws-sdk-go-v2/service/redshift/types" diff --git a/resources/services/redshift/data_shares.go b/resources/services/redshift/data_shares.go index 08f9d396..264846d3 100644 --- a/resources/services/redshift/data_shares.go +++ b/resources/services/redshift/data_shares.go @@ -3,7 +3,7 @@ package redshift import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/redshift" diff --git a/resources/services/redshift/data_shares_mock_test.go b/resources/services/redshift/data_shares_mock_test.go index 97489616..cdb6412b 100644 --- a/resources/services/redshift/data_shares_mock_test.go +++ b/resources/services/redshift/data_shares_mock_test.go @@ -3,8 +3,8 @@ package redshift import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/redshift" "github.com/aws/aws-sdk-go-v2/service/redshift/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/redshift/endpoint_access.go b/resources/services/redshift/endpoint_access.go index ecf6c0fc..d180f4f1 100644 --- a/resources/services/redshift/endpoint_access.go +++ b/resources/services/redshift/endpoint_access.go @@ -3,7 +3,7 @@ package redshift import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/redshift" diff --git a/resources/services/redshift/endpoint_authorization.go b/resources/services/redshift/endpoint_authorization.go index 5a00e349..b9820838 100644 --- a/resources/services/redshift/endpoint_authorization.go +++ b/resources/services/redshift/endpoint_authorization.go @@ -3,7 +3,7 @@ package redshift import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/redshift" diff --git a/resources/services/redshift/event_subscriptions.go b/resources/services/redshift/event_subscriptions.go index 3caed668..53aa9ac1 100644 --- a/resources/services/redshift/event_subscriptions.go +++ b/resources/services/redshift/event_subscriptions.go @@ -4,7 +4,7 @@ import ( "context" "fmt" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/aws/arn" diff --git a/resources/services/redshift/event_subscriptions_mock_test.go b/resources/services/redshift/event_subscriptions_mock_test.go index 18cdd7ca..83095606 100644 --- a/resources/services/redshift/event_subscriptions_mock_test.go +++ b/resources/services/redshift/event_subscriptions_mock_test.go @@ -3,8 +3,8 @@ package redshift import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/redshift" "github.com/aws/aws-sdk-go-v2/service/redshift/types" diff --git a/resources/services/redshift/snapshots.go b/resources/services/redshift/snapshots.go index 88355bdb..afb7b5bb 100644 --- a/resources/services/redshift/snapshots.go +++ b/resources/services/redshift/snapshots.go @@ -4,7 +4,7 @@ import ( "context" "fmt" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/aws/arn" diff --git a/resources/services/redshift/subnet_groups.go b/resources/services/redshift/subnet_groups.go index a9b240d2..550f0d56 100644 --- a/resources/services/redshift/subnet_groups.go +++ b/resources/services/redshift/subnet_groups.go @@ -4,7 +4,7 @@ import ( "context" "fmt" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/redshift" "github.com/aws/aws-sdk-go-v2/service/redshift/types" diff --git a/resources/services/redshift/subnet_groups_mock_test.go b/resources/services/redshift/subnet_groups_mock_test.go index 8c014eb5..bf90b312 100644 --- a/resources/services/redshift/subnet_groups_mock_test.go +++ b/resources/services/redshift/subnet_groups_mock_test.go @@ -3,8 +3,8 @@ package redshift import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/redshift" "github.com/aws/aws-sdk-go-v2/service/redshift/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/resiliencehub/alarm_recommendations.go b/resources/services/resiliencehub/alarm_recommendations.go index 18ffda5a..4974a451 100644 --- a/resources/services/resiliencehub/alarm_recommendations.go +++ b/resources/services/resiliencehub/alarm_recommendations.go @@ -3,7 +3,7 @@ package resiliencehub import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/aws/aws-sdk-go-v2/service/resiliencehub" "github.com/aws/aws-sdk-go-v2/service/resiliencehub/types" "github.com/cloudquery/plugin-sdk/v4/schema" diff --git a/resources/services/resiliencehub/alarm_recommendations_mock_test.go b/resources/services/resiliencehub/alarm_recommendations_mock_test.go index 51f2341e..16a340c4 100644 --- a/resources/services/resiliencehub/alarm_recommendations_mock_test.go +++ b/resources/services/resiliencehub/alarm_recommendations_mock_test.go @@ -3,7 +3,7 @@ package resiliencehub import ( "testing" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/resiliencehub" "github.com/cloudquery/plugin-sdk/v4/faker" "github.com/golang/mock/gomock" diff --git a/resources/services/resiliencehub/app_assessments.go b/resources/services/resiliencehub/app_assessments.go index 85013846..c5492d8f 100644 --- a/resources/services/resiliencehub/app_assessments.go +++ b/resources/services/resiliencehub/app_assessments.go @@ -3,7 +3,7 @@ package resiliencehub import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/aws/aws-sdk-go-v2/service/resiliencehub" "github.com/aws/aws-sdk-go-v2/service/resiliencehub/types" "github.com/cloudquery/plugin-sdk/v4/schema" diff --git a/resources/services/resiliencehub/app_assessments_mock_test.go b/resources/services/resiliencehub/app_assessments_mock_test.go index 81b4a0b4..a26e278a 100644 --- a/resources/services/resiliencehub/app_assessments_mock_test.go +++ b/resources/services/resiliencehub/app_assessments_mock_test.go @@ -3,7 +3,7 @@ package resiliencehub import ( "testing" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/resiliencehub" "github.com/cloudquery/plugin-sdk/v4/faker" "github.com/golang/mock/gomock" diff --git a/resources/services/resiliencehub/app_component_compliances.go b/resources/services/resiliencehub/app_component_compliances.go index ae260ed8..19ddc2ae 100644 --- a/resources/services/resiliencehub/app_component_compliances.go +++ b/resources/services/resiliencehub/app_component_compliances.go @@ -3,7 +3,7 @@ package resiliencehub import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/aws/aws-sdk-go-v2/service/resiliencehub" "github.com/aws/aws-sdk-go-v2/service/resiliencehub/types" "github.com/cloudquery/plugin-sdk/v4/schema" diff --git a/resources/services/resiliencehub/app_component_compliances_mock_test.go b/resources/services/resiliencehub/app_component_compliances_mock_test.go index 875f48db..4bda11e7 100644 --- a/resources/services/resiliencehub/app_component_compliances_mock_test.go +++ b/resources/services/resiliencehub/app_component_compliances_mock_test.go @@ -3,7 +3,7 @@ package resiliencehub import ( "testing" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/resiliencehub" "github.com/cloudquery/plugin-sdk/v4/faker" "github.com/golang/mock/gomock" diff --git a/resources/services/resiliencehub/app_version_resource_mappings.go b/resources/services/resiliencehub/app_version_resource_mappings.go index e4928f02..0ea7a9af 100644 --- a/resources/services/resiliencehub/app_version_resource_mappings.go +++ b/resources/services/resiliencehub/app_version_resource_mappings.go @@ -3,7 +3,7 @@ package resiliencehub import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/resiliencehub" "github.com/aws/aws-sdk-go-v2/service/resiliencehub/types" diff --git a/resources/services/resiliencehub/app_version_resource_mappings_mock_test.go b/resources/services/resiliencehub/app_version_resource_mappings_mock_test.go index 8f96d415..9a71e305 100644 --- a/resources/services/resiliencehub/app_version_resource_mappings_mock_test.go +++ b/resources/services/resiliencehub/app_version_resource_mappings_mock_test.go @@ -3,7 +3,7 @@ package resiliencehub import ( "testing" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/resiliencehub" "github.com/cloudquery/plugin-sdk/v4/faker" "github.com/golang/mock/gomock" diff --git a/resources/services/resiliencehub/app_version_resources.go b/resources/services/resiliencehub/app_version_resources.go index ccd8ff12..4bbb2a09 100644 --- a/resources/services/resiliencehub/app_version_resources.go +++ b/resources/services/resiliencehub/app_version_resources.go @@ -3,7 +3,7 @@ package resiliencehub import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/resiliencehub" diff --git a/resources/services/resiliencehub/app_version_resources_mock_test.go b/resources/services/resiliencehub/app_version_resources_mock_test.go index 1091a29f..2efaf93e 100644 --- a/resources/services/resiliencehub/app_version_resources_mock_test.go +++ b/resources/services/resiliencehub/app_version_resources_mock_test.go @@ -3,7 +3,7 @@ package resiliencehub import ( "testing" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/resiliencehub" "github.com/cloudquery/plugin-sdk/v4/faker" "github.com/golang/mock/gomock" diff --git a/resources/services/resiliencehub/app_versions.go b/resources/services/resiliencehub/app_versions.go index 3ede83ae..c3ebc965 100644 --- a/resources/services/resiliencehub/app_versions.go +++ b/resources/services/resiliencehub/app_versions.go @@ -3,7 +3,7 @@ package resiliencehub import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/aws/aws-sdk-go-v2/service/resiliencehub" "github.com/aws/aws-sdk-go-v2/service/resiliencehub/types" "github.com/cloudquery/plugin-sdk/v4/schema" diff --git a/resources/services/resiliencehub/app_versions_mock_test.go b/resources/services/resiliencehub/app_versions_mock_test.go index b5a001b5..7492d99f 100644 --- a/resources/services/resiliencehub/app_versions_mock_test.go +++ b/resources/services/resiliencehub/app_versions_mock_test.go @@ -3,7 +3,7 @@ package resiliencehub import ( "testing" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/resiliencehub" "github.com/cloudquery/plugin-sdk/v4/faker" "github.com/golang/mock/gomock" diff --git a/resources/services/resiliencehub/apps.go b/resources/services/resiliencehub/apps.go index d533ff51..20647a92 100644 --- a/resources/services/resiliencehub/apps.go +++ b/resources/services/resiliencehub/apps.go @@ -3,7 +3,7 @@ package resiliencehub import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/resiliencehub" "github.com/aws/aws-sdk-go-v2/service/resiliencehub/types" diff --git a/resources/services/resiliencehub/apps_mock_test.go b/resources/services/resiliencehub/apps_mock_test.go index 4127ff4c..5edcb1ad 100644 --- a/resources/services/resiliencehub/apps_mock_test.go +++ b/resources/services/resiliencehub/apps_mock_test.go @@ -3,8 +3,8 @@ package resiliencehub import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/resiliencehub" "github.com/cloudquery/plugin-sdk/v4/faker" "github.com/golang/mock/gomock" diff --git a/resources/services/resiliencehub/component_recommendations.go b/resources/services/resiliencehub/component_recommendations.go index 90b929de..260008a9 100644 --- a/resources/services/resiliencehub/component_recommendations.go +++ b/resources/services/resiliencehub/component_recommendations.go @@ -3,7 +3,7 @@ package resiliencehub import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/aws/aws-sdk-go-v2/service/resiliencehub" "github.com/aws/aws-sdk-go-v2/service/resiliencehub/types" "github.com/cloudquery/plugin-sdk/v4/schema" diff --git a/resources/services/resiliencehub/component_recommendations_mock_test.go b/resources/services/resiliencehub/component_recommendations_mock_test.go index e9c56608..0cdd04d1 100644 --- a/resources/services/resiliencehub/component_recommendations_mock_test.go +++ b/resources/services/resiliencehub/component_recommendations_mock_test.go @@ -3,7 +3,7 @@ package resiliencehub import ( "testing" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/resiliencehub" "github.com/cloudquery/plugin-sdk/v4/faker" "github.com/golang/mock/gomock" diff --git a/resources/services/resiliencehub/recommendation_templates.go b/resources/services/resiliencehub/recommendation_templates.go index f0a4e735..44b2dbfc 100644 --- a/resources/services/resiliencehub/recommendation_templates.go +++ b/resources/services/resiliencehub/recommendation_templates.go @@ -3,7 +3,7 @@ package resiliencehub import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/aws/aws-sdk-go-v2/service/resiliencehub" "github.com/aws/aws-sdk-go-v2/service/resiliencehub/types" "github.com/cloudquery/plugin-sdk/v4/schema" diff --git a/resources/services/resiliencehub/recommendations_templates_mock_test.go b/resources/services/resiliencehub/recommendations_templates_mock_test.go index ce7345fb..8ff26b7d 100644 --- a/resources/services/resiliencehub/recommendations_templates_mock_test.go +++ b/resources/services/resiliencehub/recommendations_templates_mock_test.go @@ -3,7 +3,7 @@ package resiliencehub import ( "testing" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/resiliencehub" "github.com/cloudquery/plugin-sdk/v4/faker" "github.com/golang/mock/gomock" diff --git a/resources/services/resiliencehub/resiliency_policies.go b/resources/services/resiliencehub/resiliency_policies.go index fb388f15..a4c41d05 100644 --- a/resources/services/resiliencehub/resiliency_policies.go +++ b/resources/services/resiliencehub/resiliency_policies.go @@ -3,7 +3,7 @@ package resiliencehub import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/resiliencehub" "github.com/aws/aws-sdk-go-v2/service/resiliencehub/types" diff --git a/resources/services/resiliencehub/resiliency_policies_mock_test.go b/resources/services/resiliencehub/resiliency_policies_mock_test.go index 9d340403..347e4af1 100644 --- a/resources/services/resiliencehub/resiliency_policies_mock_test.go +++ b/resources/services/resiliencehub/resiliency_policies_mock_test.go @@ -3,8 +3,8 @@ package resiliencehub import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/resiliencehub" "github.com/cloudquery/plugin-sdk/v4/faker" "github.com/golang/mock/gomock" diff --git a/resources/services/resiliencehub/sop_recommendations.go b/resources/services/resiliencehub/sop_recommendations.go index 43216986..2217cd0b 100644 --- a/resources/services/resiliencehub/sop_recommendations.go +++ b/resources/services/resiliencehub/sop_recommendations.go @@ -3,7 +3,7 @@ package resiliencehub import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/aws/aws-sdk-go-v2/service/resiliencehub" "github.com/aws/aws-sdk-go-v2/service/resiliencehub/types" "github.com/cloudquery/plugin-sdk/v4/schema" diff --git a/resources/services/resiliencehub/sop_recommendations_mock_test.go b/resources/services/resiliencehub/sop_recommendations_mock_test.go index 97e7aa02..e7683f06 100644 --- a/resources/services/resiliencehub/sop_recommendations_mock_test.go +++ b/resources/services/resiliencehub/sop_recommendations_mock_test.go @@ -3,7 +3,7 @@ package resiliencehub import ( "testing" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/resiliencehub" "github.com/cloudquery/plugin-sdk/v4/faker" "github.com/golang/mock/gomock" diff --git a/resources/services/resiliencehub/suggested_resiliency_policies.go b/resources/services/resiliencehub/suggested_resiliency_policies.go index 61f7cce8..bd127d78 100644 --- a/resources/services/resiliencehub/suggested_resiliency_policies.go +++ b/resources/services/resiliencehub/suggested_resiliency_policies.go @@ -3,7 +3,7 @@ package resiliencehub import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/resiliencehub" "github.com/aws/aws-sdk-go-v2/service/resiliencehub/types" diff --git a/resources/services/resiliencehub/suggested_resiliency_policies_mock_test.go b/resources/services/resiliencehub/suggested_resiliency_policies_mock_test.go index c663a9b2..110d1fc5 100644 --- a/resources/services/resiliencehub/suggested_resiliency_policies_mock_test.go +++ b/resources/services/resiliencehub/suggested_resiliency_policies_mock_test.go @@ -3,8 +3,8 @@ package resiliencehub import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/resiliencehub" "github.com/cloudquery/plugin-sdk/v4/faker" "github.com/golang/mock/gomock" diff --git a/resources/services/resiliencehub/test_recommendations.go b/resources/services/resiliencehub/test_recommendations.go index bce19902..3d36ce47 100644 --- a/resources/services/resiliencehub/test_recommendations.go +++ b/resources/services/resiliencehub/test_recommendations.go @@ -3,7 +3,7 @@ package resiliencehub import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/aws/aws-sdk-go-v2/service/resiliencehub" "github.com/aws/aws-sdk-go-v2/service/resiliencehub/types" "github.com/cloudquery/plugin-sdk/v4/schema" diff --git a/resources/services/resiliencehub/test_recommendations_mock_test.go b/resources/services/resiliencehub/test_recommendations_mock_test.go index 9082240a..5e3c1362 100644 --- a/resources/services/resiliencehub/test_recommendations_mock_test.go +++ b/resources/services/resiliencehub/test_recommendations_mock_test.go @@ -3,7 +3,7 @@ package resiliencehub import ( "testing" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/resiliencehub" "github.com/cloudquery/plugin-sdk/v4/faker" "github.com/golang/mock/gomock" diff --git a/resources/services/resourcegroups/resource_groups.go b/resources/services/resourcegroups/resource_groups.go index a28230ae..160904b5 100644 --- a/resources/services/resourcegroups/resource_groups.go +++ b/resources/services/resourcegroups/resource_groups.go @@ -3,8 +3,8 @@ package resourcegroups import ( "context" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/resources/services/resourcegroups/models" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/resourcegroups/models" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/resourcegroups" "github.com/aws/aws-sdk-go-v2/service/resourcegroups/types" diff --git a/resources/services/resourcegroups/resource_groups_mock_test.go b/resources/services/resourcegroups/resource_groups_mock_test.go index 40ff9027..b1a44293 100644 --- a/resources/services/resourcegroups/resource_groups_mock_test.go +++ b/resources/services/resourcegroups/resource_groups_mock_test.go @@ -3,8 +3,8 @@ package resourcegroups import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/resourcegroups" "github.com/aws/aws-sdk-go-v2/service/resourcegroups/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/route53/delegation_sets.go b/resources/services/route53/delegation_sets.go index 7e8f3884..c38410f2 100644 --- a/resources/services/route53/delegation_sets.go +++ b/resources/services/route53/delegation_sets.go @@ -3,7 +3,7 @@ package route53 import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/route53" diff --git a/resources/services/route53/delegations_sets_mock_test.go b/resources/services/route53/delegations_sets_mock_test.go index 4428d877..a407002b 100644 --- a/resources/services/route53/delegations_sets_mock_test.go +++ b/resources/services/route53/delegations_sets_mock_test.go @@ -3,8 +3,8 @@ package route53 import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/route53" route53Types "github.com/aws/aws-sdk-go-v2/service/route53/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/route53/domains.go b/resources/services/route53/domains.go index 23ef6f05..af0b7da5 100644 --- a/resources/services/route53/domains.go +++ b/resources/services/route53/domains.go @@ -4,7 +4,7 @@ import ( "context" "fmt" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/aws/arn" diff --git a/resources/services/route53/domains_mock_test.go b/resources/services/route53/domains_mock_test.go index 7f3c2fd8..d6c59e3b 100644 --- a/resources/services/route53/domains_mock_test.go +++ b/resources/services/route53/domains_mock_test.go @@ -3,8 +3,8 @@ package route53 import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/route53domains" "github.com/aws/aws-sdk-go-v2/service/route53domains/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/route53/health_check_mock_test.go b/resources/services/route53/health_check_mock_test.go index 509f6948..7203e934 100644 --- a/resources/services/route53/health_check_mock_test.go +++ b/resources/services/route53/health_check_mock_test.go @@ -3,8 +3,8 @@ package route53 import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/route53" route53Types "github.com/aws/aws-sdk-go-v2/service/route53/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/route53/health_checks.go b/resources/services/route53/health_checks.go index fb7fa50a..d8d0329e 100644 --- a/resources/services/route53/health_checks.go +++ b/resources/services/route53/health_checks.go @@ -3,7 +3,7 @@ package route53 import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/route53" "github.com/aws/aws-sdk-go-v2/service/route53/types" diff --git a/resources/services/route53/hosted_zone_query_logging_configs.go b/resources/services/route53/hosted_zone_query_logging_configs.go index d7f93fee..5e53414b 100644 --- a/resources/services/route53/hosted_zone_query_logging_configs.go +++ b/resources/services/route53/hosted_zone_query_logging_configs.go @@ -4,8 +4,8 @@ import ( "context" "fmt" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/resources/services/route53/models" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/route53/models" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/aws/arn" diff --git a/resources/services/route53/hosted_zone_resource_record_sets.go b/resources/services/route53/hosted_zone_resource_record_sets.go index cc9d036c..aaf81ecc 100644 --- a/resources/services/route53/hosted_zone_resource_record_sets.go +++ b/resources/services/route53/hosted_zone_resource_record_sets.go @@ -3,8 +3,8 @@ package route53 import ( "context" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/resources/services/route53/models" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/route53/models" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/route53" "github.com/aws/aws-sdk-go-v2/service/route53/types" diff --git a/resources/services/route53/hosted_zone_traffic_policy_instances.go b/resources/services/route53/hosted_zone_traffic_policy_instances.go index 5f963f6a..d7262b58 100644 --- a/resources/services/route53/hosted_zone_traffic_policy_instances.go +++ b/resources/services/route53/hosted_zone_traffic_policy_instances.go @@ -4,8 +4,8 @@ import ( "context" "fmt" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/resources/services/route53/models" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/route53/models" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/aws/arn" diff --git a/resources/services/route53/hosted_zones.go b/resources/services/route53/hosted_zones.go index c3ba6b58..aefd9ba8 100644 --- a/resources/services/route53/hosted_zones.go +++ b/resources/services/route53/hosted_zones.go @@ -5,8 +5,8 @@ import ( "fmt" "strings" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/resources/services/route53/models" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/route53/models" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/aws/arn" diff --git a/resources/services/route53/hosted_zones_mock_test.go b/resources/services/route53/hosted_zones_mock_test.go index 0609d436..29312a28 100644 --- a/resources/services/route53/hosted_zones_mock_test.go +++ b/resources/services/route53/hosted_zones_mock_test.go @@ -4,8 +4,8 @@ import ( "fmt" "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/route53" "github.com/aws/aws-sdk-go-v2/service/route53/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/route53/traffic_policies.go b/resources/services/route53/traffic_policies.go index de88f7dc..844c1eca 100644 --- a/resources/services/route53/traffic_policies.go +++ b/resources/services/route53/traffic_policies.go @@ -3,7 +3,7 @@ package route53 import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/route53" diff --git a/resources/services/route53/traffic_policies_mock_test.go b/resources/services/route53/traffic_policies_mock_test.go index 6a143325..362a495a 100644 --- a/resources/services/route53/traffic_policies_mock_test.go +++ b/resources/services/route53/traffic_policies_mock_test.go @@ -3,8 +3,8 @@ package route53 import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/route53" route53Types "github.com/aws/aws-sdk-go-v2/service/route53/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/route53/traffic_policy_versions.go b/resources/services/route53/traffic_policy_versions.go index fd759454..5fda5731 100644 --- a/resources/services/route53/traffic_policy_versions.go +++ b/resources/services/route53/traffic_policy_versions.go @@ -1,7 +1,7 @@ package route53 import ( - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/route53/types" "github.com/cloudquery/plugin-sdk/v4/schema" diff --git a/resources/services/route53recoverycontrolconfig/clusters.go b/resources/services/route53recoverycontrolconfig/clusters.go index 536b6b3b..8aad0f86 100644 --- a/resources/services/route53recoverycontrolconfig/clusters.go +++ b/resources/services/route53recoverycontrolconfig/clusters.go @@ -3,7 +3,7 @@ package route53recoverycontrolconfig import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/route53recoverycontrolconfig" "github.com/aws/aws-sdk-go-v2/service/route53recoverycontrolconfig/types" diff --git a/resources/services/route53recoverycontrolconfig/clusters_mock_test.go b/resources/services/route53recoverycontrolconfig/clusters_mock_test.go index 50647e73..4346c40f 100644 --- a/resources/services/route53recoverycontrolconfig/clusters_mock_test.go +++ b/resources/services/route53recoverycontrolconfig/clusters_mock_test.go @@ -3,8 +3,8 @@ package route53recoverycontrolconfig import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/route53recoverycontrolconfig" "github.com/aws/aws-sdk-go-v2/service/route53recoverycontrolconfig/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/route53recoverycontrolconfig/control_panel.go b/resources/services/route53recoverycontrolconfig/control_panel.go index c745c75d..1191b77e 100644 --- a/resources/services/route53recoverycontrolconfig/control_panel.go +++ b/resources/services/route53recoverycontrolconfig/control_panel.go @@ -3,7 +3,7 @@ package route53recoverycontrolconfig import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/route53recoverycontrolconfig" "github.com/aws/aws-sdk-go-v2/service/route53recoverycontrolconfig/types" diff --git a/resources/services/route53recoverycontrolconfig/control_panel_mock_test.go b/resources/services/route53recoverycontrolconfig/control_panel_mock_test.go index ff8d40b4..41155170 100644 --- a/resources/services/route53recoverycontrolconfig/control_panel_mock_test.go +++ b/resources/services/route53recoverycontrolconfig/control_panel_mock_test.go @@ -3,8 +3,8 @@ package route53recoverycontrolconfig import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/route53recoverycontrolconfig" "github.com/aws/aws-sdk-go-v2/service/route53recoverycontrolconfig/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/route53recoverycontrolconfig/routing_controls.go b/resources/services/route53recoverycontrolconfig/routing_controls.go index 15380e3c..b764471a 100644 --- a/resources/services/route53recoverycontrolconfig/routing_controls.go +++ b/resources/services/route53recoverycontrolconfig/routing_controls.go @@ -3,7 +3,7 @@ package route53recoverycontrolconfig import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/route53recoverycontrolconfig" "github.com/aws/aws-sdk-go-v2/service/route53recoverycontrolconfig/types" diff --git a/resources/services/route53recoverycontrolconfig/safety_rules.go b/resources/services/route53recoverycontrolconfig/safety_rules.go index 7dcbd7a0..ef71cb85 100644 --- a/resources/services/route53recoverycontrolconfig/safety_rules.go +++ b/resources/services/route53recoverycontrolconfig/safety_rules.go @@ -3,7 +3,7 @@ package route53recoverycontrolconfig import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/route53recoverycontrolconfig" "github.com/aws/aws-sdk-go-v2/service/route53recoverycontrolconfig/types" diff --git a/resources/services/route53recoveryreadiness/cells.go b/resources/services/route53recoveryreadiness/cells.go index 518301d4..e5d58512 100644 --- a/resources/services/route53recoveryreadiness/cells.go +++ b/resources/services/route53recoveryreadiness/cells.go @@ -3,7 +3,7 @@ package route53recoveryreadiness import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/route53recoveryreadiness" "github.com/aws/aws-sdk-go-v2/service/route53recoveryreadiness/types" diff --git a/resources/services/route53recoveryreadiness/cells_mock_test.go b/resources/services/route53recoveryreadiness/cells_mock_test.go index b09ad49e..17ec112c 100644 --- a/resources/services/route53recoveryreadiness/cells_mock_test.go +++ b/resources/services/route53recoveryreadiness/cells_mock_test.go @@ -3,8 +3,8 @@ package route53recoveryreadiness import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/route53recoveryreadiness" "github.com/aws/aws-sdk-go-v2/service/route53recoveryreadiness/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/route53recoveryreadiness/readiness_checks.go b/resources/services/route53recoveryreadiness/readiness_checks.go index 71ea5d11..cfccd780 100644 --- a/resources/services/route53recoveryreadiness/readiness_checks.go +++ b/resources/services/route53recoveryreadiness/readiness_checks.go @@ -3,7 +3,7 @@ package route53recoveryreadiness import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/route53recoveryreadiness" "github.com/aws/aws-sdk-go-v2/service/route53recoveryreadiness/types" diff --git a/resources/services/route53recoveryreadiness/readiness_checks_mock_test.go b/resources/services/route53recoveryreadiness/readiness_checks_mock_test.go index f2fc67d6..9878e2a5 100644 --- a/resources/services/route53recoveryreadiness/readiness_checks_mock_test.go +++ b/resources/services/route53recoveryreadiness/readiness_checks_mock_test.go @@ -3,8 +3,8 @@ package route53recoveryreadiness import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/route53recoveryreadiness" "github.com/aws/aws-sdk-go-v2/service/route53recoveryreadiness/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/route53recoveryreadiness/recovery_groups.go b/resources/services/route53recoveryreadiness/recovery_groups.go index 0897a950..dbf3a3d8 100644 --- a/resources/services/route53recoveryreadiness/recovery_groups.go +++ b/resources/services/route53recoveryreadiness/recovery_groups.go @@ -3,7 +3,7 @@ package route53recoveryreadiness import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/route53recoveryreadiness" "github.com/aws/aws-sdk-go-v2/service/route53recoveryreadiness/types" diff --git a/resources/services/route53recoveryreadiness/recovery_groups_mock_test.go b/resources/services/route53recoveryreadiness/recovery_groups_mock_test.go index ce164620..e25323db 100644 --- a/resources/services/route53recoveryreadiness/recovery_groups_mock_test.go +++ b/resources/services/route53recoveryreadiness/recovery_groups_mock_test.go @@ -3,8 +3,8 @@ package route53recoveryreadiness import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/route53recoveryreadiness" "github.com/aws/aws-sdk-go-v2/service/route53recoveryreadiness/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/route53recoveryreadiness/resource_sets.go b/resources/services/route53recoveryreadiness/resource_sets.go index fc10e1e9..55eab2af 100644 --- a/resources/services/route53recoveryreadiness/resource_sets.go +++ b/resources/services/route53recoveryreadiness/resource_sets.go @@ -3,7 +3,7 @@ package route53recoveryreadiness import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/route53recoveryreadiness" "github.com/aws/aws-sdk-go-v2/service/route53recoveryreadiness/types" diff --git a/resources/services/route53recoveryreadiness/resource_sets_mock_test.go b/resources/services/route53recoveryreadiness/resource_sets_mock_test.go index e3240785..ed4d4a39 100644 --- a/resources/services/route53recoveryreadiness/resource_sets_mock_test.go +++ b/resources/services/route53recoveryreadiness/resource_sets_mock_test.go @@ -3,8 +3,8 @@ package route53recoveryreadiness import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/route53recoveryreadiness" "github.com/aws/aws-sdk-go-v2/service/route53recoveryreadiness/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/route53resolver/firewall_domain_list.go b/resources/services/route53resolver/firewall_domain_list.go index 31bfd0f4..b76d1a82 100644 --- a/resources/services/route53resolver/firewall_domain_list.go +++ b/resources/services/route53resolver/firewall_domain_list.go @@ -3,7 +3,7 @@ package route53resolver import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/route53resolver" "github.com/aws/aws-sdk-go-v2/service/route53resolver/types" diff --git a/resources/services/route53resolver/firewall_domain_list_mock_test.go b/resources/services/route53resolver/firewall_domain_list_mock_test.go index 34e57cf4..2a99e7bc 100644 --- a/resources/services/route53resolver/firewall_domain_list_mock_test.go +++ b/resources/services/route53resolver/firewall_domain_list_mock_test.go @@ -3,8 +3,8 @@ package route53resolver import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/route53resolver" "github.com/aws/aws-sdk-go-v2/service/route53resolver/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/route53resolver/firewall_rule_group_associations.go b/resources/services/route53resolver/firewall_rule_group_associations.go index bc3b4950..cfaeca4d 100644 --- a/resources/services/route53resolver/firewall_rule_group_associations.go +++ b/resources/services/route53resolver/firewall_rule_group_associations.go @@ -3,7 +3,7 @@ package route53resolver import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/route53resolver" "github.com/aws/aws-sdk-go-v2/service/route53resolver/types" diff --git a/resources/services/route53resolver/firewall_rule_group_associations_mock_test.go b/resources/services/route53resolver/firewall_rule_group_associations_mock_test.go index a07d0633..47e1e361 100644 --- a/resources/services/route53resolver/firewall_rule_group_associations_mock_test.go +++ b/resources/services/route53resolver/firewall_rule_group_associations_mock_test.go @@ -3,8 +3,8 @@ package route53resolver import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/route53resolver" "github.com/aws/aws-sdk-go-v2/service/route53resolver/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/route53resolver/firewall_rule_group_mock_test.go b/resources/services/route53resolver/firewall_rule_group_mock_test.go index a7f92910..a92ba0ee 100644 --- a/resources/services/route53resolver/firewall_rule_group_mock_test.go +++ b/resources/services/route53resolver/firewall_rule_group_mock_test.go @@ -3,8 +3,8 @@ package route53resolver import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/route53resolver" "github.com/aws/aws-sdk-go-v2/service/route53resolver/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/route53resolver/firewall_rule_groups.go b/resources/services/route53resolver/firewall_rule_groups.go index d8fdabaa..becd32c6 100644 --- a/resources/services/route53resolver/firewall_rule_groups.go +++ b/resources/services/route53resolver/firewall_rule_groups.go @@ -3,7 +3,7 @@ package route53resolver import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/route53resolver" "github.com/aws/aws-sdk-go-v2/service/route53resolver/types" diff --git a/resources/services/route53resolver/resolver_endpoints.go b/resources/services/route53resolver/resolver_endpoints.go index b843e5a0..5b0b6f80 100644 --- a/resources/services/route53resolver/resolver_endpoints.go +++ b/resources/services/route53resolver/resolver_endpoints.go @@ -3,7 +3,7 @@ package route53resolver import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/route53resolver" "github.com/aws/aws-sdk-go-v2/service/route53resolver/types" diff --git a/resources/services/route53resolver/resolver_endpoints_mock_test.go b/resources/services/route53resolver/resolver_endpoints_mock_test.go index f769b247..67ff3540 100644 --- a/resources/services/route53resolver/resolver_endpoints_mock_test.go +++ b/resources/services/route53resolver/resolver_endpoints_mock_test.go @@ -3,8 +3,8 @@ package route53resolver import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/route53resolver" "github.com/aws/aws-sdk-go-v2/service/route53resolver/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/route53resolver/resolver_query_log_config_associations.go b/resources/services/route53resolver/resolver_query_log_config_associations.go index ec634d99..c2df2e6d 100644 --- a/resources/services/route53resolver/resolver_query_log_config_associations.go +++ b/resources/services/route53resolver/resolver_query_log_config_associations.go @@ -3,7 +3,7 @@ package route53resolver import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/aws/aws-sdk-go-v2/service/route53resolver" "github.com/aws/aws-sdk-go-v2/service/route53resolver/types" "github.com/cloudquery/plugin-sdk/v4/schema" diff --git a/resources/services/route53resolver/resolver_query_log_config_associations_mock_test.go b/resources/services/route53resolver/resolver_query_log_config_associations_mock_test.go index 59a7f56d..8f2fd15d 100644 --- a/resources/services/route53resolver/resolver_query_log_config_associations_mock_test.go +++ b/resources/services/route53resolver/resolver_query_log_config_associations_mock_test.go @@ -3,8 +3,8 @@ package route53resolver import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/route53resolver" "github.com/aws/aws-sdk-go-v2/service/route53resolver/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/route53resolver/resolver_query_log_configs.go b/resources/services/route53resolver/resolver_query_log_configs.go index 4ea5912c..54fdfc28 100644 --- a/resources/services/route53resolver/resolver_query_log_configs.go +++ b/resources/services/route53resolver/resolver_query_log_configs.go @@ -3,7 +3,7 @@ package route53resolver import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/route53resolver" "github.com/aws/aws-sdk-go-v2/service/route53resolver/types" diff --git a/resources/services/route53resolver/resolver_query_log_configs_mock_test.go b/resources/services/route53resolver/resolver_query_log_configs_mock_test.go index f4099f5a..0caf7438 100644 --- a/resources/services/route53resolver/resolver_query_log_configs_mock_test.go +++ b/resources/services/route53resolver/resolver_query_log_configs_mock_test.go @@ -3,8 +3,8 @@ package route53resolver import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/route53resolver" "github.com/aws/aws-sdk-go-v2/service/route53resolver/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/route53resolver/resolver_rule_associations.go b/resources/services/route53resolver/resolver_rule_associations.go index 20bf7072..739c48d1 100644 --- a/resources/services/route53resolver/resolver_rule_associations.go +++ b/resources/services/route53resolver/resolver_rule_associations.go @@ -3,7 +3,7 @@ package route53resolver import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/aws/aws-sdk-go-v2/service/route53resolver" "github.com/aws/aws-sdk-go-v2/service/route53resolver/types" "github.com/cloudquery/plugin-sdk/v4/schema" diff --git a/resources/services/route53resolver/resolver_rule_associations_mock_test.go b/resources/services/route53resolver/resolver_rule_associations_mock_test.go index 6c91606e..213348af 100644 --- a/resources/services/route53resolver/resolver_rule_associations_mock_test.go +++ b/resources/services/route53resolver/resolver_rule_associations_mock_test.go @@ -3,8 +3,8 @@ package route53resolver import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/route53resolver" "github.com/aws/aws-sdk-go-v2/service/route53resolver/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/route53resolver/resolver_rules.go b/resources/services/route53resolver/resolver_rules.go index ad5b72e9..81bf8620 100644 --- a/resources/services/route53resolver/resolver_rules.go +++ b/resources/services/route53resolver/resolver_rules.go @@ -3,7 +3,7 @@ package route53resolver import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/route53resolver" "github.com/aws/aws-sdk-go-v2/service/route53resolver/types" diff --git a/resources/services/route53resolver/resolver_rules_mock_test.go b/resources/services/route53resolver/resolver_rules_mock_test.go index c44d25b5..f1065516 100644 --- a/resources/services/route53resolver/resolver_rules_mock_test.go +++ b/resources/services/route53resolver/resolver_rules_mock_test.go @@ -3,8 +3,8 @@ package route53resolver import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/route53resolver" "github.com/aws/aws-sdk-go-v2/service/route53resolver/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/s3/access_grant_instances.go b/resources/services/s3/access_grant_instances.go index fc2b4881..a8070b9e 100644 --- a/resources/services/s3/access_grant_instances.go +++ b/resources/services/s3/access_grant_instances.go @@ -3,7 +3,7 @@ package s3 import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/s3control" diff --git a/resources/services/s3/access_grant_instances_mock_test.go b/resources/services/s3/access_grant_instances_mock_test.go index 7f70f51f..799c6d85 100644 --- a/resources/services/s3/access_grant_instances_mock_test.go +++ b/resources/services/s3/access_grant_instances_mock_test.go @@ -3,8 +3,8 @@ package s3 import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/s3control" "github.com/aws/aws-sdk-go-v2/service/s3control/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/s3/access_grants.go b/resources/services/s3/access_grants.go index 90d2cc1d..170577c1 100644 --- a/resources/services/s3/access_grants.go +++ b/resources/services/s3/access_grants.go @@ -3,7 +3,7 @@ package s3 import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/s3control" diff --git a/resources/services/s3/access_grants_mock_test.go b/resources/services/s3/access_grants_mock_test.go index fed7af28..478b18d9 100644 --- a/resources/services/s3/access_grants_mock_test.go +++ b/resources/services/s3/access_grants_mock_test.go @@ -3,8 +3,8 @@ package s3 import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/s3control" "github.com/aws/aws-sdk-go-v2/service/s3control/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/s3/access_points.go b/resources/services/s3/access_points.go index acec9f29..bc79a4ef 100644 --- a/resources/services/s3/access_points.go +++ b/resources/services/s3/access_points.go @@ -3,7 +3,7 @@ package s3 import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/s3control" diff --git a/resources/services/s3/access_points_mock_test.go b/resources/services/s3/access_points_mock_test.go index 382a30de..32fabbf0 100644 --- a/resources/services/s3/access_points_mock_test.go +++ b/resources/services/s3/access_points_mock_test.go @@ -3,8 +3,8 @@ package s3 import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/s3control" "github.com/aws/aws-sdk-go-v2/service/s3control/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/s3/bucket_cors_rules.go b/resources/services/s3/bucket_cors_rules.go index 20c8099e..82d56614 100644 --- a/resources/services/s3/bucket_cors_rules.go +++ b/resources/services/s3/bucket_cors_rules.go @@ -3,7 +3,7 @@ package s3 import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/OpsHelmInc/ohaws" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/s3" diff --git a/resources/services/s3/bucket_encryption_rules.go b/resources/services/s3/bucket_encryption_rules.go index b0aa60b0..8439c81d 100644 --- a/resources/services/s3/bucket_encryption_rules.go +++ b/resources/services/s3/bucket_encryption_rules.go @@ -3,7 +3,7 @@ package s3 import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/OpsHelmInc/ohaws" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/s3" diff --git a/resources/services/s3/bucket_grants.go b/resources/services/s3/bucket_grants.go index baaa5eb0..e0e6a275 100644 --- a/resources/services/s3/bucket_grants.go +++ b/resources/services/s3/bucket_grants.go @@ -4,7 +4,7 @@ import ( "context" "fmt" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/OpsHelmInc/ohaws" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/s3" diff --git a/resources/services/s3/bucket_lifecycles.go b/resources/services/s3/bucket_lifecycles.go index ad9c2a86..8882b91a 100644 --- a/resources/services/s3/bucket_lifecycles.go +++ b/resources/services/s3/bucket_lifecycles.go @@ -3,7 +3,7 @@ package s3 import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/OpsHelmInc/ohaws" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/s3" diff --git a/resources/services/s3/bucket_logging.go b/resources/services/s3/bucket_logging.go index 314128d8..6e3324b7 100644 --- a/resources/services/s3/bucket_logging.go +++ b/resources/services/s3/bucket_logging.go @@ -3,7 +3,7 @@ package s3 import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/OpsHelmInc/ohaws" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/s3" diff --git a/resources/services/s3/bucket_notification_configurations.go b/resources/services/s3/bucket_notification_configurations.go index 1c6143c6..8b701df1 100644 --- a/resources/services/s3/bucket_notification_configurations.go +++ b/resources/services/s3/bucket_notification_configurations.go @@ -3,7 +3,7 @@ package s3 import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/OpsHelmInc/ohaws" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/s3" diff --git a/resources/services/s3/bucket_object_lock_configurations.go b/resources/services/s3/bucket_object_lock_configurations.go index 4a7b7777..8147345d 100644 --- a/resources/services/s3/bucket_object_lock_configurations.go +++ b/resources/services/s3/bucket_object_lock_configurations.go @@ -3,7 +3,7 @@ package s3 import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/OpsHelmInc/ohaws" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/s3" diff --git a/resources/services/s3/bucket_ownership_controls.go b/resources/services/s3/bucket_ownership_controls.go index f9fa7997..26ef842b 100644 --- a/resources/services/s3/bucket_ownership_controls.go +++ b/resources/services/s3/bucket_ownership_controls.go @@ -3,7 +3,7 @@ package s3 import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/OpsHelmInc/ohaws" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/s3" diff --git a/resources/services/s3/bucket_policies.go b/resources/services/s3/bucket_policies.go index 5af544fa..789cb9dc 100644 --- a/resources/services/s3/bucket_policies.go +++ b/resources/services/s3/bucket_policies.go @@ -3,7 +3,7 @@ package s3 import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/OpsHelmInc/ohaws" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/s3" diff --git a/resources/services/s3/bucket_public_access_block.go b/resources/services/s3/bucket_public_access_block.go index 717e72a8..17051fd1 100644 --- a/resources/services/s3/bucket_public_access_block.go +++ b/resources/services/s3/bucket_public_access_block.go @@ -3,7 +3,7 @@ package s3 import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/OpsHelmInc/ohaws" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/s3" diff --git a/resources/services/s3/bucket_replications.go b/resources/services/s3/bucket_replications.go index 746c25a4..500114f2 100644 --- a/resources/services/s3/bucket_replications.go +++ b/resources/services/s3/bucket_replications.go @@ -3,7 +3,7 @@ package s3 import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/OpsHelmInc/ohaws" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/s3" diff --git a/resources/services/s3/bucket_versioning.go b/resources/services/s3/bucket_versioning.go index ea68e7c5..a9e5905b 100644 --- a/resources/services/s3/bucket_versioning.go +++ b/resources/services/s3/bucket_versioning.go @@ -3,7 +3,7 @@ package s3 import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/OpsHelmInc/ohaws" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/s3" diff --git a/resources/services/s3/bucket_websites.go b/resources/services/s3/bucket_websites.go index 94289514..77810196 100644 --- a/resources/services/s3/bucket_websites.go +++ b/resources/services/s3/bucket_websites.go @@ -3,7 +3,7 @@ package s3 import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/OpsHelmInc/ohaws" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/s3" diff --git a/resources/services/s3/buckets.go b/resources/services/s3/buckets.go index bb99edab..a064c823 100644 --- a/resources/services/s3/buckets.go +++ b/resources/services/s3/buckets.go @@ -6,7 +6,7 @@ import ( "errors" "fmt" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/OpsHelmInc/ohaws" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/s3" diff --git a/resources/services/s3/buckets_mock_test.go b/resources/services/s3/buckets_mock_test.go index 3e987f4a..ec0d29a1 100644 --- a/resources/services/s3/buckets_mock_test.go +++ b/resources/services/s3/buckets_mock_test.go @@ -3,8 +3,8 @@ package s3 import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/s3" s3Types "github.com/aws/aws-sdk-go-v2/service/s3/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/s3/multi_region_access_points.go b/resources/services/s3/multi_region_access_points.go index cf2de521..7f58f649 100644 --- a/resources/services/s3/multi_region_access_points.go +++ b/resources/services/s3/multi_region_access_points.go @@ -4,7 +4,7 @@ import ( "context" "fmt" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/aws/arn" diff --git a/resources/services/s3/multi_region_access_points_mock_test.go b/resources/services/s3/multi_region_access_points_mock_test.go index f0918e5b..8a6a87f7 100644 --- a/resources/services/s3/multi_region_access_points_mock_test.go +++ b/resources/services/s3/multi_region_access_points_mock_test.go @@ -3,8 +3,8 @@ package s3 import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/s3control" "github.com/aws/aws-sdk-go-v2/service/s3control/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/sagemaker/apps.go b/resources/services/sagemaker/apps.go index ff05a44f..6cf4f053 100644 --- a/resources/services/sagemaker/apps.go +++ b/resources/services/sagemaker/apps.go @@ -3,7 +3,7 @@ package sagemaker import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/sagemaker" "github.com/aws/aws-sdk-go-v2/service/sagemaker/types" diff --git a/resources/services/sagemaker/apps_mock_test.go b/resources/services/sagemaker/apps_mock_test.go index 8e8af019..9e13569a 100644 --- a/resources/services/sagemaker/apps_mock_test.go +++ b/resources/services/sagemaker/apps_mock_test.go @@ -3,8 +3,8 @@ package sagemaker import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/sagemaker" types "github.com/aws/aws-sdk-go-v2/service/sagemaker/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/sagemaker/endpoint_configurations.go b/resources/services/sagemaker/endpoint_configurations.go index 3f8f31ba..fb14b3b7 100644 --- a/resources/services/sagemaker/endpoint_configurations.go +++ b/resources/services/sagemaker/endpoint_configurations.go @@ -3,7 +3,7 @@ package sagemaker import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/sagemaker" "github.com/aws/aws-sdk-go-v2/service/sagemaker/types" diff --git a/resources/services/sagemaker/endpoint_configurations_mock_test.go b/resources/services/sagemaker/endpoint_configurations_mock_test.go index e0123915..962a4451 100644 --- a/resources/services/sagemaker/endpoint_configurations_mock_test.go +++ b/resources/services/sagemaker/endpoint_configurations_mock_test.go @@ -3,8 +3,8 @@ package sagemaker import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/sagemaker" types "github.com/aws/aws-sdk-go-v2/service/sagemaker/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/sagemaker/models.go b/resources/services/sagemaker/models.go index 9494dc7b..30f3c4a7 100644 --- a/resources/services/sagemaker/models.go +++ b/resources/services/sagemaker/models.go @@ -3,7 +3,7 @@ package sagemaker import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/sagemaker" "github.com/aws/aws-sdk-go-v2/service/sagemaker/types" diff --git a/resources/services/sagemaker/models_mock_test.go b/resources/services/sagemaker/models_mock_test.go index b7251808..1646a93c 100644 --- a/resources/services/sagemaker/models_mock_test.go +++ b/resources/services/sagemaker/models_mock_test.go @@ -3,8 +3,8 @@ package sagemaker import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/sagemaker" types "github.com/aws/aws-sdk-go-v2/service/sagemaker/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/sagemaker/notebook_instances.go b/resources/services/sagemaker/notebook_instances.go index 694f7e5c..500cc229 100644 --- a/resources/services/sagemaker/notebook_instances.go +++ b/resources/services/sagemaker/notebook_instances.go @@ -3,7 +3,7 @@ package sagemaker import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/sagemaker" "github.com/aws/aws-sdk-go-v2/service/sagemaker/types" diff --git a/resources/services/sagemaker/notebook_instances_mock_test.go b/resources/services/sagemaker/notebook_instances_mock_test.go index 2b72302d..2ef15f50 100644 --- a/resources/services/sagemaker/notebook_instances_mock_test.go +++ b/resources/services/sagemaker/notebook_instances_mock_test.go @@ -3,8 +3,8 @@ package sagemaker import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/sagemaker" types "github.com/aws/aws-sdk-go-v2/service/sagemaker/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/sagemaker/training_jobs.go b/resources/services/sagemaker/training_jobs.go index 7d53125f..e1b146d8 100644 --- a/resources/services/sagemaker/training_jobs.go +++ b/resources/services/sagemaker/training_jobs.go @@ -3,7 +3,7 @@ package sagemaker import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/sagemaker" "github.com/aws/aws-sdk-go-v2/service/sagemaker/types" diff --git a/resources/services/sagemaker/training_jobs_mock_test.go b/resources/services/sagemaker/training_jobs_mock_test.go index ec7fb30d..d4075b9c 100644 --- a/resources/services/sagemaker/training_jobs_mock_test.go +++ b/resources/services/sagemaker/training_jobs_mock_test.go @@ -3,8 +3,8 @@ package sagemaker import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/sagemaker" types "github.com/aws/aws-sdk-go-v2/service/sagemaker/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/savingsplans/savingsplans.go b/resources/services/savingsplans/savingsplans.go index b59a6b10..4cb88188 100644 --- a/resources/services/savingsplans/savingsplans.go +++ b/resources/services/savingsplans/savingsplans.go @@ -3,7 +3,7 @@ package savingsplans import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/savingsplans" diff --git a/resources/services/savingsplans/savingsplans_mock_test.go b/resources/services/savingsplans/savingsplans_mock_test.go index 3058a463..aca7e1bd 100644 --- a/resources/services/savingsplans/savingsplans_mock_test.go +++ b/resources/services/savingsplans/savingsplans_mock_test.go @@ -3,8 +3,8 @@ package savingsplans import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/savingsplans" "github.com/aws/aws-sdk-go-v2/service/savingsplans/types" diff --git a/resources/services/scheduler/schedule_groups.go b/resources/services/scheduler/schedule_groups.go index 66461bf8..64e4fcd6 100644 --- a/resources/services/scheduler/schedule_groups.go +++ b/resources/services/scheduler/schedule_groups.go @@ -3,7 +3,7 @@ package scheduler import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/scheduler" diff --git a/resources/services/scheduler/schedule_groups_mock_test.go b/resources/services/scheduler/schedule_groups_mock_test.go index 9137c406..fa505059 100644 --- a/resources/services/scheduler/schedule_groups_mock_test.go +++ b/resources/services/scheduler/schedule_groups_mock_test.go @@ -3,8 +3,8 @@ package scheduler import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/scheduler" "github.com/aws/aws-sdk-go-v2/service/scheduler/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/scheduler/schedules.go b/resources/services/scheduler/schedules.go index c155e7c3..1aac7799 100644 --- a/resources/services/scheduler/schedules.go +++ b/resources/services/scheduler/schedules.go @@ -3,7 +3,7 @@ package scheduler import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/scheduler" diff --git a/resources/services/scheduler/schedules_mock_test.go b/resources/services/scheduler/schedules_mock_test.go index 9aacf493..21fb596c 100644 --- a/resources/services/scheduler/schedules_mock_test.go +++ b/resources/services/scheduler/schedules_mock_test.go @@ -3,8 +3,8 @@ package scheduler import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/scheduler" "github.com/aws/aws-sdk-go-v2/service/scheduler/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/secretsmanager/secrets.go b/resources/services/secretsmanager/secrets.go index 4497a146..452e7073 100644 --- a/resources/services/secretsmanager/secrets.go +++ b/resources/services/secretsmanager/secrets.go @@ -4,7 +4,7 @@ import ( "context" "encoding/json" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/secretsmanager" "github.com/aws/aws-sdk-go-v2/service/secretsmanager/types" diff --git a/resources/services/secretsmanager/secrets_mock_test.go b/resources/services/secretsmanager/secrets_mock_test.go index 07c881f8..f20896f5 100644 --- a/resources/services/secretsmanager/secrets_mock_test.go +++ b/resources/services/secretsmanager/secrets_mock_test.go @@ -3,8 +3,8 @@ package secretsmanager import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/secretsmanager" "github.com/aws/aws-sdk-go-v2/service/secretsmanager/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/secretsmanager/secrets_version.go b/resources/services/secretsmanager/secrets_version.go index 573ccfb3..441c5bc8 100644 --- a/resources/services/secretsmanager/secrets_version.go +++ b/resources/services/secretsmanager/secrets_version.go @@ -3,7 +3,7 @@ package secretsmanager import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/secretsmanager" diff --git a/resources/services/securityhub/enabled_standards.go b/resources/services/securityhub/enabled_standards.go index ebb34e8f..d9f86170 100644 --- a/resources/services/securityhub/enabled_standards.go +++ b/resources/services/securityhub/enabled_standards.go @@ -3,7 +3,7 @@ package securityhub import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/securityhub" diff --git a/resources/services/securityhub/enabled_standards_mock_test.go b/resources/services/securityhub/enabled_standards_mock_test.go index 6496f649..b83d357f 100644 --- a/resources/services/securityhub/enabled_standards_mock_test.go +++ b/resources/services/securityhub/enabled_standards_mock_test.go @@ -3,8 +3,8 @@ package securityhub import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/securityhub" "github.com/aws/aws-sdk-go-v2/service/securityhub/types" diff --git a/resources/services/securityhub/hubs.go b/resources/services/securityhub/hubs.go index 207fdaaf..35e7fddd 100644 --- a/resources/services/securityhub/hubs.go +++ b/resources/services/securityhub/hubs.go @@ -3,7 +3,7 @@ package securityhub import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/securityhub" "github.com/cloudquery/plugin-sdk/v4/schema" diff --git a/resources/services/securityhub/hubs_mock_test.go b/resources/services/securityhub/hubs_mock_test.go index 06a7a3d3..66266b3f 100644 --- a/resources/services/securityhub/hubs_mock_test.go +++ b/resources/services/securityhub/hubs_mock_test.go @@ -4,8 +4,8 @@ import ( "testing" "time" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/securityhub" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/servicecatalog/launch_paths.go b/resources/services/servicecatalog/launch_paths.go index cfd517d3..48d6904f 100644 --- a/resources/services/servicecatalog/launch_paths.go +++ b/resources/services/servicecatalog/launch_paths.go @@ -3,7 +3,7 @@ package servicecatalog import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/servicecatalog" "github.com/aws/aws-sdk-go-v2/service/servicecatalog/types" diff --git a/resources/services/servicecatalog/portfolios.go b/resources/services/servicecatalog/portfolios.go index 42f85f9a..f41322a1 100644 --- a/resources/services/servicecatalog/portfolios.go +++ b/resources/services/servicecatalog/portfolios.go @@ -3,7 +3,7 @@ package servicecatalog import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/servicecatalog" "github.com/aws/aws-sdk-go-v2/service/servicecatalog/types" diff --git a/resources/services/servicecatalog/portfolios_mock_test.go b/resources/services/servicecatalog/portfolios_mock_test.go index 7bb384a4..049b0ea4 100644 --- a/resources/services/servicecatalog/portfolios_mock_test.go +++ b/resources/services/servicecatalog/portfolios_mock_test.go @@ -3,8 +3,8 @@ package servicecatalog import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/servicecatalog" "github.com/cloudquery/plugin-sdk/v4/faker" "github.com/golang/mock/gomock" diff --git a/resources/services/servicecatalog/products.go b/resources/services/servicecatalog/products.go index c7467cae..a08914da 100644 --- a/resources/services/servicecatalog/products.go +++ b/resources/services/servicecatalog/products.go @@ -3,7 +3,7 @@ package servicecatalog import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/servicecatalog" "github.com/aws/aws-sdk-go-v2/service/servicecatalog/types" diff --git a/resources/services/servicecatalog/products_mock_test.go b/resources/services/servicecatalog/products_mock_test.go index 5652855e..da22517c 100644 --- a/resources/services/servicecatalog/products_mock_test.go +++ b/resources/services/servicecatalog/products_mock_test.go @@ -3,8 +3,8 @@ package servicecatalog import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/servicecatalog" "github.com/cloudquery/plugin-sdk/v4/faker" "github.com/golang/mock/gomock" diff --git a/resources/services/servicecatalog/provisioned_products.go b/resources/services/servicecatalog/provisioned_products.go index 200e8bb7..177450f5 100644 --- a/resources/services/servicecatalog/provisioned_products.go +++ b/resources/services/servicecatalog/provisioned_products.go @@ -3,7 +3,7 @@ package servicecatalog import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/servicecatalog" "github.com/aws/aws-sdk-go-v2/service/servicecatalog/types" diff --git a/resources/services/servicecatalog/provisioned_products_mock_test.go b/resources/services/servicecatalog/provisioned_products_mock_test.go index 8e6f6c30..e48e96d4 100644 --- a/resources/services/servicecatalog/provisioned_products_mock_test.go +++ b/resources/services/servicecatalog/provisioned_products_mock_test.go @@ -3,8 +3,8 @@ package servicecatalog import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/servicecatalog" "github.com/cloudquery/plugin-sdk/v4/faker" "github.com/golang/mock/gomock" diff --git a/resources/services/servicecatalog/provisioning_artifact.go b/resources/services/servicecatalog/provisioning_artifact.go index 571b5631..f2f5278b 100644 --- a/resources/services/servicecatalog/provisioning_artifact.go +++ b/resources/services/servicecatalog/provisioning_artifact.go @@ -3,7 +3,7 @@ package servicecatalog import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/servicecatalog" "github.com/aws/aws-sdk-go-v2/service/servicecatalog/types" diff --git a/resources/services/servicecatalog/provisioning_parameters.go b/resources/services/servicecatalog/provisioning_parameters.go index 1830a1d8..30bfbfa8 100644 --- a/resources/services/servicecatalog/provisioning_parameters.go +++ b/resources/services/servicecatalog/provisioning_parameters.go @@ -3,7 +3,7 @@ package servicecatalog import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/servicecatalog" "github.com/aws/aws-sdk-go-v2/service/servicecatalog/types" diff --git a/resources/services/servicediscovery/helpers.go b/resources/services/servicediscovery/helpers.go index b20d47fb..adaa06ce 100644 --- a/resources/services/servicediscovery/helpers.go +++ b/resources/services/servicediscovery/helpers.go @@ -3,7 +3,7 @@ package servicediscovery import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/aws/aws-sdk-go-v2/service/servicediscovery" "github.com/cloudquery/plugin-sdk/v4/schema" diff --git a/resources/services/servicediscovery/instances.go b/resources/services/servicediscovery/instances.go index 4ed3144e..284c9710 100644 --- a/resources/services/servicediscovery/instances.go +++ b/resources/services/servicediscovery/instances.go @@ -3,7 +3,7 @@ package servicediscovery import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/servicediscovery" "github.com/aws/aws-sdk-go-v2/service/servicediscovery/types" diff --git a/resources/services/servicediscovery/namespaces.go b/resources/services/servicediscovery/namespaces.go index 777813bd..61e21053 100644 --- a/resources/services/servicediscovery/namespaces.go +++ b/resources/services/servicediscovery/namespaces.go @@ -3,7 +3,7 @@ package servicediscovery import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/servicediscovery" diff --git a/resources/services/servicediscovery/namespaces_test.go b/resources/services/servicediscovery/namespaces_test.go index e538a0db..ecb9c323 100644 --- a/resources/services/servicediscovery/namespaces_test.go +++ b/resources/services/servicediscovery/namespaces_test.go @@ -3,8 +3,8 @@ package servicediscovery import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/servicediscovery" "github.com/aws/aws-sdk-go-v2/service/servicediscovery/types" diff --git a/resources/services/servicediscovery/services.go b/resources/services/servicediscovery/services.go index 4a2add6b..6d410659 100644 --- a/resources/services/servicediscovery/services.go +++ b/resources/services/servicediscovery/services.go @@ -3,7 +3,7 @@ package servicediscovery import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/servicediscovery" diff --git a/resources/services/servicediscovery/services_test.go b/resources/services/servicediscovery/services_test.go index f82c2bf0..e87f034b 100644 --- a/resources/services/servicediscovery/services_test.go +++ b/resources/services/servicediscovery/services_test.go @@ -3,8 +3,8 @@ package servicediscovery import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/servicediscovery" "github.com/aws/aws-sdk-go-v2/service/servicediscovery/types" diff --git a/resources/services/ses/configuration_set_event_destinations.go b/resources/services/ses/configuration_set_event_destinations.go index dba3b828..34188b26 100644 --- a/resources/services/ses/configuration_set_event_destinations.go +++ b/resources/services/ses/configuration_set_event_destinations.go @@ -3,7 +3,7 @@ package ses import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/sesv2" "github.com/aws/aws-sdk-go-v2/service/sesv2/types" diff --git a/resources/services/ses/configuration_sets.go b/resources/services/ses/configuration_sets.go index 57b31257..79c5cbe4 100644 --- a/resources/services/ses/configuration_sets.go +++ b/resources/services/ses/configuration_sets.go @@ -3,7 +3,7 @@ package ses import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/sesv2" "github.com/cloudquery/plugin-sdk/v4/schema" diff --git a/resources/services/ses/configuration_sets_mock_test.go b/resources/services/ses/configuration_sets_mock_test.go index cef29766..159d50c2 100644 --- a/resources/services/ses/configuration_sets_mock_test.go +++ b/resources/services/ses/configuration_sets_mock_test.go @@ -3,8 +3,8 @@ package ses import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/sesv2" "github.com/aws/aws-sdk-go-v2/service/sesv2/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/ses/custom_verification_email_templates.go b/resources/services/ses/custom_verification_email_templates.go index d5ae6724..e8437008 100644 --- a/resources/services/ses/custom_verification_email_templates.go +++ b/resources/services/ses/custom_verification_email_templates.go @@ -3,7 +3,7 @@ package ses import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/sesv2" "github.com/aws/aws-sdk-go-v2/service/sesv2/types" diff --git a/resources/services/ses/custom_verification_email_templates_mock_test.go b/resources/services/ses/custom_verification_email_templates_mock_test.go index 278b2df0..d276f3bb 100644 --- a/resources/services/ses/custom_verification_email_templates_mock_test.go +++ b/resources/services/ses/custom_verification_email_templates_mock_test.go @@ -3,8 +3,8 @@ package ses import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/sesv2" "github.com/aws/aws-sdk-go-v2/service/sesv2/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/ses/identities.go b/resources/services/ses/identities.go index 23197a81..86fc9310 100644 --- a/resources/services/ses/identities.go +++ b/resources/services/ses/identities.go @@ -3,8 +3,8 @@ package ses import ( "context" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/resources/services/ses/models" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/ses/models" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/sesv2" "github.com/aws/aws-sdk-go-v2/service/sesv2/types" diff --git a/resources/services/ses/identities_mock_test.go b/resources/services/ses/identities_mock_test.go index 67cbdf4d..4292d30e 100644 --- a/resources/services/ses/identities_mock_test.go +++ b/resources/services/ses/identities_mock_test.go @@ -3,8 +3,8 @@ package ses import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/sesv2" "github.com/aws/aws-sdk-go-v2/service/sesv2/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/ses/templates.go b/resources/services/ses/templates.go index 7b007086..726e8e5e 100644 --- a/resources/services/ses/templates.go +++ b/resources/services/ses/templates.go @@ -3,8 +3,8 @@ package ses import ( "context" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/resources/services/ses/models" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/ses/models" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/sesv2" "github.com/aws/aws-sdk-go-v2/service/sesv2/types" diff --git a/resources/services/ses/templates_mock_test.go b/resources/services/ses/templates_mock_test.go index e5f3c4a6..b814d8dd 100644 --- a/resources/services/ses/templates_mock_test.go +++ b/resources/services/ses/templates_mock_test.go @@ -3,8 +3,8 @@ package ses import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/sesv2" "github.com/aws/aws-sdk-go-v2/service/sesv2/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/shield/protection_groups.go b/resources/services/shield/protection_groups.go index 94ba0970..1b7bb008 100644 --- a/resources/services/shield/protection_groups.go +++ b/resources/services/shield/protection_groups.go @@ -3,7 +3,7 @@ package shield import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/shield" "github.com/aws/aws-sdk-go-v2/service/shield/types" diff --git a/resources/services/shield/protection_groups_mock_test.go b/resources/services/shield/protection_groups_mock_test.go index 13a36a54..f22eab44 100644 --- a/resources/services/shield/protection_groups_mock_test.go +++ b/resources/services/shield/protection_groups_mock_test.go @@ -3,8 +3,8 @@ package shield import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/shield" "github.com/cloudquery/plugin-sdk/v4/faker" "github.com/golang/mock/gomock" diff --git a/resources/services/shield/protections.go b/resources/services/shield/protections.go index 407b6bcc..10d525ad 100644 --- a/resources/services/shield/protections.go +++ b/resources/services/shield/protections.go @@ -3,7 +3,7 @@ package shield import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/shield" "github.com/aws/aws-sdk-go-v2/service/shield/types" diff --git a/resources/services/shield/protections_mock_test.go b/resources/services/shield/protections_mock_test.go index d04a8d3f..70a4615a 100644 --- a/resources/services/shield/protections_mock_test.go +++ b/resources/services/shield/protections_mock_test.go @@ -3,8 +3,8 @@ package shield import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/shield" "github.com/cloudquery/plugin-sdk/v4/faker" "github.com/golang/mock/gomock" diff --git a/resources/services/shield/subscriptions.go b/resources/services/shield/subscriptions.go index 0d29eaa0..54308b0e 100644 --- a/resources/services/shield/subscriptions.go +++ b/resources/services/shield/subscriptions.go @@ -3,7 +3,7 @@ package shield import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/shield" "github.com/aws/aws-sdk-go-v2/service/shield/types" diff --git a/resources/services/shield/subscriptions_mock_test.go b/resources/services/shield/subscriptions_mock_test.go index 61ea6a9f..9929623d 100644 --- a/resources/services/shield/subscriptions_mock_test.go +++ b/resources/services/shield/subscriptions_mock_test.go @@ -3,8 +3,8 @@ package shield import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/shield" "github.com/cloudquery/plugin-sdk/v4/faker" "github.com/golang/mock/gomock" diff --git a/resources/services/signer/profiles.go b/resources/services/signer/profiles.go index c2dc8286..4102ace6 100644 --- a/resources/services/signer/profiles.go +++ b/resources/services/signer/profiles.go @@ -3,7 +3,7 @@ package signer import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/signer" "github.com/aws/aws-sdk-go-v2/service/signer/types" diff --git a/resources/services/signer/profiles_mock_test.go b/resources/services/signer/profiles_mock_test.go index ec03114c..afda9a68 100644 --- a/resources/services/signer/profiles_mock_test.go +++ b/resources/services/signer/profiles_mock_test.go @@ -3,8 +3,8 @@ package signer import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/signer" "github.com/aws/aws-sdk-go-v2/service/signer/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/sns/subscriptions.go b/resources/services/sns/subscriptions.go index 5a01f87a..c6559b33 100644 --- a/resources/services/sns/subscriptions.go +++ b/resources/services/sns/subscriptions.go @@ -3,8 +3,8 @@ package sns import ( "context" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/resources/services/sns/models" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/sns/models" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/sns" diff --git a/resources/services/sns/subscriptions_mock_test.go b/resources/services/sns/subscriptions_mock_test.go index 7399f148..95350e13 100644 --- a/resources/services/sns/subscriptions_mock_test.go +++ b/resources/services/sns/subscriptions_mock_test.go @@ -6,8 +6,8 @@ import ( "github.com/aws/aws-sdk-go-v2/aws" "github.com/stretchr/testify/require" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/sns" "github.com/aws/aws-sdk-go-v2/service/sns/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/sns/topics.go b/resources/services/sns/topics.go index 60d8004b..67f21a62 100644 --- a/resources/services/sns/topics.go +++ b/resources/services/sns/topics.go @@ -3,8 +3,8 @@ package sns import ( "context" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/resources/services/sns/models" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/sns/models" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/sns" "github.com/aws/aws-sdk-go-v2/service/sns/types" diff --git a/resources/services/sns/topics_mock_test.go b/resources/services/sns/topics_mock_test.go index 431d2c16..3cb65213 100644 --- a/resources/services/sns/topics_mock_test.go +++ b/resources/services/sns/topics_mock_test.go @@ -3,8 +3,8 @@ package sns import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/sns" "github.com/aws/aws-sdk-go-v2/service/sns/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/sqs/queues.go b/resources/services/sqs/queues.go index 33bb1abb..4edebb93 100644 --- a/resources/services/sqs/queues.go +++ b/resources/services/sqs/queues.go @@ -3,8 +3,8 @@ package sqs import ( "context" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/resources/services/sqs/models" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/sqs/models" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/sqs" diff --git a/resources/services/sqs/queues_mock_test.go b/resources/services/sqs/queues_mock_test.go index d75589ef..617e62d9 100644 --- a/resources/services/sqs/queues_mock_test.go +++ b/resources/services/sqs/queues_mock_test.go @@ -3,8 +3,8 @@ package sqs import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/sqs" "github.com/aws/aws-sdk-go-v2/service/sqs/types" "github.com/golang/mock/gomock" diff --git a/resources/services/ssm/associations.go b/resources/services/ssm/associations.go index 7887921c..460206a0 100644 --- a/resources/services/ssm/associations.go +++ b/resources/services/ssm/associations.go @@ -3,7 +3,7 @@ package ssm import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/ssm" "github.com/aws/aws-sdk-go-v2/service/ssm/types" diff --git a/resources/services/ssm/associations_mock_test.go b/resources/services/ssm/associations_mock_test.go index 03d10fbd..1167a4c1 100644 --- a/resources/services/ssm/associations_mock_test.go +++ b/resources/services/ssm/associations_mock_test.go @@ -3,8 +3,8 @@ package ssm import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/ssm" "github.com/aws/aws-sdk-go-v2/service/ssm/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/ssm/compliance_summary_items.go b/resources/services/ssm/compliance_summary_items.go index 9b360bba..ecf44718 100644 --- a/resources/services/ssm/compliance_summary_items.go +++ b/resources/services/ssm/compliance_summary_items.go @@ -3,7 +3,7 @@ package ssm import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/ssm" diff --git a/resources/services/ssm/compliance_summary_items_mock_test.go b/resources/services/ssm/compliance_summary_items_mock_test.go index 94fa7510..c0d04242 100644 --- a/resources/services/ssm/compliance_summary_items_mock_test.go +++ b/resources/services/ssm/compliance_summary_items_mock_test.go @@ -3,8 +3,8 @@ package ssm import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/ssm" "github.com/aws/aws-sdk-go-v2/service/ssm/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/ssm/document_versions.go b/resources/services/ssm/document_versions.go index 2d2c4171..1e456a39 100644 --- a/resources/services/ssm/document_versions.go +++ b/resources/services/ssm/document_versions.go @@ -3,7 +3,7 @@ package ssm import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/ssm" diff --git a/resources/services/ssm/documents.go b/resources/services/ssm/documents.go index 8fdb0f23..f2b2ea25 100644 --- a/resources/services/ssm/documents.go +++ b/resources/services/ssm/documents.go @@ -4,7 +4,7 @@ import ( "context" "fmt" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/aws/arn" diff --git a/resources/services/ssm/documents_mock_test.go b/resources/services/ssm/documents_mock_test.go index dae7d070..a4b587d2 100644 --- a/resources/services/ssm/documents_mock_test.go +++ b/resources/services/ssm/documents_mock_test.go @@ -3,8 +3,8 @@ package ssm import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/ssm" "github.com/aws/aws-sdk-go-v2/service/ssm/types" diff --git a/resources/services/ssm/instance_compliance_items.go b/resources/services/ssm/instance_compliance_items.go index cf6ac05d..45cc1af1 100644 --- a/resources/services/ssm/instance_compliance_items.go +++ b/resources/services/ssm/instance_compliance_items.go @@ -3,7 +3,7 @@ package ssm import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/ssm" "github.com/aws/aws-sdk-go-v2/service/ssm/types" diff --git a/resources/services/ssm/instance_patches.go b/resources/services/ssm/instance_patches.go index 8072510e..7bd6cd2a 100644 --- a/resources/services/ssm/instance_patches.go +++ b/resources/services/ssm/instance_patches.go @@ -3,7 +3,7 @@ package ssm import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/ssm" "github.com/aws/aws-sdk-go-v2/service/ssm/types" diff --git a/resources/services/ssm/instances.go b/resources/services/ssm/instances.go index 078bdbc8..7eb597e1 100644 --- a/resources/services/ssm/instances.go +++ b/resources/services/ssm/instances.go @@ -4,7 +4,7 @@ import ( "context" "fmt" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/aws/arn" diff --git a/resources/services/ssm/instances_mock_test.go b/resources/services/ssm/instances_mock_test.go index 34d99bc4..59b08071 100644 --- a/resources/services/ssm/instances_mock_test.go +++ b/resources/services/ssm/instances_mock_test.go @@ -3,8 +3,8 @@ package ssm import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/ssm" "github.com/aws/aws-sdk-go-v2/service/ssm/types" diff --git a/resources/services/ssm/parameters.go b/resources/services/ssm/parameters.go index d717d1c2..24ae702a 100644 --- a/resources/services/ssm/parameters.go +++ b/resources/services/ssm/parameters.go @@ -4,7 +4,7 @@ import ( "context" "fmt" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/aws/arn" diff --git a/resources/services/ssm/parameters_mock_test.go b/resources/services/ssm/parameters_mock_test.go index a1f6b8d6..928dfd14 100644 --- a/resources/services/ssm/parameters_mock_test.go +++ b/resources/services/ssm/parameters_mock_test.go @@ -3,8 +3,8 @@ package ssm import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/ssm" "github.com/aws/aws-sdk-go-v2/service/ssm/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/ssoadmin/account_assignments.go b/resources/services/ssoadmin/account_assignments.go index 79f16db2..414cc3d9 100644 --- a/resources/services/ssoadmin/account_assignments.go +++ b/resources/services/ssoadmin/account_assignments.go @@ -3,7 +3,7 @@ package ssoadmin import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/ssoadmin" diff --git a/resources/services/ssoadmin/customer_managed_policies.go b/resources/services/ssoadmin/customer_managed_policies.go index a278d059..0632a884 100644 --- a/resources/services/ssoadmin/customer_managed_policies.go +++ b/resources/services/ssoadmin/customer_managed_policies.go @@ -3,7 +3,7 @@ package ssoadmin import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/ssoadmin" "github.com/aws/aws-sdk-go-v2/service/ssoadmin/types" diff --git a/resources/services/ssoadmin/inline_policies.go b/resources/services/ssoadmin/inline_policies.go index b6dade0f..5f6f8203 100644 --- a/resources/services/ssoadmin/inline_policies.go +++ b/resources/services/ssoadmin/inline_policies.go @@ -5,7 +5,7 @@ import ( "encoding/json" "net/url" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/ssoadmin" "github.com/aws/aws-sdk-go-v2/service/ssoadmin/types" diff --git a/resources/services/ssoadmin/instances.go b/resources/services/ssoadmin/instances.go index bdb3d3a7..11783118 100644 --- a/resources/services/ssoadmin/instances.go +++ b/resources/services/ssoadmin/instances.go @@ -3,7 +3,7 @@ package ssoadmin import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/aws/aws-sdk-go-v2/service/ssoadmin" "github.com/aws/aws-sdk-go-v2/service/ssoadmin/types" "github.com/cloudquery/plugin-sdk/v4/schema" diff --git a/resources/services/ssoadmin/instances_mock_test.go b/resources/services/ssoadmin/instances_mock_test.go index 30609e61..f0da9004 100644 --- a/resources/services/ssoadmin/instances_mock_test.go +++ b/resources/services/ssoadmin/instances_mock_test.go @@ -3,8 +3,8 @@ package ssoadmin import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/ssoadmin" "github.com/aws/aws-sdk-go-v2/service/ssoadmin/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/ssoadmin/managed_policies.go b/resources/services/ssoadmin/managed_policies.go index 5246d7c0..1319228d 100644 --- a/resources/services/ssoadmin/managed_policies.go +++ b/resources/services/ssoadmin/managed_policies.go @@ -3,7 +3,7 @@ package ssoadmin import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/ssoadmin" "github.com/aws/aws-sdk-go-v2/service/ssoadmin/types" diff --git a/resources/services/ssoadmin/permission_boundaries.go b/resources/services/ssoadmin/permission_boundaries.go index 9f6e7b7c..a7b0742d 100644 --- a/resources/services/ssoadmin/permission_boundaries.go +++ b/resources/services/ssoadmin/permission_boundaries.go @@ -3,7 +3,7 @@ package ssoadmin import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/ssoadmin" "github.com/aws/aws-sdk-go-v2/service/ssoadmin/types" diff --git a/resources/services/ssoadmin/permission_sets.go b/resources/services/ssoadmin/permission_sets.go index 1eafc6c9..46b52d3d 100644 --- a/resources/services/ssoadmin/permission_sets.go +++ b/resources/services/ssoadmin/permission_sets.go @@ -5,7 +5,7 @@ import ( "github.com/apache/arrow/go/v16/arrow" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/aws/aws-sdk-go-v2/service/ssoadmin" "github.com/aws/aws-sdk-go-v2/service/ssoadmin/types" "github.com/cloudquery/plugin-sdk/v4/schema" diff --git a/resources/services/stepfunctions/activities.go b/resources/services/stepfunctions/activities.go index 7e5d91f6..76d0a98b 100644 --- a/resources/services/stepfunctions/activities.go +++ b/resources/services/stepfunctions/activities.go @@ -3,7 +3,7 @@ package stepfunctions import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/sfn" "github.com/aws/aws-sdk-go-v2/service/sfn/types" diff --git a/resources/services/stepfunctions/activities_test.go b/resources/services/stepfunctions/activities_test.go index 32b5e9a4..d2644db5 100644 --- a/resources/services/stepfunctions/activities_test.go +++ b/resources/services/stepfunctions/activities_test.go @@ -3,8 +3,8 @@ package stepfunctions import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/sfn" "github.com/aws/aws-sdk-go-v2/service/sfn/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/stepfunctions/executions.go b/resources/services/stepfunctions/executions.go index abc0d938..880ba252 100644 --- a/resources/services/stepfunctions/executions.go +++ b/resources/services/stepfunctions/executions.go @@ -3,7 +3,7 @@ package stepfunctions import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/sfn" "github.com/aws/aws-sdk-go-v2/service/sfn/types" diff --git a/resources/services/stepfunctions/executions_map_runs.go b/resources/services/stepfunctions/executions_map_runs.go index 9773f119..1c0d29be 100644 --- a/resources/services/stepfunctions/executions_map_runs.go +++ b/resources/services/stepfunctions/executions_map_runs.go @@ -3,7 +3,7 @@ package stepfunctions import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/sfn" "github.com/aws/aws-sdk-go-v2/service/sfn/types" diff --git a/resources/services/stepfunctions/executions_map_runs_executions.go b/resources/services/stepfunctions/executions_map_runs_executions.go index b95ee7a8..2884bea8 100644 --- a/resources/services/stepfunctions/executions_map_runs_executions.go +++ b/resources/services/stepfunctions/executions_map_runs_executions.go @@ -3,7 +3,7 @@ package stepfunctions import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/sfn" "github.com/cloudquery/plugin-sdk/v4/schema" diff --git a/resources/services/stepfunctions/state_machines.go b/resources/services/stepfunctions/state_machines.go index 5a942953..d9d99cd4 100644 --- a/resources/services/stepfunctions/state_machines.go +++ b/resources/services/stepfunctions/state_machines.go @@ -3,7 +3,7 @@ package stepfunctions import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/sfn" "github.com/aws/aws-sdk-go-v2/service/sfn/types" diff --git a/resources/services/stepfunctions/state_machines_test.go b/resources/services/stepfunctions/state_machines_test.go index 249ef73a..02fbae3f 100644 --- a/resources/services/stepfunctions/state_machines_test.go +++ b/resources/services/stepfunctions/state_machines_test.go @@ -3,8 +3,8 @@ package stepfunctions import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/sfn" "github.com/aws/aws-sdk-go-v2/service/sfn/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/timestream/databases.go b/resources/services/timestream/databases.go index 91b0b17b..d168c707 100644 --- a/resources/services/timestream/databases.go +++ b/resources/services/timestream/databases.go @@ -3,7 +3,7 @@ package timestream import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/timestreamwrite" diff --git a/resources/services/timestream/databases_mock_test.go b/resources/services/timestream/databases_mock_test.go index a7631b7f..ee4e6d55 100644 --- a/resources/services/timestream/databases_mock_test.go +++ b/resources/services/timestream/databases_mock_test.go @@ -3,8 +3,8 @@ package timestream import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/timestreamwrite" "github.com/aws/aws-sdk-go-v2/service/timestreamwrite/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/timestream/tables.go b/resources/services/timestream/tables.go index 1d42625a..4b0ed48d 100644 --- a/resources/services/timestream/tables.go +++ b/resources/services/timestream/tables.go @@ -3,7 +3,7 @@ package timestream import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/timestreamwrite" diff --git a/resources/services/transfer/servers.go b/resources/services/transfer/servers.go index 314e3429..3e8837e1 100644 --- a/resources/services/transfer/servers.go +++ b/resources/services/transfer/servers.go @@ -3,7 +3,7 @@ package transfer import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/transfer" diff --git a/resources/services/transfer/servers_test.go b/resources/services/transfer/servers_test.go index de765466..a3833720 100644 --- a/resources/services/transfer/servers_test.go +++ b/resources/services/transfer/servers_test.go @@ -3,8 +3,8 @@ package transfer import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/transfer" "github.com/aws/aws-sdk-go-v2/service/transfer/types" diff --git a/resources/services/waf/rule_groups.go b/resources/services/waf/rule_groups.go index e02ba768..03d7be6b 100644 --- a/resources/services/waf/rule_groups.go +++ b/resources/services/waf/rule_groups.go @@ -4,7 +4,7 @@ import ( "context" "fmt" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/aws/arn" diff --git a/resources/services/waf/rule_groups_mock_test.go b/resources/services/waf/rule_groups_mock_test.go index 6d97a7ad..b547f858 100644 --- a/resources/services/waf/rule_groups_mock_test.go +++ b/resources/services/waf/rule_groups_mock_test.go @@ -3,8 +3,8 @@ package waf import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/waf" "github.com/aws/aws-sdk-go-v2/service/waf/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/waf/rules.go b/resources/services/waf/rules.go index f87b9974..9dfe59f7 100644 --- a/resources/services/waf/rules.go +++ b/resources/services/waf/rules.go @@ -4,7 +4,7 @@ import ( "context" "fmt" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/aws/arn" diff --git a/resources/services/waf/rules_mock_test.go b/resources/services/waf/rules_mock_test.go index 046491a8..1159daa0 100644 --- a/resources/services/waf/rules_mock_test.go +++ b/resources/services/waf/rules_mock_test.go @@ -3,8 +3,8 @@ package waf import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/waf" "github.com/aws/aws-sdk-go-v2/service/waf/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/waf/web_acls.go b/resources/services/waf/web_acls.go index d0274c24..c76fa665 100644 --- a/resources/services/waf/web_acls.go +++ b/resources/services/waf/web_acls.go @@ -3,7 +3,7 @@ package waf import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/waf" diff --git a/resources/services/waf/web_acls_mock_test.go b/resources/services/waf/web_acls_mock_test.go index 76005652..b0477260 100644 --- a/resources/services/waf/web_acls_mock_test.go +++ b/resources/services/waf/web_acls_mock_test.go @@ -3,8 +3,8 @@ package waf import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/waf" "github.com/aws/aws-sdk-go-v2/service/waf/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/wafregional/rate_based_rules.go b/resources/services/wafregional/rate_based_rules.go index cee57907..a104b876 100644 --- a/resources/services/wafregional/rate_based_rules.go +++ b/resources/services/wafregional/rate_based_rules.go @@ -4,7 +4,7 @@ import ( "context" "fmt" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/aws/arn" diff --git a/resources/services/wafregional/rate_based_rules_mock_test.go b/resources/services/wafregional/rate_based_rules_mock_test.go index 5a5bdce5..45b5b58e 100644 --- a/resources/services/wafregional/rate_based_rules_mock_test.go +++ b/resources/services/wafregional/rate_based_rules_mock_test.go @@ -4,8 +4,8 @@ import ( "fmt" "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/wafregional" "github.com/aws/aws-sdk-go-v2/service/wafregional/types" diff --git a/resources/services/wafregional/rule_groups.go b/resources/services/wafregional/rule_groups.go index 4a78aea8..aaadf137 100644 --- a/resources/services/wafregional/rule_groups.go +++ b/resources/services/wafregional/rule_groups.go @@ -4,7 +4,7 @@ import ( "context" "fmt" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/aws/arn" diff --git a/resources/services/wafregional/rule_groups_mock_test.go b/resources/services/wafregional/rule_groups_mock_test.go index 328417ce..41ecdea1 100644 --- a/resources/services/wafregional/rule_groups_mock_test.go +++ b/resources/services/wafregional/rule_groups_mock_test.go @@ -4,8 +4,8 @@ import ( "fmt" "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/wafregional" "github.com/aws/aws-sdk-go-v2/service/wafregional/types" diff --git a/resources/services/wafregional/rules.go b/resources/services/wafregional/rules.go index 60f175f6..02677428 100644 --- a/resources/services/wafregional/rules.go +++ b/resources/services/wafregional/rules.go @@ -4,7 +4,7 @@ import ( "context" "fmt" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/aws/arn" diff --git a/resources/services/wafregional/rules_mock_test.go b/resources/services/wafregional/rules_mock_test.go index d6149555..11ada752 100644 --- a/resources/services/wafregional/rules_mock_test.go +++ b/resources/services/wafregional/rules_mock_test.go @@ -4,8 +4,8 @@ import ( "fmt" "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/wafregional" "github.com/aws/aws-sdk-go-v2/service/wafregional/types" diff --git a/resources/services/wafregional/web_acls.go b/resources/services/wafregional/web_acls.go index b75f4339..994a8711 100644 --- a/resources/services/wafregional/web_acls.go +++ b/resources/services/wafregional/web_acls.go @@ -3,7 +3,7 @@ package wafregional import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/wafregional" diff --git a/resources/services/wafregional/web_acls_mock_test.go b/resources/services/wafregional/web_acls_mock_test.go index 5afbdc1a..6a80028b 100644 --- a/resources/services/wafregional/web_acls_mock_test.go +++ b/resources/services/wafregional/web_acls_mock_test.go @@ -3,8 +3,8 @@ package wafregional import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/wafregional" "github.com/aws/aws-sdk-go-v2/service/wafregional/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/wafv2/ipsets.go b/resources/services/wafv2/ipsets.go index 624a2b5a..75fdbbd2 100644 --- a/resources/services/wafv2/ipsets.go +++ b/resources/services/wafv2/ipsets.go @@ -4,7 +4,7 @@ import ( "context" "net" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/wafv2" diff --git a/resources/services/wafv2/ipsets_mock_test.go b/resources/services/wafv2/ipsets_mock_test.go index 6265c9a7..dedd5c2b 100644 --- a/resources/services/wafv2/ipsets_mock_test.go +++ b/resources/services/wafv2/ipsets_mock_test.go @@ -3,8 +3,8 @@ package wafv2 import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/wafv2" "github.com/aws/aws-sdk-go-v2/service/wafv2/types" diff --git a/resources/services/wafv2/regex_pattern_sets.go b/resources/services/wafv2/regex_pattern_sets.go index 37cf049f..3831509d 100644 --- a/resources/services/wafv2/regex_pattern_sets.go +++ b/resources/services/wafv2/regex_pattern_sets.go @@ -3,7 +3,7 @@ package wafv2 import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/wafv2" diff --git a/resources/services/wafv2/regex_pattern_sets_mock_test.go b/resources/services/wafv2/regex_pattern_sets_mock_test.go index bd803760..a5b30fb1 100644 --- a/resources/services/wafv2/regex_pattern_sets_mock_test.go +++ b/resources/services/wafv2/regex_pattern_sets_mock_test.go @@ -3,8 +3,8 @@ package wafv2 import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/wafv2" "github.com/aws/aws-sdk-go-v2/service/wafv2/types" diff --git a/resources/services/wafv2/rule_groups.go b/resources/services/wafv2/rule_groups.go index 0bd808cc..45a37956 100644 --- a/resources/services/wafv2/rule_groups.go +++ b/resources/services/wafv2/rule_groups.go @@ -5,7 +5,7 @@ import ( "encoding/json" "errors" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/wafv2" diff --git a/resources/services/wafv2/rule_groups_mock_test.go b/resources/services/wafv2/rule_groups_mock_test.go index e43afab5..ddd11b4c 100644 --- a/resources/services/wafv2/rule_groups_mock_test.go +++ b/resources/services/wafv2/rule_groups_mock_test.go @@ -3,8 +3,8 @@ package wafv2 import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/wafv2" "github.com/aws/aws-sdk-go-v2/service/wafv2/types" diff --git a/resources/services/wafv2/web_acls.go b/resources/services/wafv2/web_acls.go index 0e4d2c3f..411afe2d 100644 --- a/resources/services/wafv2/web_acls.go +++ b/resources/services/wafv2/web_acls.go @@ -4,8 +4,8 @@ import ( "context" "errors" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/resources/services/wafv2/models" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/resources/services/wafv2/models" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/cloudfront" diff --git a/resources/services/wafv2/web_acls_mock_test.go b/resources/services/wafv2/web_acls_mock_test.go index ff3ceb9f..11829ac8 100644 --- a/resources/services/wafv2/web_acls_mock_test.go +++ b/resources/services/wafv2/web_acls_mock_test.go @@ -3,8 +3,8 @@ package wafv2 import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/cloudfront" cftypes "github.com/aws/aws-sdk-go-v2/service/cloudfront/types" diff --git a/resources/services/wellarchitected/lens_review_improvements.go b/resources/services/wellarchitected/lens_review_improvements.go index 62ff01f3..49d956ea 100644 --- a/resources/services/wellarchitected/lens_review_improvements.go +++ b/resources/services/wellarchitected/lens_review_improvements.go @@ -3,7 +3,7 @@ package wellarchitected import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/wellarchitected" diff --git a/resources/services/wellarchitected/lens_review_improvements_mock_test.go b/resources/services/wellarchitected/lens_review_improvements_mock_test.go index cbe7d212..20e4288f 100644 --- a/resources/services/wellarchitected/lens_review_improvements_mock_test.go +++ b/resources/services/wellarchitected/lens_review_improvements_mock_test.go @@ -3,7 +3,7 @@ package wellarchitected import ( "testing" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/wellarchitected" "github.com/aws/aws-sdk-go-v2/service/wellarchitected/types" diff --git a/resources/services/wellarchitected/lens_reviews.go b/resources/services/wellarchitected/lens_reviews.go index 7da260ad..cd68dd8d 100644 --- a/resources/services/wellarchitected/lens_reviews.go +++ b/resources/services/wellarchitected/lens_reviews.go @@ -3,7 +3,7 @@ package wellarchitected import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/wellarchitected" diff --git a/resources/services/wellarchitected/lens_reviews_mock_test.go b/resources/services/wellarchitected/lens_reviews_mock_test.go index 7cab9402..7a984af6 100644 --- a/resources/services/wellarchitected/lens_reviews_mock_test.go +++ b/resources/services/wellarchitected/lens_reviews_mock_test.go @@ -3,7 +3,7 @@ package wellarchitected import ( "testing" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/wellarchitected" "github.com/aws/aws-sdk-go-v2/service/wellarchitected/types" diff --git a/resources/services/wellarchitected/lenses.go b/resources/services/wellarchitected/lenses.go index 1e11bfd4..03219ee3 100644 --- a/resources/services/wellarchitected/lenses.go +++ b/resources/services/wellarchitected/lenses.go @@ -3,7 +3,7 @@ package wellarchitected import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/wellarchitected" diff --git a/resources/services/wellarchitected/lenses_mock_test.go b/resources/services/wellarchitected/lenses_mock_test.go index dc754dfa..b677795b 100644 --- a/resources/services/wellarchitected/lenses_mock_test.go +++ b/resources/services/wellarchitected/lenses_mock_test.go @@ -3,8 +3,8 @@ package wellarchitected import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/wellarchitected" "github.com/aws/aws-sdk-go-v2/service/wellarchitected/types" diff --git a/resources/services/wellarchitected/workload_milestones.go b/resources/services/wellarchitected/workload_milestones.go index 70e85a20..dc9cdb48 100644 --- a/resources/services/wellarchitected/workload_milestones.go +++ b/resources/services/wellarchitected/workload_milestones.go @@ -3,7 +3,7 @@ package wellarchitected import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/wellarchitected" diff --git a/resources/services/wellarchitected/workload_milestones_mock_test.go b/resources/services/wellarchitected/workload_milestones_mock_test.go index 250996ed..2e14e2be 100644 --- a/resources/services/wellarchitected/workload_milestones_mock_test.go +++ b/resources/services/wellarchitected/workload_milestones_mock_test.go @@ -3,7 +3,7 @@ package wellarchitected import ( "testing" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/wellarchitected" "github.com/aws/aws-sdk-go-v2/service/wellarchitected/types" diff --git a/resources/services/wellarchitected/workload_shares.go b/resources/services/wellarchitected/workload_shares.go index e6cb4f39..fc8c6ad7 100644 --- a/resources/services/wellarchitected/workload_shares.go +++ b/resources/services/wellarchitected/workload_shares.go @@ -3,7 +3,7 @@ package wellarchitected import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/wellarchitected" diff --git a/resources/services/wellarchitected/workload_shares_mock_test.go b/resources/services/wellarchitected/workload_shares_mock_test.go index 8b57dfef..fa94b815 100644 --- a/resources/services/wellarchitected/workload_shares_mock_test.go +++ b/resources/services/wellarchitected/workload_shares_mock_test.go @@ -3,7 +3,7 @@ package wellarchitected import ( "testing" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/wellarchitected" "github.com/aws/aws-sdk-go-v2/service/wellarchitected/types" diff --git a/resources/services/wellarchitected/workloads.go b/resources/services/wellarchitected/workloads.go index 74f7236c..200a42cd 100644 --- a/resources/services/wellarchitected/workloads.go +++ b/resources/services/wellarchitected/workloads.go @@ -3,7 +3,7 @@ package wellarchitected import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/wellarchitected" diff --git a/resources/services/wellarchitected/workloads_mock_test.go b/resources/services/wellarchitected/workloads_mock_test.go index 35b0e59b..718cd6f0 100644 --- a/resources/services/wellarchitected/workloads_mock_test.go +++ b/resources/services/wellarchitected/workloads_mock_test.go @@ -3,8 +3,8 @@ package wellarchitected import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/wellarchitected" "github.com/aws/aws-sdk-go-v2/service/wellarchitected/types" diff --git a/resources/services/workspaces/directories.go b/resources/services/workspaces/directories.go index 96f770c1..d4dfcf1e 100644 --- a/resources/services/workspaces/directories.go +++ b/resources/services/workspaces/directories.go @@ -3,7 +3,7 @@ package workspaces import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws/arn" "github.com/aws/aws-sdk-go-v2/service/workspaces" diff --git a/resources/services/workspaces/directories_mock_test.go b/resources/services/workspaces/directories_mock_test.go index 3673e0ab..6fb5deb9 100644 --- a/resources/services/workspaces/directories_mock_test.go +++ b/resources/services/workspaces/directories_mock_test.go @@ -3,8 +3,8 @@ package workspaces import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/workspaces" "github.com/aws/aws-sdk-go-v2/service/workspaces/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/workspaces/workspaces.go b/resources/services/workspaces/workspaces.go index b2a9d66d..9797c569 100644 --- a/resources/services/workspaces/workspaces.go +++ b/resources/services/workspaces/workspaces.go @@ -3,7 +3,7 @@ package workspaces import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/aws/arn" "github.com/aws/aws-sdk-go-v2/service/workspaces" diff --git a/resources/services/workspaces/workspaces_mock_test.go b/resources/services/workspaces/workspaces_mock_test.go index b2e44bf6..ee1b5baf 100644 --- a/resources/services/workspaces/workspaces_mock_test.go +++ b/resources/services/workspaces/workspaces_mock_test.go @@ -3,8 +3,8 @@ package workspaces import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/workspaces" "github.com/aws/aws-sdk-go-v2/service/workspaces/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/xray/groups.go b/resources/services/xray/groups.go index d9b789f1..fb3bd1c0 100644 --- a/resources/services/xray/groups.go +++ b/resources/services/xray/groups.go @@ -3,7 +3,7 @@ package xray import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/xray" "github.com/aws/aws-sdk-go-v2/service/xray/types" diff --git a/resources/services/xray/groups_mock_test.go b/resources/services/xray/groups_mock_test.go index a87c94bd..3a92b1c1 100644 --- a/resources/services/xray/groups_mock_test.go +++ b/resources/services/xray/groups_mock_test.go @@ -3,8 +3,8 @@ package xray import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/xray" "github.com/aws/aws-sdk-go-v2/service/xray/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/resources/services/xray/sampling_rules.go b/resources/services/xray/sampling_rules.go index 44ea1d55..51cf5c9e 100644 --- a/resources/services/xray/sampling_rules.go +++ b/resources/services/xray/sampling_rules.go @@ -3,7 +3,7 @@ package xray import ( "context" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" "github.com/apache/arrow/go/v16/arrow" "github.com/aws/aws-sdk-go-v2/service/xray" "github.com/aws/aws-sdk-go-v2/service/xray/types" diff --git a/resources/services/xray/sampling_rules_mock_test.go b/resources/services/xray/sampling_rules_mock_test.go index f46f174f..dfde09c7 100644 --- a/resources/services/xray/sampling_rules_mock_test.go +++ b/resources/services/xray/sampling_rules_mock_test.go @@ -3,8 +3,8 @@ package xray import ( "testing" - "github.com/OpsHelmInc/cloudquery/client" - "github.com/OpsHelmInc/cloudquery/client/mocks" + "github.com/OpsHelmInc/cloudquery/v2/client" + "github.com/OpsHelmInc/cloudquery/v2/client/mocks" "github.com/aws/aws-sdk-go-v2/service/xray" "github.com/aws/aws-sdk-go-v2/service/xray/types" "github.com/cloudquery/plugin-sdk/v4/faker" diff --git a/tools/endpoints/main.go b/tools/endpoints/main.go index 63ef18a9..d0a6f673 100644 --- a/tools/endpoints/main.go +++ b/tools/endpoints/main.go @@ -7,7 +7,7 @@ import ( "os" "path/filepath" - "github.com/OpsHelmInc/cloudquery/client" + "github.com/OpsHelmInc/cloudquery/v2/client" ) type supportedServicesData struct {