You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
awsAccessKeyIdString?@map("awsAccessKeyId")// global config, precendence goes to WalletDetails
34
-
awsSecretAccessKeyString?@map("awsSecretAccessKey")// global config, precendence goes to WalletDetails
35
-
awsRegionString?@map("awsRegion")// // global config, treat as "default", store in WalletDetails.awsKmsArn
33
+
awsAccessKeyIdString?@map("awsAccessKeyId")/// global config, precendence goes to WalletDetails
34
+
awsSecretAccessKeyString?@map("awsSecretAccessKey")/// global config, precendence goes to WalletDetails
35
+
awsRegionString?@map("awsRegion")/// global config, treat as "default", store in WalletDetails.awsKmsArn
36
36
// GCP
37
-
gcpApplicationProjectIdString?@map("gcpApplicationProjectId")// global config, treat as "defult", store in WalletDetails.gcpKmsResourcePath
38
-
gcpKmsLocationIdString?@map("gcpKmsLocationId")// global config, treat as "defult", store in WalletDetails.gcpKmsResourcePath
39
-
gcpKmsKeyRingIdString?@map("gcpKmsKeyRingId")// global config, treat as "defult", store in WalletDetails.gcpKmsResourcePath
40
-
gcpApplicationCredentialEmailString?@map("gcpApplicationCredentialEmail")// global config, precendence goes to WalletDetails
41
-
gcpApplicationCredentialPrivateKeyString?@map("gcpApplicationCredentialPrivateKey")// global config, precendence goes to WalletDetails
37
+
gcpApplicationProjectIdString?@map("gcpApplicationProjectId")/// global config, treat as "defult", store in WalletDetails.gcpKmsResourcePath
38
+
gcpKmsLocationIdString?@map("gcpKmsLocationId")/// global config, treat as "defult", store in WalletDetails.gcpKmsResourcePath
39
+
gcpKmsKeyRingIdString?@map("gcpKmsKeyRingId")/// global config, treat as "defult", store in WalletDetails.gcpKmsResourcePath
40
+
gcpApplicationCredentialEmailString?@map("gcpApplicationCredentialEmail")/// global config, precendence goes to WalletDetails
41
+
gcpApplicationCredentialPrivateKeyString?@map("gcpApplicationCredentialPrivateKey")/// global config, precendence goes to WalletDetails
42
42
// Auth
43
43
authDomainString@default("")@map("authDomain")// TODO: Remove defaults on major
44
44
authWalletEncryptedJsonString@default("")@map("authWalletEncryptedJson")// TODO: Remove defaults on major
@@ -82,18 +82,18 @@ model WalletDetails {
82
82
// Local
83
83
encryptedJsonString?@map("encryptedJson")
84
84
// KMS
85
-
awsKmsKeyIdString?@map("awsKmsKeyId")// deprecated and unused, todo: remove with next breaking change. Use awsKmsArn
85
+
awsKmsKeyIdString?@map("awsKmsKeyId")/// deprecated and unused, todo: remove with next breaking change. Use awsKmsArn
86
86
awsKmsArnString?@map("awsKmsArn")
87
-
awsKmsSecretAccessKeyString?@map("awsKmsSecretAccessKey")// if not available, default to: Configuration.awsSecretAccessKey
88
-
awsKmsAccessKeyIdString?@map("awsKmsAccessKeyId")// if not available, default to: Configuration.awsAccessKeyId
87
+
awsKmsSecretAccessKeyString?@map("awsKmsSecretAccessKey")/// if not available, default to: Configuration.awsSecretAccessKey
88
+
awsKmsAccessKeyIdString?@map("awsKmsAccessKeyId")/// if not available, default to: Configuration.awsAccessKeyId
89
89
// GCP
90
-
gcpKmsKeyRingIdString?@map("gcpKmsKeyRingId")@db.VarChar(50)// deprecated and unused. Use gcpKmsResourcePath instead, todo: remove with next breaking change
91
-
gcpKmsKeyIdString?@map("gcpKmsKeyId")@db.VarChar(50)// deprecated and unused. Use gcpKmsResourcePath instead, todo: remove with next breaking change
92
-
gcpKmsKeyVersionIdString?@map("gcpKmsKeyVersionId")@db.VarChar(20)// deprecated and unused. Use gcpKmsResourcePath instead, todo: remove with next breaking change
93
-
gcpKmsLocationIdString?@map("gcpKmsLocationId")@db.VarChar(20)// deprecated and unused. Use gcpKmsResourcePath instead, todo: remove with next breaking change
90
+
gcpKmsKeyRingIdString?@map("gcpKmsKeyRingId")@db.VarChar(50)/// deprecated and unused. Use gcpKmsResourcePath instead, todo: remove with next breaking change
91
+
gcpKmsKeyIdString?@map("gcpKmsKeyId")@db.VarChar(50)/// deprecated and unused. Use gcpKmsResourcePath instead, todo: remove with next breaking change
92
+
gcpKmsKeyVersionIdString?@map("gcpKmsKeyVersionId")@db.VarChar(20)/// deprecated and unused. Use gcpKmsResourcePath instead, todo: remove with next breaking change
93
+
gcpKmsLocationIdString?@map("gcpKmsLocationId")@db.VarChar(20)/// deprecated and unused. Use gcpKmsResourcePath instead, todo: remove with next breaking change
gcpApplicationCredentialEmailString?@map("gcpApplicationCredentialEmail")// if not available, default to: Configuration.gcpApplicationCredentialEmail
96
-
gcpApplicationCredentialPrivateKeyString?@map("gcpApplicationCredentialPrivateKey")// if not available, default to: Configuration.gcpApplicationCredentialPrivateKey
95
+
gcpApplicationCredentialEmailString?@map("gcpApplicationCredentialEmail")/// if not available, default to: Configuration.gcpApplicationCredentialEmail
96
+
gcpApplicationCredentialPrivateKeyString?@map("gcpApplicationCredentialPrivateKey")/// if not available, default to: Configuration.gcpApplicationCredentialPrivateKey
0 commit comments