Skip to content

Commit 2c8002a

Browse files
committed
chore: sync and update latest graphql schema
1 parent d0e7215 commit 2c8002a

File tree

2 files changed

+50
-1
lines changed

2 files changed

+50
-1
lines changed

internal/sdk/client/graphql.schema

Lines changed: 32 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,6 +139,10 @@ type AWSEnvSpec {
139139
Prefix for AWS resources created by this environment.
140140
"""
141141
resourcePrefix: String!
142+
"""
143+
List of external S3 buckets to allow access to
144+
"""
145+
externalBuckets: [AWSEnvExternalBucket!]!
142146
}
143147

144148
"""
@@ -329,6 +333,9 @@ type AWSEnvLoadBalancerInternalStatus {
329333
endpointServiceName: String
330334
}
331335

336+
"""
337+
AWS environment peering connection status.
338+
"""
332339
type AWSEnvPeeringConnectionStatus {
333340
"""
334341
Connection ID.
@@ -340,6 +347,16 @@ type AWSEnvPeeringConnectionStatus {
340347
vpcID: String!
341348
}
342349

350+
"""
351+
External S3 bucket to allow access to
352+
"""
353+
type AWSEnvExternalBucket {
354+
"""
355+
External bucket name.
356+
"""
357+
name: String!
358+
}
359+
343360
"""
344361
AWS environments query filter.
345362
"""
@@ -496,6 +513,10 @@ input CreateAWSEnvSpecInput {
496513
Immutable.
497514
"""
498515
resourcePrefix: String
516+
"""
517+
List of external S3 buckets to allow access to
518+
"""
519+
externalBuckets: [AWSEnvExternalBucketInput!]
499520
}
500521

501522
"""
@@ -664,7 +685,13 @@ type CreateAWSEnvResult {
664685
"""
665686
specRevision: Int!
666687
}
667-
extend type Mutation {
688+
689+
"""
690+
External S3 bucket to allow access to
691+
"""
692+
input AWSEnvExternalBucketInput {
693+
name: String!
694+
}extend type Mutation {
668695
"""
669696
Marks AWS environment for removal (if exists; noop otherwise).
670697

@@ -794,6 +821,10 @@ input AWSEnvUpdateSpecInput {
794821
Tags to apply to AWS resources.
795822
"""
796823
tags: [KeyValueInput!]
824+
"""
825+
List of external S3 buckets to allow access to
826+
"""
827+
externalBuckets: [AWSEnvExternalBucketInput!]
797828
}
798829

799830
"""

internal/sdk/client/model_gen.go

Lines changed: 18 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)