File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -56,6 +56,7 @@ export default {
5656 [ services . route53Record ] : 'route53Records' ,
5757 [ services . routeTable ] : 'routeTables' ,
5858 [ services . sageMakerExperiment ] : 'sageMakerExperiments' ,
59+ [ services . sageMakerNotebookInstance ] : 'sageMakerNotebookInstances' ,
5960 [ services . sageMakerProject ] : 'sageMakerProjects' ,
6061 [ services . secretsManager ] : 'secretsManager' ,
6162 [ services . sg ] : 'securityGroups' ,
Original file line number Diff line number Diff line change 11type awsAccount @key (fields : " id" ) {
22 id : String ! @id @search (by : [hash ])
3- accountId : String ! @search (by : [hash ])
43 regions : [String ] @search (by : [hash ])
54 albs : [awsAlb ]
65 apiGatewayResources : [awsApiGatewayResource ]
@@ -78,6 +77,7 @@ type awsAccount @key(fields: "id") {
7877 routeTables : [awsRouteTable ]
7978 s3 : [awsS3 ]
8079 sageMakerExperiments : [awsSageMakerExperiment ]
80+ sageMakerNotebookInstances : [awsSageMakerNotebookInstance ]
8181 sageMakerProjects : [awsSageMakerProject ]
8282 secretsManager : [awsSecretsManager ]
8383 securityGroups : [awsSecurityGroup ]
Original file line number Diff line number Diff line change @@ -698,8 +698,7 @@ export default class Provider extends CloudGraph.Client {
698698 }
699699 const { accountId } = await this . getIdentity ( account )
700700 accounts . data [ globalRegion ] . push ( {
701- id : `account:${ accountId } ` ,
702- accountId,
701+ id : accountId ,
703702 regions : configuredRegions . split ( ',' ) ,
704703 } )
705704 if ( ! crawledAccounts . find ( val => val === accountId ) ) {
Original file line number Diff line number Diff line change @@ -129,7 +129,6 @@ export type AwsAccessLogSettings = {
129129} ;
130130
131131export type AwsAccount = {
132- accountId : Scalars [ 'String' ] ;
133132 albs ?: Maybe < Array < Maybe < AwsAlb > > > ;
134133 apiGatewayResources ?: Maybe < Array < Maybe < AwsApiGatewayResource > > > ;
135134 apiGatewayRestApis ?: Maybe < Array < Maybe < AwsApiGatewayRestApi > > > ;
@@ -208,6 +207,7 @@ export type AwsAccount = {
208207 routeTables ?: Maybe < Array < Maybe < AwsRouteTable > > > ;
209208 s3 ?: Maybe < Array < Maybe < AwsS3 > > > ;
210209 sageMakerExperiments ?: Maybe < Array < Maybe < AwsSageMakerExperiment > > > ;
210+ sageMakerNotebookInstances ?: Maybe < Array < Maybe < AwsSageMakerNotebookInstance > > > ;
211211 sageMakerProjects ?: Maybe < Array < Maybe < AwsSageMakerProject > > > ;
212212 secretsManager ?: Maybe < Array < Maybe < AwsSecretsManager > > > ;
213213 securityGroups ?: Maybe < Array < Maybe < AwsSecurityGroup > > > ;
You can’t perform that action at this time.
0 commit comments