aws-sdk-finspace 1.19.0 → 1.20.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b74cd0fdbe35172cd378a2abacd5de5acb360b072fce8c24ab355271886f3454
4
- data.tar.gz: e2f407df3b9fa04cf2224db2db2c9bfe95a073ecb143b39e61a8e41dbade8215
3
+ metadata.gz: 659f00d5238f7e643ecb7a58394c4c64e1deabdeb8e1163caa12bab4eed4c41b
4
+ data.tar.gz: 196dfaaf3c635d4600453bd8ffc1cb42b7324e8bdd282c359ee46365e250d754
5
5
  SHA512:
6
- metadata.gz: 9a525f3781fa8446f8705d5bf4f1f265045832c044f287d333d549b49cf1e6e9bb32277d06fb130a3ffd54a2de917f20cc88295a9808517fe78c377159dc997b
7
- data.tar.gz: f29286193101d3b6fa76e81bef979f5fe990b4b4c9cd31bd2c1c56849c42d603e04a7ad9fe704b64eeb25c222e3dbd788784be2c14fd9e56b8e20b7ea4de2bd8
6
+ metadata.gz: 1e078c52378dd28a969b104056cd9c2b0cf6dba6ffa5680c964fe0e4dacad4a63a35350589201fda3d9c9c9091370efa40040e2c02f34c52aba482c39d41ab36
7
+ data.tar.gz: 5e1c14ce4bd85da72f742c08906c9cffa924d85e5b999e8c2609cfab625c6e4e789880ba76c2a2a90fabbb3eb44ce68bf5bb45cd59cb191ddb1a1a2c4d75852e
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.20.0 (2023-08-21)
5
+ ------------------
6
+
7
+ * Feature - Allow customers to manage outbound traffic from their Kx Environment when attaching a transit gateway by providing network acl entries. Allow the customer to choose how they want to update the databases on a cluster allowing updates to possibly be faster than usual.
8
+
4
9
  1.19.0 (2023-07-11)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.19.0
1
+ 1.20.0
@@ -623,8 +623,7 @@ module Aws::Finspace
623
623
  #
624
624
  # @option params [required, Types::CapacityConfiguration] :capacity_configuration
625
625
  # A structure for the metadata of a cluster. It includes information
626
- # about like the CPUs needed, memory of instances, number of instances,
627
- # and the port used while establishing a connection.
626
+ # like the CPUs needed, memory of instances, and number of instances.
628
627
  #
629
628
  # @option params [required, String] :release_label
630
629
  # The version of FinSpace managed kdb to run.
@@ -1341,8 +1340,11 @@ module Aws::Finspace
1341
1340
  # @option params [required, String] :user_arn
1342
1341
  # The Amazon Resource Name (ARN) that identifies the user. For more
1343
1342
  # information about ARNs and how to use ARNs in policies, see [IAM
1344
- # Identifiers](IAM/latest/UserGuide/reference_identifiers.html) in the
1345
- # *IAM User Guide*.
1343
+ # Identifiers][1] in the *IAM User Guide*.
1344
+ #
1345
+ #
1346
+ #
1347
+ # [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_identifiers.html
1346
1348
  #
1347
1349
  # @option params [required, String] :environment_id
1348
1350
  # A unique identifier for the kdb environment.
@@ -1471,6 +1473,15 @@ module Aws::Finspace
1471
1473
  # resp.dedicated_service_account_id #=> String
1472
1474
  # resp.transit_gateway_configuration.transit_gateway_id #=> String
1473
1475
  # resp.transit_gateway_configuration.routable_cidr_space #=> String
1476
+ # resp.transit_gateway_configuration.attachment_network_acl_configuration #=> Array
1477
+ # resp.transit_gateway_configuration.attachment_network_acl_configuration[0].rule_number #=> Integer
1478
+ # resp.transit_gateway_configuration.attachment_network_acl_configuration[0].protocol #=> String
1479
+ # resp.transit_gateway_configuration.attachment_network_acl_configuration[0].rule_action #=> String, one of "allow", "deny"
1480
+ # resp.transit_gateway_configuration.attachment_network_acl_configuration[0].port_range.from #=> Integer
1481
+ # resp.transit_gateway_configuration.attachment_network_acl_configuration[0].port_range.to #=> Integer
1482
+ # resp.transit_gateway_configuration.attachment_network_acl_configuration[0].icmp_type_code.type #=> Integer
1483
+ # resp.transit_gateway_configuration.attachment_network_acl_configuration[0].icmp_type_code.code #=> Integer
1484
+ # resp.transit_gateway_configuration.attachment_network_acl_configuration[0].cidr_block #=> String
1474
1485
  # resp.custom_dns_configuration #=> Array
1475
1486
  # resp.custom_dns_configuration[0].custom_dns_server_name #=> String
1476
1487
  # resp.custom_dns_configuration[0].custom_dns_server_ip #=> String
@@ -1831,6 +1842,15 @@ module Aws::Finspace
1831
1842
  # resp.environments[0].dedicated_service_account_id #=> String
1832
1843
  # resp.environments[0].transit_gateway_configuration.transit_gateway_id #=> String
1833
1844
  # resp.environments[0].transit_gateway_configuration.routable_cidr_space #=> String
1845
+ # resp.environments[0].transit_gateway_configuration.attachment_network_acl_configuration #=> Array
1846
+ # resp.environments[0].transit_gateway_configuration.attachment_network_acl_configuration[0].rule_number #=> Integer
1847
+ # resp.environments[0].transit_gateway_configuration.attachment_network_acl_configuration[0].protocol #=> String
1848
+ # resp.environments[0].transit_gateway_configuration.attachment_network_acl_configuration[0].rule_action #=> String, one of "allow", "deny"
1849
+ # resp.environments[0].transit_gateway_configuration.attachment_network_acl_configuration[0].port_range.from #=> Integer
1850
+ # resp.environments[0].transit_gateway_configuration.attachment_network_acl_configuration[0].port_range.to #=> Integer
1851
+ # resp.environments[0].transit_gateway_configuration.attachment_network_acl_configuration[0].icmp_type_code.type #=> Integer
1852
+ # resp.environments[0].transit_gateway_configuration.attachment_network_acl_configuration[0].icmp_type_code.code #=> Integer
1853
+ # resp.environments[0].transit_gateway_configuration.attachment_network_acl_configuration[0].cidr_block #=> String
1834
1854
  # resp.environments[0].custom_dns_configuration #=> Array
1835
1855
  # resp.environments[0].custom_dns_configuration[0].custom_dns_server_name #=> String
1836
1856
  # resp.environments[0].custom_dns_configuration[0].custom_dns_server_ip #=> String
@@ -2070,9 +2090,16 @@ module Aws::Finspace
2070
2090
  # @option params [String] :client_token
2071
2091
  # A token that ensures idempotency. This token expires in 10 minutes.
2072
2092
  #
2093
+ # **A suitable default value is auto-generated.** You should normally
2094
+ # not need to pass this option.**
2095
+ #
2073
2096
  # @option params [required, Array<Types::KxDatabaseConfiguration>] :databases
2074
2097
  # The structure of databases mounted on the cluster.
2075
2098
  #
2099
+ # @option params [Types::KxDeploymentConfiguration] :deployment_configuration
2100
+ # The configuration that allows you to choose how you want to update the
2101
+ # databases on a cluster.
2102
+ #
2076
2103
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
2077
2104
  #
2078
2105
  # @example Request syntax with placeholder values
@@ -2093,6 +2120,9 @@ module Aws::Finspace
2093
2120
  # changeset_id: "ChangesetId",
2094
2121
  # },
2095
2122
  # ],
2123
+ # deployment_configuration: {
2124
+ # deployment_strategy: "NO_RESTART", # required, accepts NO_RESTART, ROLLING
2125
+ # },
2096
2126
  # })
2097
2127
  #
2098
2128
  # @see http://docs.aws.amazon.com/goto/WebAPI/finspace-2021-03-12/UpdateKxClusterDatabases AWS API Documentation
@@ -2210,6 +2240,15 @@ module Aws::Finspace
2210
2240
  # resp.dedicated_service_account_id #=> String
2211
2241
  # resp.transit_gateway_configuration.transit_gateway_id #=> String
2212
2242
  # resp.transit_gateway_configuration.routable_cidr_space #=> String
2243
+ # resp.transit_gateway_configuration.attachment_network_acl_configuration #=> Array
2244
+ # resp.transit_gateway_configuration.attachment_network_acl_configuration[0].rule_number #=> Integer
2245
+ # resp.transit_gateway_configuration.attachment_network_acl_configuration[0].protocol #=> String
2246
+ # resp.transit_gateway_configuration.attachment_network_acl_configuration[0].rule_action #=> String, one of "allow", "deny"
2247
+ # resp.transit_gateway_configuration.attachment_network_acl_configuration[0].port_range.from #=> Integer
2248
+ # resp.transit_gateway_configuration.attachment_network_acl_configuration[0].port_range.to #=> Integer
2249
+ # resp.transit_gateway_configuration.attachment_network_acl_configuration[0].icmp_type_code.type #=> Integer
2250
+ # resp.transit_gateway_configuration.attachment_network_acl_configuration[0].icmp_type_code.code #=> Integer
2251
+ # resp.transit_gateway_configuration.attachment_network_acl_configuration[0].cidr_block #=> String
2213
2252
  # resp.custom_dns_configuration #=> Array
2214
2253
  # resp.custom_dns_configuration[0].custom_dns_server_name #=> String
2215
2254
  # resp.custom_dns_configuration[0].custom_dns_server_ip #=> String
@@ -2276,6 +2315,22 @@ module Aws::Finspace
2276
2315
  # transit_gateway_configuration: {
2277
2316
  # transit_gateway_id: "TransitGatewayID", # required
2278
2317
  # routable_cidr_space: "ValidCIDRSpace", # required
2318
+ # attachment_network_acl_configuration: [
2319
+ # {
2320
+ # rule_number: 1, # required
2321
+ # protocol: "Protocol", # required
2322
+ # rule_action: "allow", # required, accepts allow, deny
2323
+ # port_range: {
2324
+ # from: 1, # required
2325
+ # to: 1, # required
2326
+ # },
2327
+ # icmp_type_code: {
2328
+ # type: 1, # required
2329
+ # code: 1, # required
2330
+ # },
2331
+ # cidr_block: "ValidCIDRBlock", # required
2332
+ # },
2333
+ # ],
2279
2334
  # },
2280
2335
  # custom_dns_configuration: [
2281
2336
  # {
@@ -2301,6 +2356,15 @@ module Aws::Finspace
2301
2356
  # resp.dedicated_service_account_id #=> String
2302
2357
  # resp.transit_gateway_configuration.transit_gateway_id #=> String
2303
2358
  # resp.transit_gateway_configuration.routable_cidr_space #=> String
2359
+ # resp.transit_gateway_configuration.attachment_network_acl_configuration #=> Array
2360
+ # resp.transit_gateway_configuration.attachment_network_acl_configuration[0].rule_number #=> Integer
2361
+ # resp.transit_gateway_configuration.attachment_network_acl_configuration[0].protocol #=> String
2362
+ # resp.transit_gateway_configuration.attachment_network_acl_configuration[0].rule_action #=> String, one of "allow", "deny"
2363
+ # resp.transit_gateway_configuration.attachment_network_acl_configuration[0].port_range.from #=> Integer
2364
+ # resp.transit_gateway_configuration.attachment_network_acl_configuration[0].port_range.to #=> Integer
2365
+ # resp.transit_gateway_configuration.attachment_network_acl_configuration[0].icmp_type_code.type #=> Integer
2366
+ # resp.transit_gateway_configuration.attachment_network_acl_configuration[0].icmp_type_code.code #=> Integer
2367
+ # resp.transit_gateway_configuration.attachment_network_acl_configuration[0].cidr_block #=> String
2304
2368
  # resp.custom_dns_configuration #=> Array
2305
2369
  # resp.custom_dns_configuration[0].custom_dns_server_name #=> String
2306
2370
  # resp.custom_dns_configuration[0].custom_dns_server_ip #=> String
@@ -2378,7 +2442,7 @@ module Aws::Finspace
2378
2442
  params: params,
2379
2443
  config: config)
2380
2444
  context[:gem_name] = 'aws-sdk-finspace'
2381
- context[:gem_version] = '1.19.0'
2445
+ context[:gem_version] = '1.20.0'
2382
2446
  Seahorse::Client::Request.new(handlers, context)
2383
2447
  end
2384
2448
 
@@ -96,6 +96,8 @@ module Aws::Finspace
96
96
  GetKxUserRequest = Shapes::StructureShape.new(name: 'GetKxUserRequest')
97
97
  GetKxUserResponse = Shapes::StructureShape.new(name: 'GetKxUserResponse')
98
98
  IPAddressType = Shapes::StringShape.new(name: 'IPAddressType')
99
+ IcmpTypeCode = Shapes::StructureShape.new(name: 'IcmpTypeCode')
100
+ IcmpTypeOrCode = Shapes::IntegerShape.new(name: 'IcmpTypeOrCode')
99
101
  IdType = Shapes::StringShape.new(name: 'IdType')
100
102
  InitializationScriptFilePath = Shapes::StringShape.new(name: 'InitializationScriptFilePath')
101
103
  InternalServerException = Shapes::StructureShape.new(name: 'InternalServerException')
@@ -127,6 +129,8 @@ module Aws::Finspace
127
129
  KxDatabaseConfigurations = Shapes::ListShape.new(name: 'KxDatabaseConfigurations')
128
130
  KxDatabaseListEntry = Shapes::StructureShape.new(name: 'KxDatabaseListEntry')
129
131
  KxDatabases = Shapes::ListShape.new(name: 'KxDatabases')
132
+ KxDeploymentConfiguration = Shapes::StructureShape.new(name: 'KxDeploymentConfiguration')
133
+ KxDeploymentStrategy = Shapes::StringShape.new(name: 'KxDeploymentStrategy')
130
134
  KxEnvironment = Shapes::StructureShape.new(name: 'KxEnvironment')
131
135
  KxEnvironmentId = Shapes::StringShape.new(name: 'KxEnvironmentId')
132
136
  KxEnvironmentList = Shapes::ListShape.new(name: 'KxEnvironmentList')
@@ -159,14 +163,21 @@ module Aws::Finspace
159
163
  ListTagsForResourceResponse = Shapes::StructureShape.new(name: 'ListTagsForResourceResponse')
160
164
  MaxResults = Shapes::IntegerShape.new(name: 'MaxResults')
161
165
  NameString = Shapes::StringShape.new(name: 'NameString')
166
+ NetworkACLConfiguration = Shapes::ListShape.new(name: 'NetworkACLConfiguration')
167
+ NetworkACLEntry = Shapes::StructureShape.new(name: 'NetworkACLEntry')
162
168
  NodeCount = Shapes::IntegerShape.new(name: 'NodeCount')
163
169
  NodeType = Shapes::StringShape.new(name: 'NodeType')
164
170
  PaginationToken = Shapes::StringShape.new(name: 'PaginationToken')
171
+ Port = Shapes::IntegerShape.new(name: 'Port')
172
+ PortRange = Shapes::StructureShape.new(name: 'PortRange')
173
+ Protocol = Shapes::StringShape.new(name: 'Protocol')
165
174
  ReleaseLabel = Shapes::StringShape.new(name: 'ReleaseLabel')
166
175
  ResourceAlreadyExistsException = Shapes::StructureShape.new(name: 'ResourceAlreadyExistsException')
167
176
  ResourceNotFoundException = Shapes::StructureShape.new(name: 'ResourceNotFoundException')
168
177
  ResultLimit = Shapes::IntegerShape.new(name: 'ResultLimit')
169
178
  RoleArn = Shapes::StringShape.new(name: 'RoleArn')
179
+ RuleAction = Shapes::StringShape.new(name: 'RuleAction')
180
+ RuleNumber = Shapes::IntegerShape.new(name: 'RuleNumber')
170
181
  S3Bucket = Shapes::StringShape.new(name: 'S3Bucket')
171
182
  S3Key = Shapes::StringShape.new(name: 'S3Key')
172
183
  S3ObjectVersion = Shapes::StringShape.new(name: 'S3ObjectVersion')
@@ -204,6 +215,7 @@ module Aws::Finspace
204
215
  UpdateKxEnvironmentResponse = Shapes::StructureShape.new(name: 'UpdateKxEnvironmentResponse')
205
216
  UpdateKxUserRequest = Shapes::StructureShape.new(name: 'UpdateKxUserRequest')
206
217
  UpdateKxUserResponse = Shapes::StructureShape.new(name: 'UpdateKxUserResponse')
218
+ ValidCIDRBlock = Shapes::StringShape.new(name: 'ValidCIDRBlock')
207
219
  ValidCIDRSpace = Shapes::StringShape.new(name: 'ValidCIDRSpace')
208
220
  ValidHostname = Shapes::StringShape.new(name: 'ValidHostname')
209
221
  ValidIPAddress = Shapes::StringShape.new(name: 'ValidIPAddress')
@@ -220,6 +232,7 @@ module Aws::Finspace
220
232
  url = Shapes::StringShape.new(name: 'url')
221
233
  urn = Shapes::StringShape.new(name: 'urn')
222
234
 
235
+ AccessDeniedException.add_member(:message, Shapes::ShapeRef.new(shape: errorMessage, location_name: "message"))
223
236
  AccessDeniedException.struct_class = Types::AccessDeniedException
224
237
 
225
238
  AttributeMap.key = Shapes::ShapeRef.new(shape: FederationAttributeKey)
@@ -546,6 +559,10 @@ module Aws::Finspace
546
559
  GetKxUserResponse.add_member(:iam_role, Shapes::ShapeRef.new(shape: RoleArn, location_name: "iamRole"))
547
560
  GetKxUserResponse.struct_class = Types::GetKxUserResponse
548
561
 
562
+ IcmpTypeCode.add_member(:type, Shapes::ShapeRef.new(shape: IcmpTypeOrCode, required: true, location_name: "type"))
563
+ IcmpTypeCode.add_member(:code, Shapes::ShapeRef.new(shape: IcmpTypeOrCode, required: true, location_name: "code"))
564
+ IcmpTypeCode.struct_class = Types::IcmpTypeCode
565
+
549
566
  InternalServerException.add_member(:message, Shapes::ShapeRef.new(shape: errorMessage, location_name: "message"))
550
567
  InternalServerException.struct_class = Types::InternalServerException
551
568
 
@@ -609,6 +626,9 @@ module Aws::Finspace
609
626
 
610
627
  KxDatabases.member = Shapes::ShapeRef.new(shape: KxDatabaseListEntry)
611
628
 
629
+ KxDeploymentConfiguration.add_member(:deployment_strategy, Shapes::ShapeRef.new(shape: KxDeploymentStrategy, required: true, location_name: "deploymentStrategy"))
630
+ KxDeploymentConfiguration.struct_class = Types::KxDeploymentConfiguration
631
+
612
632
  KxEnvironment.add_member(:name, Shapes::ShapeRef.new(shape: KxEnvironmentName, location_name: "name"))
613
633
  KxEnvironment.add_member(:environment_id, Shapes::ShapeRef.new(shape: IdType, location_name: "environmentId"))
614
634
  KxEnvironment.add_member(:aws_account_id, Shapes::ShapeRef.new(shape: IdType, location_name: "awsAccountId"))
@@ -723,6 +743,20 @@ module Aws::Finspace
723
743
  ListTagsForResourceResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
724
744
  ListTagsForResourceResponse.struct_class = Types::ListTagsForResourceResponse
725
745
 
746
+ NetworkACLConfiguration.member = Shapes::ShapeRef.new(shape: NetworkACLEntry)
747
+
748
+ NetworkACLEntry.add_member(:rule_number, Shapes::ShapeRef.new(shape: RuleNumber, required: true, location_name: "ruleNumber"))
749
+ NetworkACLEntry.add_member(:protocol, Shapes::ShapeRef.new(shape: Protocol, required: true, location_name: "protocol"))
750
+ NetworkACLEntry.add_member(:rule_action, Shapes::ShapeRef.new(shape: RuleAction, required: true, location_name: "ruleAction"))
751
+ NetworkACLEntry.add_member(:port_range, Shapes::ShapeRef.new(shape: PortRange, location_name: "portRange"))
752
+ NetworkACLEntry.add_member(:icmp_type_code, Shapes::ShapeRef.new(shape: IcmpTypeCode, location_name: "icmpTypeCode"))
753
+ NetworkACLEntry.add_member(:cidr_block, Shapes::ShapeRef.new(shape: ValidCIDRBlock, required: true, location_name: "cidrBlock"))
754
+ NetworkACLEntry.struct_class = Types::NetworkACLEntry
755
+
756
+ PortRange.add_member(:from, Shapes::ShapeRef.new(shape: Port, required: true, location_name: "from"))
757
+ PortRange.add_member(:to, Shapes::ShapeRef.new(shape: Port, required: true, location_name: "to"))
758
+ PortRange.struct_class = Types::PortRange
759
+
726
760
  ResourceAlreadyExistsException.add_member(:message, Shapes::ShapeRef.new(shape: errorMessage, location_name: "message"))
727
761
  ResourceAlreadyExistsException.struct_class = Types::ResourceAlreadyExistsException
728
762
 
@@ -752,10 +786,12 @@ module Aws::Finspace
752
786
 
753
787
  TagResourceResponse.struct_class = Types::TagResourceResponse
754
788
 
789
+ ThrottlingException.add_member(:message, Shapes::ShapeRef.new(shape: errorMessage, location_name: "message"))
755
790
  ThrottlingException.struct_class = Types::ThrottlingException
756
791
 
757
792
  TransitGatewayConfiguration.add_member(:transit_gateway_id, Shapes::ShapeRef.new(shape: TransitGatewayID, required: true, location_name: "transitGatewayID"))
758
793
  TransitGatewayConfiguration.add_member(:routable_cidr_space, Shapes::ShapeRef.new(shape: ValidCIDRSpace, required: true, location_name: "routableCIDRSpace"))
794
+ TransitGatewayConfiguration.add_member(:attachment_network_acl_configuration, Shapes::ShapeRef.new(shape: NetworkACLConfiguration, location_name: "attachmentNetworkAclConfiguration"))
759
795
  TransitGatewayConfiguration.struct_class = Types::TransitGatewayConfiguration
760
796
 
761
797
  UntagResourceRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape: FinSpaceTaggableArn, required: true, location: "uri", location_name: "resourceArn"))
@@ -776,8 +812,9 @@ module Aws::Finspace
776
812
 
777
813
  UpdateKxClusterDatabasesRequest.add_member(:environment_id, Shapes::ShapeRef.new(shape: KxEnvironmentId, required: true, location: "uri", location_name: "environmentId"))
778
814
  UpdateKxClusterDatabasesRequest.add_member(:cluster_name, Shapes::ShapeRef.new(shape: KxClusterName, required: true, location: "uri", location_name: "clusterName"))
779
- UpdateKxClusterDatabasesRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientTokenString, location_name: "clientToken"))
815
+ UpdateKxClusterDatabasesRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientTokenString, location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
780
816
  UpdateKxClusterDatabasesRequest.add_member(:databases, Shapes::ShapeRef.new(shape: KxDatabaseConfigurations, required: true, location_name: "databases"))
817
+ UpdateKxClusterDatabasesRequest.add_member(:deployment_configuration, Shapes::ShapeRef.new(shape: KxDeploymentConfiguration, location_name: "deploymentConfiguration"))
781
818
  UpdateKxClusterDatabasesRequest.struct_class = Types::UpdateKxClusterDatabasesRequest
782
819
 
783
820
  UpdateKxClusterDatabasesResponse.struct_class = Types::UpdateKxClusterDatabasesResponse
@@ -1302,6 +1339,7 @@ module Aws::Finspace
1302
1339
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
1303
1340
  o.errors << Shapes::ShapeRef.new(shape: LimitExceededException)
1304
1341
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
1342
+ o.errors << Shapes::ShapeRef.new(shape: ConflictException)
1305
1343
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1306
1344
  end)
1307
1345
 
@@ -52,6 +52,11 @@ module Aws::Finspace
52
52
  def initialize(context, message, data = Aws::EmptyStructure.new)
53
53
  super(context, message, data)
54
54
  end
55
+
56
+ # @return [String]
57
+ def message
58
+ @message || @data[:message]
59
+ end
55
60
  end
56
61
 
57
62
  class ConflictException < ServiceError
@@ -172,6 +177,11 @@ module Aws::Finspace
172
177
  def initialize(context, message, data = Aws::EmptyStructure.new)
173
178
  super(context, message, data)
174
179
  end
180
+
181
+ # @return [String]
182
+ def message
183
+ @message || @data[:message]
184
+ end
175
185
  end
176
186
 
177
187
  class ValidationException < ServiceError
@@ -12,9 +12,16 @@ module Aws::Finspace
12
12
 
13
13
  # You do not have sufficient access to perform this action.
14
14
  #
15
+ # @!attribute [rw] message
16
+ # @return [String]
17
+ #
15
18
  # @see http://docs.aws.amazon.com/goto/WebAPI/finspace-2021-03-12/AccessDeniedException AWS API Documentation
16
19
  #
17
- class AccessDeniedException < Aws::EmptyStructure; end
20
+ class AccessDeniedException < Struct.new(
21
+ :message)
22
+ SENSITIVE = []
23
+ include Aws::Structure
24
+ end
18
25
 
19
26
  # The configuration based on which FinSpace will scale in or scale out
20
27
  # nodes in your cluster.
@@ -68,8 +75,7 @@ module Aws::Finspace
68
75
  end
69
76
 
70
77
  # A structure for the metadata of a cluster. It includes information
71
- # like the CPUs needed, memory of instances, number of instances, and
72
- # the port used while establishing a connection.
78
+ # like the CPUs needed, memory of instances, and number of instances.
73
79
  #
74
80
  # @!attribute [rw] node_type
75
81
  # The type that determines the hardware of the host computer used for
@@ -451,8 +457,7 @@ module Aws::Finspace
451
457
  #
452
458
  # @!attribute [rw] capacity_configuration
453
459
  # A structure for the metadata of a cluster. It includes information
454
- # about like the CPUs needed, memory of instances, number of
455
- # instances, and the port used while establishing a connection.
460
+ # like the CPUs needed, memory of instances, and number of instances.
456
461
  # @return [Types::CapacityConfiguration]
457
462
  #
458
463
  # @!attribute [rw] release_label
@@ -615,8 +620,7 @@ module Aws::Finspace
615
620
  #
616
621
  # @!attribute [rw] capacity_configuration
617
622
  # A structure for the metadata of a cluster. It includes information
618
- # like the CPUs needed, memory of instances, number of instances, and
619
- # the port used while establishing a connection.
623
+ # like the CPUs needed, memory of instances, and number of instances.
620
624
  # @return [Types::CapacityConfiguration]
621
625
  #
622
626
  # @!attribute [rw] release_label
@@ -909,8 +913,11 @@ module Aws::Finspace
909
913
  # @!attribute [rw] user_arn
910
914
  # The Amazon Resource Name (ARN) that identifies the user. For more
911
915
  # information about ARNs and how to use ARNs in policies, see [IAM
912
- # Identifiers](IAM/latest/UserGuide/reference_identifiers.html) in the
913
- # *IAM User Guide*.
916
+ # Identifiers][1] in the *IAM User Guide*.
917
+ #
918
+ #
919
+ #
920
+ # [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_identifiers.html
914
921
  # @return [String]
915
922
  #
916
923
  # @!attribute [rw] environment_id
@@ -1408,8 +1415,7 @@ module Aws::Finspace
1408
1415
  #
1409
1416
  # @!attribute [rw] capacity_configuration
1410
1417
  # A structure for the metadata of a cluster. It includes information
1411
- # like the CPUs needed, memory of instances, number of instances, and
1412
- # the port used while establishing a connection.
1418
+ # like the CPUs needed, memory of instances, and number of instances.
1413
1419
  # @return [Types::CapacityConfiguration]
1414
1420
  #
1415
1421
  # @!attribute [rw] release_label
@@ -1508,8 +1514,11 @@ module Aws::Finspace
1508
1514
  # @!attribute [rw] user_arn
1509
1515
  # The Amazon Resource Name (ARN) that identifies the user. For more
1510
1516
  # information about ARNs and how to use ARNs in policies, see [IAM
1511
- # Identifiers](IAM/latest/UserGuide/reference_identifiers.html) in the
1512
- # *IAM User Guide*.
1517
+ # Identifiers][1] in the *IAM User Guide*.
1518
+ #
1519
+ #
1520
+ #
1521
+ # [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_identifiers.html
1513
1522
  # @return [String]
1514
1523
  #
1515
1524
  # @!attribute [rw] environment_id
@@ -1756,8 +1765,11 @@ module Aws::Finspace
1756
1765
  # @!attribute [rw] user_arn
1757
1766
  # The Amazon Resource Name (ARN) that identifies the user. For more
1758
1767
  # information about ARNs and how to use ARNs in policies, see [IAM
1759
- # Identifiers](IAM/latest/UserGuide/reference_identifiers.html) in the
1760
- # *IAM User Guide*.
1768
+ # Identifiers][1] in the *IAM User Guide*.
1769
+ #
1770
+ #
1771
+ #
1772
+ # [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_identifiers.html
1761
1773
  # @return [String]
1762
1774
  #
1763
1775
  # @!attribute [rw] environment_id
@@ -1779,6 +1791,26 @@ module Aws::Finspace
1779
1791
  include Aws::Structure
1780
1792
  end
1781
1793
 
1794
+ # Defines the ICMP protocol that consists of the ICMP type and code.
1795
+ #
1796
+ # @!attribute [rw] type
1797
+ # The ICMP type. A value of *-1* means all types.
1798
+ # @return [Integer]
1799
+ #
1800
+ # @!attribute [rw] code
1801
+ # The ICMP code. A value of *-1* means all codes for the specified
1802
+ # ICMP type.
1803
+ # @return [Integer]
1804
+ #
1805
+ # @see http://docs.aws.amazon.com/goto/WebAPI/finspace-2021-03-12/IcmpTypeCode AWS API Documentation
1806
+ #
1807
+ class IcmpTypeCode < Struct.new(
1808
+ :type,
1809
+ :code)
1810
+ SENSITIVE = []
1811
+ include Aws::Structure
1812
+ end
1813
+
1782
1814
  # The request processing has failed because of an unknown error,
1783
1815
  # exception or failure.
1784
1816
  #
@@ -1957,7 +1989,7 @@ module Aws::Finspace
1957
1989
  #
1958
1990
  # @!attribute [rw] az_mode
1959
1991
  # The number of availability zones assigned per cluster. This can be
1960
- # one of the following
1992
+ # one of the following:
1961
1993
  #
1962
1994
  # * `SINGLE` – Assigns one availability zone per cluster.
1963
1995
  #
@@ -2104,6 +2136,32 @@ module Aws::Finspace
2104
2136
  include Aws::Structure
2105
2137
  end
2106
2138
 
2139
+ # The configuration that allows you to choose how you want to update the
2140
+ # databases on a cluster. Depending on the option you choose, you can
2141
+ # reduce the time it takes to update the database changesets on to a
2142
+ # cluster.
2143
+ #
2144
+ # @!attribute [rw] deployment_strategy
2145
+ # The type of deployment that you want on a cluster.
2146
+ #
2147
+ # * ROLLING – This options loads the updated database by stopping the
2148
+ # exiting q process and starting a new q process with updated
2149
+ # configuration.
2150
+ #
2151
+ # * NO\_RESTART – This option loads the updated database on the
2152
+ # running q process without stopping it. This option is quicker as
2153
+ # it reduces the turn around time to update a kdb database changeset
2154
+ # configuration on a cluster.
2155
+ # @return [String]
2156
+ #
2157
+ # @see http://docs.aws.amazon.com/goto/WebAPI/finspace-2021-03-12/KxDeploymentConfiguration AWS API Documentation
2158
+ #
2159
+ class KxDeploymentConfiguration < Struct.new(
2160
+ :deployment_strategy)
2161
+ SENSITIVE = []
2162
+ include Aws::Structure
2163
+ end
2164
+
2107
2165
  # The details of a kdb environment.
2108
2166
  #
2109
2167
  # @!attribute [rw] name
@@ -2269,7 +2327,7 @@ module Aws::Finspace
2269
2327
  # @return [String]
2270
2328
  #
2271
2329
  # @!attribute [rw] size
2272
- # The size of temporary storage in bytes.
2330
+ # The size of temporary storage in gibibytes.
2273
2331
  # @return [Integer]
2274
2332
  #
2275
2333
  # @see http://docs.aws.amazon.com/goto/WebAPI/finspace-2021-03-12/KxSavedownStorageConfiguration AWS API Documentation
@@ -2286,8 +2344,11 @@ module Aws::Finspace
2286
2344
  # @!attribute [rw] user_arn
2287
2345
  # The Amazon Resource Name (ARN) that identifies the user. For more
2288
2346
  # information about ARNs and how to use ARNs in policies, see [IAM
2289
- # Identifiers](IAM/latest/UserGuide/reference_identifiers.html) in the
2290
- # *IAM User Guide*.
2347
+ # Identifiers][1] in the *IAM User Guide*.
2348
+ #
2349
+ #
2350
+ #
2351
+ # [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_identifiers.html
2291
2352
  # @return [String]
2292
2353
  #
2293
2354
  # @!attribute [rw] user_name
@@ -2655,6 +2716,74 @@ module Aws::Finspace
2655
2716
  include Aws::Structure
2656
2717
  end
2657
2718
 
2719
+ # The network access control list (ACL) is an optional layer of security
2720
+ # for your VPC that acts as a firewall for controlling traffic in and
2721
+ # out of one or more subnets. The entry is a set of numbered ingress and
2722
+ # egress rules that determine whether a packet should be allowed in or
2723
+ # out of a subnet associated with the ACL. We process the entries in the
2724
+ # ACL according to the rule numbers, in ascending order.
2725
+ #
2726
+ # @!attribute [rw] rule_number
2727
+ # The rule number for the entry. For example *100*. All the network
2728
+ # ACL entries are processed in ascending order by rule number.
2729
+ # @return [Integer]
2730
+ #
2731
+ # @!attribute [rw] protocol
2732
+ # The protocol number. A value of *-1* means all the protocols.
2733
+ # @return [String]
2734
+ #
2735
+ # @!attribute [rw] rule_action
2736
+ # Indicates whether to allow or deny the traffic that matches the
2737
+ # rule.
2738
+ # @return [String]
2739
+ #
2740
+ # @!attribute [rw] port_range
2741
+ # The range of ports the rule applies to.
2742
+ # @return [Types::PortRange]
2743
+ #
2744
+ # @!attribute [rw] icmp_type_code
2745
+ # Defines the ICMP protocol that consists of the ICMP type and code.
2746
+ # @return [Types::IcmpTypeCode]
2747
+ #
2748
+ # @!attribute [rw] cidr_block
2749
+ # The IPv4 network range to allow or deny, in CIDR notation. For
2750
+ # example, `172.16.0.0/24`. We modify the specified CIDR block to its
2751
+ # canonical form. For example, if you specify `100.68.0.18/18`, we
2752
+ # modify it to `100.68.0.0/18`.
2753
+ # @return [String]
2754
+ #
2755
+ # @see http://docs.aws.amazon.com/goto/WebAPI/finspace-2021-03-12/NetworkACLEntry AWS API Documentation
2756
+ #
2757
+ class NetworkACLEntry < Struct.new(
2758
+ :rule_number,
2759
+ :protocol,
2760
+ :rule_action,
2761
+ :port_range,
2762
+ :icmp_type_code,
2763
+ :cidr_block)
2764
+ SENSITIVE = []
2765
+ include Aws::Structure
2766
+ end
2767
+
2768
+ # The range of ports the rule applies to.
2769
+ #
2770
+ # @!attribute [rw] from
2771
+ # The first port in the range.
2772
+ # @return [Integer]
2773
+ #
2774
+ # @!attribute [rw] to
2775
+ # The last port in the range.
2776
+ # @return [Integer]
2777
+ #
2778
+ # @see http://docs.aws.amazon.com/goto/WebAPI/finspace-2021-03-12/PortRange AWS API Documentation
2779
+ #
2780
+ class PortRange < Struct.new(
2781
+ :from,
2782
+ :to)
2783
+ SENSITIVE = []
2784
+ include Aws::Structure
2785
+ end
2786
+
2658
2787
  # The specified resource group already exists.
2659
2788
  #
2660
2789
  # @!attribute [rw] message
@@ -2743,9 +2872,16 @@ module Aws::Finspace
2743
2872
 
2744
2873
  # The request was denied due to request throttling.
2745
2874
  #
2875
+ # @!attribute [rw] message
2876
+ # @return [String]
2877
+ #
2746
2878
  # @see http://docs.aws.amazon.com/goto/WebAPI/finspace-2021-03-12/ThrottlingException AWS API Documentation
2747
2879
  #
2748
- class ThrottlingException < Aws::EmptyStructure; end
2880
+ class ThrottlingException < Struct.new(
2881
+ :message)
2882
+ SENSITIVE = []
2883
+ include Aws::Structure
2884
+ end
2749
2885
 
2750
2886
  # The structure of the transit gateway and network configuration that is
2751
2887
  # used to connect the kdb environment to an internal network.
@@ -2762,11 +2898,17 @@ module Aws::Finspace
2762
2898
  # traffics could be routed to kdb network.
2763
2899
  # @return [String]
2764
2900
  #
2901
+ # @!attribute [rw] attachment_network_acl_configuration
2902
+ # The rules that define how you manage the outbound traffic from kdb
2903
+ # network to your internal network.
2904
+ # @return [Array<Types::NetworkACLEntry>]
2905
+ #
2765
2906
  # @see http://docs.aws.amazon.com/goto/WebAPI/finspace-2021-03-12/TransitGatewayConfiguration AWS API Documentation
2766
2907
  #
2767
2908
  class TransitGatewayConfiguration < Struct.new(
2768
2909
  :transit_gateway_id,
2769
- :routable_cidr_space)
2910
+ :routable_cidr_space,
2911
+ :attachment_network_acl_configuration)
2770
2912
  SENSITIVE = []
2771
2913
  include Aws::Structure
2772
2914
  end
@@ -2853,19 +2995,28 @@ module Aws::Finspace
2853
2995
  #
2854
2996
  # @!attribute [rw] client_token
2855
2997
  # A token that ensures idempotency. This token expires in 10 minutes.
2998
+ #
2999
+ # **A suitable default value is auto-generated.** You should normally
3000
+ # not need to pass this option.
2856
3001
  # @return [String]
2857
3002
  #
2858
3003
  # @!attribute [rw] databases
2859
3004
  # The structure of databases mounted on the cluster.
2860
3005
  # @return [Array<Types::KxDatabaseConfiguration>]
2861
3006
  #
3007
+ # @!attribute [rw] deployment_configuration
3008
+ # The configuration that allows you to choose how you want to update
3009
+ # the databases on a cluster.
3010
+ # @return [Types::KxDeploymentConfiguration]
3011
+ #
2862
3012
  # @see http://docs.aws.amazon.com/goto/WebAPI/finspace-2021-03-12/UpdateKxClusterDatabasesRequest AWS API Documentation
2863
3013
  #
2864
3014
  class UpdateKxClusterDatabasesRequest < Struct.new(
2865
3015
  :environment_id,
2866
3016
  :cluster_name,
2867
3017
  :client_token,
2868
- :databases)
3018
+ :databases,
3019
+ :deployment_configuration)
2869
3020
  SENSITIVE = []
2870
3021
  include Aws::Structure
2871
3022
  end
@@ -3206,8 +3357,11 @@ module Aws::Finspace
3206
3357
  # @!attribute [rw] user_arn
3207
3358
  # The Amazon Resource Name (ARN) that identifies the user. For more
3208
3359
  # information about ARNs and how to use ARNs in policies, see [IAM
3209
- # Identifiers](IAM/latest/UserGuide/reference_identifiers.html) in the
3210
- # *IAM User Guide*.
3360
+ # Identifiers][1] in the *IAM User Guide*.
3361
+ #
3362
+ #
3363
+ #
3364
+ # [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_identifiers.html
3211
3365
  # @return [String]
3212
3366
  #
3213
3367
  # @!attribute [rw] environment_id
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-finspace/customizations'
52
52
  # @!group service
53
53
  module Aws::Finspace
54
54
 
55
- GEM_VERSION = '1.19.0'
55
+ GEM_VERSION = '1.20.0'
56
56
 
57
57
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-finspace
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.19.0
4
+ version: 1.20.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-07-11 00:00:00.000000000 Z
11
+ date: 2023-08-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core