aws-sdk-ssmsap 1.1.0 → 1.2.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: fd5a096527f6621a6479df566bdf07980025c3af85e6151958711b15253901b9
4
- data.tar.gz: 5a6e86c206d360187355409fd7600d2aa61edb3890d189a49058ba93710c11d8
3
+ metadata.gz: b790c4713bf855cab42c00bf2788ee1f3e1496b5d34830e28de54938615df570
4
+ data.tar.gz: 455b5b7c4111d2ea77a093393ba8e2568251136fde49ca67401632f39320aeab
5
5
  SHA512:
6
- metadata.gz: b58229a79bafc531e36e780dae52a3ed2fd35d34b34d2cdd0a2e66e7e2796b6e63f579c0f48a97b001843f80d8ababc0587ad6ff888b7c2326e2869c5bddc24d
7
- data.tar.gz: 477b7072f83c4a8b15133bfe98a1bde7bb14a0755b83e072c9cd26f5b792e3e15341b5aa931780ae9c27d2a87b003582e25e240a56136d1a57a03ceaa611fd84
6
+ metadata.gz: c286ed08d461a5e25d072132a61dddd2b4b456bd6b90cccac900f35644684e12c691b98ea078b0ad9eb79d25044eec9b749f53460fcaa986f269da1e07025902
7
+ data.tar.gz: 52effe61cc5b119358b9ce80207a233b2fc0d686a2a21f71e13828c8a6247726a7a356fd1341938eb59d4132b92ebcc741a2648ad60f61c985ca5bd22eb3c616
data/CHANGELOG.md CHANGED
@@ -1,6 +1,13 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.2.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.1.0 (2022-11-18)
5
12
  ------------------
6
13
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.1.0
1
+ 1.2.0
@@ -1006,7 +1006,7 @@ module Aws::SsmSap
1006
1006
  params: params,
1007
1007
  config: config)
1008
1008
  context[:gem_name] = 'aws-sdk-ssmsap'
1009
- context[:gem_version] = '1.1.0'
1009
+ context[:gem_version] = '1.2.0'
1010
1010
  Seahorse::Client::Request.new(handlers, context)
1011
1011
  end
1012
1012
 
@@ -9,102 +9,43 @@
9
9
 
10
10
  module Aws::SsmSap
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://ssm-sap-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://ssm-sap-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://ssm-sap.#{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://ssm-sap.#{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
- bHRJbiI6IkFXUzo6UmVnaW9uIiwicmVxdWlyZWQiOnRydWUsImRvY3VtZW50
33
- YXRpb24iOiJUaGUgQVdTIHJlZ2lvbiB1c2VkIHRvIGRpc3BhdGNoIHRoZSBy
34
- ZXF1ZXN0LiIsInR5cGUiOiJTdHJpbmcifSwiVXNlRHVhbFN0YWNrIjp7ImJ1
35
- aWx0SW4iOiJBV1M6OlVzZUR1YWxTdGFjayIsInJlcXVpcmVkIjp0cnVlLCJk
36
- ZWZhdWx0IjpmYWxzZSwiZG9jdW1lbnRhdGlvbiI6IldoZW4gdHJ1ZSwgdXNl
37
- IHRoZSBkdWFsLXN0YWNrIGVuZHBvaW50LiBJZiB0aGUgY29uZmlndXJlZCBl
38
- bmRwb2ludCBkb2VzIG5vdCBzdXBwb3J0IGR1YWwtc3RhY2ssIGRpc3BhdGNo
39
- aW5nIHRoZSByZXF1ZXN0IE1BWSByZXR1cm4gYW4gZXJyb3IuIiwidHlwZSI6
40
- IkJvb2xlYW4ifSwiVXNlRklQUyI6eyJidWlsdEluIjoiQVdTOjpVc2VGSVBT
41
- IiwicmVxdWlyZWQiOnRydWUsImRlZmF1bHQiOmZhbHNlLCJkb2N1bWVudGF0
42
- aW9uIjoiV2hlbiB0cnVlLCBzZW5kIHRoaXMgcmVxdWVzdCB0byB0aGUgRklQ
43
- Uy1jb21wbGlhbnQgcmVnaW9uYWwgZW5kcG9pbnQuIElmIHRoZSBjb25maWd1
44
- cmVkIGVuZHBvaW50IGRvZXMgbm90IGhhdmUgYSBGSVBTIGNvbXBsaWFudCBl
45
- bmRwb2ludCwgZGlzcGF0Y2hpbmcgdGhlIHJlcXVlc3Qgd2lsbCByZXR1cm4g
46
- YW4gZXJyb3IuIiwidHlwZSI6IkJvb2xlYW4ifSwiRW5kcG9pbnQiOnsiYnVp
47
- bHRJbiI6IlNESzo6RW5kcG9pbnQiLCJyZXF1aXJlZCI6ZmFsc2UsImRvY3Vt
48
- ZW50YXRpb24iOiJPdmVycmlkZSB0aGUgZW5kcG9pbnQgdXNlZCB0byBzZW5k
49
- IHRoaXMgcmVxdWVzdCIsInR5cGUiOiJTdHJpbmcifX0sInJ1bGVzIjpbeyJj
50
- b25kaXRpb25zIjpbeyJmbiI6ImF3cy5wYXJ0aXRpb24iLCJhcmd2IjpbeyJy
51
- ZWYiOiJSZWdpb24ifV0sImFzc2lnbiI6IlBhcnRpdGlvblJlc3VsdCJ9XSwi
52
- dHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6W3siZm4iOiJp
53
- c1NldCIsImFyZ3YiOlt7InJlZiI6IkVuZHBvaW50In1dfSx7ImZuIjoicGFy
54
- c2VVUkwiLCJhcmd2IjpbeyJyZWYiOiJFbmRwb2ludCJ9XSwiYXNzaWduIjoi
55
- dXJsIn1dLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRpb25zIjpb
56
- eyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbeyJyZWYiOiJVc2VGSVBT
57
- In0sdHJ1ZV19XSwiZXJyb3IiOiJJbnZhbGlkIENvbmZpZ3VyYXRpb246IEZJ
58
- UFMgYW5kIGN1c3RvbSBlbmRwb2ludCBhcmUgbm90IHN1cHBvcnRlZCIsInR5
59
- cGUiOiJlcnJvciJ9LHsiY29uZGl0aW9ucyI6W10sInR5cGUiOiJ0cmVlIiwi
60
- cnVsZXMiOlt7ImNvbmRpdGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIs
61
- ImFyZ3YiOlt7InJlZiI6IlVzZUR1YWxTdGFjayJ9LHRydWVdfV0sImVycm9y
62
- IjoiSW52YWxpZCBDb25maWd1cmF0aW9uOiBEdWFsc3RhY2sgYW5kIGN1c3Rv
63
- bSBlbmRwb2ludCBhcmUgbm90IHN1cHBvcnRlZCIsInR5cGUiOiJlcnJvciJ9
64
- LHsiY29uZGl0aW9ucyI6W10sImVuZHBvaW50Ijp7InVybCI6eyJyZWYiOiJF
65
- bmRwb2ludCJ9LCJwcm9wZXJ0aWVzIjp7fSwiaGVhZGVycyI6e319LCJ0eXBl
66
- IjoiZW5kcG9pbnQifV19XX0seyJjb25kaXRpb25zIjpbeyJmbiI6ImJvb2xl
67
- YW5FcXVhbHMiLCJhcmd2IjpbeyJyZWYiOiJVc2VGSVBTIn0sdHJ1ZV19LHsi
68
- Zm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRHVhbFN0
69
- YWNrIn0sdHJ1ZV19XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0
70
- aW9ucyI6W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3RydWUseyJm
71
- biI6ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQYXJ0aXRpb25SZXN1bHQi
72
- fSwic3VwcG9ydHNGSVBTIl19XX0seyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJh
73
- cmd2IjpbdHJ1ZSx7ImZuIjoiZ2V0QXR0ciIsImFyZ3YiOlt7InJlZiI6IlBh
74
- cnRpdGlvblJlc3VsdCJ9LCJzdXBwb3J0c0R1YWxTdGFjayJdfV19XSwidHlw
75
- ZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6W10sImVuZHBvaW50
76
- Ijp7InVybCI6Imh0dHBzOi8vc3NtLXNhcC1maXBzLntSZWdpb259LntQYXJ0
77
- aXRpb25SZXN1bHQjZHVhbFN0YWNrRG5zU3VmZml4fSIsInByb3BlcnRpZXMi
78
- Ont9LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9XX0seyJjb25k
79
- aXRpb25zIjpbXSwiZXJyb3IiOiJGSVBTIGFuZCBEdWFsU3RhY2sgYXJlIGVu
80
- YWJsZWQsIGJ1dCB0aGlzIHBhcnRpdGlvbiBkb2VzIG5vdCBzdXBwb3J0IG9u
81
- ZSBvciBib3RoIiwidHlwZSI6ImVycm9yIn1dfSx7ImNvbmRpdGlvbnMiOlt7
82
- ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUZJUFMi
83
- fSx0cnVlXX1dLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRpb25z
84
- IjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbdHJ1ZSx7ImZuIjoi
85
- Z2V0QXR0ciIsImFyZ3YiOlt7InJlZiI6IlBhcnRpdGlvblJlc3VsdCJ9LCJz
86
- dXBwb3J0c0ZJUFMiXX1dfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNv
87
- bmRpdGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOiJodHRwczovL3NzbS1z
88
- YXAtZmlwcy57UmVnaW9ufS57UGFydGl0aW9uUmVzdWx0I2Ruc1N1ZmZpeH0i
89
- LCJwcm9wZXJ0aWVzIjp7fSwiaGVhZGVycyI6e319LCJ0eXBlIjoiZW5kcG9p
90
- bnQifV19LHsiY29uZGl0aW9ucyI6W10sImVycm9yIjoiRklQUyBpcyBlbmFi
91
- bGVkIGJ1dCB0aGlzIHBhcnRpdGlvbiBkb2VzIG5vdCBzdXBwb3J0IEZJUFMi
92
- LCJ0eXBlIjoiZXJyb3IifV19LHsiY29uZGl0aW9ucyI6W3siZm4iOiJib29s
93
- ZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRHVhbFN0YWNrIn0sdHJ1
94
- ZV19XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6W3si
95
- Zm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3RydWUseyJmbiI6ImdldEF0
96
- dHIiLCJhcmd2IjpbeyJyZWYiOiJQYXJ0aXRpb25SZXN1bHQifSwic3VwcG9y
97
- dHNEdWFsU3RhY2siXX1dfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNv
98
- bmRpdGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOiJodHRwczovL3NzbS1z
99
- YXAue1JlZ2lvbn0ue1BhcnRpdGlvblJlc3VsdCNkdWFsU3RhY2tEbnNTdWZm
100
- aXh9IiwicHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlwZSI6ImVu
101
- ZHBvaW50In1dfSx7ImNvbmRpdGlvbnMiOltdLCJlcnJvciI6IkR1YWxTdGFj
102
- ayBpcyBlbmFibGVkIGJ1dCB0aGlzIHBhcnRpdGlvbiBkb2VzIG5vdCBzdXBw
103
- b3J0IER1YWxTdGFjayIsInR5cGUiOiJlcnJvciJ9XX0seyJjb25kaXRpb25z
104
- IjpbXSwiZW5kcG9pbnQiOnsidXJsIjoiaHR0cHM6Ly9zc20tc2FwLntSZWdp
105
- b259LntQYXJ0aXRpb25SZXN1bHQjZG5zU3VmZml4fSIsInByb3BlcnRpZXMi
106
- Ont9LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9XX1dfQ==
107
-
108
- JSON
109
50
  end
110
51
  end
@@ -49,15 +49,6 @@ module Aws::SsmSap
49
49
  include Aws::Structure
50
50
  end
51
51
 
52
- # @note When making an API call, you may pass ApplicationCredential
53
- # data as a hash:
54
- #
55
- # {
56
- # database_name: "DatabaseName", # required
57
- # credential_type: "ADMIN", # required, accepts ADMIN
58
- # secret_id: "SecretId", # required
59
- # }
60
- #
61
52
  # @!attribute [rw] database_name
62
53
  # @return [String]
63
54
  #
@@ -255,15 +246,6 @@ module Aws::SsmSap
255
246
  include Aws::Structure
256
247
  end
257
248
 
258
- # @note When making an API call, you may pass DeleteResourcePermissionInput
259
- # data as a hash:
260
- #
261
- # {
262
- # action_type: "RESTORE", # accepts RESTORE
263
- # source_resource_arn: "Arn",
264
- # resource_arn: "Arn", # required
265
- # }
266
- #
267
249
  # @!attribute [rw] action_type
268
250
  # @return [String]
269
251
  #
@@ -294,13 +276,6 @@ module Aws::SsmSap
294
276
  include Aws::Structure
295
277
  end
296
278
 
297
- # @note When making an API call, you may pass DeregisterApplicationInput
298
- # data as a hash:
299
- #
300
- # {
301
- # application_id: "ApplicationId", # required
302
- # }
303
- #
304
279
  # @!attribute [rw] application_id
305
280
  # @return [String]
306
281
  #
@@ -316,14 +291,6 @@ module Aws::SsmSap
316
291
  #
317
292
  class DeregisterApplicationOutput < Aws::EmptyStructure; end
318
293
 
319
- # @note When making an API call, you may pass GetApplicationInput
320
- # data as a hash:
321
- #
322
- # {
323
- # application_id: "ApplicationId",
324
- # application_arn: "SsmSapArn",
325
- # }
326
- #
327
294
  # @!attribute [rw] application_id
328
295
  # @return [String]
329
296
  #
@@ -354,14 +321,6 @@ module Aws::SsmSap
354
321
  include Aws::Structure
355
322
  end
356
323
 
357
- # @note When making an API call, you may pass GetComponentInput
358
- # data as a hash:
359
- #
360
- # {
361
- # application_id: "ApplicationId", # required
362
- # component_id: "ComponentId", # required
363
- # }
364
- #
365
324
  # @!attribute [rw] application_id
366
325
  # @return [String]
367
326
  #
@@ -388,16 +347,6 @@ module Aws::SsmSap
388
347
  include Aws::Structure
389
348
  end
390
349
 
391
- # @note When making an API call, you may pass GetDatabaseInput
392
- # data as a hash:
393
- #
394
- # {
395
- # application_id: "ApplicationId",
396
- # component_id: "ComponentId",
397
- # database_id: "DatabaseId",
398
- # database_arn: "SsmSapArn",
399
- # }
400
- #
401
350
  # @!attribute [rw] application_id
402
351
  # @return [String]
403
352
  #
@@ -436,13 +385,6 @@ module Aws::SsmSap
436
385
  include Aws::Structure
437
386
  end
438
387
 
439
- # @note When making an API call, you may pass GetOperationInput
440
- # data as a hash:
441
- #
442
- # {
443
- # operation_id: "OperationId", # required
444
- # }
445
- #
446
388
  # @!attribute [rw] operation_id
447
389
  # @return [String]
448
390
  #
@@ -465,14 +407,6 @@ module Aws::SsmSap
465
407
  include Aws::Structure
466
408
  end
467
409
 
468
- # @note When making an API call, you may pass GetResourcePermissionInput
469
- # data as a hash:
470
- #
471
- # {
472
- # action_type: "RESTORE", # accepts RESTORE
473
- # resource_arn: "Arn", # required
474
- # }
475
- #
476
410
  # @!attribute [rw] action_type
477
411
  # @return [String]
478
412
  #
@@ -533,14 +467,6 @@ module Aws::SsmSap
533
467
  include Aws::Structure
534
468
  end
535
469
 
536
- # @note When making an API call, you may pass ListApplicationsInput
537
- # data as a hash:
538
- #
539
- # {
540
- # next_token: "NextToken",
541
- # max_results: 1,
542
- # }
543
- #
544
470
  # @!attribute [rw] next_token
545
471
  # @return [String]
546
472
  #
@@ -571,15 +497,6 @@ module Aws::SsmSap
571
497
  include Aws::Structure
572
498
  end
573
499
 
574
- # @note When making an API call, you may pass ListComponentsInput
575
- # data as a hash:
576
- #
577
- # {
578
- # application_id: "ApplicationId",
579
- # next_token: "NextToken",
580
- # max_results: 1,
581
- # }
582
- #
583
500
  # @!attribute [rw] application_id
584
501
  # @return [String]
585
502
  #
@@ -614,16 +531,6 @@ module Aws::SsmSap
614
531
  include Aws::Structure
615
532
  end
616
533
 
617
- # @note When making an API call, you may pass ListDatabasesInput
618
- # data as a hash:
619
- #
620
- # {
621
- # application_id: "ApplicationId",
622
- # component_id: "ComponentId",
623
- # next_token: "NextToken",
624
- # max_results: 1,
625
- # }
626
- #
627
534
  # @!attribute [rw] application_id
628
535
  # @return [String]
629
536
  #
@@ -662,13 +569,6 @@ module Aws::SsmSap
662
569
  include Aws::Structure
663
570
  end
664
571
 
665
- # @note When making an API call, you may pass ListTagsForResourceRequest
666
- # data as a hash:
667
- #
668
- # {
669
- # resource_arn: "SsmSapArn", # required
670
- # }
671
- #
672
572
  # @!attribute [rw] resource_arn
673
573
  # @return [String]
674
574
  #
@@ -742,15 +642,6 @@ module Aws::SsmSap
742
642
  include Aws::Structure
743
643
  end
744
644
 
745
- # @note When making an API call, you may pass PutResourcePermissionInput
746
- # data as a hash:
747
- #
748
- # {
749
- # action_type: "RESTORE", # required, accepts RESTORE
750
- # source_resource_arn: "Arn", # required
751
- # resource_arn: "Arn", # required
752
- # }
753
- #
754
645
  # @!attribute [rw] action_type
755
646
  # @return [String]
756
647
  #
@@ -781,27 +672,6 @@ module Aws::SsmSap
781
672
  include Aws::Structure
782
673
  end
783
674
 
784
- # @note When making an API call, you may pass RegisterApplicationInput
785
- # data as a hash:
786
- #
787
- # {
788
- # application_id: "ApplicationId", # required
789
- # application_type: "HANA", # required, accepts HANA
790
- # instances: ["InstanceId"], # required
791
- # sap_instance_number: "SAPInstanceNumber",
792
- # sid: "SID",
793
- # tags: {
794
- # "TagKey" => "TagValue",
795
- # },
796
- # credentials: [ # required
797
- # {
798
- # database_name: "DatabaseName", # required
799
- # credential_type: "ADMIN", # required, accepts ADMIN
800
- # secret_id: "SecretId", # required
801
- # },
802
- # ],
803
- # }
804
- #
805
675
  # @!attribute [rw] application_id
806
676
  # @return [String]
807
677
  #
@@ -863,16 +733,6 @@ module Aws::SsmSap
863
733
  include Aws::Structure
864
734
  end
865
735
 
866
- # @note When making an API call, you may pass TagResourceRequest
867
- # data as a hash:
868
- #
869
- # {
870
- # resource_arn: "SsmSapArn", # required
871
- # tags: { # required
872
- # "TagKey" => "TagValue",
873
- # },
874
- # }
875
- #
876
736
  # @!attribute [rw] resource_arn
877
737
  # @return [String]
878
738
  #
@@ -892,14 +752,6 @@ module Aws::SsmSap
892
752
  #
893
753
  class TagResourceResponse < Aws::EmptyStructure; end
894
754
 
895
- # @note When making an API call, you may pass UntagResourceRequest
896
- # data as a hash:
897
- #
898
- # {
899
- # resource_arn: "SsmSapArn", # required
900
- # tag_keys: ["TagKey"], # required
901
- # }
902
- #
903
755
  # @!attribute [rw] resource_arn
904
756
  # @return [String]
905
757
  #
@@ -921,27 +773,6 @@ module Aws::SsmSap
921
773
  #
922
774
  class UntagResourceResponse < Aws::EmptyStructure; end
923
775
 
924
- # @note When making an API call, you may pass UpdateApplicationSettingsInput
925
- # data as a hash:
926
- #
927
- # {
928
- # application_id: "ApplicationId", # required
929
- # credentials_to_add_or_update: [
930
- # {
931
- # database_name: "DatabaseName", # required
932
- # credential_type: "ADMIN", # required, accepts ADMIN
933
- # secret_id: "SecretId", # required
934
- # },
935
- # ],
936
- # credentials_to_remove: [
937
- # {
938
- # database_name: "DatabaseName", # required
939
- # credential_type: "ADMIN", # required, accepts ADMIN
940
- # secret_id: "SecretId", # required
941
- # },
942
- # ],
943
- # }
944
- #
945
776
  # @!attribute [rw] application_id
946
777
  # @return [String]
947
778
  #
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-ssmsap/customizations'
52
52
  # @!group service
53
53
  module Aws::SsmSap
54
54
 
55
- GEM_VERSION = '1.1.0'
55
+ GEM_VERSION = '1.2.0'
56
56
 
57
57
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-ssmsap
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0
4
+ version: 1.2.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-18 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