@@ -425,6 +425,7 @@ func TestSubscription_List(t *testing.T) {
425425 {
426426 "provider": "AWS",
427427 "cloudAccountId": 2,
428+ "awsAccountId": "123456789012",
428429 "totalSizeInGb": 0.0062,
429430 "regions": [
430431 {
@@ -509,6 +510,7 @@ func TestSubscription_List(t *testing.T) {
509510 {
510511 Provider : redis .String ("AWS" ),
511512 CloudAccountID : redis .Int (2 ),
513+ AWSAccountID : redis .String ("123456789012" ),
512514 TotalSizeInGB : redis .Float64 (0.0062 ),
513515 Regions : []* subscriptions.Region {
514516 {
@@ -579,6 +581,7 @@ func TestSubscription_Get(t *testing.T) {
579581 {
580582 "provider": "AWS",
581583 "cloudAccountId": 3,
584+ "awsAccountId": "987654321098",
582585 "totalSizeInGb": 4,
583586 "regions": [
584587 {
@@ -624,6 +627,7 @@ func TestSubscription_Get(t *testing.T) {
624627 {
625628 Provider : redis .String ("AWS" ),
626629 CloudAccountID : redis .Int (3 ),
630+ AWSAccountID : redis .String ("987654321098" ),
627631 TotalSizeInGB : redis .Float64 (4 ),
628632 Regions : []* subscriptions.Region {
629633 {
@@ -658,6 +662,7 @@ func TestSubscription_Get_PublicEndpointAccess(t *testing.T) {
658662 {
659663 "provider": "AWS",
660664 "cloudAccountId": 3,
665+ "awsAccountId": "111222333444",
661666 "totalSizeInGb": 4,
662667 "regions": [
663668 {
@@ -704,6 +709,7 @@ func TestSubscription_Get_PublicEndpointAccess(t *testing.T) {
704709 {
705710 Provider : redis .String ("AWS" ),
706711 CloudAccountID : redis .Int (3 ),
712+ AWSAccountID : redis .String ("111222333444" ),
707713 TotalSizeInGB : redis .Float64 (4 ),
708714 Regions : []* subscriptions.Region {
709715 {
0 commit comments