Skip to content

Commit d18a849

Browse files
author
Marco Franceschi
committed
feat: Linked new rds services to awsAccount schema
1 parent fdc1342 commit d18a849

3 files changed

Lines changed: 6 additions & 1 deletion

File tree

src/properties/logger.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,6 @@ export default {
264264
*/
265265
fetchingEbsSnapshotData:
266266
'Fetching EBS Snapshot data for this AWS account via the AWS SDK...',
267-
fetchingEbsSnapshotData: 'Fetching EBS Snapshot data for this AWS account via the AWS SDK...',
268267
doneFetchingEbsSnapshotData: '✅ Done fetching EBS Snapshot Data ✅',
269268
fetchedEbsSnapshots: (num: number): string => `Fetched ${num} EBS Snapshots`,
270269
lookingForEbsSnapshot: 'Looking for EBS Snapshots...',

src/services/account/schema.graphql

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,8 +75,11 @@ type awsAccount implements awsOptionalService @key(fields: "id") {
7575
networkInterfaces: [awsNetworkInterface]
7676
organizations: [awsOrganization]
7777
rdsClusters: [awsRdsCluster]
78+
rdsGlobalCluster : [awsRdsGlobalCluster]
7879
rdsClusterSnapshots: [awsRdsClusterSnapshot]
7980
rdsDbInstances: [awsRdsDbInstance]
81+
rdsEventSubscription: [awsRdsEventSubscription]
82+
rdsDbProxies: [awsRdsDbProxies]
8083
redshiftClusters: [awsRedshiftCluster]
8184
route53HostedZones: [awsRoute53HostedZone]
8285
route53Records: [awsRoute53Record]

src/types/generated.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -215,6 +215,9 @@ export type AwsAccount = AwsOptionalService & {
215215
rdsClusterSnapshots?: Maybe<Array<Maybe<AwsRdsClusterSnapshot>>>;
216216
rdsClusters?: Maybe<Array<Maybe<AwsRdsCluster>>>;
217217
rdsDbInstances?: Maybe<Array<Maybe<AwsRdsDbInstance>>>;
218+
rdsDbProxies?: Maybe<Array<Maybe<AwsRdsDbProxies>>>;
219+
rdsEventSubscription?: Maybe<Array<Maybe<AwsRdsEventSubscription>>>;
220+
rdsGlobalCluster?: Maybe<Array<Maybe<AwsRdsGlobalCluster>>>;
218221
redshiftClusters?: Maybe<Array<Maybe<AwsRedshiftCluster>>>;
219222
regions?: Maybe<Array<Maybe<Scalars['String']>>>;
220223
route53HostedZones?: Maybe<Array<Maybe<AwsRoute53HostedZone>>>;

0 commit comments

Comments
 (0)