-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathschema.graphql
More file actions
166 lines (154 loc) · 5.48 KB
/
Copy pathschema.graphql
File metadata and controls
166 lines (154 loc) · 5.48 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
type awsElastiCacheReplicationGroup implements awsBaseService
@key(fields: "arn") {
replicationGroupId: String @search(by: [hash])
description: String @search(by: [hash, regexp])
globalReplicationGroupInfo: awsElastiCacheGlobalReplicationGroupInfo
status: String @search(by: [hash, regexp])
pendingModifiedValues: awsElastiCachePendModValues
memberClusters: [String] @search(by: [hash])
nodeGroups: [awsElastiCacheNodeGroup]
snapshottingClusterId: String @search(by: [hash])
automaticFailover: String @search(by: [hash, regexp])
multiAZ: String @search(by: [hash, regexp])
configurationEndpoint: awsElastiCacheEndpoint
snapshotRetentionLimit: Int @search
snapshotWindow: String @search(by: [hash, regexp])
clusterEnabled: Boolean @search
cacheNodeType: String @search(by: [hash, regexp])
authTokenEnabled: Boolean @search
authTokenLastModifiedDate: String @search(by: [hash, regexp])
transitEncryptionEnabled: Boolean @search
atRestEncryptionEnabled: Boolean @search
memberClustersOutpostArns: [String] @search(by: [hash])
userGroupIds: [String] @search(by: [hash])
logDeliveryConfigurations: [awsElastiCacheLogDeliveryConfiguration]
replicationGroupCreateTime: String @search(by: [hash, regexp])
tags: [awsRawTag]
kms: [awsKms] @hasInverse(field: elastiCacheReplicationGroup)
}
type awsElastiCacheGlobalReplicationGroupInfo
@generate(
query: { get: false, query: true, aggregate: false }
mutation: { add: false, delete: false }
subscription: false
) {
globalReplicationGroupId: String @search(by: [hash])
globalReplicationGroupMemberRole: String @search(by: [hash, regexp])
}
type awsElastiCachePendModValues
@generate(
query: { get: false, query: true, aggregate: false }
mutation: { add: false, delete: false }
subscription: false
) {
primaryClusterId: String @search(by: [hash])
automaticFailoverStatus: String @search(by: [hash, regexp])
resharding: awsElastiCacheReshardingStatus
authTokenStatus: String @search(by: [hash, regexp])
userGroups: awsElastiCacheUserGroupsUpdateStatus
logDeliveryConfigurations: [awsElastiCachePendLogDeliveryConfig]
}
type awsElastiCacheReshardingStatus
@generate(
query: { get: false, query: true, aggregate: false }
mutation: { add: false, delete: false }
subscription: false
) {
slotMigration: awsElastiCacheSlotMigration
}
type awsElastiCacheSlotMigration
@generate(
query: { get: false, query: true, aggregate: false }
mutation: { add: false, delete: false }
subscription: false
) {
progressPercentage: Float @search
}
type awsElastiCacheUserGroupsUpdateStatus
@generate(
query: { get: false, query: true, aggregate: false }
mutation: { add: false, delete: false }
subscription: false
) {
userGroupIdsToAdd: [String] @search(by: [hash])
userGroupIdsToRemove: [String] @search(by: [hash])
}
type awsElastiCachePendLogDeliveryConfig
@generate(
query: { get: false, query: true, aggregate: false }
mutation: { add: false, delete: false }
subscription: false
) {
id: String! @id
logType: String @search(by: [hash, regexp])
destinationType: String @search(by: [hash, regexp])
destinationDetails: awsElastiCacheDestinationDetails
logFormat: String @search(by: [hash, regexp])
}
type awsElastiCacheNodeGroup
@generate(
query: { get: false, query: true, aggregate: false }
mutation: { add: false, delete: false }
subscription: false
) {
id: String! @id
nodeGroupId: String @search(by: [hash, regexp])
status: String @search(by: [hash, regexp])
primaryEndpoint: awsElastiCacheEndpoint
readerEndpoint: awsElastiCacheEndpoint
slots: String @search(by: [hash, regexp])
nodeGroupMembers: [awsElastiCacheNodeGroupMember]
}
type awsElastiCacheLogDeliveryConfiguration
@generate(
query: { get: false, query: true, aggregate: false }
mutation: { add: false, delete: false }
subscription: false
) {
id: String! @id
logType: String @search(by: [hash, regexp])
destinationType: String @search(by: [hash, regexp])
destinationDetails: awsElastiCacheDestinationDetails
logFormat: String @search(by: [hash, regexp])
status: String @search(by: [hash, regexp])
message: String @search(by: [hash, regexp])
}
type awsElastiCacheDestinationDetails
@generate(
query: { get: false, query: true, aggregate: false }
mutation: { add: false, delete: false }
subscription: false
) {
cloudWatchLogsDetails: awsElastiCacheCloudWatchLogsDestinationDetails
kinesisFirehoseDetails: awsElastiCacheKinesisFirehoseDestinationDetails
}
type awsElastiCacheCloudWatchLogsDestinationDetails
@generate(
query: { get: false, query: true, aggregate: false }
mutation: { add: false, delete: false }
subscription: false
) {
logGroup: String @search(by: [hash, regexp])
}
type awsElastiCacheKinesisFirehoseDestinationDetails
@generate(
query: { get: false, query: true, aggregate: false }
mutation: { add: false, delete: false }
subscription: false
) {
deliveryStream: String @search(by: [hash, regexp])
}
type awsElastiCacheNodeGroupMember
@generate(
query: { get: false, query: true, aggregate: false }
mutation: { add: false, delete: false }
subscription: false
) {
id: String! @id
cacheClusterId: String @search(by: [hash, regexp])
cacheNodeId: String @search(by: [hash, regexp])
readEndpoint: awsElastiCacheEndpoint
preferredAvailabilityZone: String @search(by: [hash, regexp])
preferredOutpostArn: String @search(by: [hash, regexp])
currentRole: String @search(by: [hash, regexp])
}