aws-sdk-neptunegraph 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/CHANGELOG.md +8 -0
- data/LICENSE.txt +202 -0
- data/VERSION +1 -0
- data/lib/aws-sdk-neptunegraph/client.rb +1704 -0
- data/lib/aws-sdk-neptunegraph/client_api.rb +853 -0
- data/lib/aws-sdk-neptunegraph/customizations.rb +0 -0
- data/lib/aws-sdk-neptunegraph/endpoint_parameters.rb +77 -0
- data/lib/aws-sdk-neptunegraph/endpoint_provider.rb +79 -0
- data/lib/aws-sdk-neptunegraph/endpoints.rb +346 -0
- data/lib/aws-sdk-neptunegraph/errors.rb +176 -0
- data/lib/aws-sdk-neptunegraph/plugins/endpoints.rb +113 -0
- data/lib/aws-sdk-neptunegraph/resource.rb +26 -0
- data/lib/aws-sdk-neptunegraph/types.rb +2119 -0
- data/lib/aws-sdk-neptunegraph.rb +57 -0
- metadata +94 -0
@@ -0,0 +1,853 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# WARNING ABOUT GENERATED CODE
|
4
|
+
#
|
5
|
+
# This file is generated. See the contributing guide for more information:
|
6
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
7
|
+
#
|
8
|
+
# WARNING ABOUT GENERATED CODE
|
9
|
+
|
10
|
+
module Aws::NeptuneGraph
|
11
|
+
# @api private
|
12
|
+
module ClientApi
|
13
|
+
|
14
|
+
include Seahorse::Model
|
15
|
+
|
16
|
+
Arn = Shapes::StringShape.new(name: 'Arn')
|
17
|
+
Boolean = Shapes::BooleanShape.new(name: 'Boolean')
|
18
|
+
CancelImportTaskInput = Shapes::StructureShape.new(name: 'CancelImportTaskInput')
|
19
|
+
CancelImportTaskOutput = Shapes::StructureShape.new(name: 'CancelImportTaskOutput')
|
20
|
+
ConflictException = Shapes::StructureShape.new(name: 'ConflictException')
|
21
|
+
ConflictExceptionReason = Shapes::StringShape.new(name: 'ConflictExceptionReason')
|
22
|
+
CreateGraphInput = Shapes::StructureShape.new(name: 'CreateGraphInput')
|
23
|
+
CreateGraphOutput = Shapes::StructureShape.new(name: 'CreateGraphOutput')
|
24
|
+
CreateGraphSnapshotInput = Shapes::StructureShape.new(name: 'CreateGraphSnapshotInput')
|
25
|
+
CreateGraphSnapshotOutput = Shapes::StructureShape.new(name: 'CreateGraphSnapshotOutput')
|
26
|
+
CreateGraphUsingImportTaskInput = Shapes::StructureShape.new(name: 'CreateGraphUsingImportTaskInput')
|
27
|
+
CreateGraphUsingImportTaskOutput = Shapes::StructureShape.new(name: 'CreateGraphUsingImportTaskOutput')
|
28
|
+
CreatePrivateGraphEndpointInput = Shapes::StructureShape.new(name: 'CreatePrivateGraphEndpointInput')
|
29
|
+
CreatePrivateGraphEndpointOutput = Shapes::StructureShape.new(name: 'CreatePrivateGraphEndpointOutput')
|
30
|
+
DeleteGraphInput = Shapes::StructureShape.new(name: 'DeleteGraphInput')
|
31
|
+
DeleteGraphOutput = Shapes::StructureShape.new(name: 'DeleteGraphOutput')
|
32
|
+
DeleteGraphSnapshotInput = Shapes::StructureShape.new(name: 'DeleteGraphSnapshotInput')
|
33
|
+
DeleteGraphSnapshotOutput = Shapes::StructureShape.new(name: 'DeleteGraphSnapshotOutput')
|
34
|
+
DeletePrivateGraphEndpointInput = Shapes::StructureShape.new(name: 'DeletePrivateGraphEndpointInput')
|
35
|
+
DeletePrivateGraphEndpointOutput = Shapes::StructureShape.new(name: 'DeletePrivateGraphEndpointOutput')
|
36
|
+
Format = Shapes::StringShape.new(name: 'Format')
|
37
|
+
GetGraphInput = Shapes::StructureShape.new(name: 'GetGraphInput')
|
38
|
+
GetGraphOutput = Shapes::StructureShape.new(name: 'GetGraphOutput')
|
39
|
+
GetGraphSnapshotInput = Shapes::StructureShape.new(name: 'GetGraphSnapshotInput')
|
40
|
+
GetGraphSnapshotOutput = Shapes::StructureShape.new(name: 'GetGraphSnapshotOutput')
|
41
|
+
GetImportTaskInput = Shapes::StructureShape.new(name: 'GetImportTaskInput')
|
42
|
+
GetImportTaskOutput = Shapes::StructureShape.new(name: 'GetImportTaskOutput')
|
43
|
+
GetPrivateGraphEndpointInput = Shapes::StructureShape.new(name: 'GetPrivateGraphEndpointInput')
|
44
|
+
GetPrivateGraphEndpointOutput = Shapes::StructureShape.new(name: 'GetPrivateGraphEndpointOutput')
|
45
|
+
GraphId = Shapes::StringShape.new(name: 'GraphId')
|
46
|
+
GraphIdentifier = Shapes::StringShape.new(name: 'GraphIdentifier')
|
47
|
+
GraphName = Shapes::StringShape.new(name: 'GraphName')
|
48
|
+
GraphSnapshotSummary = Shapes::StructureShape.new(name: 'GraphSnapshotSummary')
|
49
|
+
GraphSnapshotSummaryList = Shapes::ListShape.new(name: 'GraphSnapshotSummaryList')
|
50
|
+
GraphStatus = Shapes::StringShape.new(name: 'GraphStatus')
|
51
|
+
GraphSummary = Shapes::StructureShape.new(name: 'GraphSummary')
|
52
|
+
GraphSummaryList = Shapes::ListShape.new(name: 'GraphSummaryList')
|
53
|
+
ImportOptions = Shapes::UnionShape.new(name: 'ImportOptions')
|
54
|
+
ImportTaskDetails = Shapes::StructureShape.new(name: 'ImportTaskDetails')
|
55
|
+
ImportTaskStatus = Shapes::StringShape.new(name: 'ImportTaskStatus')
|
56
|
+
ImportTaskSummary = Shapes::StructureShape.new(name: 'ImportTaskSummary')
|
57
|
+
ImportTaskSummaryList = Shapes::ListShape.new(name: 'ImportTaskSummaryList')
|
58
|
+
Integer = Shapes::IntegerShape.new(name: 'Integer')
|
59
|
+
InternalServerException = Shapes::StructureShape.new(name: 'InternalServerException')
|
60
|
+
KmsKeyArn = Shapes::StringShape.new(name: 'KmsKeyArn')
|
61
|
+
ListGraphSnapshotsInput = Shapes::StructureShape.new(name: 'ListGraphSnapshotsInput')
|
62
|
+
ListGraphSnapshotsOutput = Shapes::StructureShape.new(name: 'ListGraphSnapshotsOutput')
|
63
|
+
ListGraphsInput = Shapes::StructureShape.new(name: 'ListGraphsInput')
|
64
|
+
ListGraphsOutput = Shapes::StructureShape.new(name: 'ListGraphsOutput')
|
65
|
+
ListImportTasksInput = Shapes::StructureShape.new(name: 'ListImportTasksInput')
|
66
|
+
ListImportTasksOutput = Shapes::StructureShape.new(name: 'ListImportTasksOutput')
|
67
|
+
ListPrivateGraphEndpointsInput = Shapes::StructureShape.new(name: 'ListPrivateGraphEndpointsInput')
|
68
|
+
ListPrivateGraphEndpointsOutput = Shapes::StructureShape.new(name: 'ListPrivateGraphEndpointsOutput')
|
69
|
+
ListTagsForResourceInput = Shapes::StructureShape.new(name: 'ListTagsForResourceInput')
|
70
|
+
ListTagsForResourceOutput = Shapes::StructureShape.new(name: 'ListTagsForResourceOutput')
|
71
|
+
Long = Shapes::IntegerShape.new(name: 'Long')
|
72
|
+
MaxResults = Shapes::IntegerShape.new(name: 'MaxResults')
|
73
|
+
NeptuneImportOptions = Shapes::StructureShape.new(name: 'NeptuneImportOptions')
|
74
|
+
NeptuneImportOptionsS3ExportKmsKeyIdString = Shapes::StringShape.new(name: 'NeptuneImportOptionsS3ExportKmsKeyIdString')
|
75
|
+
NeptuneImportOptionsS3ExportPathString = Shapes::StringShape.new(name: 'NeptuneImportOptionsS3ExportPathString')
|
76
|
+
PaginationToken = Shapes::StringShape.new(name: 'PaginationToken')
|
77
|
+
PrivateGraphEndpointStatus = Shapes::StringShape.new(name: 'PrivateGraphEndpointStatus')
|
78
|
+
PrivateGraphEndpointSummary = Shapes::StructureShape.new(name: 'PrivateGraphEndpointSummary')
|
79
|
+
PrivateGraphEndpointSummaryList = Shapes::ListShape.new(name: 'PrivateGraphEndpointSummaryList')
|
80
|
+
ProvisionedMemory = Shapes::IntegerShape.new(name: 'ProvisionedMemory')
|
81
|
+
ReplicaCount = Shapes::IntegerShape.new(name: 'ReplicaCount')
|
82
|
+
ResetGraphInput = Shapes::StructureShape.new(name: 'ResetGraphInput')
|
83
|
+
ResetGraphOutput = Shapes::StructureShape.new(name: 'ResetGraphOutput')
|
84
|
+
ResourceNotFoundException = Shapes::StructureShape.new(name: 'ResourceNotFoundException')
|
85
|
+
RestoreGraphFromSnapshotInput = Shapes::StructureShape.new(name: 'RestoreGraphFromSnapshotInput')
|
86
|
+
RestoreGraphFromSnapshotOutput = Shapes::StructureShape.new(name: 'RestoreGraphFromSnapshotOutput')
|
87
|
+
RoleArn = Shapes::StringShape.new(name: 'RoleArn')
|
88
|
+
SecurityGroupId = Shapes::StringShape.new(name: 'SecurityGroupId')
|
89
|
+
SecurityGroupIds = Shapes::ListShape.new(name: 'SecurityGroupIds')
|
90
|
+
ServiceQuotaExceededException = Shapes::StructureShape.new(name: 'ServiceQuotaExceededException')
|
91
|
+
SnapshotId = Shapes::StringShape.new(name: 'SnapshotId')
|
92
|
+
SnapshotIdentifier = Shapes::StringShape.new(name: 'SnapshotIdentifier')
|
93
|
+
SnapshotName = Shapes::StringShape.new(name: 'SnapshotName')
|
94
|
+
SnapshotStatus = Shapes::StringShape.new(name: 'SnapshotStatus')
|
95
|
+
String = Shapes::StringShape.new(name: 'String')
|
96
|
+
SubnetId = Shapes::StringShape.new(name: 'SubnetId')
|
97
|
+
SubnetIds = Shapes::ListShape.new(name: 'SubnetIds')
|
98
|
+
TagKey = Shapes::StringShape.new(name: 'TagKey')
|
99
|
+
TagKeyList = Shapes::ListShape.new(name: 'TagKeyList')
|
100
|
+
TagMap = Shapes::MapShape.new(name: 'TagMap')
|
101
|
+
TagResourceInput = Shapes::StructureShape.new(name: 'TagResourceInput')
|
102
|
+
TagResourceOutput = Shapes::StructureShape.new(name: 'TagResourceOutput')
|
103
|
+
TagValue = Shapes::StringShape.new(name: 'TagValue')
|
104
|
+
TaskId = Shapes::StringShape.new(name: 'TaskId')
|
105
|
+
ThrottlingException = Shapes::StructureShape.new(name: 'ThrottlingException')
|
106
|
+
Timestamp = Shapes::TimestampShape.new(name: 'Timestamp')
|
107
|
+
UntagResourceInput = Shapes::StructureShape.new(name: 'UntagResourceInput')
|
108
|
+
UntagResourceOutput = Shapes::StructureShape.new(name: 'UntagResourceOutput')
|
109
|
+
UpdateGraphInput = Shapes::StructureShape.new(name: 'UpdateGraphInput')
|
110
|
+
UpdateGraphOutput = Shapes::StructureShape.new(name: 'UpdateGraphOutput')
|
111
|
+
ValidationException = Shapes::StructureShape.new(name: 'ValidationException')
|
112
|
+
ValidationExceptionReason = Shapes::StringShape.new(name: 'ValidationExceptionReason')
|
113
|
+
VectorSearchConfiguration = Shapes::StructureShape.new(name: 'VectorSearchConfiguration')
|
114
|
+
VectorSearchDimension = Shapes::IntegerShape.new(name: 'VectorSearchDimension')
|
115
|
+
VpcEndpointId = Shapes::StringShape.new(name: 'VpcEndpointId')
|
116
|
+
VpcId = Shapes::StringShape.new(name: 'VpcId')
|
117
|
+
|
118
|
+
CancelImportTaskInput.add_member(:task_identifier, Shapes::ShapeRef.new(shape: TaskId, required: true, location: "uri", location_name: "taskIdentifier"))
|
119
|
+
CancelImportTaskInput.struct_class = Types::CancelImportTaskInput
|
120
|
+
|
121
|
+
CancelImportTaskOutput.add_member(:graph_id, Shapes::ShapeRef.new(shape: GraphId, location_name: "graphId"))
|
122
|
+
CancelImportTaskOutput.add_member(:task_id, Shapes::ShapeRef.new(shape: TaskId, required: true, location_name: "taskId"))
|
123
|
+
CancelImportTaskOutput.add_member(:source, Shapes::ShapeRef.new(shape: String, required: true, location_name: "source"))
|
124
|
+
CancelImportTaskOutput.add_member(:format, Shapes::ShapeRef.new(shape: Format, location_name: "format"))
|
125
|
+
CancelImportTaskOutput.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleArn, required: true, location_name: "roleArn"))
|
126
|
+
CancelImportTaskOutput.add_member(:status, Shapes::ShapeRef.new(shape: ImportTaskStatus, required: true, location_name: "status"))
|
127
|
+
CancelImportTaskOutput.struct_class = Types::CancelImportTaskOutput
|
128
|
+
|
129
|
+
ConflictException.add_member(:message, Shapes::ShapeRef.new(shape: String, required: true, location_name: "message"))
|
130
|
+
ConflictException.add_member(:reason, Shapes::ShapeRef.new(shape: ConflictExceptionReason, location_name: "reason"))
|
131
|
+
ConflictException.struct_class = Types::ConflictException
|
132
|
+
|
133
|
+
CreateGraphInput.add_member(:graph_name, Shapes::ShapeRef.new(shape: GraphName, required: true, location_name: "graphName"))
|
134
|
+
CreateGraphInput.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
135
|
+
CreateGraphInput.add_member(:public_connectivity, Shapes::ShapeRef.new(shape: Boolean, location_name: "publicConnectivity"))
|
136
|
+
CreateGraphInput.add_member(:kms_key_identifier, Shapes::ShapeRef.new(shape: KmsKeyArn, location_name: "kmsKeyIdentifier"))
|
137
|
+
CreateGraphInput.add_member(:vector_search_configuration, Shapes::ShapeRef.new(shape: VectorSearchConfiguration, location_name: "vectorSearchConfiguration"))
|
138
|
+
CreateGraphInput.add_member(:replica_count, Shapes::ShapeRef.new(shape: ReplicaCount, location_name: "replicaCount"))
|
139
|
+
CreateGraphInput.add_member(:deletion_protection, Shapes::ShapeRef.new(shape: Boolean, location_name: "deletionProtection"))
|
140
|
+
CreateGraphInput.add_member(:provisioned_memory, Shapes::ShapeRef.new(shape: ProvisionedMemory, required: true, location_name: "provisionedMemory"))
|
141
|
+
CreateGraphInput.struct_class = Types::CreateGraphInput
|
142
|
+
|
143
|
+
CreateGraphOutput.add_member(:id, Shapes::ShapeRef.new(shape: GraphId, required: true, location_name: "id"))
|
144
|
+
CreateGraphOutput.add_member(:name, Shapes::ShapeRef.new(shape: GraphName, required: true, location_name: "name"))
|
145
|
+
CreateGraphOutput.add_member(:arn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "arn"))
|
146
|
+
CreateGraphOutput.add_member(:status, Shapes::ShapeRef.new(shape: GraphStatus, location_name: "status"))
|
147
|
+
CreateGraphOutput.add_member(:status_reason, Shapes::ShapeRef.new(shape: String, location_name: "statusReason"))
|
148
|
+
CreateGraphOutput.add_member(:create_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "createTime"))
|
149
|
+
CreateGraphOutput.add_member(:provisioned_memory, Shapes::ShapeRef.new(shape: ProvisionedMemory, location_name: "provisionedMemory"))
|
150
|
+
CreateGraphOutput.add_member(:endpoint, Shapes::ShapeRef.new(shape: String, location_name: "endpoint"))
|
151
|
+
CreateGraphOutput.add_member(:public_connectivity, Shapes::ShapeRef.new(shape: Boolean, location_name: "publicConnectivity"))
|
152
|
+
CreateGraphOutput.add_member(:vector_search_configuration, Shapes::ShapeRef.new(shape: VectorSearchConfiguration, location_name: "vectorSearchConfiguration"))
|
153
|
+
CreateGraphOutput.add_member(:replica_count, Shapes::ShapeRef.new(shape: ReplicaCount, location_name: "replicaCount"))
|
154
|
+
CreateGraphOutput.add_member(:kms_key_identifier, Shapes::ShapeRef.new(shape: KmsKeyArn, location_name: "kmsKeyIdentifier"))
|
155
|
+
CreateGraphOutput.add_member(:source_snapshot_id, Shapes::ShapeRef.new(shape: SnapshotId, location_name: "sourceSnapshotId"))
|
156
|
+
CreateGraphOutput.add_member(:deletion_protection, Shapes::ShapeRef.new(shape: Boolean, location_name: "deletionProtection"))
|
157
|
+
CreateGraphOutput.add_member(:build_number, Shapes::ShapeRef.new(shape: String, location_name: "buildNumber"))
|
158
|
+
CreateGraphOutput.struct_class = Types::CreateGraphOutput
|
159
|
+
|
160
|
+
CreateGraphSnapshotInput.add_member(:graph_identifier, Shapes::ShapeRef.new(shape: GraphIdentifier, required: true, location_name: "graphIdentifier"))
|
161
|
+
CreateGraphSnapshotInput.add_member(:snapshot_name, Shapes::ShapeRef.new(shape: SnapshotName, required: true, location_name: "snapshotName"))
|
162
|
+
CreateGraphSnapshotInput.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
163
|
+
CreateGraphSnapshotInput.struct_class = Types::CreateGraphSnapshotInput
|
164
|
+
|
165
|
+
CreateGraphSnapshotOutput.add_member(:id, Shapes::ShapeRef.new(shape: SnapshotId, required: true, location_name: "id"))
|
166
|
+
CreateGraphSnapshotOutput.add_member(:name, Shapes::ShapeRef.new(shape: SnapshotName, required: true, location_name: "name"))
|
167
|
+
CreateGraphSnapshotOutput.add_member(:arn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "arn"))
|
168
|
+
CreateGraphSnapshotOutput.add_member(:source_graph_id, Shapes::ShapeRef.new(shape: GraphId, location_name: "sourceGraphId"))
|
169
|
+
CreateGraphSnapshotOutput.add_member(:snapshot_create_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "snapshotCreateTime"))
|
170
|
+
CreateGraphSnapshotOutput.add_member(:status, Shapes::ShapeRef.new(shape: SnapshotStatus, location_name: "status"))
|
171
|
+
CreateGraphSnapshotOutput.add_member(:kms_key_identifier, Shapes::ShapeRef.new(shape: KmsKeyArn, location_name: "kmsKeyIdentifier"))
|
172
|
+
CreateGraphSnapshotOutput.struct_class = Types::CreateGraphSnapshotOutput
|
173
|
+
|
174
|
+
CreateGraphUsingImportTaskInput.add_member(:graph_name, Shapes::ShapeRef.new(shape: GraphName, required: true, location_name: "graphName"))
|
175
|
+
CreateGraphUsingImportTaskInput.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
176
|
+
CreateGraphUsingImportTaskInput.add_member(:public_connectivity, Shapes::ShapeRef.new(shape: Boolean, location_name: "publicConnectivity"))
|
177
|
+
CreateGraphUsingImportTaskInput.add_member(:kms_key_identifier, Shapes::ShapeRef.new(shape: KmsKeyArn, location_name: "kmsKeyIdentifier"))
|
178
|
+
CreateGraphUsingImportTaskInput.add_member(:vector_search_configuration, Shapes::ShapeRef.new(shape: VectorSearchConfiguration, location_name: "vectorSearchConfiguration"))
|
179
|
+
CreateGraphUsingImportTaskInput.add_member(:replica_count, Shapes::ShapeRef.new(shape: ReplicaCount, location_name: "replicaCount"))
|
180
|
+
CreateGraphUsingImportTaskInput.add_member(:deletion_protection, Shapes::ShapeRef.new(shape: Boolean, location_name: "deletionProtection"))
|
181
|
+
CreateGraphUsingImportTaskInput.add_member(:import_options, Shapes::ShapeRef.new(shape: ImportOptions, location_name: "importOptions"))
|
182
|
+
CreateGraphUsingImportTaskInput.add_member(:max_provisioned_memory, Shapes::ShapeRef.new(shape: ProvisionedMemory, location_name: "maxProvisionedMemory"))
|
183
|
+
CreateGraphUsingImportTaskInput.add_member(:min_provisioned_memory, Shapes::ShapeRef.new(shape: ProvisionedMemory, location_name: "minProvisionedMemory"))
|
184
|
+
CreateGraphUsingImportTaskInput.add_member(:fail_on_error, Shapes::ShapeRef.new(shape: Boolean, location_name: "failOnError"))
|
185
|
+
CreateGraphUsingImportTaskInput.add_member(:source, Shapes::ShapeRef.new(shape: String, required: true, location_name: "source"))
|
186
|
+
CreateGraphUsingImportTaskInput.add_member(:format, Shapes::ShapeRef.new(shape: Format, location_name: "format"))
|
187
|
+
CreateGraphUsingImportTaskInput.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleArn, required: true, location_name: "roleArn"))
|
188
|
+
CreateGraphUsingImportTaskInput.struct_class = Types::CreateGraphUsingImportTaskInput
|
189
|
+
|
190
|
+
CreateGraphUsingImportTaskOutput.add_member(:graph_id, Shapes::ShapeRef.new(shape: GraphId, location_name: "graphId"))
|
191
|
+
CreateGraphUsingImportTaskOutput.add_member(:task_id, Shapes::ShapeRef.new(shape: TaskId, required: true, location_name: "taskId"))
|
192
|
+
CreateGraphUsingImportTaskOutput.add_member(:source, Shapes::ShapeRef.new(shape: String, required: true, location_name: "source"))
|
193
|
+
CreateGraphUsingImportTaskOutput.add_member(:format, Shapes::ShapeRef.new(shape: Format, location_name: "format"))
|
194
|
+
CreateGraphUsingImportTaskOutput.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleArn, required: true, location_name: "roleArn"))
|
195
|
+
CreateGraphUsingImportTaskOutput.add_member(:status, Shapes::ShapeRef.new(shape: ImportTaskStatus, required: true, location_name: "status"))
|
196
|
+
CreateGraphUsingImportTaskOutput.add_member(:import_options, Shapes::ShapeRef.new(shape: ImportOptions, location_name: "importOptions"))
|
197
|
+
CreateGraphUsingImportTaskOutput.struct_class = Types::CreateGraphUsingImportTaskOutput
|
198
|
+
|
199
|
+
CreatePrivateGraphEndpointInput.add_member(:graph_identifier, Shapes::ShapeRef.new(shape: GraphIdentifier, required: true, location: "uri", location_name: "graphIdentifier"))
|
200
|
+
CreatePrivateGraphEndpointInput.add_member(:vpc_id, Shapes::ShapeRef.new(shape: VpcId, location_name: "vpcId"))
|
201
|
+
CreatePrivateGraphEndpointInput.add_member(:subnet_ids, Shapes::ShapeRef.new(shape: SubnetIds, location_name: "subnetIds"))
|
202
|
+
CreatePrivateGraphEndpointInput.add_member(:vpc_security_group_ids, Shapes::ShapeRef.new(shape: SecurityGroupIds, location_name: "vpcSecurityGroupIds"))
|
203
|
+
CreatePrivateGraphEndpointInput.struct_class = Types::CreatePrivateGraphEndpointInput
|
204
|
+
|
205
|
+
CreatePrivateGraphEndpointOutput.add_member(:vpc_id, Shapes::ShapeRef.new(shape: VpcId, required: true, location_name: "vpcId"))
|
206
|
+
CreatePrivateGraphEndpointOutput.add_member(:subnet_ids, Shapes::ShapeRef.new(shape: SubnetIds, required: true, location_name: "subnetIds"))
|
207
|
+
CreatePrivateGraphEndpointOutput.add_member(:status, Shapes::ShapeRef.new(shape: PrivateGraphEndpointStatus, required: true, location_name: "status"))
|
208
|
+
CreatePrivateGraphEndpointOutput.add_member(:vpc_endpoint_id, Shapes::ShapeRef.new(shape: VpcEndpointId, location_name: "vpcEndpointId"))
|
209
|
+
CreatePrivateGraphEndpointOutput.struct_class = Types::CreatePrivateGraphEndpointOutput
|
210
|
+
|
211
|
+
DeleteGraphInput.add_member(:graph_identifier, Shapes::ShapeRef.new(shape: GraphIdentifier, required: true, location: "uri", location_name: "graphIdentifier"))
|
212
|
+
DeleteGraphInput.add_member(:skip_snapshot, Shapes::ShapeRef.new(shape: Boolean, required: true, location: "querystring", location_name: "skipSnapshot"))
|
213
|
+
DeleteGraphInput.struct_class = Types::DeleteGraphInput
|
214
|
+
|
215
|
+
DeleteGraphOutput.add_member(:id, Shapes::ShapeRef.new(shape: GraphId, required: true, location_name: "id"))
|
216
|
+
DeleteGraphOutput.add_member(:name, Shapes::ShapeRef.new(shape: GraphName, required: true, location_name: "name"))
|
217
|
+
DeleteGraphOutput.add_member(:arn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "arn"))
|
218
|
+
DeleteGraphOutput.add_member(:status, Shapes::ShapeRef.new(shape: GraphStatus, location_name: "status"))
|
219
|
+
DeleteGraphOutput.add_member(:status_reason, Shapes::ShapeRef.new(shape: String, location_name: "statusReason"))
|
220
|
+
DeleteGraphOutput.add_member(:create_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "createTime"))
|
221
|
+
DeleteGraphOutput.add_member(:provisioned_memory, Shapes::ShapeRef.new(shape: ProvisionedMemory, location_name: "provisionedMemory"))
|
222
|
+
DeleteGraphOutput.add_member(:endpoint, Shapes::ShapeRef.new(shape: String, location_name: "endpoint"))
|
223
|
+
DeleteGraphOutput.add_member(:public_connectivity, Shapes::ShapeRef.new(shape: Boolean, location_name: "publicConnectivity"))
|
224
|
+
DeleteGraphOutput.add_member(:vector_search_configuration, Shapes::ShapeRef.new(shape: VectorSearchConfiguration, location_name: "vectorSearchConfiguration"))
|
225
|
+
DeleteGraphOutput.add_member(:replica_count, Shapes::ShapeRef.new(shape: ReplicaCount, location_name: "replicaCount"))
|
226
|
+
DeleteGraphOutput.add_member(:kms_key_identifier, Shapes::ShapeRef.new(shape: KmsKeyArn, location_name: "kmsKeyIdentifier"))
|
227
|
+
DeleteGraphOutput.add_member(:source_snapshot_id, Shapes::ShapeRef.new(shape: SnapshotId, location_name: "sourceSnapshotId"))
|
228
|
+
DeleteGraphOutput.add_member(:deletion_protection, Shapes::ShapeRef.new(shape: Boolean, location_name: "deletionProtection"))
|
229
|
+
DeleteGraphOutput.add_member(:build_number, Shapes::ShapeRef.new(shape: String, location_name: "buildNumber"))
|
230
|
+
DeleteGraphOutput.struct_class = Types::DeleteGraphOutput
|
231
|
+
|
232
|
+
DeleteGraphSnapshotInput.add_member(:snapshot_identifier, Shapes::ShapeRef.new(shape: SnapshotIdentifier, required: true, location: "uri", location_name: "snapshotIdentifier"))
|
233
|
+
DeleteGraphSnapshotInput.struct_class = Types::DeleteGraphSnapshotInput
|
234
|
+
|
235
|
+
DeleteGraphSnapshotOutput.add_member(:id, Shapes::ShapeRef.new(shape: SnapshotId, required: true, location_name: "id"))
|
236
|
+
DeleteGraphSnapshotOutput.add_member(:name, Shapes::ShapeRef.new(shape: SnapshotName, required: true, location_name: "name"))
|
237
|
+
DeleteGraphSnapshotOutput.add_member(:arn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "arn"))
|
238
|
+
DeleteGraphSnapshotOutput.add_member(:source_graph_id, Shapes::ShapeRef.new(shape: GraphId, location_name: "sourceGraphId"))
|
239
|
+
DeleteGraphSnapshotOutput.add_member(:snapshot_create_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "snapshotCreateTime"))
|
240
|
+
DeleteGraphSnapshotOutput.add_member(:status, Shapes::ShapeRef.new(shape: SnapshotStatus, location_name: "status"))
|
241
|
+
DeleteGraphSnapshotOutput.add_member(:kms_key_identifier, Shapes::ShapeRef.new(shape: KmsKeyArn, location_name: "kmsKeyIdentifier"))
|
242
|
+
DeleteGraphSnapshotOutput.struct_class = Types::DeleteGraphSnapshotOutput
|
243
|
+
|
244
|
+
DeletePrivateGraphEndpointInput.add_member(:graph_identifier, Shapes::ShapeRef.new(shape: GraphIdentifier, required: true, location: "uri", location_name: "graphIdentifier"))
|
245
|
+
DeletePrivateGraphEndpointInput.add_member(:vpc_id, Shapes::ShapeRef.new(shape: VpcId, required: true, location: "uri", location_name: "vpcId"))
|
246
|
+
DeletePrivateGraphEndpointInput.struct_class = Types::DeletePrivateGraphEndpointInput
|
247
|
+
|
248
|
+
DeletePrivateGraphEndpointOutput.add_member(:vpc_id, Shapes::ShapeRef.new(shape: VpcId, required: true, location_name: "vpcId"))
|
249
|
+
DeletePrivateGraphEndpointOutput.add_member(:subnet_ids, Shapes::ShapeRef.new(shape: SubnetIds, required: true, location_name: "subnetIds"))
|
250
|
+
DeletePrivateGraphEndpointOutput.add_member(:status, Shapes::ShapeRef.new(shape: PrivateGraphEndpointStatus, required: true, location_name: "status"))
|
251
|
+
DeletePrivateGraphEndpointOutput.add_member(:vpc_endpoint_id, Shapes::ShapeRef.new(shape: VpcEndpointId, location_name: "vpcEndpointId"))
|
252
|
+
DeletePrivateGraphEndpointOutput.struct_class = Types::DeletePrivateGraphEndpointOutput
|
253
|
+
|
254
|
+
GetGraphInput.add_member(:graph_identifier, Shapes::ShapeRef.new(shape: GraphIdentifier, required: true, location: "uri", location_name: "graphIdentifier"))
|
255
|
+
GetGraphInput.struct_class = Types::GetGraphInput
|
256
|
+
|
257
|
+
GetGraphOutput.add_member(:id, Shapes::ShapeRef.new(shape: GraphId, required: true, location_name: "id"))
|
258
|
+
GetGraphOutput.add_member(:name, Shapes::ShapeRef.new(shape: GraphName, required: true, location_name: "name"))
|
259
|
+
GetGraphOutput.add_member(:arn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "arn"))
|
260
|
+
GetGraphOutput.add_member(:status, Shapes::ShapeRef.new(shape: GraphStatus, location_name: "status"))
|
261
|
+
GetGraphOutput.add_member(:status_reason, Shapes::ShapeRef.new(shape: String, location_name: "statusReason"))
|
262
|
+
GetGraphOutput.add_member(:create_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "createTime"))
|
263
|
+
GetGraphOutput.add_member(:provisioned_memory, Shapes::ShapeRef.new(shape: ProvisionedMemory, location_name: "provisionedMemory"))
|
264
|
+
GetGraphOutput.add_member(:endpoint, Shapes::ShapeRef.new(shape: String, location_name: "endpoint"))
|
265
|
+
GetGraphOutput.add_member(:public_connectivity, Shapes::ShapeRef.new(shape: Boolean, location_name: "publicConnectivity"))
|
266
|
+
GetGraphOutput.add_member(:vector_search_configuration, Shapes::ShapeRef.new(shape: VectorSearchConfiguration, location_name: "vectorSearchConfiguration"))
|
267
|
+
GetGraphOutput.add_member(:replica_count, Shapes::ShapeRef.new(shape: ReplicaCount, location_name: "replicaCount"))
|
268
|
+
GetGraphOutput.add_member(:kms_key_identifier, Shapes::ShapeRef.new(shape: KmsKeyArn, location_name: "kmsKeyIdentifier"))
|
269
|
+
GetGraphOutput.add_member(:source_snapshot_id, Shapes::ShapeRef.new(shape: SnapshotId, location_name: "sourceSnapshotId"))
|
270
|
+
GetGraphOutput.add_member(:deletion_protection, Shapes::ShapeRef.new(shape: Boolean, location_name: "deletionProtection"))
|
271
|
+
GetGraphOutput.add_member(:build_number, Shapes::ShapeRef.new(shape: String, location_name: "buildNumber"))
|
272
|
+
GetGraphOutput.struct_class = Types::GetGraphOutput
|
273
|
+
|
274
|
+
GetGraphSnapshotInput.add_member(:snapshot_identifier, Shapes::ShapeRef.new(shape: SnapshotIdentifier, required: true, location: "uri", location_name: "snapshotIdentifier"))
|
275
|
+
GetGraphSnapshotInput.struct_class = Types::GetGraphSnapshotInput
|
276
|
+
|
277
|
+
GetGraphSnapshotOutput.add_member(:id, Shapes::ShapeRef.new(shape: SnapshotId, required: true, location_name: "id"))
|
278
|
+
GetGraphSnapshotOutput.add_member(:name, Shapes::ShapeRef.new(shape: SnapshotName, required: true, location_name: "name"))
|
279
|
+
GetGraphSnapshotOutput.add_member(:arn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "arn"))
|
280
|
+
GetGraphSnapshotOutput.add_member(:source_graph_id, Shapes::ShapeRef.new(shape: GraphId, location_name: "sourceGraphId"))
|
281
|
+
GetGraphSnapshotOutput.add_member(:snapshot_create_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "snapshotCreateTime"))
|
282
|
+
GetGraphSnapshotOutput.add_member(:status, Shapes::ShapeRef.new(shape: SnapshotStatus, location_name: "status"))
|
283
|
+
GetGraphSnapshotOutput.add_member(:kms_key_identifier, Shapes::ShapeRef.new(shape: KmsKeyArn, location_name: "kmsKeyIdentifier"))
|
284
|
+
GetGraphSnapshotOutput.struct_class = Types::GetGraphSnapshotOutput
|
285
|
+
|
286
|
+
GetImportTaskInput.add_member(:task_identifier, Shapes::ShapeRef.new(shape: TaskId, required: true, location: "uri", location_name: "taskIdentifier"))
|
287
|
+
GetImportTaskInput.struct_class = Types::GetImportTaskInput
|
288
|
+
|
289
|
+
GetImportTaskOutput.add_member(:graph_id, Shapes::ShapeRef.new(shape: GraphId, location_name: "graphId"))
|
290
|
+
GetImportTaskOutput.add_member(:task_id, Shapes::ShapeRef.new(shape: TaskId, required: true, location_name: "taskId"))
|
291
|
+
GetImportTaskOutput.add_member(:source, Shapes::ShapeRef.new(shape: String, required: true, location_name: "source"))
|
292
|
+
GetImportTaskOutput.add_member(:format, Shapes::ShapeRef.new(shape: Format, location_name: "format"))
|
293
|
+
GetImportTaskOutput.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleArn, required: true, location_name: "roleArn"))
|
294
|
+
GetImportTaskOutput.add_member(:status, Shapes::ShapeRef.new(shape: ImportTaskStatus, required: true, location_name: "status"))
|
295
|
+
GetImportTaskOutput.add_member(:import_options, Shapes::ShapeRef.new(shape: ImportOptions, location_name: "importOptions"))
|
296
|
+
GetImportTaskOutput.add_member(:import_task_details, Shapes::ShapeRef.new(shape: ImportTaskDetails, location_name: "importTaskDetails"))
|
297
|
+
GetImportTaskOutput.add_member(:attempt_number, Shapes::ShapeRef.new(shape: Integer, location_name: "attemptNumber"))
|
298
|
+
GetImportTaskOutput.add_member(:status_reason, Shapes::ShapeRef.new(shape: String, location_name: "statusReason"))
|
299
|
+
GetImportTaskOutput.struct_class = Types::GetImportTaskOutput
|
300
|
+
|
301
|
+
GetPrivateGraphEndpointInput.add_member(:graph_identifier, Shapes::ShapeRef.new(shape: GraphIdentifier, required: true, location: "uri", location_name: "graphIdentifier"))
|
302
|
+
GetPrivateGraphEndpointInput.add_member(:vpc_id, Shapes::ShapeRef.new(shape: VpcId, required: true, location: "uri", location_name: "vpcId"))
|
303
|
+
GetPrivateGraphEndpointInput.struct_class = Types::GetPrivateGraphEndpointInput
|
304
|
+
|
305
|
+
GetPrivateGraphEndpointOutput.add_member(:vpc_id, Shapes::ShapeRef.new(shape: VpcId, required: true, location_name: "vpcId"))
|
306
|
+
GetPrivateGraphEndpointOutput.add_member(:subnet_ids, Shapes::ShapeRef.new(shape: SubnetIds, required: true, location_name: "subnetIds"))
|
307
|
+
GetPrivateGraphEndpointOutput.add_member(:status, Shapes::ShapeRef.new(shape: PrivateGraphEndpointStatus, required: true, location_name: "status"))
|
308
|
+
GetPrivateGraphEndpointOutput.add_member(:vpc_endpoint_id, Shapes::ShapeRef.new(shape: VpcEndpointId, location_name: "vpcEndpointId"))
|
309
|
+
GetPrivateGraphEndpointOutput.struct_class = Types::GetPrivateGraphEndpointOutput
|
310
|
+
|
311
|
+
GraphSnapshotSummary.add_member(:id, Shapes::ShapeRef.new(shape: SnapshotId, required: true, location_name: "id"))
|
312
|
+
GraphSnapshotSummary.add_member(:name, Shapes::ShapeRef.new(shape: SnapshotName, required: true, location_name: "name"))
|
313
|
+
GraphSnapshotSummary.add_member(:arn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "arn"))
|
314
|
+
GraphSnapshotSummary.add_member(:source_graph_id, Shapes::ShapeRef.new(shape: GraphId, location_name: "sourceGraphId"))
|
315
|
+
GraphSnapshotSummary.add_member(:snapshot_create_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "snapshotCreateTime"))
|
316
|
+
GraphSnapshotSummary.add_member(:status, Shapes::ShapeRef.new(shape: SnapshotStatus, location_name: "status"))
|
317
|
+
GraphSnapshotSummary.add_member(:kms_key_identifier, Shapes::ShapeRef.new(shape: KmsKeyArn, location_name: "kmsKeyIdentifier"))
|
318
|
+
GraphSnapshotSummary.struct_class = Types::GraphSnapshotSummary
|
319
|
+
|
320
|
+
GraphSnapshotSummaryList.member = Shapes::ShapeRef.new(shape: GraphSnapshotSummary)
|
321
|
+
|
322
|
+
GraphSummary.add_member(:id, Shapes::ShapeRef.new(shape: GraphId, required: true, location_name: "id"))
|
323
|
+
GraphSummary.add_member(:name, Shapes::ShapeRef.new(shape: GraphName, required: true, location_name: "name"))
|
324
|
+
GraphSummary.add_member(:arn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "arn"))
|
325
|
+
GraphSummary.add_member(:status, Shapes::ShapeRef.new(shape: GraphStatus, location_name: "status"))
|
326
|
+
GraphSummary.add_member(:provisioned_memory, Shapes::ShapeRef.new(shape: ProvisionedMemory, location_name: "provisionedMemory"))
|
327
|
+
GraphSummary.add_member(:public_connectivity, Shapes::ShapeRef.new(shape: Boolean, location_name: "publicConnectivity"))
|
328
|
+
GraphSummary.add_member(:endpoint, Shapes::ShapeRef.new(shape: String, location_name: "endpoint"))
|
329
|
+
GraphSummary.add_member(:replica_count, Shapes::ShapeRef.new(shape: ReplicaCount, location_name: "replicaCount"))
|
330
|
+
GraphSummary.add_member(:kms_key_identifier, Shapes::ShapeRef.new(shape: String, location_name: "kmsKeyIdentifier"))
|
331
|
+
GraphSummary.add_member(:deletion_protection, Shapes::ShapeRef.new(shape: Boolean, location_name: "deletionProtection"))
|
332
|
+
GraphSummary.struct_class = Types::GraphSummary
|
333
|
+
|
334
|
+
GraphSummaryList.member = Shapes::ShapeRef.new(shape: GraphSummary)
|
335
|
+
|
336
|
+
ImportOptions.add_member(:neptune, Shapes::ShapeRef.new(shape: NeptuneImportOptions, location_name: "neptune"))
|
337
|
+
ImportOptions.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
338
|
+
ImportOptions.add_member_subclass(:neptune, Types::ImportOptions::Neptune)
|
339
|
+
ImportOptions.add_member_subclass(:unknown, Types::ImportOptions::Unknown)
|
340
|
+
ImportOptions.struct_class = Types::ImportOptions
|
341
|
+
|
342
|
+
ImportTaskDetails.add_member(:status, Shapes::ShapeRef.new(shape: String, required: true, location_name: "status"))
|
343
|
+
ImportTaskDetails.add_member(:start_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "startTime"))
|
344
|
+
ImportTaskDetails.add_member(:time_elapsed_seconds, Shapes::ShapeRef.new(shape: Long, required: true, location_name: "timeElapsedSeconds"))
|
345
|
+
ImportTaskDetails.add_member(:progress_percentage, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "progressPercentage"))
|
346
|
+
ImportTaskDetails.add_member(:error_count, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "errorCount"))
|
347
|
+
ImportTaskDetails.add_member(:error_details, Shapes::ShapeRef.new(shape: String, location_name: "errorDetails"))
|
348
|
+
ImportTaskDetails.add_member(:statement_count, Shapes::ShapeRef.new(shape: Long, required: true, location_name: "statementCount"))
|
349
|
+
ImportTaskDetails.add_member(:dictionary_entry_count, Shapes::ShapeRef.new(shape: Long, required: true, location_name: "dictionaryEntryCount"))
|
350
|
+
ImportTaskDetails.struct_class = Types::ImportTaskDetails
|
351
|
+
|
352
|
+
ImportTaskSummary.add_member(:graph_id, Shapes::ShapeRef.new(shape: GraphId, location_name: "graphId"))
|
353
|
+
ImportTaskSummary.add_member(:task_id, Shapes::ShapeRef.new(shape: TaskId, required: true, location_name: "taskId"))
|
354
|
+
ImportTaskSummary.add_member(:source, Shapes::ShapeRef.new(shape: String, required: true, location_name: "source"))
|
355
|
+
ImportTaskSummary.add_member(:format, Shapes::ShapeRef.new(shape: Format, location_name: "format"))
|
356
|
+
ImportTaskSummary.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleArn, required: true, location_name: "roleArn"))
|
357
|
+
ImportTaskSummary.add_member(:status, Shapes::ShapeRef.new(shape: ImportTaskStatus, required: true, location_name: "status"))
|
358
|
+
ImportTaskSummary.struct_class = Types::ImportTaskSummary
|
359
|
+
|
360
|
+
ImportTaskSummaryList.member = Shapes::ShapeRef.new(shape: ImportTaskSummary)
|
361
|
+
|
362
|
+
InternalServerException.add_member(:message, Shapes::ShapeRef.new(shape: String, required: true, location_name: "message"))
|
363
|
+
InternalServerException.struct_class = Types::InternalServerException
|
364
|
+
|
365
|
+
ListGraphSnapshotsInput.add_member(:graph_identifier, Shapes::ShapeRef.new(shape: GraphIdentifier, location: "querystring", location_name: "graphIdentifier"))
|
366
|
+
ListGraphSnapshotsInput.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location: "querystring", location_name: "nextToken"))
|
367
|
+
ListGraphSnapshotsInput.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location: "querystring", location_name: "maxResults"))
|
368
|
+
ListGraphSnapshotsInput.struct_class = Types::ListGraphSnapshotsInput
|
369
|
+
|
370
|
+
ListGraphSnapshotsOutput.add_member(:graph_snapshots, Shapes::ShapeRef.new(shape: GraphSnapshotSummaryList, required: true, location_name: "graphSnapshots"))
|
371
|
+
ListGraphSnapshotsOutput.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location_name: "nextToken"))
|
372
|
+
ListGraphSnapshotsOutput.struct_class = Types::ListGraphSnapshotsOutput
|
373
|
+
|
374
|
+
ListGraphsInput.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location: "querystring", location_name: "nextToken"))
|
375
|
+
ListGraphsInput.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location: "querystring", location_name: "maxResults"))
|
376
|
+
ListGraphsInput.struct_class = Types::ListGraphsInput
|
377
|
+
|
378
|
+
ListGraphsOutput.add_member(:graphs, Shapes::ShapeRef.new(shape: GraphSummaryList, required: true, location_name: "graphs"))
|
379
|
+
ListGraphsOutput.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location_name: "nextToken"))
|
380
|
+
ListGraphsOutput.struct_class = Types::ListGraphsOutput
|
381
|
+
|
382
|
+
ListImportTasksInput.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location: "querystring", location_name: "nextToken"))
|
383
|
+
ListImportTasksInput.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location: "querystring", location_name: "maxResults"))
|
384
|
+
ListImportTasksInput.struct_class = Types::ListImportTasksInput
|
385
|
+
|
386
|
+
ListImportTasksOutput.add_member(:tasks, Shapes::ShapeRef.new(shape: ImportTaskSummaryList, required: true, location_name: "tasks"))
|
387
|
+
ListImportTasksOutput.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location_name: "nextToken"))
|
388
|
+
ListImportTasksOutput.struct_class = Types::ListImportTasksOutput
|
389
|
+
|
390
|
+
ListPrivateGraphEndpointsInput.add_member(:graph_identifier, Shapes::ShapeRef.new(shape: GraphIdentifier, required: true, location: "uri", location_name: "graphIdentifier"))
|
391
|
+
ListPrivateGraphEndpointsInput.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location: "querystring", location_name: "nextToken"))
|
392
|
+
ListPrivateGraphEndpointsInput.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location: "querystring", location_name: "maxResults"))
|
393
|
+
ListPrivateGraphEndpointsInput.struct_class = Types::ListPrivateGraphEndpointsInput
|
394
|
+
|
395
|
+
ListPrivateGraphEndpointsOutput.add_member(:private_graph_endpoints, Shapes::ShapeRef.new(shape: PrivateGraphEndpointSummaryList, required: true, location_name: "privateGraphEndpoints"))
|
396
|
+
ListPrivateGraphEndpointsOutput.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location_name: "nextToken"))
|
397
|
+
ListPrivateGraphEndpointsOutput.struct_class = Types::ListPrivateGraphEndpointsOutput
|
398
|
+
|
399
|
+
ListTagsForResourceInput.add_member(:resource_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location: "uri", location_name: "resourceArn"))
|
400
|
+
ListTagsForResourceInput.struct_class = Types::ListTagsForResourceInput
|
401
|
+
|
402
|
+
ListTagsForResourceOutput.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
403
|
+
ListTagsForResourceOutput.struct_class = Types::ListTagsForResourceOutput
|
404
|
+
|
405
|
+
NeptuneImportOptions.add_member(:s3_export_path, Shapes::ShapeRef.new(shape: NeptuneImportOptionsS3ExportPathString, required: true, location_name: "s3ExportPath"))
|
406
|
+
NeptuneImportOptions.add_member(:s3_export_kms_key_id, Shapes::ShapeRef.new(shape: NeptuneImportOptionsS3ExportKmsKeyIdString, required: true, location_name: "s3ExportKmsKeyId"))
|
407
|
+
NeptuneImportOptions.add_member(:preserve_default_vertex_labels, Shapes::ShapeRef.new(shape: Boolean, location_name: "preserveDefaultVertexLabels"))
|
408
|
+
NeptuneImportOptions.add_member(:preserve_edge_ids, Shapes::ShapeRef.new(shape: Boolean, location_name: "preserveEdgeIds"))
|
409
|
+
NeptuneImportOptions.struct_class = Types::NeptuneImportOptions
|
410
|
+
|
411
|
+
PrivateGraphEndpointSummary.add_member(:vpc_id, Shapes::ShapeRef.new(shape: VpcId, required: true, location_name: "vpcId"))
|
412
|
+
PrivateGraphEndpointSummary.add_member(:subnet_ids, Shapes::ShapeRef.new(shape: SubnetIds, required: true, location_name: "subnetIds"))
|
413
|
+
PrivateGraphEndpointSummary.add_member(:status, Shapes::ShapeRef.new(shape: PrivateGraphEndpointStatus, required: true, location_name: "status"))
|
414
|
+
PrivateGraphEndpointSummary.add_member(:vpc_endpoint_id, Shapes::ShapeRef.new(shape: VpcEndpointId, location_name: "vpcEndpointId"))
|
415
|
+
PrivateGraphEndpointSummary.struct_class = Types::PrivateGraphEndpointSummary
|
416
|
+
|
417
|
+
PrivateGraphEndpointSummaryList.member = Shapes::ShapeRef.new(shape: PrivateGraphEndpointSummary)
|
418
|
+
|
419
|
+
ResetGraphInput.add_member(:graph_identifier, Shapes::ShapeRef.new(shape: GraphIdentifier, required: true, location: "uri", location_name: "graphIdentifier"))
|
420
|
+
ResetGraphInput.add_member(:skip_snapshot, Shapes::ShapeRef.new(shape: Boolean, required: true, location_name: "skipSnapshot"))
|
421
|
+
ResetGraphInput.struct_class = Types::ResetGraphInput
|
422
|
+
|
423
|
+
ResetGraphOutput.add_member(:id, Shapes::ShapeRef.new(shape: GraphId, required: true, location_name: "id"))
|
424
|
+
ResetGraphOutput.add_member(:name, Shapes::ShapeRef.new(shape: GraphName, required: true, location_name: "name"))
|
425
|
+
ResetGraphOutput.add_member(:arn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "arn"))
|
426
|
+
ResetGraphOutput.add_member(:status, Shapes::ShapeRef.new(shape: GraphStatus, location_name: "status"))
|
427
|
+
ResetGraphOutput.add_member(:status_reason, Shapes::ShapeRef.new(shape: String, location_name: "statusReason"))
|
428
|
+
ResetGraphOutput.add_member(:create_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "createTime"))
|
429
|
+
ResetGraphOutput.add_member(:provisioned_memory, Shapes::ShapeRef.new(shape: ProvisionedMemory, location_name: "provisionedMemory"))
|
430
|
+
ResetGraphOutput.add_member(:endpoint, Shapes::ShapeRef.new(shape: String, location_name: "endpoint"))
|
431
|
+
ResetGraphOutput.add_member(:public_connectivity, Shapes::ShapeRef.new(shape: Boolean, location_name: "publicConnectivity"))
|
432
|
+
ResetGraphOutput.add_member(:vector_search_configuration, Shapes::ShapeRef.new(shape: VectorSearchConfiguration, location_name: "vectorSearchConfiguration"))
|
433
|
+
ResetGraphOutput.add_member(:replica_count, Shapes::ShapeRef.new(shape: ReplicaCount, location_name: "replicaCount"))
|
434
|
+
ResetGraphOutput.add_member(:kms_key_identifier, Shapes::ShapeRef.new(shape: KmsKeyArn, location_name: "kmsKeyIdentifier"))
|
435
|
+
ResetGraphOutput.add_member(:source_snapshot_id, Shapes::ShapeRef.new(shape: SnapshotId, location_name: "sourceSnapshotId"))
|
436
|
+
ResetGraphOutput.add_member(:deletion_protection, Shapes::ShapeRef.new(shape: Boolean, location_name: "deletionProtection"))
|
437
|
+
ResetGraphOutput.add_member(:build_number, Shapes::ShapeRef.new(shape: String, location_name: "buildNumber"))
|
438
|
+
ResetGraphOutput.struct_class = Types::ResetGraphOutput
|
439
|
+
|
440
|
+
ResourceNotFoundException.add_member(:message, Shapes::ShapeRef.new(shape: String, required: true, location_name: "message"))
|
441
|
+
ResourceNotFoundException.struct_class = Types::ResourceNotFoundException
|
442
|
+
|
443
|
+
RestoreGraphFromSnapshotInput.add_member(:snapshot_identifier, Shapes::ShapeRef.new(shape: SnapshotIdentifier, required: true, location: "uri", location_name: "snapshotIdentifier"))
|
444
|
+
RestoreGraphFromSnapshotInput.add_member(:graph_name, Shapes::ShapeRef.new(shape: GraphName, required: true, location_name: "graphName"))
|
445
|
+
RestoreGraphFromSnapshotInput.add_member(:provisioned_memory, Shapes::ShapeRef.new(shape: ProvisionedMemory, location_name: "provisionedMemory"))
|
446
|
+
RestoreGraphFromSnapshotInput.add_member(:deletion_protection, Shapes::ShapeRef.new(shape: Boolean, location_name: "deletionProtection"))
|
447
|
+
RestoreGraphFromSnapshotInput.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
448
|
+
RestoreGraphFromSnapshotInput.add_member(:replica_count, Shapes::ShapeRef.new(shape: ReplicaCount, location_name: "replicaCount"))
|
449
|
+
RestoreGraphFromSnapshotInput.add_member(:public_connectivity, Shapes::ShapeRef.new(shape: Boolean, location_name: "publicConnectivity"))
|
450
|
+
RestoreGraphFromSnapshotInput.struct_class = Types::RestoreGraphFromSnapshotInput
|
451
|
+
|
452
|
+
RestoreGraphFromSnapshotOutput.add_member(:id, Shapes::ShapeRef.new(shape: GraphId, required: true, location_name: "id"))
|
453
|
+
RestoreGraphFromSnapshotOutput.add_member(:name, Shapes::ShapeRef.new(shape: GraphName, required: true, location_name: "name"))
|
454
|
+
RestoreGraphFromSnapshotOutput.add_member(:arn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "arn"))
|
455
|
+
RestoreGraphFromSnapshotOutput.add_member(:status, Shapes::ShapeRef.new(shape: GraphStatus, location_name: "status"))
|
456
|
+
RestoreGraphFromSnapshotOutput.add_member(:status_reason, Shapes::ShapeRef.new(shape: String, location_name: "statusReason"))
|
457
|
+
RestoreGraphFromSnapshotOutput.add_member(:create_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "createTime"))
|
458
|
+
RestoreGraphFromSnapshotOutput.add_member(:provisioned_memory, Shapes::ShapeRef.new(shape: ProvisionedMemory, location_name: "provisionedMemory"))
|
459
|
+
RestoreGraphFromSnapshotOutput.add_member(:endpoint, Shapes::ShapeRef.new(shape: String, location_name: "endpoint"))
|
460
|
+
RestoreGraphFromSnapshotOutput.add_member(:public_connectivity, Shapes::ShapeRef.new(shape: Boolean, location_name: "publicConnectivity"))
|
461
|
+
RestoreGraphFromSnapshotOutput.add_member(:vector_search_configuration, Shapes::ShapeRef.new(shape: VectorSearchConfiguration, location_name: "vectorSearchConfiguration"))
|
462
|
+
RestoreGraphFromSnapshotOutput.add_member(:replica_count, Shapes::ShapeRef.new(shape: ReplicaCount, location_name: "replicaCount"))
|
463
|
+
RestoreGraphFromSnapshotOutput.add_member(:kms_key_identifier, Shapes::ShapeRef.new(shape: KmsKeyArn, location_name: "kmsKeyIdentifier"))
|
464
|
+
RestoreGraphFromSnapshotOutput.add_member(:source_snapshot_id, Shapes::ShapeRef.new(shape: SnapshotId, location_name: "sourceSnapshotId"))
|
465
|
+
RestoreGraphFromSnapshotOutput.add_member(:deletion_protection, Shapes::ShapeRef.new(shape: Boolean, location_name: "deletionProtection"))
|
466
|
+
RestoreGraphFromSnapshotOutput.add_member(:build_number, Shapes::ShapeRef.new(shape: String, location_name: "buildNumber"))
|
467
|
+
RestoreGraphFromSnapshotOutput.struct_class = Types::RestoreGraphFromSnapshotOutput
|
468
|
+
|
469
|
+
SecurityGroupIds.member = Shapes::ShapeRef.new(shape: SecurityGroupId)
|
470
|
+
|
471
|
+
ServiceQuotaExceededException.add_member(:message, Shapes::ShapeRef.new(shape: String, required: true, location_name: "message"))
|
472
|
+
ServiceQuotaExceededException.add_member(:resource_id, Shapes::ShapeRef.new(shape: String, location_name: "resourceId"))
|
473
|
+
ServiceQuotaExceededException.add_member(:resource_type, Shapes::ShapeRef.new(shape: String, location_name: "resourceType"))
|
474
|
+
ServiceQuotaExceededException.add_member(:service_code, Shapes::ShapeRef.new(shape: String, location_name: "serviceCode"))
|
475
|
+
ServiceQuotaExceededException.add_member(:quota_code, Shapes::ShapeRef.new(shape: String, location_name: "quotaCode"))
|
476
|
+
ServiceQuotaExceededException.struct_class = Types::ServiceQuotaExceededException
|
477
|
+
|
478
|
+
SubnetIds.member = Shapes::ShapeRef.new(shape: SubnetId)
|
479
|
+
|
480
|
+
TagKeyList.member = Shapes::ShapeRef.new(shape: TagKey)
|
481
|
+
|
482
|
+
TagMap.key = Shapes::ShapeRef.new(shape: TagKey)
|
483
|
+
TagMap.value = Shapes::ShapeRef.new(shape: TagValue)
|
484
|
+
|
485
|
+
TagResourceInput.add_member(:resource_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location: "uri", location_name: "resourceArn"))
|
486
|
+
TagResourceInput.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, required: true, location_name: "tags"))
|
487
|
+
TagResourceInput.struct_class = Types::TagResourceInput
|
488
|
+
|
489
|
+
TagResourceOutput.struct_class = Types::TagResourceOutput
|
490
|
+
|
491
|
+
ThrottlingException.add_member(:message, Shapes::ShapeRef.new(shape: String, required: true, location_name: "message"))
|
492
|
+
ThrottlingException.struct_class = Types::ThrottlingException
|
493
|
+
|
494
|
+
UntagResourceInput.add_member(:resource_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location: "uri", location_name: "resourceArn"))
|
495
|
+
UntagResourceInput.add_member(:tag_keys, Shapes::ShapeRef.new(shape: TagKeyList, required: true, location: "querystring", location_name: "tagKeys"))
|
496
|
+
UntagResourceInput.struct_class = Types::UntagResourceInput
|
497
|
+
|
498
|
+
UntagResourceOutput.struct_class = Types::UntagResourceOutput
|
499
|
+
|
500
|
+
UpdateGraphInput.add_member(:graph_identifier, Shapes::ShapeRef.new(shape: GraphIdentifier, required: true, location: "uri", location_name: "graphIdentifier"))
|
501
|
+
UpdateGraphInput.add_member(:public_connectivity, Shapes::ShapeRef.new(shape: Boolean, location_name: "publicConnectivity"))
|
502
|
+
UpdateGraphInput.add_member(:provisioned_memory, Shapes::ShapeRef.new(shape: ProvisionedMemory, location_name: "provisionedMemory"))
|
503
|
+
UpdateGraphInput.add_member(:deletion_protection, Shapes::ShapeRef.new(shape: Boolean, location_name: "deletionProtection"))
|
504
|
+
UpdateGraphInput.struct_class = Types::UpdateGraphInput
|
505
|
+
|
506
|
+
UpdateGraphOutput.add_member(:id, Shapes::ShapeRef.new(shape: GraphId, required: true, location_name: "id"))
|
507
|
+
UpdateGraphOutput.add_member(:name, Shapes::ShapeRef.new(shape: GraphName, required: true, location_name: "name"))
|
508
|
+
UpdateGraphOutput.add_member(:arn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "arn"))
|
509
|
+
UpdateGraphOutput.add_member(:status, Shapes::ShapeRef.new(shape: GraphStatus, location_name: "status"))
|
510
|
+
UpdateGraphOutput.add_member(:status_reason, Shapes::ShapeRef.new(shape: String, location_name: "statusReason"))
|
511
|
+
UpdateGraphOutput.add_member(:create_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "createTime"))
|
512
|
+
UpdateGraphOutput.add_member(:provisioned_memory, Shapes::ShapeRef.new(shape: ProvisionedMemory, location_name: "provisionedMemory"))
|
513
|
+
UpdateGraphOutput.add_member(:endpoint, Shapes::ShapeRef.new(shape: String, location_name: "endpoint"))
|
514
|
+
UpdateGraphOutput.add_member(:public_connectivity, Shapes::ShapeRef.new(shape: Boolean, location_name: "publicConnectivity"))
|
515
|
+
UpdateGraphOutput.add_member(:vector_search_configuration, Shapes::ShapeRef.new(shape: VectorSearchConfiguration, location_name: "vectorSearchConfiguration"))
|
516
|
+
UpdateGraphOutput.add_member(:replica_count, Shapes::ShapeRef.new(shape: ReplicaCount, location_name: "replicaCount"))
|
517
|
+
UpdateGraphOutput.add_member(:kms_key_identifier, Shapes::ShapeRef.new(shape: KmsKeyArn, location_name: "kmsKeyIdentifier"))
|
518
|
+
UpdateGraphOutput.add_member(:source_snapshot_id, Shapes::ShapeRef.new(shape: SnapshotId, location_name: "sourceSnapshotId"))
|
519
|
+
UpdateGraphOutput.add_member(:deletion_protection, Shapes::ShapeRef.new(shape: Boolean, location_name: "deletionProtection"))
|
520
|
+
UpdateGraphOutput.add_member(:build_number, Shapes::ShapeRef.new(shape: String, location_name: "buildNumber"))
|
521
|
+
UpdateGraphOutput.struct_class = Types::UpdateGraphOutput
|
522
|
+
|
523
|
+
ValidationException.add_member(:message, Shapes::ShapeRef.new(shape: String, required: true, location_name: "message"))
|
524
|
+
ValidationException.add_member(:reason, Shapes::ShapeRef.new(shape: ValidationExceptionReason, location_name: "reason"))
|
525
|
+
ValidationException.struct_class = Types::ValidationException
|
526
|
+
|
527
|
+
VectorSearchConfiguration.add_member(:dimension, Shapes::ShapeRef.new(shape: VectorSearchDimension, required: true, location_name: "dimension"))
|
528
|
+
VectorSearchConfiguration.struct_class = Types::VectorSearchConfiguration
|
529
|
+
|
530
|
+
|
531
|
+
# @api private
|
532
|
+
API = Seahorse::Model::Api.new.tap do |api|
|
533
|
+
|
534
|
+
api.version = "2023-11-29"
|
535
|
+
|
536
|
+
api.metadata = {
|
537
|
+
"apiVersion" => "2023-11-29",
|
538
|
+
"endpointPrefix" => "neptune-graph",
|
539
|
+
"jsonVersion" => "1.1",
|
540
|
+
"protocol" => "rest-json",
|
541
|
+
"ripServiceName" => "neptune-graph",
|
542
|
+
"serviceAbbreviation" => "Neptune Graph",
|
543
|
+
"serviceFullName" => "Amazon Neptune Graph",
|
544
|
+
"serviceId" => "Neptune Graph",
|
545
|
+
"signatureVersion" => "v4",
|
546
|
+
"signingName" => "neptune-graph",
|
547
|
+
"uid" => "neptune-graph-2023-11-29",
|
548
|
+
}
|
549
|
+
|
550
|
+
api.add_operation(:cancel_import_task, Seahorse::Model::Operation.new.tap do |o|
|
551
|
+
o.name = "CancelImportTask"
|
552
|
+
o.http_method = "DELETE"
|
553
|
+
o.http_request_uri = "/importtasks/{taskIdentifier}"
|
554
|
+
o.input = Shapes::ShapeRef.new(shape: CancelImportTaskInput)
|
555
|
+
o.output = Shapes::ShapeRef.new(shape: CancelImportTaskOutput)
|
556
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
557
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
558
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
559
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
560
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
561
|
+
end)
|
562
|
+
|
563
|
+
api.add_operation(:create_graph, Seahorse::Model::Operation.new.tap do |o|
|
564
|
+
o.name = "CreateGraph"
|
565
|
+
o.http_method = "POST"
|
566
|
+
o.http_request_uri = "/graphs"
|
567
|
+
o.input = Shapes::ShapeRef.new(shape: CreateGraphInput)
|
568
|
+
o.output = Shapes::ShapeRef.new(shape: CreateGraphOutput)
|
569
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
|
570
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
571
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
572
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
573
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
574
|
+
end)
|
575
|
+
|
576
|
+
api.add_operation(:create_graph_snapshot, Seahorse::Model::Operation.new.tap do |o|
|
577
|
+
o.name = "CreateGraphSnapshot"
|
578
|
+
o.http_method = "POST"
|
579
|
+
o.http_request_uri = "/snapshots"
|
580
|
+
o.input = Shapes::ShapeRef.new(shape: CreateGraphSnapshotInput)
|
581
|
+
o.output = Shapes::ShapeRef.new(shape: CreateGraphSnapshotOutput)
|
582
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
|
583
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
584
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
585
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
586
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
587
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
588
|
+
end)
|
589
|
+
|
590
|
+
api.add_operation(:create_graph_using_import_task, Seahorse::Model::Operation.new.tap do |o|
|
591
|
+
o.name = "CreateGraphUsingImportTask"
|
592
|
+
o.http_method = "POST"
|
593
|
+
o.http_request_uri = "/importtasks"
|
594
|
+
o.input = Shapes::ShapeRef.new(shape: CreateGraphUsingImportTaskInput)
|
595
|
+
o.output = Shapes::ShapeRef.new(shape: CreateGraphUsingImportTaskOutput)
|
596
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
|
597
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
598
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
599
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
600
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
601
|
+
end)
|
602
|
+
|
603
|
+
api.add_operation(:create_private_graph_endpoint, Seahorse::Model::Operation.new.tap do |o|
|
604
|
+
o.name = "CreatePrivateGraphEndpoint"
|
605
|
+
o.http_method = "POST"
|
606
|
+
o.http_request_uri = "/graphs/{graphIdentifier}/endpoints/"
|
607
|
+
o.input = Shapes::ShapeRef.new(shape: CreatePrivateGraphEndpointInput)
|
608
|
+
o.output = Shapes::ShapeRef.new(shape: CreatePrivateGraphEndpointOutput)
|
609
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
|
610
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
611
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
612
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
613
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
614
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
615
|
+
end)
|
616
|
+
|
617
|
+
api.add_operation(:delete_graph, Seahorse::Model::Operation.new.tap do |o|
|
618
|
+
o.name = "DeleteGraph"
|
619
|
+
o.http_method = "DELETE"
|
620
|
+
o.http_request_uri = "/graphs/{graphIdentifier}"
|
621
|
+
o.input = Shapes::ShapeRef.new(shape: DeleteGraphInput)
|
622
|
+
o.output = Shapes::ShapeRef.new(shape: DeleteGraphOutput)
|
623
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
624
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
625
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
626
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
627
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
628
|
+
end)
|
629
|
+
|
630
|
+
api.add_operation(:delete_graph_snapshot, Seahorse::Model::Operation.new.tap do |o|
|
631
|
+
o.name = "DeleteGraphSnapshot"
|
632
|
+
o.http_method = "DELETE"
|
633
|
+
o.http_request_uri = "/snapshots/{snapshotIdentifier}"
|
634
|
+
o.input = Shapes::ShapeRef.new(shape: DeleteGraphSnapshotInput)
|
635
|
+
o.output = Shapes::ShapeRef.new(shape: DeleteGraphSnapshotOutput)
|
636
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
637
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
638
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
639
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
640
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
641
|
+
end)
|
642
|
+
|
643
|
+
api.add_operation(:delete_private_graph_endpoint, Seahorse::Model::Operation.new.tap do |o|
|
644
|
+
o.name = "DeletePrivateGraphEndpoint"
|
645
|
+
o.http_method = "DELETE"
|
646
|
+
o.http_request_uri = "/graphs/{graphIdentifier}/endpoints/{vpcId}"
|
647
|
+
o.input = Shapes::ShapeRef.new(shape: DeletePrivateGraphEndpointInput)
|
648
|
+
o.output = Shapes::ShapeRef.new(shape: DeletePrivateGraphEndpointOutput)
|
649
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
650
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
651
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
652
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
653
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
654
|
+
end)
|
655
|
+
|
656
|
+
api.add_operation(:get_graph, Seahorse::Model::Operation.new.tap do |o|
|
657
|
+
o.name = "GetGraph"
|
658
|
+
o.http_method = "GET"
|
659
|
+
o.http_request_uri = "/graphs/{graphIdentifier}"
|
660
|
+
o.input = Shapes::ShapeRef.new(shape: GetGraphInput)
|
661
|
+
o.output = Shapes::ShapeRef.new(shape: GetGraphOutput)
|
662
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
663
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
664
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
665
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
666
|
+
end)
|
667
|
+
|
668
|
+
api.add_operation(:get_graph_snapshot, Seahorse::Model::Operation.new.tap do |o|
|
669
|
+
o.name = "GetGraphSnapshot"
|
670
|
+
o.http_method = "GET"
|
671
|
+
o.http_request_uri = "/snapshots/{snapshotIdentifier}"
|
672
|
+
o.input = Shapes::ShapeRef.new(shape: GetGraphSnapshotInput)
|
673
|
+
o.output = Shapes::ShapeRef.new(shape: GetGraphSnapshotOutput)
|
674
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
675
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
676
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
677
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
678
|
+
end)
|
679
|
+
|
680
|
+
api.add_operation(:get_import_task, Seahorse::Model::Operation.new.tap do |o|
|
681
|
+
o.name = "GetImportTask"
|
682
|
+
o.http_method = "GET"
|
683
|
+
o.http_request_uri = "/importtasks/{taskIdentifier}"
|
684
|
+
o.input = Shapes::ShapeRef.new(shape: GetImportTaskInput)
|
685
|
+
o.output = Shapes::ShapeRef.new(shape: GetImportTaskOutput)
|
686
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
687
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
688
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
689
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
690
|
+
end)
|
691
|
+
|
692
|
+
api.add_operation(:get_private_graph_endpoint, Seahorse::Model::Operation.new.tap do |o|
|
693
|
+
o.name = "GetPrivateGraphEndpoint"
|
694
|
+
o.http_method = "GET"
|
695
|
+
o.http_request_uri = "/graphs/{graphIdentifier}/endpoints/{vpcId}"
|
696
|
+
o.input = Shapes::ShapeRef.new(shape: GetPrivateGraphEndpointInput)
|
697
|
+
o.output = Shapes::ShapeRef.new(shape: GetPrivateGraphEndpointOutput)
|
698
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
699
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
700
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
701
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
702
|
+
end)
|
703
|
+
|
704
|
+
api.add_operation(:list_graph_snapshots, Seahorse::Model::Operation.new.tap do |o|
|
705
|
+
o.name = "ListGraphSnapshots"
|
706
|
+
o.http_method = "GET"
|
707
|
+
o.http_request_uri = "/snapshots"
|
708
|
+
o.input = Shapes::ShapeRef.new(shape: ListGraphSnapshotsInput)
|
709
|
+
o.output = Shapes::ShapeRef.new(shape: ListGraphSnapshotsOutput)
|
710
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
711
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
712
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
713
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
714
|
+
o[:pager] = Aws::Pager.new(
|
715
|
+
limit_key: "max_results",
|
716
|
+
tokens: {
|
717
|
+
"next_token" => "next_token"
|
718
|
+
}
|
719
|
+
)
|
720
|
+
end)
|
721
|
+
|
722
|
+
api.add_operation(:list_graphs, Seahorse::Model::Operation.new.tap do |o|
|
723
|
+
o.name = "ListGraphs"
|
724
|
+
o.http_method = "GET"
|
725
|
+
o.http_request_uri = "/graphs"
|
726
|
+
o.input = Shapes::ShapeRef.new(shape: ListGraphsInput)
|
727
|
+
o.output = Shapes::ShapeRef.new(shape: ListGraphsOutput)
|
728
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
729
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
730
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
731
|
+
o[:pager] = Aws::Pager.new(
|
732
|
+
limit_key: "max_results",
|
733
|
+
tokens: {
|
734
|
+
"next_token" => "next_token"
|
735
|
+
}
|
736
|
+
)
|
737
|
+
end)
|
738
|
+
|
739
|
+
api.add_operation(:list_import_tasks, Seahorse::Model::Operation.new.tap do |o|
|
740
|
+
o.name = "ListImportTasks"
|
741
|
+
o.http_method = "GET"
|
742
|
+
o.http_request_uri = "/importtasks"
|
743
|
+
o.input = Shapes::ShapeRef.new(shape: ListImportTasksInput)
|
744
|
+
o.output = Shapes::ShapeRef.new(shape: ListImportTasksOutput)
|
745
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
746
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
747
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
748
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
749
|
+
o[:pager] = Aws::Pager.new(
|
750
|
+
limit_key: "max_results",
|
751
|
+
tokens: {
|
752
|
+
"next_token" => "next_token"
|
753
|
+
}
|
754
|
+
)
|
755
|
+
end)
|
756
|
+
|
757
|
+
api.add_operation(:list_private_graph_endpoints, Seahorse::Model::Operation.new.tap do |o|
|
758
|
+
o.name = "ListPrivateGraphEndpoints"
|
759
|
+
o.http_method = "GET"
|
760
|
+
o.http_request_uri = "/graphs/{graphIdentifier}/endpoints/"
|
761
|
+
o.input = Shapes::ShapeRef.new(shape: ListPrivateGraphEndpointsInput)
|
762
|
+
o.output = Shapes::ShapeRef.new(shape: ListPrivateGraphEndpointsOutput)
|
763
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
764
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
765
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
766
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
767
|
+
o[:pager] = Aws::Pager.new(
|
768
|
+
limit_key: "max_results",
|
769
|
+
tokens: {
|
770
|
+
"next_token" => "next_token"
|
771
|
+
}
|
772
|
+
)
|
773
|
+
end)
|
774
|
+
|
775
|
+
api.add_operation(:list_tags_for_resource, Seahorse::Model::Operation.new.tap do |o|
|
776
|
+
o.name = "ListTagsForResource"
|
777
|
+
o.http_method = "GET"
|
778
|
+
o.http_request_uri = "/tags/{resourceArn}"
|
779
|
+
o.input = Shapes::ShapeRef.new(shape: ListTagsForResourceInput)
|
780
|
+
o.output = Shapes::ShapeRef.new(shape: ListTagsForResourceOutput)
|
781
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
782
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
783
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
784
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
785
|
+
end)
|
786
|
+
|
787
|
+
api.add_operation(:reset_graph, Seahorse::Model::Operation.new.tap do |o|
|
788
|
+
o.name = "ResetGraph"
|
789
|
+
o.http_method = "PUT"
|
790
|
+
o.http_request_uri = "/graphs/{graphIdentifier}"
|
791
|
+
o.input = Shapes::ShapeRef.new(shape: ResetGraphInput)
|
792
|
+
o.output = Shapes::ShapeRef.new(shape: ResetGraphOutput)
|
793
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
794
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
795
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
796
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
797
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
798
|
+
end)
|
799
|
+
|
800
|
+
api.add_operation(:restore_graph_from_snapshot, Seahorse::Model::Operation.new.tap do |o|
|
801
|
+
o.name = "RestoreGraphFromSnapshot"
|
802
|
+
o.http_method = "POST"
|
803
|
+
o.http_request_uri = "/snapshots/{snapshotIdentifier}/restore"
|
804
|
+
o.input = Shapes::ShapeRef.new(shape: RestoreGraphFromSnapshotInput)
|
805
|
+
o.output = Shapes::ShapeRef.new(shape: RestoreGraphFromSnapshotOutput)
|
806
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
|
807
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
808
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
809
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
810
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
811
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
812
|
+
end)
|
813
|
+
|
814
|
+
api.add_operation(:tag_resource, Seahorse::Model::Operation.new.tap do |o|
|
815
|
+
o.name = "TagResource"
|
816
|
+
o.http_method = "POST"
|
817
|
+
o.http_request_uri = "/tags/{resourceArn}"
|
818
|
+
o.input = Shapes::ShapeRef.new(shape: TagResourceInput)
|
819
|
+
o.output = Shapes::ShapeRef.new(shape: TagResourceOutput)
|
820
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
821
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
822
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
823
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
824
|
+
end)
|
825
|
+
|
826
|
+
api.add_operation(:untag_resource, Seahorse::Model::Operation.new.tap do |o|
|
827
|
+
o.name = "UntagResource"
|
828
|
+
o.http_method = "DELETE"
|
829
|
+
o.http_request_uri = "/tags/{resourceArn}"
|
830
|
+
o.input = Shapes::ShapeRef.new(shape: UntagResourceInput)
|
831
|
+
o.output = Shapes::ShapeRef.new(shape: UntagResourceOutput)
|
832
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
833
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
834
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
835
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
836
|
+
end)
|
837
|
+
|
838
|
+
api.add_operation(:update_graph, Seahorse::Model::Operation.new.tap do |o|
|
839
|
+
o.name = "UpdateGraph"
|
840
|
+
o.http_method = "PATCH"
|
841
|
+
o.http_request_uri = "/graphs/{graphIdentifier}"
|
842
|
+
o.input = Shapes::ShapeRef.new(shape: UpdateGraphInput)
|
843
|
+
o.output = Shapes::ShapeRef.new(shape: UpdateGraphOutput)
|
844
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
845
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
846
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
847
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
848
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
849
|
+
end)
|
850
|
+
end
|
851
|
+
|
852
|
+
end
|
853
|
+
end
|