Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bring in pkg@v0.0.3 #408

Merged
merged 1 commit into from
Feb 9, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module github.com/aws-controllers-k8s/code-generator
go 1.19

require (
github.com/aws-controllers-k8s/pkg v0.0.2
github.com/aws-controllers-k8s/pkg v0.0.3
github.com/aws-controllers-k8s/runtime v0.23.0
github.com/aws/aws-sdk-go v1.44.93
github.com/dlclark/regexp2 v1.4.0 // indirect
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,8 @@ github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5 h1:0CwZNZbxp69SHPd
github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5/go.mod h1:wHh0iHkYZB8zMSxRWpUBQtwG5a7fFgvEO+odwuTv2gs=
github.com/asaskevich/govalidator v0.0.0-20180720115003-f9ffefc3facf/go.mod h1:lB+ZfQJz7igIIfQNfa7Ml4HSf2uFQQRzpGGRXenZAgY=
github.com/asaskevich/govalidator v0.0.0-20190424111038-f61b66f89f4a/go.mod h1:lB+ZfQJz7igIIfQNfa7Ml4HSf2uFQQRzpGGRXenZAgY=
github.com/aws-controllers-k8s/pkg v0.0.2 h1:r6DJOf1TexaEQ+WETjZH31IqO3K4cCukrkvYdzg4ZuA=
github.com/aws-controllers-k8s/pkg v0.0.2/go.mod h1:LC/9DlYrXu8FWNwLquZLq1WhcyRo7qXb7upRLAEosQk=
github.com/aws-controllers-k8s/pkg v0.0.3 h1:Cu2uZEloPH2UwcNpxOTFbgvM63LE90SaUY8siysDicE=
github.com/aws-controllers-k8s/pkg v0.0.3/go.mod h1:LC/9DlYrXu8FWNwLquZLq1WhcyRo7qXb7upRLAEosQk=
github.com/aws-controllers-k8s/runtime v0.23.0 h1:xM/zKyFzqbSr4gN9/cMRyjUUEEezHB0inpcsSV5clkg=
github.com/aws-controllers-k8s/runtime v0.23.0/go.mod h1:vBsKxMSP7Ya2Mv5KPGadu6OuIESTX+YIZB/2dOV7gXo=
github.com/aws/aws-sdk-go v1.44.93 h1:hAgd9fuaptBatSft27/5eBMdcA8+cIMqo96/tZ6rKl8=
Expand Down
2 changes: 1 addition & 1 deletion pkg/generate/code/set_resource_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2773,7 +2773,7 @@ func TestSetResource_SQS_Queue_GetAttributes(t *testing.T) {
ko.Spec.ContentBasedDeduplication = resp.Attributes["ContentBasedDeduplication"]
ko.Status.CreatedTimestamp = resp.Attributes["CreatedTimestamp"]
ko.Spec.DelaySeconds = resp.Attributes["DelaySeconds"]
ko.Spec.FifoQueue = resp.Attributes["FifoQueue"]
ko.Spec.FIFOQueue = resp.Attributes["FifoQueue"]
ko.Spec.KMSDataKeyReusePeriodSeconds = resp.Attributes["KmsDataKeyReusePeriodSeconds"]
ko.Spec.KMSMasterKeyID = resp.Attributes["KmsMasterKeyId"]
ko.Status.LastModifiedTimestamp = resp.Attributes["LastModifiedTimestamp"]
Expand Down
4 changes: 2 additions & 2 deletions pkg/generate/code/set_sdk_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1725,8 +1725,8 @@ func TestSetSDK_SQS_Queue_Create(t *testing.T) {
if r.ko.Spec.DelaySeconds != nil {
attrMap["DelaySeconds"] = r.ko.Spec.DelaySeconds
}
if r.ko.Spec.FifoQueue != nil {
attrMap["FifoQueue"] = r.ko.Spec.FifoQueue
if r.ko.Spec.FIFOQueue != nil {
attrMap["FifoQueue"] = r.ko.Spec.FIFOQueue
}
if r.ko.Spec.KMSDataKeyReusePeriodSeconds != nil {
attrMap["KmsDataKeyReusePeriodSeconds"] = r.ko.Spec.KMSDataKeyReusePeriodSeconds
Expand Down
2 changes: 1 addition & 1 deletion pkg/model/model_sqs_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ func TestSQS_Queue(t *testing.T) {
expSpecFieldCamel := []string{
"ContentBasedDeduplication",
"DelaySeconds",
"FifoQueue",
"FIFOQueue",
"KMSDataKeyReusePeriodSeconds",
"KMSMasterKeyID",
"MaximumMessageSize",
Expand Down