aws-sdk-chimesdkidentity 1.10.0 → 1.11.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: 6f7296852cae893206f8e4c7d7d231ef3a268fdecacd4d9e23b6893757895444
4
- data.tar.gz: 83cd8f6305c98127c6e4a2517886821e29df7ba0d8ef1f139bb5fcb448349c70
3
+ metadata.gz: 531e842c202cbb689b306754f9ffc93578c0ee41162404409d4221eca8dac8b5
4
+ data.tar.gz: 6249da19fe0d96375135287ae760c5caa46b0ae2da0236dcb0e036a25fddb380
5
5
  SHA512:
6
- metadata.gz: cb556d18849ee10c3fca3c85f9909a14410f0919ec12c1a98a93c9a0abe11e9bdf00da4e72cb8f540e2610eef7a81dbb2c45decbb49f39d4ce4934ea8c65ebfd
7
- data.tar.gz: f7dc9778bc400ee423f4cf863afbe1237824595e00191ffea3ddc031501b7fd2dcbb340562f6c82a0297d18fbaf43123d85840d0977481167f1f6df37856c171
6
+ metadata.gz: e1e400e5d2a8467cc4f43ed98194787ff27f021d7d60aa178ad2e4e832650cfc93f34899015d990e59ea904dc144bf637d4989f9eb9ff24330a8739d61fc71bc
7
+ data.tar.gz: 435b54afa503e08a9dc745ac75edbb59c4daf7f74237451b09b281f49e0a19556154662847d606a77aec79fbb42d67b82276545e07765e66b3325588744dbb34
data/CHANGELOG.md CHANGED
@@ -1,6 +1,13 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.11.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.10.0 (2022-10-25)
5
12
  ------------------
6
13
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.10.0
1
+ 1.11.0
@@ -1304,7 +1304,7 @@ module Aws::ChimeSDKIdentity
1304
1304
  params: params,
1305
1305
  config: config)
1306
1306
  context[:gem_name] = 'aws-sdk-chimesdkidentity'
1307
- context[:gem_version] = '1.10.0'
1307
+ context[:gem_version] = '1.11.0'
1308
1308
  Seahorse::Client::Request.new(handlers, context)
1309
1309
  end
1310
1310
 
@@ -9,104 +9,43 @@
9
9
 
10
10
  module Aws::ChimeSDKIdentity
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://identity-chime-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://identity-chime-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://identity-chime.#{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://identity-chime.#{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
- dCI6eyJ1cmwiOiJodHRwczovL2lkZW50aXR5LWNoaW1lLWZpcHMue1JlZ2lv
77
- bn0ue1BhcnRpdGlvblJlc3VsdCNkdWFsU3RhY2tEbnNTdWZmaXh9IiwicHJv
78
- cGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlwZSI6ImVuZHBvaW50In1d
79
- fSx7ImNvbmRpdGlvbnMiOltdLCJlcnJvciI6IkZJUFMgYW5kIER1YWxTdGFj
80
- ayBhcmUgZW5hYmxlZCwgYnV0IHRoaXMgcGFydGl0aW9uIGRvZXMgbm90IHN1
81
- cHBvcnQgb25lIG9yIGJvdGgiLCJ0eXBlIjoiZXJyb3IifV19LHsiY29uZGl0
82
- aW9ucyI6W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoi
83
- VXNlRklQUyJ9LHRydWVdfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNv
84
- bmRpdGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVl
85
- LHsiZm4iOiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVz
86
- dWx0In0sInN1cHBvcnRzRklQUyJdfV19XSwidHlwZSI6InRyZWUiLCJydWxl
87
- cyI6W3siY29uZGl0aW9ucyI6W10sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7
88
- ImNvbmRpdGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOiJodHRwczovL2lk
89
- ZW50aXR5LWNoaW1lLWZpcHMue1JlZ2lvbn0ue1BhcnRpdGlvblJlc3VsdCNk
90
- bnNTdWZmaXh9IiwicHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlw
91
- ZSI6ImVuZHBvaW50In1dfV19LHsiY29uZGl0aW9ucyI6W10sImVycm9yIjoi
92
- RklQUyBpcyBlbmFibGVkIGJ1dCB0aGlzIHBhcnRpdGlvbiBkb2VzIG5vdCBz
93
- dXBwb3J0IEZJUFMiLCJ0eXBlIjoiZXJyb3IifV19LHsiY29uZGl0aW9ucyI6
94
- W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRHVh
95
- bFN0YWNrIn0sdHJ1ZV19XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29u
96
- ZGl0aW9ucyI6W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3RydWUs
97
- eyJmbiI6ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQYXJ0aXRpb25SZXN1
98
- bHQifSwic3VwcG9ydHNEdWFsU3RhY2siXX1dfV0sInR5cGUiOiJ0cmVlIiwi
99
- cnVsZXMiOlt7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOiJo
100
- dHRwczovL2lkZW50aXR5LWNoaW1lLntSZWdpb259LntQYXJ0aXRpb25SZXN1
101
- bHQjZHVhbFN0YWNrRG5zU3VmZml4fSIsInByb3BlcnRpZXMiOnt9LCJoZWFk
102
- ZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9XX0seyJjb25kaXRpb25zIjpb
103
- XSwiZXJyb3IiOiJEdWFsU3RhY2sgaXMgZW5hYmxlZCBidXQgdGhpcyBwYXJ0
104
- aXRpb24gZG9lcyBub3Qgc3VwcG9ydCBEdWFsU3RhY2siLCJ0eXBlIjoiZXJy
105
- b3IifV19LHsiY29uZGl0aW9ucyI6W10sImVuZHBvaW50Ijp7InVybCI6Imh0
106
- dHBzOi8vaWRlbnRpdHktY2hpbWUue1JlZ2lvbn0ue1BhcnRpdGlvblJlc3Vs
107
- dCNkbnNTdWZmaXh9IiwicHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwi
108
- dHlwZSI6ImVuZHBvaW50In1dfV19
109
-
110
- JSON
111
50
  end
112
51
  end
@@ -86,15 +86,6 @@ module Aws::ChimeSDKIdentity
86
86
 
87
87
  # The details of the data-retention settings for an `AppInstance`.
88
88
  #
89
- # @note When making an API call, you may pass AppInstanceRetentionSettings
90
- # data as a hash:
91
- #
92
- # {
93
- # channel_retention_settings: {
94
- # retention_days: 1,
95
- # },
96
- # }
97
- #
98
89
  # @!attribute [rw] channel_retention_settings
99
90
  # The length of time in days to retain the messages in a channel.
100
91
  # @return [Types::ChannelRetentionSettings]
@@ -331,13 +322,6 @@ module Aws::ChimeSDKIdentity
331
322
 
332
323
  # The details of the retention settings for a channel.
333
324
  #
334
- # @note When making an API call, you may pass ChannelRetentionSettings
335
- # data as a hash:
336
- #
337
- # {
338
- # retention_days: 1,
339
- # }
340
- #
341
325
  # @!attribute [rw] retention_days
342
326
  # The time in days to retain the messages in a channel.
343
327
  # @return [Integer]
@@ -368,14 +352,6 @@ module Aws::ChimeSDKIdentity
368
352
  include Aws::Structure
369
353
  end
370
354
 
371
- # @note When making an API call, you may pass CreateAppInstanceAdminRequest
372
- # data as a hash:
373
- #
374
- # {
375
- # app_instance_admin_arn: "ChimeArn", # required
376
- # app_instance_arn: "ChimeArn", # required
377
- # }
378
- #
379
355
  # @!attribute [rw] app_instance_admin_arn
380
356
  # The ARN of the administrator of the current `AppInstance`.
381
357
  # @return [String]
@@ -410,21 +386,6 @@ module Aws::ChimeSDKIdentity
410
386
  include Aws::Structure
411
387
  end
412
388
 
413
- # @note When making an API call, you may pass CreateAppInstanceRequest
414
- # data as a hash:
415
- #
416
- # {
417
- # name: "NonEmptyResourceName", # required
418
- # metadata: "Metadata",
419
- # client_request_token: "ClientRequestToken", # required
420
- # tags: [
421
- # {
422
- # key: "TagKey", # required
423
- # value: "TagValue", # required
424
- # },
425
- # ],
426
- # }
427
- #
428
389
  # @!attribute [rw] name
429
390
  # The name of the `AppInstance`.
430
391
  # @return [String]
@@ -467,23 +428,6 @@ module Aws::ChimeSDKIdentity
467
428
  include Aws::Structure
468
429
  end
469
430
 
470
- # @note When making an API call, you may pass CreateAppInstanceUserRequest
471
- # data as a hash:
472
- #
473
- # {
474
- # app_instance_arn: "ChimeArn", # required
475
- # app_instance_user_id: "UserId", # required
476
- # name: "UserName", # required
477
- # metadata: "Metadata",
478
- # client_request_token: "ClientRequestToken", # required
479
- # tags: [
480
- # {
481
- # key: "TagKey", # required
482
- # value: "TagValue", # required
483
- # },
484
- # ],
485
- # }
486
- #
487
431
  # @!attribute [rw] app_instance_arn
488
432
  # The ARN of the `AppInstance` request.
489
433
  # @return [String]
@@ -536,14 +480,6 @@ module Aws::ChimeSDKIdentity
536
480
  include Aws::Structure
537
481
  end
538
482
 
539
- # @note When making an API call, you may pass DeleteAppInstanceAdminRequest
540
- # data as a hash:
541
- #
542
- # {
543
- # app_instance_admin_arn: "ChimeArn", # required
544
- # app_instance_arn: "ChimeArn", # required
545
- # }
546
- #
547
483
  # @!attribute [rw] app_instance_admin_arn
548
484
  # The ARN of the `AppInstance`'s administrator.
549
485
  # @return [String]
@@ -561,13 +497,6 @@ module Aws::ChimeSDKIdentity
561
497
  include Aws::Structure
562
498
  end
563
499
 
564
- # @note When making an API call, you may pass DeleteAppInstanceRequest
565
- # data as a hash:
566
- #
567
- # {
568
- # app_instance_arn: "ChimeArn", # required
569
- # }
570
- #
571
500
  # @!attribute [rw] app_instance_arn
572
501
  # The ARN of the `AppInstance`.
573
502
  # @return [String]
@@ -580,13 +509,6 @@ module Aws::ChimeSDKIdentity
580
509
  include Aws::Structure
581
510
  end
582
511
 
583
- # @note When making an API call, you may pass DeleteAppInstanceUserRequest
584
- # data as a hash:
585
- #
586
- # {
587
- # app_instance_user_arn: "ChimeArn", # required
588
- # }
589
- #
590
512
  # @!attribute [rw] app_instance_user_arn
591
513
  # The ARN of the user request being deleted.
592
514
  # @return [String]
@@ -599,14 +521,6 @@ module Aws::ChimeSDKIdentity
599
521
  include Aws::Structure
600
522
  end
601
523
 
602
- # @note When making an API call, you may pass DeregisterAppInstanceUserEndpointRequest
603
- # data as a hash:
604
- #
605
- # {
606
- # app_instance_user_arn: "SensitiveChimeArn", # required
607
- # endpoint_id: "SensitiveString64", # required
608
- # }
609
- #
610
524
  # @!attribute [rw] app_instance_user_arn
611
525
  # The ARN of the `AppInstanceUser`.
612
526
  # @return [String]
@@ -624,14 +538,6 @@ module Aws::ChimeSDKIdentity
624
538
  include Aws::Structure
625
539
  end
626
540
 
627
- # @note When making an API call, you may pass DescribeAppInstanceAdminRequest
628
- # data as a hash:
629
- #
630
- # {
631
- # app_instance_admin_arn: "ChimeArn", # required
632
- # app_instance_arn: "ChimeArn", # required
633
- # }
634
- #
635
541
  # @!attribute [rw] app_instance_admin_arn
636
542
  # The ARN of the `AppInstanceAdmin`.
637
543
  # @return [String]
@@ -663,13 +569,6 @@ module Aws::ChimeSDKIdentity
663
569
  include Aws::Structure
664
570
  end
665
571
 
666
- # @note When making an API call, you may pass DescribeAppInstanceRequest
667
- # data as a hash:
668
- #
669
- # {
670
- # app_instance_arn: "ChimeArn", # required
671
- # }
672
- #
673
572
  # @!attribute [rw] app_instance_arn
674
573
  # The ARN of the `AppInstance`.
675
574
  # @return [String]
@@ -695,14 +594,6 @@ module Aws::ChimeSDKIdentity
695
594
  include Aws::Structure
696
595
  end
697
596
 
698
- # @note When making an API call, you may pass DescribeAppInstanceUserEndpointRequest
699
- # data as a hash:
700
- #
701
- # {
702
- # app_instance_user_arn: "SensitiveString1600", # required
703
- # endpoint_id: "SensitiveString64", # required
704
- # }
705
- #
706
597
  # @!attribute [rw] app_instance_user_arn
707
598
  # The ARN of the `AppInstanceUser`.
708
599
  # @return [String]
@@ -735,13 +626,6 @@ module Aws::ChimeSDKIdentity
735
626
  include Aws::Structure
736
627
  end
737
628
 
738
- # @note When making an API call, you may pass DescribeAppInstanceUserRequest
739
- # data as a hash:
740
- #
741
- # {
742
- # app_instance_user_arn: "ChimeArn", # required
743
- # }
744
- #
745
629
  # @!attribute [rw] app_instance_user_arn
746
630
  # The ARN of the `AppInstanceUser`.
747
631
  # @return [String]
@@ -768,14 +652,6 @@ module Aws::ChimeSDKIdentity
768
652
 
769
653
  # The attributes of an `Endpoint`.
770
654
  #
771
- # @note When making an API call, you may pass EndpointAttributes
772
- # data as a hash:
773
- #
774
- # {
775
- # device_token: "NonEmptySensitiveString1600", # required
776
- # voip_device_token: "NonEmptySensitiveString1600",
777
- # }
778
- #
779
655
  # @!attribute [rw] device_token
780
656
  # The device token for the GCM, APNS, and APNS\_SANDBOX endpoint
781
657
  # types.
@@ -846,13 +722,6 @@ module Aws::ChimeSDKIdentity
846
722
  include Aws::Structure
847
723
  end
848
724
 
849
- # @note When making an API call, you may pass GetAppInstanceRetentionSettingsRequest
850
- # data as a hash:
851
- #
852
- # {
853
- # app_instance_arn: "ChimeArn", # required
854
- # }
855
- #
856
725
  # @!attribute [rw] app_instance_arn
857
726
  # The ARN of the `AppInstance`.
858
727
  # @return [String]
@@ -902,15 +771,6 @@ module Aws::ChimeSDKIdentity
902
771
  include Aws::Structure
903
772
  end
904
773
 
905
- # @note When making an API call, you may pass ListAppInstanceAdminsRequest
906
- # data as a hash:
907
- #
908
- # {
909
- # app_instance_arn: "ChimeArn", # required
910
- # max_results: 1,
911
- # next_token: "NextToken",
912
- # }
913
- #
914
774
  # @!attribute [rw] app_instance_arn
915
775
  # The ARN of the `AppInstance`.
916
776
  # @return [String]
@@ -957,15 +817,6 @@ module Aws::ChimeSDKIdentity
957
817
  include Aws::Structure
958
818
  end
959
819
 
960
- # @note When making an API call, you may pass ListAppInstanceUserEndpointsRequest
961
- # data as a hash:
962
- #
963
- # {
964
- # app_instance_user_arn: "SensitiveChimeArn", # required
965
- # max_results: 1,
966
- # next_token: "NextToken",
967
- # }
968
- #
969
820
  # @!attribute [rw] app_instance_user_arn
970
821
  # The ARN of the `AppInstanceUser`.
971
822
  # @return [String]
@@ -1007,15 +858,6 @@ module Aws::ChimeSDKIdentity
1007
858
  include Aws::Structure
1008
859
  end
1009
860
 
1010
- # @note When making an API call, you may pass ListAppInstanceUsersRequest
1011
- # data as a hash:
1012
- #
1013
- # {
1014
- # app_instance_arn: "ChimeArn", # required
1015
- # max_results: 1,
1016
- # next_token: "NextToken",
1017
- # }
1018
- #
1019
861
  # @!attribute [rw] app_instance_arn
1020
862
  # The ARN of the `AppInstance`.
1021
863
  # @return [String]
@@ -1062,14 +904,6 @@ module Aws::ChimeSDKIdentity
1062
904
  include Aws::Structure
1063
905
  end
1064
906
 
1065
- # @note When making an API call, you may pass ListAppInstancesRequest
1066
- # data as a hash:
1067
- #
1068
- # {
1069
- # max_results: 1,
1070
- # next_token: "NextToken",
1071
- # }
1072
- #
1073
907
  # @!attribute [rw] max_results
1074
908
  # The maximum number of `AppInstance`s that you want to return.
1075
909
  # @return [Integer]
@@ -1106,13 +940,6 @@ module Aws::ChimeSDKIdentity
1106
940
  include Aws::Structure
1107
941
  end
1108
942
 
1109
- # @note When making an API call, you may pass ListTagsForResourceRequest
1110
- # data as a hash:
1111
- #
1112
- # {
1113
- # resource_arn: "ChimeArn", # required
1114
- # }
1115
- #
1116
943
  # @!attribute [rw] resource_arn
1117
944
  # The ARN of the resource.
1118
945
  # @return [String]
@@ -1137,18 +964,6 @@ module Aws::ChimeSDKIdentity
1137
964
  include Aws::Structure
1138
965
  end
1139
966
 
1140
- # @note When making an API call, you may pass PutAppInstanceRetentionSettingsRequest
1141
- # data as a hash:
1142
- #
1143
- # {
1144
- # app_instance_arn: "ChimeArn", # required
1145
- # app_instance_retention_settings: { # required
1146
- # channel_retention_settings: {
1147
- # retention_days: 1,
1148
- # },
1149
- # },
1150
- # }
1151
- #
1152
967
  # @!attribute [rw] app_instance_arn
1153
968
  # The ARN of the `AppInstance`.
1154
969
  # @return [String]
@@ -1183,22 +998,6 @@ module Aws::ChimeSDKIdentity
1183
998
  include Aws::Structure
1184
999
  end
1185
1000
 
1186
- # @note When making an API call, you may pass RegisterAppInstanceUserEndpointRequest
1187
- # data as a hash:
1188
- #
1189
- # {
1190
- # app_instance_user_arn: "SensitiveChimeArn", # required
1191
- # name: "SensitiveString1600",
1192
- # type: "APNS", # required, accepts APNS, APNS_SANDBOX, GCM
1193
- # resource_arn: "SensitiveChimeArn", # required
1194
- # endpoint_attributes: { # required
1195
- # device_token: "NonEmptySensitiveString1600", # required
1196
- # voip_device_token: "NonEmptySensitiveString1600",
1197
- # },
1198
- # client_request_token: "ClientRequestToken", # required
1199
- # allow_messages: "ALL", # accepts ALL, NONE
1200
- # }
1201
- #
1202
1001
  # @!attribute [rw] app_instance_user_arn
1203
1002
  # The ARN of the `AppInstanceUser`.
1204
1003
  # @return [String]
@@ -1325,14 +1124,6 @@ module Aws::ChimeSDKIdentity
1325
1124
 
1326
1125
  # A tag object containing a key-value pair.
1327
1126
  #
1328
- # @note When making an API call, you may pass Tag
1329
- # data as a hash:
1330
- #
1331
- # {
1332
- # key: "TagKey", # required
1333
- # value: "TagValue", # required
1334
- # }
1335
- #
1336
1127
  # @!attribute [rw] key
1337
1128
  # The key in a tag.
1338
1129
  # @return [String]
@@ -1350,19 +1141,6 @@ module Aws::ChimeSDKIdentity
1350
1141
  include Aws::Structure
1351
1142
  end
1352
1143
 
1353
- # @note When making an API call, you may pass TagResourceRequest
1354
- # data as a hash:
1355
- #
1356
- # {
1357
- # resource_arn: "ChimeArn", # required
1358
- # tags: [ # required
1359
- # {
1360
- # key: "TagKey", # required
1361
- # value: "TagValue", # required
1362
- # },
1363
- # ],
1364
- # }
1365
- #
1366
1144
  # @!attribute [rw] resource_arn
1367
1145
  # The resource ARN.
1368
1146
  # @return [String]
@@ -1414,14 +1192,6 @@ module Aws::ChimeSDKIdentity
1414
1192
  include Aws::Structure
1415
1193
  end
1416
1194
 
1417
- # @note When making an API call, you may pass UntagResourceRequest
1418
- # data as a hash:
1419
- #
1420
- # {
1421
- # resource_arn: "ChimeArn", # required
1422
- # tag_keys: ["TagKey"], # required
1423
- # }
1424
- #
1425
1195
  # @!attribute [rw] resource_arn
1426
1196
  # The resource ARN.
1427
1197
  # @return [String]
@@ -1439,15 +1209,6 @@ module Aws::ChimeSDKIdentity
1439
1209
  include Aws::Structure
1440
1210
  end
1441
1211
 
1442
- # @note When making an API call, you may pass UpdateAppInstanceRequest
1443
- # data as a hash:
1444
- #
1445
- # {
1446
- # app_instance_arn: "ChimeArn", # required
1447
- # name: "NonEmptyResourceName", # required
1448
- # metadata: "Metadata", # required
1449
- # }
1450
- #
1451
1212
  # @!attribute [rw] app_instance_arn
1452
1213
  # The ARN of the `AppInstance`.
1453
1214
  # @return [String]
@@ -1482,16 +1243,6 @@ module Aws::ChimeSDKIdentity
1482
1243
  include Aws::Structure
1483
1244
  end
1484
1245
 
1485
- # @note When making an API call, you may pass UpdateAppInstanceUserEndpointRequest
1486
- # data as a hash:
1487
- #
1488
- # {
1489
- # app_instance_user_arn: "SensitiveChimeArn", # required
1490
- # endpoint_id: "SensitiveString64", # required
1491
- # name: "SensitiveString1600",
1492
- # allow_messages: "ALL", # accepts ALL, NONE
1493
- # }
1494
- #
1495
1246
  # @!attribute [rw] app_instance_user_arn
1496
1247
  # The ARN of the `AppInstanceUser`.
1497
1248
  # @return [String]
@@ -1539,15 +1290,6 @@ module Aws::ChimeSDKIdentity
1539
1290
  include Aws::Structure
1540
1291
  end
1541
1292
 
1542
- # @note When making an API call, you may pass UpdateAppInstanceUserRequest
1543
- # data as a hash:
1544
- #
1545
- # {
1546
- # app_instance_user_arn: "ChimeArn", # required
1547
- # name: "UserName", # required
1548
- # metadata: "Metadata", # required
1549
- # }
1550
- #
1551
1293
  # @!attribute [rw] app_instance_user_arn
1552
1294
  # The ARN of the `AppInstanceUser`.
1553
1295
  # @return [String]
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-chimesdkidentity/customizations'
52
52
  # @!group service
53
53
  module Aws::ChimeSDKIdentity
54
54
 
55
- GEM_VERSION = '1.10.0'
55
+ GEM_VERSION = '1.11.0'
56
56
 
57
57
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-chimesdkidentity
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.10.0
4
+ version: 1.11.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-10-25 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