File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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...' ,
Original file line number Diff line number Diff 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 ]
Original file line number Diff line number Diff 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 > > > ;
You can’t perform that action at this time.
0 commit comments