File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11export default `mutation($input: [AddawsBillingInput!]!) {
2- addawsBilling(input: $input) {
2+ addawsBilling(input: $input, upsert: true ) {
33 numUids
44 }
5- }`
5+ }`
Original file line number Diff line number Diff line change 1- type awsBilling {
2- id : String ! @id @search (by : [hash ])
3- accountId : String ! @id @search (by : [hash ])
1+ type awsBilling implements awsOptionalService @key (fields : " id" ) {
42 totalCostMonthToDate : awsTotalBillingInfo
53 totalCostLast30Days : awsTotalBillingInfo
64 monthToDateDailyAverage : [awsServiceBillingInfo ]
Original file line number Diff line number Diff line change 11export default `mutation($input: [AddawsFlowLogInput!]!) {
2- addawsFlowLog(input: $input) {
2+ addawsFlowLog(input: $input, upsert: true ) {
33 numUids
44 }
55}`
Original file line number Diff line number Diff line change 1- type awsFlowLog implements awsOptionalService @key (fields : " id " ) {
1+ type awsFlowLog implements awsBaseService @key (fields : " arn " ) {
22 creationTime : String @search (by : [hash , regexp ])
33 deliverLogsErrorMessage : String @search (by : [hash , regexp , fulltext ])
44 deliverLogsPermissionArn : String @search (by : [hash , regexp ])
Original file line number Diff line number Diff line change @@ -552,9 +552,7 @@ export type AwsBaseService = {
552552 region ?: Maybe < Scalars [ 'String' ] > ;
553553} ;
554554
555- export type AwsBilling = {
556- accountId : Scalars [ 'String' ] ;
557- id : Scalars [ 'String' ] ;
555+ export type AwsBilling = AwsOptionalService & {
558556 last30Days ?: Maybe < Array < Maybe < AwsServiceBillingInfo > > > ;
559557 last30DaysDailyAverage ?: Maybe < Array < Maybe < AwsServiceBillingInfo > > > ;
560558 monthToDate ?: Maybe < Array < Maybe < AwsServiceBillingInfo > > > ;
@@ -2872,7 +2870,7 @@ export type AwsFederatedAuthentication = {
28722870 selfServiceSamlProviderArn ?: Maybe < Scalars [ 'String' ] > ;
28732871} ;
28742872
2875- export type AwsFlowLog = AwsOptionalService & {
2873+ export type AwsFlowLog = AwsBaseService & {
28762874 creationTime ?: Maybe < Scalars [ 'String' ] > ;
28772875 deliverLogsErrorMessage ?: Maybe < Scalars [ 'String' ] > ;
28782876 deliverLogsPermissionArn ?: Maybe < Scalars [ 'String' ] > ;
You can’t perform that action at this time.
0 commit comments