Skip to content

Commit c569004

Browse files
author
awstools
committed
feat(client-database-migration-service): Add "Virtual" field to Data Provider as well as "S3Path" and "S3AccessRoleArn" fields to DataProvider settings
1 parent cc61f23 commit c569004

25 files changed

+448
-62
lines changed

clients/client-database-migration-service/src/commands/BatchStartRecommendationsCommand.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,12 @@ export interface BatchStartRecommendationsCommandInput extends BatchStartRecomme
3232
export interface BatchStartRecommendationsCommandOutput extends BatchStartRecommendationsResponse, __MetadataBearer {}
3333

3434
/**
35-
* <p>Starts the analysis of up to 20 source databases to recommend target engines for each
35+
* <important>
36+
* <p>
37+
* End of support notice: On May 20, 2026, Amazon Web Services will end support for Amazon Web Services DMS Fleet Advisor;. After May 20, 2026, you will no longer be able to access the Amazon Web Services DMS Fleet Advisor; console or Amazon Web Services DMS Fleet Advisor; resources. For more information, see <a href="https://docs.aws.amazon.com/dms/latest/userguide/dms_fleet.advisor-end-of-support.html">Amazon Web Services DMS Fleet Advisor end of support</a>.
38+
* </p>
39+
* </important>
40+
* <p>Starts the analysis of up to 20 source databases to recommend target engines for each
3641
* source database. This is a batch version of <a href="https://docs.aws.amazon.com/dms/latest/APIReference/API_StartRecommendations.html">StartRecommendations</a>.</p>
3742
* <p>The result of analysis of each source database is reported individually in the
3843
* response. Because the batch request can result in a combination of successful and

clients/client-database-migration-service/src/commands/CreateDataProviderCommand.ts

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,24 +44,31 @@ export interface CreateDataProviderCommandOutput extends CreateDataProviderRespo
4444
* DataProviderName: "STRING_VALUE",
4545
* Description: "STRING_VALUE",
4646
* Engine: "STRING_VALUE", // required
47+
* Virtual: true || false,
4748
* Settings: { // DataProviderSettings Union: only one key present
4849
* RedshiftSettings: { // RedshiftDataProviderSettings
4950
* ServerName: "STRING_VALUE",
5051
* Port: Number("int"),
5152
* DatabaseName: "STRING_VALUE",
53+
* S3Path: "STRING_VALUE",
54+
* S3AccessRoleArn: "STRING_VALUE",
5255
* },
5356
* PostgreSqlSettings: { // PostgreSqlDataProviderSettings
5457
* ServerName: "STRING_VALUE",
5558
* Port: Number("int"),
5659
* DatabaseName: "STRING_VALUE",
5760
* SslMode: "none" || "require" || "verify-ca" || "verify-full",
5861
* CertificateArn: "STRING_VALUE",
62+
* S3Path: "STRING_VALUE",
63+
* S3AccessRoleArn: "STRING_VALUE",
5964
* },
6065
* MySqlSettings: { // MySqlDataProviderSettings
6166
* ServerName: "STRING_VALUE",
6267
* Port: Number("int"),
6368
* SslMode: "none" || "require" || "verify-ca" || "verify-full",
6469
* CertificateArn: "STRING_VALUE",
70+
* S3Path: "STRING_VALUE",
71+
* S3AccessRoleArn: "STRING_VALUE",
6572
* },
6673
* OracleSettings: { // OracleDataProviderSettings
6774
* ServerName: "STRING_VALUE",
@@ -74,13 +81,17 @@ export interface CreateDataProviderCommandOutput extends CreateDataProviderRespo
7481
* SecretsManagerOracleAsmAccessRoleArn: "STRING_VALUE",
7582
* SecretsManagerSecurityDbEncryptionSecretId: "STRING_VALUE",
7683
* SecretsManagerSecurityDbEncryptionAccessRoleArn: "STRING_VALUE",
84+
* S3Path: "STRING_VALUE",
85+
* S3AccessRoleArn: "STRING_VALUE",
7786
* },
7887
* MicrosoftSqlServerSettings: { // MicrosoftSqlServerDataProviderSettings
7988
* ServerName: "STRING_VALUE",
8089
* Port: Number("int"),
8190
* DatabaseName: "STRING_VALUE",
8291
* SslMode: "none" || "require" || "verify-ca" || "verify-full",
8392
* CertificateArn: "STRING_VALUE",
93+
* S3Path: "STRING_VALUE",
94+
* S3AccessRoleArn: "STRING_VALUE",
8495
* },
8596
* DocDbSettings: { // DocDbDataProviderSettings
8697
* ServerName: "STRING_VALUE",
@@ -94,20 +105,26 @@ export interface CreateDataProviderCommandOutput extends CreateDataProviderRespo
94105
* Port: Number("int"),
95106
* SslMode: "none" || "require" || "verify-ca" || "verify-full",
96107
* CertificateArn: "STRING_VALUE",
108+
* S3Path: "STRING_VALUE",
109+
* S3AccessRoleArn: "STRING_VALUE",
97110
* },
98111
* IbmDb2LuwSettings: { // IbmDb2LuwDataProviderSettings
99112
* ServerName: "STRING_VALUE",
100113
* Port: Number("int"),
101114
* DatabaseName: "STRING_VALUE",
102115
* SslMode: "none" || "require" || "verify-ca" || "verify-full",
103116
* CertificateArn: "STRING_VALUE",
117+
* S3Path: "STRING_VALUE",
118+
* S3AccessRoleArn: "STRING_VALUE",
104119
* },
105120
* IbmDb2zOsSettings: { // IbmDb2zOsDataProviderSettings
106121
* ServerName: "STRING_VALUE",
107122
* Port: Number("int"),
108123
* DatabaseName: "STRING_VALUE",
109124
* SslMode: "none" || "require" || "verify-ca" || "verify-full",
110125
* CertificateArn: "STRING_VALUE",
126+
* S3Path: "STRING_VALUE",
127+
* S3AccessRoleArn: "STRING_VALUE",
111128
* },
112129
* MongoDbSettings: { // MongoDbDataProviderSettings
113130
* ServerName: "STRING_VALUE",
@@ -137,24 +154,31 @@ export interface CreateDataProviderCommandOutput extends CreateDataProviderRespo
137154
* // DataProviderCreationTime: new Date("TIMESTAMP"),
138155
* // Description: "STRING_VALUE",
139156
* // Engine: "STRING_VALUE",
157+
* // Virtual: true || false,
140158
* // Settings: { // DataProviderSettings Union: only one key present
141159
* // RedshiftSettings: { // RedshiftDataProviderSettings
142160
* // ServerName: "STRING_VALUE",
143161
* // Port: Number("int"),
144162
* // DatabaseName: "STRING_VALUE",
163+
* // S3Path: "STRING_VALUE",
164+
* // S3AccessRoleArn: "STRING_VALUE",
145165
* // },
146166
* // PostgreSqlSettings: { // PostgreSqlDataProviderSettings
147167
* // ServerName: "STRING_VALUE",
148168
* // Port: Number("int"),
149169
* // DatabaseName: "STRING_VALUE",
150170
* // SslMode: "none" || "require" || "verify-ca" || "verify-full",
151171
* // CertificateArn: "STRING_VALUE",
172+
* // S3Path: "STRING_VALUE",
173+
* // S3AccessRoleArn: "STRING_VALUE",
152174
* // },
153175
* // MySqlSettings: { // MySqlDataProviderSettings
154176
* // ServerName: "STRING_VALUE",
155177
* // Port: Number("int"),
156178
* // SslMode: "none" || "require" || "verify-ca" || "verify-full",
157179
* // CertificateArn: "STRING_VALUE",
180+
* // S3Path: "STRING_VALUE",
181+
* // S3AccessRoleArn: "STRING_VALUE",
158182
* // },
159183
* // OracleSettings: { // OracleDataProviderSettings
160184
* // ServerName: "STRING_VALUE",
@@ -167,13 +191,17 @@ export interface CreateDataProviderCommandOutput extends CreateDataProviderRespo
167191
* // SecretsManagerOracleAsmAccessRoleArn: "STRING_VALUE",
168192
* // SecretsManagerSecurityDbEncryptionSecretId: "STRING_VALUE",
169193
* // SecretsManagerSecurityDbEncryptionAccessRoleArn: "STRING_VALUE",
194+
* // S3Path: "STRING_VALUE",
195+
* // S3AccessRoleArn: "STRING_VALUE",
170196
* // },
171197
* // MicrosoftSqlServerSettings: { // MicrosoftSqlServerDataProviderSettings
172198
* // ServerName: "STRING_VALUE",
173199
* // Port: Number("int"),
174200
* // DatabaseName: "STRING_VALUE",
175201
* // SslMode: "none" || "require" || "verify-ca" || "verify-full",
176202
* // CertificateArn: "STRING_VALUE",
203+
* // S3Path: "STRING_VALUE",
204+
* // S3AccessRoleArn: "STRING_VALUE",
177205
* // },
178206
* // DocDbSettings: { // DocDbDataProviderSettings
179207
* // ServerName: "STRING_VALUE",
@@ -187,20 +215,26 @@ export interface CreateDataProviderCommandOutput extends CreateDataProviderRespo
187215
* // Port: Number("int"),
188216
* // SslMode: "none" || "require" || "verify-ca" || "verify-full",
189217
* // CertificateArn: "STRING_VALUE",
218+
* // S3Path: "STRING_VALUE",
219+
* // S3AccessRoleArn: "STRING_VALUE",
190220
* // },
191221
* // IbmDb2LuwSettings: { // IbmDb2LuwDataProviderSettings
192222
* // ServerName: "STRING_VALUE",
193223
* // Port: Number("int"),
194224
* // DatabaseName: "STRING_VALUE",
195225
* // SslMode: "none" || "require" || "verify-ca" || "verify-full",
196226
* // CertificateArn: "STRING_VALUE",
227+
* // S3Path: "STRING_VALUE",
228+
* // S3AccessRoleArn: "STRING_VALUE",
197229
* // },
198230
* // IbmDb2zOsSettings: { // IbmDb2zOsDataProviderSettings
199231
* // ServerName: "STRING_VALUE",
200232
* // Port: Number("int"),
201233
* // DatabaseName: "STRING_VALUE",
202234
* // SslMode: "none" || "require" || "verify-ca" || "verify-full",
203235
* // CertificateArn: "STRING_VALUE",
236+
* // S3Path: "STRING_VALUE",
237+
* // S3AccessRoleArn: "STRING_VALUE",
204238
* // },
205239
* // MongoDbSettings: { // MongoDbDataProviderSettings
206240
* // ServerName: "STRING_VALUE",

clients/client-database-migration-service/src/commands/CreateFleetAdvisorCollectorCommand.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,12 @@ export interface CreateFleetAdvisorCollectorCommandOutput
3434
__MetadataBearer {}
3535

3636
/**
37-
* <p>Creates a Fleet Advisor collector using the specified parameters.</p>
37+
* <important>
38+
* <p>
39+
* End of support notice: On May 20, 2026, Amazon Web Services will end support for Amazon Web Services DMS Fleet Advisor;. After May 20, 2026, you will no longer be able to access the Amazon Web Services DMS Fleet Advisor; console or Amazon Web Services DMS Fleet Advisor; resources. For more information, see <a href="https://docs.aws.amazon.com/dms/latest/userguide/dms_fleet.advisor-end-of-support.html">Amazon Web Services DMS Fleet Advisor end of support</a>.
40+
* </p>
41+
* </important>
42+
* <p>Creates a Fleet Advisor collector using the specified parameters.</p>
3843
* @example
3944
* Use a bare-bones client and the command you need to make an API call.
4045
* ```javascript

clients/client-database-migration-service/src/commands/CreateInstanceProfileCommand.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,6 @@ export interface CreateInstanceProfileCommandOutput extends CreateInstanceProfil
146146
* KmsKeyArn: "arn:aws:kms:us-east-1:012345678901:key/01234567-89ab-cdef-0123-456789abcdef",
147147
* PubliclyAccessible: true,
148148
* SubnetGroupIdentifier: "public-subnets",
149-
* VpcIdentifier: "vpc-0a1b2c3d4e5f6g7h8",
150149
* VpcSecurityGroups: [
151150
* "sg-0123456"
152151
* ]

clients/client-database-migration-service/src/commands/DeleteDataProviderCommand.ts

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,24 +55,31 @@ export interface DeleteDataProviderCommandOutput extends DeleteDataProviderRespo
5555
* // DataProviderCreationTime: new Date("TIMESTAMP"),
5656
* // Description: "STRING_VALUE",
5757
* // Engine: "STRING_VALUE",
58+
* // Virtual: true || false,
5859
* // Settings: { // DataProviderSettings Union: only one key present
5960
* // RedshiftSettings: { // RedshiftDataProviderSettings
6061
* // ServerName: "STRING_VALUE",
6162
* // Port: Number("int"),
6263
* // DatabaseName: "STRING_VALUE",
64+
* // S3Path: "STRING_VALUE",
65+
* // S3AccessRoleArn: "STRING_VALUE",
6366
* // },
6467
* // PostgreSqlSettings: { // PostgreSqlDataProviderSettings
6568
* // ServerName: "STRING_VALUE",
6669
* // Port: Number("int"),
6770
* // DatabaseName: "STRING_VALUE",
6871
* // SslMode: "none" || "require" || "verify-ca" || "verify-full",
6972
* // CertificateArn: "STRING_VALUE",
73+
* // S3Path: "STRING_VALUE",
74+
* // S3AccessRoleArn: "STRING_VALUE",
7075
* // },
7176
* // MySqlSettings: { // MySqlDataProviderSettings
7277
* // ServerName: "STRING_VALUE",
7378
* // Port: Number("int"),
7479
* // SslMode: "none" || "require" || "verify-ca" || "verify-full",
7580
* // CertificateArn: "STRING_VALUE",
81+
* // S3Path: "STRING_VALUE",
82+
* // S3AccessRoleArn: "STRING_VALUE",
7683
* // },
7784
* // OracleSettings: { // OracleDataProviderSettings
7885
* // ServerName: "STRING_VALUE",
@@ -85,13 +92,17 @@ export interface DeleteDataProviderCommandOutput extends DeleteDataProviderRespo
8592
* // SecretsManagerOracleAsmAccessRoleArn: "STRING_VALUE",
8693
* // SecretsManagerSecurityDbEncryptionSecretId: "STRING_VALUE",
8794
* // SecretsManagerSecurityDbEncryptionAccessRoleArn: "STRING_VALUE",
95+
* // S3Path: "STRING_VALUE",
96+
* // S3AccessRoleArn: "STRING_VALUE",
8897
* // },
8998
* // MicrosoftSqlServerSettings: { // MicrosoftSqlServerDataProviderSettings
9099
* // ServerName: "STRING_VALUE",
91100
* // Port: Number("int"),
92101
* // DatabaseName: "STRING_VALUE",
93102
* // SslMode: "none" || "require" || "verify-ca" || "verify-full",
94103
* // CertificateArn: "STRING_VALUE",
104+
* // S3Path: "STRING_VALUE",
105+
* // S3AccessRoleArn: "STRING_VALUE",
95106
* // },
96107
* // DocDbSettings: { // DocDbDataProviderSettings
97108
* // ServerName: "STRING_VALUE",
@@ -105,20 +116,26 @@ export interface DeleteDataProviderCommandOutput extends DeleteDataProviderRespo
105116
* // Port: Number("int"),
106117
* // SslMode: "none" || "require" || "verify-ca" || "verify-full",
107118
* // CertificateArn: "STRING_VALUE",
119+
* // S3Path: "STRING_VALUE",
120+
* // S3AccessRoleArn: "STRING_VALUE",
108121
* // },
109122
* // IbmDb2LuwSettings: { // IbmDb2LuwDataProviderSettings
110123
* // ServerName: "STRING_VALUE",
111124
* // Port: Number("int"),
112125
* // DatabaseName: "STRING_VALUE",
113126
* // SslMode: "none" || "require" || "verify-ca" || "verify-full",
114127
* // CertificateArn: "STRING_VALUE",
128+
* // S3Path: "STRING_VALUE",
129+
* // S3AccessRoleArn: "STRING_VALUE",
115130
* // },
116131
* // IbmDb2zOsSettings: { // IbmDb2zOsDataProviderSettings
117132
* // ServerName: "STRING_VALUE",
118133
* // Port: Number("int"),
119134
* // DatabaseName: "STRING_VALUE",
120135
* // SslMode: "none" || "require" || "verify-ca" || "verify-full",
121136
* // CertificateArn: "STRING_VALUE",
137+
* // S3Path: "STRING_VALUE",
138+
* // S3AccessRoleArn: "STRING_VALUE",
122139
* // },
123140
* // MongoDbSettings: { // MongoDbDataProviderSettings
124141
* // ServerName: "STRING_VALUE",

clients/client-database-migration-service/src/commands/DeleteFleetAdvisorCollectorCommand.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,12 @@ export interface DeleteFleetAdvisorCollectorCommandInput extends DeleteCollector
3232
export interface DeleteFleetAdvisorCollectorCommandOutput extends __MetadataBearer {}
3333

3434
/**
35-
* <p>Deletes the specified Fleet Advisor collector.</p>
35+
* <important>
36+
* <p>
37+
* End of support notice: On May 20, 2026, Amazon Web Services will end support for Amazon Web Services DMS Fleet Advisor;. After May 20, 2026, you will no longer be able to access the Amazon Web Services DMS Fleet Advisor; console or Amazon Web Services DMS Fleet Advisor; resources. For more information, see <a href="https://docs.aws.amazon.com/dms/latest/userguide/dms_fleet.advisor-end-of-support.html">Amazon Web Services DMS Fleet Advisor end of support</a>.
38+
* </p>
39+
* </important>
40+
* <p>Deletes the specified Fleet Advisor collector.</p>
3641
* @example
3742
* Use a bare-bones client and the command you need to make an API call.
3843
* ```javascript

clients/client-database-migration-service/src/commands/DeleteFleetAdvisorDatabasesCommand.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,12 @@ export interface DeleteFleetAdvisorDatabasesCommandOutput
3434
__MetadataBearer {}
3535

3636
/**
37-
* <p>Deletes the specified Fleet Advisor collector databases.</p>
37+
* <important>
38+
* <p>
39+
* End of support notice: On May 20, 2026, Amazon Web Services will end support for Amazon Web Services DMS Fleet Advisor;. After May 20, 2026, you will no longer be able to access the Amazon Web Services DMS Fleet Advisor; console or Amazon Web Services DMS Fleet Advisor; resources. For more information, see <a href="https://docs.aws.amazon.com/dms/latest/userguide/dms_fleet.advisor-end-of-support.html">Amazon Web Services DMS Fleet Advisor end of support</a>.
40+
* </p>
41+
* </important>
42+
* <p>Deletes the specified Fleet Advisor collector databases.</p>
3843
* @example
3944
* Use a bare-bones client and the command you need to make an API call.
4045
* ```javascript

clients/client-database-migration-service/src/commands/DeleteInstanceProfileCommand.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,6 @@ export interface DeleteInstanceProfileCommandOutput extends DeleteInstanceProfil
107107
* KmsKeyArn: "arn:aws:kms:us-east-1:012345678901:key/01234567-89ab-cdef-0123-456789abcdef",
108108
* PubliclyAccessible: true,
109109
* SubnetGroupIdentifier: "public-subnets",
110-
* VpcIdentifier: "vpc-0a1b2c3d4e5f6g7h8",
111110
* VpcSecurityGroups: [
112111
* "sg-0123456"
113112
* ]

clients/client-database-migration-service/src/commands/DescribeDataProvidersCommand.ts

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,24 +63,31 @@ export interface DescribeDataProvidersCommandOutput extends DescribeDataProvider
6363
* // DataProviderCreationTime: new Date("TIMESTAMP"),
6464
* // Description: "STRING_VALUE",
6565
* // Engine: "STRING_VALUE",
66+
* // Virtual: true || false,
6667
* // Settings: { // DataProviderSettings Union: only one key present
6768
* // RedshiftSettings: { // RedshiftDataProviderSettings
6869
* // ServerName: "STRING_VALUE",
6970
* // Port: Number("int"),
7071
* // DatabaseName: "STRING_VALUE",
72+
* // S3Path: "STRING_VALUE",
73+
* // S3AccessRoleArn: "STRING_VALUE",
7174
* // },
7275
* // PostgreSqlSettings: { // PostgreSqlDataProviderSettings
7376
* // ServerName: "STRING_VALUE",
7477
* // Port: Number("int"),
7578
* // DatabaseName: "STRING_VALUE",
7679
* // SslMode: "none" || "require" || "verify-ca" || "verify-full",
7780
* // CertificateArn: "STRING_VALUE",
81+
* // S3Path: "STRING_VALUE",
82+
* // S3AccessRoleArn: "STRING_VALUE",
7883
* // },
7984
* // MySqlSettings: { // MySqlDataProviderSettings
8085
* // ServerName: "STRING_VALUE",
8186
* // Port: Number("int"),
8287
* // SslMode: "none" || "require" || "verify-ca" || "verify-full",
8388
* // CertificateArn: "STRING_VALUE",
89+
* // S3Path: "STRING_VALUE",
90+
* // S3AccessRoleArn: "STRING_VALUE",
8491
* // },
8592
* // OracleSettings: { // OracleDataProviderSettings
8693
* // ServerName: "STRING_VALUE",
@@ -93,13 +100,17 @@ export interface DescribeDataProvidersCommandOutput extends DescribeDataProvider
93100
* // SecretsManagerOracleAsmAccessRoleArn: "STRING_VALUE",
94101
* // SecretsManagerSecurityDbEncryptionSecretId: "STRING_VALUE",
95102
* // SecretsManagerSecurityDbEncryptionAccessRoleArn: "STRING_VALUE",
103+
* // S3Path: "STRING_VALUE",
104+
* // S3AccessRoleArn: "STRING_VALUE",
96105
* // },
97106
* // MicrosoftSqlServerSettings: { // MicrosoftSqlServerDataProviderSettings
98107
* // ServerName: "STRING_VALUE",
99108
* // Port: Number("int"),
100109
* // DatabaseName: "STRING_VALUE",
101110
* // SslMode: "none" || "require" || "verify-ca" || "verify-full",
102111
* // CertificateArn: "STRING_VALUE",
112+
* // S3Path: "STRING_VALUE",
113+
* // S3AccessRoleArn: "STRING_VALUE",
103114
* // },
104115
* // DocDbSettings: { // DocDbDataProviderSettings
105116
* // ServerName: "STRING_VALUE",
@@ -113,20 +124,26 @@ export interface DescribeDataProvidersCommandOutput extends DescribeDataProvider
113124
* // Port: Number("int"),
114125
* // SslMode: "none" || "require" || "verify-ca" || "verify-full",
115126
* // CertificateArn: "STRING_VALUE",
127+
* // S3Path: "STRING_VALUE",
128+
* // S3AccessRoleArn: "STRING_VALUE",
116129
* // },
117130
* // IbmDb2LuwSettings: { // IbmDb2LuwDataProviderSettings
118131
* // ServerName: "STRING_VALUE",
119132
* // Port: Number("int"),
120133
* // DatabaseName: "STRING_VALUE",
121134
* // SslMode: "none" || "require" || "verify-ca" || "verify-full",
122135
* // CertificateArn: "STRING_VALUE",
136+
* // S3Path: "STRING_VALUE",
137+
* // S3AccessRoleArn: "STRING_VALUE",
123138
* // },
124139
* // IbmDb2zOsSettings: { // IbmDb2zOsDataProviderSettings
125140
* // ServerName: "STRING_VALUE",
126141
* // Port: Number("int"),
127142
* // DatabaseName: "STRING_VALUE",
128143
* // SslMode: "none" || "require" || "verify-ca" || "verify-full",
129144
* // CertificateArn: "STRING_VALUE",
145+
* // S3Path: "STRING_VALUE",
146+
* // S3AccessRoleArn: "STRING_VALUE",
130147
* // },
131148
* // MongoDbSettings: { // MongoDbDataProviderSettings
132149
* // ServerName: "STRING_VALUE",

0 commit comments

Comments
 (0)