aws-sdk-simspaceweaver 1.0.0 → 1.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d0ef30ace549e0c67f54369fec892ccf91035b9aa86914e204f189c49b143134
4
- data.tar.gz: b4b4ca530de911b98842008143fba46590e3974872ddacd9f27c20ab4ca900d6
3
+ metadata.gz: 4a5d4193bc5f2203532679a47cc99a16eddf38a776591ea03fcc2415b965f9f0
4
+ data.tar.gz: d9c94e80d7965b717ead660ba2a79c5a0edbaf8eedff3460d5b24bb3c9c34875
5
5
  SHA512:
6
- metadata.gz: d559d2cc54f2c9145c139c866635c3f9eef0caf6a045044a91645e5f7807d79063c9982a5522d942c9bfd75486a1177496e54013d1e03d6cc00d4a5854565629
7
- data.tar.gz: 052ef45103d2cee61a6bc67774c2a4b0d7abbf044d421bc0e10fc70b4909c7084826a93c1a91aa7c0645a838cda36eace3ac4c50a90877a3b97ebe7d067f8042
6
+ metadata.gz: ca85b231eddaac128837177df48c415b94459fb162066f240ae71ebf3a6e0dcfe5089d5b8df62941d7c00cb9071b9d418153ac76a1e8881509d9b131470abd2c
7
+ data.tar.gz: 59e170a5aa59b2e9250b692d6e9455f6a4f620a61542c7ad3eec8f76af0c5bdd3f19af0b7fe68a292d0c92a7fdefa74e7b279052c7665cdd6f012004ce053468
data/CHANGELOG.md CHANGED
@@ -1,6 +1,13 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.1.0 (2023-01-18)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ * Issue - Replace runtime endpoint resolution approach with generated ruby code.
10
+
4
11
  1.0.0 (2022-11-29)
5
12
  ------------------
6
13
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.0
1
+ 1.1.0
@@ -1024,7 +1024,7 @@ module Aws::SimSpaceWeaver
1024
1024
  params: params,
1025
1025
  config: config)
1026
1026
  context[:gem_name] = 'aws-sdk-simspaceweaver'
1027
- context[:gem_version] = '1.0.0'
1027
+ context[:gem_version] = '1.1.0'
1028
1028
  Seahorse::Client::Request.new(handlers, context)
1029
1029
  end
1030
1030
 
@@ -9,103 +9,43 @@
9
9
 
10
10
  module Aws::SimSpaceWeaver
11
11
  class EndpointProvider
12
- def initialize(rule_set = nil)
13
- @@rule_set ||= begin
14
- endpoint_rules = Aws::Json.load(Base64.decode64(RULES))
15
- Aws::Endpoints::RuleSet.new(
16
- version: endpoint_rules['version'],
17
- service_id: endpoint_rules['serviceId'],
18
- parameters: endpoint_rules['parameters'],
19
- rules: endpoint_rules['rules']
20
- )
12
+ def resolve_endpoint(parameters)
13
+ region = parameters.region
14
+ use_dual_stack = parameters.use_dual_stack
15
+ use_fips = parameters.use_fips
16
+ endpoint = parameters.endpoint
17
+ if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
18
+ if Aws::Endpoints::Matchers.set?(endpoint) && (url = Aws::Endpoints::Matchers.parse_url(endpoint))
19
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
20
+ raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
21
+ end
22
+ if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
23
+ raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
24
+ end
25
+ return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
26
+ end
27
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
28
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS")) && Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
29
+ return Aws::Endpoints::Endpoint.new(url: "https://simspaceweaver-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
30
+ end
31
+ raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
32
+ end
33
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
34
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
35
+ return Aws::Endpoints::Endpoint.new(url: "https://simspaceweaver-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
36
+ end
37
+ raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
38
+ end
39
+ if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
40
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
41
+ return Aws::Endpoints::Endpoint.new(url: "https://simspaceweaver.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
42
+ end
43
+ raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
44
+ end
45
+ return Aws::Endpoints::Endpoint.new(url: "https://simspaceweaver.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
21
46
  end
22
- @provider = Aws::Endpoints::RulesProvider.new(rule_set || @@rule_set)
23
- end
47
+ raise ArgumentError, 'No endpoint could be resolved'
24
48
 
25
- def resolve_endpoint(parameters)
26
- @provider.resolve_endpoint(parameters)
27
49
  end
28
-
29
- # @api private
30
- RULES = <<-JSON
31
- eyJ2ZXJzaW9uIjoiMS4wIiwicGFyYW1ldGVycyI6eyJSZWdpb24iOnsiYnVp
32
- bHRJbiI6IkFXUzo6UmVnaW9uIiwicmVxdWlyZWQiOmZhbHNlLCJkb2N1bWVu
33
- dGF0aW9uIjoiVGhlIEFXUyByZWdpb24gdXNlZCB0byBkaXNwYXRjaCB0aGUg
34
- cmVxdWVzdC4iLCJ0eXBlIjoiU3RyaW5nIn0sIlVzZUR1YWxTdGFjayI6eyJi
35
- dWlsdEluIjoiQVdTOjpVc2VEdWFsU3RhY2siLCJyZXF1aXJlZCI6dHJ1ZSwi
36
- ZGVmYXVsdCI6ZmFsc2UsImRvY3VtZW50YXRpb24iOiJXaGVuIHRydWUsIHVz
37
- ZSB0aGUgZHVhbC1zdGFjayBlbmRwb2ludC4gSWYgdGhlIGNvbmZpZ3VyZWQg
38
- ZW5kcG9pbnQgZG9lcyBub3Qgc3VwcG9ydCBkdWFsLXN0YWNrLCBkaXNwYXRj
39
- aGluZyB0aGUgcmVxdWVzdCBNQVkgcmV0dXJuIGFuIGVycm9yLiIsInR5cGUi
40
- OiJCb29sZWFuIn0sIlVzZUZJUFMiOnsiYnVpbHRJbiI6IkFXUzo6VXNlRklQ
41
- UyIsInJlcXVpcmVkIjp0cnVlLCJkZWZhdWx0IjpmYWxzZSwiZG9jdW1lbnRh
42
- dGlvbiI6IldoZW4gdHJ1ZSwgc2VuZCB0aGlzIHJlcXVlc3QgdG8gdGhlIEZJ
43
- UFMtY29tcGxpYW50IHJlZ2lvbmFsIGVuZHBvaW50LiBJZiB0aGUgY29uZmln
44
- dXJlZCBlbmRwb2ludCBkb2VzIG5vdCBoYXZlIGEgRklQUyBjb21wbGlhbnQg
45
- ZW5kcG9pbnQsIGRpc3BhdGNoaW5nIHRoZSByZXF1ZXN0IHdpbGwgcmV0dXJu
46
- IGFuIGVycm9yLiIsInR5cGUiOiJCb29sZWFuIn0sIkVuZHBvaW50Ijp7ImJ1
47
- aWx0SW4iOiJTREs6OkVuZHBvaW50IiwicmVxdWlyZWQiOmZhbHNlLCJkb2N1
48
- bWVudGF0aW9uIjoiT3ZlcnJpZGUgdGhlIGVuZHBvaW50IHVzZWQgdG8gc2Vu
49
- ZCB0aGlzIHJlcXVlc3QiLCJ0eXBlIjoiU3RyaW5nIn19LCJydWxlcyI6W3si
50
- Y29uZGl0aW9ucyI6W3siZm4iOiJhd3MucGFydGl0aW9uIiwiYXJndiI6W3si
51
- cmVmIjoiUmVnaW9uIn1dLCJhc3NpZ24iOiJQYXJ0aXRpb25SZXN1bHQifV0s
52
- InR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOlt7ImZuIjoi
53
- aXNTZXQiLCJhcmd2IjpbeyJyZWYiOiJFbmRwb2ludCJ9XX0seyJmbiI6InBh
54
- cnNlVVJMIiwiYXJndiI6W3sicmVmIjoiRW5kcG9pbnQifV0sImFzc2lnbiI6
55
- InVybCJ9XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6
56
- W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQ
57
- UyJ9LHRydWVdfV0sImVycm9yIjoiSW52YWxpZCBDb25maWd1cmF0aW9uOiBG
58
- SVBTIGFuZCBjdXN0b20gZW5kcG9pbnQgYXJlIG5vdCBzdXBwb3J0ZWQiLCJ0
59
- eXBlIjoiZXJyb3IifSx7ImNvbmRpdGlvbnMiOltdLCJ0eXBlIjoidHJlZSIs
60
- InJ1bGVzIjpbeyJjb25kaXRpb25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMi
61
- LCJhcmd2IjpbeyJyZWYiOiJVc2VEdWFsU3RhY2sifSx0cnVlXX1dLCJlcnJv
62
- ciI6IkludmFsaWQgQ29uZmlndXJhdGlvbjogRHVhbHN0YWNrIGFuZCBjdXN0
63
- b20gZW5kcG9pbnQgYXJlIG5vdCBzdXBwb3J0ZWQiLCJ0eXBlIjoiZXJyb3Ii
64
- fSx7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOnsicmVmIjoi
65
- RW5kcG9pbnQifSwicHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlw
66
- ZSI6ImVuZHBvaW50In1dfV19LHsiY29uZGl0aW9ucyI6W3siZm4iOiJib29s
67
- ZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQUyJ9LHRydWVdfSx7
68
- ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUR1YWxT
69
- dGFjayJ9LHRydWVdfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRp
70
- dGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVlLHsi
71
- Zm4iOiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0
72
- In0sInN1cHBvcnRzRklQUyJdfV19LHsiZm4iOiJib29sZWFuRXF1YWxzIiwi
73
- YXJndiI6W3RydWUseyJmbiI6ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQ
74
- YXJ0aXRpb25SZXN1bHQifSwic3VwcG9ydHNEdWFsU3RhY2siXX1dfV0sInR5
75
- cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2lu
76
- dCI6eyJ1cmwiOiJodHRwczovL3NpbXNwYWNld2VhdmVyLWZpcHMue1JlZ2lv
77
- bn0ue1BhcnRpdGlvblJlc3VsdCNkdWFsU3RhY2tEbnNTdWZmaXh9IiwicHJv
78
- cGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlwZSI6ImVuZHBvaW50In1d
79
- fSx7ImNvbmRpdGlvbnMiOltdLCJlcnJvciI6IkZJUFMgYW5kIER1YWxTdGFj
80
- ayBhcmUgZW5hYmxlZCwgYnV0IHRoaXMgcGFydGl0aW9uIGRvZXMgbm90IHN1
81
- cHBvcnQgb25lIG9yIGJvdGgiLCJ0eXBlIjoiZXJyb3IifV19LHsiY29uZGl0
82
- aW9ucyI6W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoi
83
- VXNlRklQUyJ9LHRydWVdfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNv
84
- bmRpdGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVl
85
- LHsiZm4iOiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVz
86
- dWx0In0sInN1cHBvcnRzRklQUyJdfV19XSwidHlwZSI6InRyZWUiLCJydWxl
87
- cyI6W3siY29uZGl0aW9ucyI6W10sImVuZHBvaW50Ijp7InVybCI6Imh0dHBz
88
- Oi8vc2ltc3BhY2V3ZWF2ZXItZmlwcy57UmVnaW9ufS57UGFydGl0aW9uUmVz
89
- dWx0I2Ruc1N1ZmZpeH0iLCJwcm9wZXJ0aWVzIjp7fSwiaGVhZGVycyI6e319
90
- LCJ0eXBlIjoiZW5kcG9pbnQifV19LHsiY29uZGl0aW9ucyI6W10sImVycm9y
91
- IjoiRklQUyBpcyBlbmFibGVkIGJ1dCB0aGlzIHBhcnRpdGlvbiBkb2VzIG5v
92
- dCBzdXBwb3J0IEZJUFMiLCJ0eXBlIjoiZXJyb3IifV19LHsiY29uZGl0aW9u
93
- cyI6W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNl
94
- RHVhbFN0YWNrIn0sdHJ1ZV19XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3si
95
- Y29uZGl0aW9ucyI6W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3Ry
96
- dWUseyJmbiI6ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQYXJ0aXRpb25S
97
- ZXN1bHQifSwic3VwcG9ydHNEdWFsU3RhY2siXX1dfV0sInR5cGUiOiJ0cmVl
98
- IiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1cmwi
99
- OiJodHRwczovL3NpbXNwYWNld2VhdmVyLntSZWdpb259LntQYXJ0aXRpb25S
100
- ZXN1bHQjZHVhbFN0YWNrRG5zU3VmZml4fSIsInByb3BlcnRpZXMiOnt9LCJo
101
- ZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9XX0seyJjb25kaXRpb25z
102
- IjpbXSwiZXJyb3IiOiJEdWFsU3RhY2sgaXMgZW5hYmxlZCBidXQgdGhpcyBw
103
- YXJ0aXRpb24gZG9lcyBub3Qgc3VwcG9ydCBEdWFsU3RhY2siLCJ0eXBlIjoi
104
- ZXJyb3IifV19LHsiY29uZGl0aW9ucyI6W10sImVuZHBvaW50Ijp7InVybCI6
105
- Imh0dHBzOi8vc2ltc3BhY2V3ZWF2ZXIue1JlZ2lvbn0ue1BhcnRpdGlvblJl
106
- c3VsdCNkbnNTdWZmaXh9IiwicHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9
107
- fSwidHlwZSI6ImVuZHBvaW50In1dfV19
108
-
109
- JSON
110
50
  end
111
51
  end
@@ -62,15 +62,6 @@ module Aws::SimSpaceWeaver
62
62
  include Aws::Structure
63
63
  end
64
64
 
65
- # @note When making an API call, you may pass DeleteAppInput
66
- # data as a hash:
67
- #
68
- # {
69
- # app: "SimSpaceWeaverResourceName", # required
70
- # domain: "SimSpaceWeaverResourceName", # required
71
- # simulation: "SimSpaceWeaverResourceName", # required
72
- # }
73
- #
74
65
  # @!attribute [rw] app
75
66
  # The name of the app.
76
67
  # @return [String]
@@ -97,13 +88,6 @@ module Aws::SimSpaceWeaver
97
88
  #
98
89
  class DeleteAppOutput < Aws::EmptyStructure; end
99
90
 
100
- # @note When making an API call, you may pass DeleteSimulationInput
101
- # data as a hash:
102
- #
103
- # {
104
- # simulation: "SimSpaceWeaverResourceName", # required
105
- # }
106
- #
107
91
  # @!attribute [rw] simulation
108
92
  # The name of the simulation.
109
93
  # @return [String]
@@ -120,15 +104,6 @@ module Aws::SimSpaceWeaver
120
104
  #
121
105
  class DeleteSimulationOutput < Aws::EmptyStructure; end
122
106
 
123
- # @note When making an API call, you may pass DescribeAppInput
124
- # data as a hash:
125
- #
126
- # {
127
- # app: "SimSpaceWeaverResourceName", # required
128
- # domain: "SimSpaceWeaverResourceName", # required
129
- # simulation: "SimSpaceWeaverResourceName", # required
130
- # }
131
- #
132
107
  # @!attribute [rw] app
133
108
  # The name of the app.
134
109
  # @return [String]
@@ -200,13 +175,6 @@ module Aws::SimSpaceWeaver
200
175
  include Aws::Structure
201
176
  end
202
177
 
203
- # @note When making an API call, you may pass DescribeSimulationInput
204
- # data as a hash:
205
- #
206
- # {
207
- # simulation: "SimSpaceWeaverResourceName", # required
208
- # }
209
- #
210
178
  # @!attribute [rw] simulation
211
179
  # The name of the simulation.
212
180
  # @return [String]
@@ -379,13 +347,6 @@ module Aws::SimSpaceWeaver
379
347
  # Options that apply when the app starts. These optiAons override
380
348
  # default behavior.
381
349
  #
382
- # @note When making an API call, you may pass LaunchOverrides
383
- # data as a hash:
384
- #
385
- # {
386
- # launch_commands: ["NonEmptyString"],
387
- # }
388
- #
389
350
  # @!attribute [rw] launch_commands
390
351
  # App launch commands and command line parameters that override the
391
352
  # launch command configured in the simulation schema.
@@ -399,16 +360,6 @@ module Aws::SimSpaceWeaver
399
360
  include Aws::Structure
400
361
  end
401
362
 
402
- # @note When making an API call, you may pass ListAppsInput
403
- # data as a hash:
404
- #
405
- # {
406
- # domain: "SimSpaceWeaverResourceName",
407
- # max_results: 1,
408
- # next_token: "OptionalString",
409
- # simulation: "SimSpaceWeaverResourceName", # required
410
- # }
411
- #
412
363
  # @!attribute [rw] domain
413
364
  # The name of the domain that you want to list apps for.
414
365
  # @return [String]
@@ -465,14 +416,6 @@ module Aws::SimSpaceWeaver
465
416
  include Aws::Structure
466
417
  end
467
418
 
468
- # @note When making an API call, you may pass ListSimulationsInput
469
- # data as a hash:
470
- #
471
- # {
472
- # max_results: 1,
473
- # next_token: "OptionalString",
474
- # }
475
- #
476
419
  # @!attribute [rw] max_results
477
420
  # The maximum number of simulations to list.
478
421
  # @return [Integer]
@@ -519,13 +462,6 @@ module Aws::SimSpaceWeaver
519
462
  include Aws::Structure
520
463
  end
521
464
 
522
- # @note When making an API call, you may pass ListTagsForResourceInput
523
- # data as a hash:
524
- #
525
- # {
526
- # resource_arn: "SimSpaceWeaverArn", # required
527
- # }
528
- #
529
465
  # @!attribute [rw] resource_arn
530
466
  # The Amazon Resource Name (ARN) of the resource. For more information
531
467
  # about ARNs, see [Amazon Resource Names (ARNs)][1] in the *Amazon Web
@@ -641,14 +577,6 @@ module Aws::SimSpaceWeaver
641
577
  #
642
578
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/Welcome.html
643
579
  #
644
- # @note When making an API call, you may pass S3Location
645
- # data as a hash:
646
- #
647
- # {
648
- # bucket_name: "BucketName",
649
- # object_key: "ObjectKey",
650
- # }
651
- #
652
580
  # @!attribute [rw] bucket_name
653
581
  # The name of an Amazon S3 bucket. For more information about buckets,
654
582
  # see [Creating, configuring, and working with Amazon S3 buckets][1]
@@ -839,20 +767,6 @@ module Aws::SimSpaceWeaver
839
767
  include Aws::Structure
840
768
  end
841
769
 
842
- # @note When making an API call, you may pass StartAppInput
843
- # data as a hash:
844
- #
845
- # {
846
- # client_token: "ClientToken",
847
- # description: "Description",
848
- # domain: "SimSpaceWeaverResourceName", # required
849
- # launch_overrides: {
850
- # launch_commands: ["NonEmptyString"],
851
- # },
852
- # name: "SimSpaceWeaverResourceName", # required
853
- # simulation: "SimSpaceWeaverResourceName", # required
854
- # }
855
- #
856
770
  # @!attribute [rw] client_token
857
771
  # A value that you provide to ensure that repeated calls to this API
858
772
  # operation using the same parameters complete only once. A
@@ -919,13 +833,6 @@ module Aws::SimSpaceWeaver
919
833
  include Aws::Structure
920
834
  end
921
835
 
922
- # @note When making an API call, you may pass StartClockInput
923
- # data as a hash:
924
- #
925
- # {
926
- # simulation: "SimSpaceWeaverResourceName", # required
927
- # }
928
- #
929
836
  # @!attribute [rw] simulation
930
837
  # The name of the simulation.
931
838
  # @return [String]
@@ -942,24 +849,6 @@ module Aws::SimSpaceWeaver
942
849
  #
943
850
  class StartClockOutput < Aws::EmptyStructure; end
944
851
 
945
- # @note When making an API call, you may pass StartSimulationInput
946
- # data as a hash:
947
- #
948
- # {
949
- # client_token: "ClientToken",
950
- # description: "Description",
951
- # maximum_duration: "TimeToLiveString",
952
- # name: "SimSpaceWeaverResourceName", # required
953
- # role_arn: "RoleArn", # required
954
- # schema_s3_location: { # required
955
- # bucket_name: "BucketName",
956
- # object_key: "ObjectKey",
957
- # },
958
- # tags: {
959
- # "TagKey" => "TagValue",
960
- # },
961
- # }
962
- #
963
852
  # @!attribute [rw] client_token
964
853
  # A value that you provide to ensure that repeated calls to this API
965
854
  # operation using the same parameters complete only once. A
@@ -1062,15 +951,6 @@ module Aws::SimSpaceWeaver
1062
951
  include Aws::Structure
1063
952
  end
1064
953
 
1065
- # @note When making an API call, you may pass StopAppInput
1066
- # data as a hash:
1067
- #
1068
- # {
1069
- # app: "SimSpaceWeaverResourceName", # required
1070
- # domain: "SimSpaceWeaverResourceName", # required
1071
- # simulation: "SimSpaceWeaverResourceName", # required
1072
- # }
1073
- #
1074
954
  # @!attribute [rw] app
1075
955
  # The name of the app.
1076
956
  # @return [String]
@@ -1097,13 +977,6 @@ module Aws::SimSpaceWeaver
1097
977
  #
1098
978
  class StopAppOutput < Aws::EmptyStructure; end
1099
979
 
1100
- # @note When making an API call, you may pass StopClockInput
1101
- # data as a hash:
1102
- #
1103
- # {
1104
- # simulation: "SimSpaceWeaverResourceName", # required
1105
- # }
1106
- #
1107
980
  # @!attribute [rw] simulation
1108
981
  # The name of the simulation.
1109
982
  # @return [String]
@@ -1120,13 +993,6 @@ module Aws::SimSpaceWeaver
1120
993
  #
1121
994
  class StopClockOutput < Aws::EmptyStructure; end
1122
995
 
1123
- # @note When making an API call, you may pass StopSimulationInput
1124
- # data as a hash:
1125
- #
1126
- # {
1127
- # simulation: "SimSpaceWeaverResourceName", # required
1128
- # }
1129
- #
1130
996
  # @!attribute [rw] simulation
1131
997
  # The name of the simulation.
1132
998
  # @return [String]
@@ -1143,16 +1009,6 @@ module Aws::SimSpaceWeaver
1143
1009
  #
1144
1010
  class StopSimulationOutput < Aws::EmptyStructure; end
1145
1011
 
1146
- # @note When making an API call, you may pass TagResourceInput
1147
- # data as a hash:
1148
- #
1149
- # {
1150
- # resource_arn: "SimSpaceWeaverArn", # required
1151
- # tags: { # required
1152
- # "TagKey" => "TagValue",
1153
- # },
1154
- # }
1155
- #
1156
1012
  # @!attribute [rw] resource_arn
1157
1013
  # The Amazon Resource Name (ARN) of the resource that you want to add
1158
1014
  # tags to. For more information about ARNs, see [Amazon Resource Names
@@ -1191,14 +1047,6 @@ module Aws::SimSpaceWeaver
1191
1047
  include Aws::Structure
1192
1048
  end
1193
1049
 
1194
- # @note When making an API call, you may pass UntagResourceInput
1195
- # data as a hash:
1196
- #
1197
- # {
1198
- # resource_arn: "SimSpaceWeaverArn", # required
1199
- # tag_keys: ["TagKey"], # required
1200
- # }
1201
- #
1202
1050
  # @!attribute [rw] resource_arn
1203
1051
  # The Amazon Resource Name (ARN) of the resource that you want to
1204
1052
  # remove tags from. For more information about ARNs, see [Amazon
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-simspaceweaver/customizations'
52
52
  # @!group service
53
53
  module Aws::SimSpaceWeaver
54
54
 
55
- GEM_VERSION = '1.0.0'
55
+ GEM_VERSION = '1.1.0'
56
56
 
57
57
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-simspaceweaver
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.1.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: 2022-11-29 00:00:00.000000000 Z
11
+ date: 2023-01-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core