aws-sdk-quicksight 1.190.0 → 1.192.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: 8765fca23b85199fb95521b8caed321cf2a7d9c46bfd65a75252fa24a93e3556
4
- data.tar.gz: ab34b62d9557b18db8f16a23642b417e9ae6b221192088a8d9ce486f152f766d
3
+ metadata.gz: eaedee8cddc0ea24d666b38beeb9ede44f24e5f7bc3e82a158fbd3239cbe0c90
4
+ data.tar.gz: 871085ffceecf7270e3612db68e1163a2baff196efa9809563575716d2dc0e5d
5
5
  SHA512:
6
- metadata.gz: aef79ff3032b1680d6a7d3e4d9f7ae7e299e4de478822caa2d9a7c125f9c4856fa28763ce8a0ac8ef3b4d8ab1d24ee5c46b660e02e07294a77273e96891522b2
7
- data.tar.gz: 5e0fcdfd6f4586f883e9bb4cb8a1cb2f88b1448abc52fed7a80e987c43dd62d03fe527619363d31642a99d858216588bba7a8005edcc0439cac33b5ab06f9bfb
6
+ metadata.gz: 1811d2e10227442fcd6021c98051ddd3a9d3981b4de5bb1980c25c0b97fe6c0e24a6340a452e2351b84b4a362ea55d88bd8c00ded06e3a8ad36ac9e98ebd8acd
7
+ data.tar.gz: 466e6187bdef335cb3928c5fef99394a4a177e56a180aeae2bc689d26192dd6f2f07c31c9f28f8d5c7e4dbad3769ba0c51f4393519da1f3e0a4f7184ded5fa7a
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.192.0 (2026-07-23)
5
+ ------------------
6
+
7
+ * Feature - Added new capabilities to custom permissions profiles to control access to Amazon Quick through the browser extension and Microsoft Word, Outlook, Excel, and PowerPoint add-ins.
8
+
9
+ 1.191.0 (2026-07-20)
10
+ ------------------
11
+
12
+ * Feature - Adds support for custom permissions for Triggers, allowing administrators to control user access to Schedule, Inbound Email and Quick Event triggers.
13
+
4
14
  1.190.0 (2026-07-10)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.190.0
1
+ 1.192.0
@@ -2558,10 +2558,19 @@ module Aws::QuickSight
2558
2558
  # research: "DENY", # accepts DENY
2559
2559
  # self_upgrade_user_role: "DENY", # accepts DENY
2560
2560
  # extension: "DENY", # accepts DENY
2561
+ # use_browser_extension: "DENY", # accepts DENY
2562
+ # use_word_add_in_extension: "DENY", # accepts DENY
2563
+ # use_outlook_add_in_extension: "DENY", # accepts DENY
2564
+ # use_excel_add_in_extension: "DENY", # accepts DENY
2565
+ # use_powerpoint_add_in_extension: "DENY", # accepts DENY
2561
2566
  # manage_shared_folders: "DENY", # accepts DENY
2562
2567
  # generate_analyses: "DENY", # accepts DENY
2563
2568
  # story: "DENY", # accepts DENY
2564
2569
  # scenario: "DENY", # accepts DENY
2570
+ # trigger: "DENY", # accepts DENY
2571
+ # schedule_trigger: "DENY", # accepts DENY
2572
+ # inbound_email_trigger: "DENY", # accepts DENY
2573
+ # quick_event_trigger: "DENY", # accepts DENY
2565
2574
  # },
2566
2575
  # tags: [
2567
2576
  # {
@@ -6806,7 +6815,7 @@ module Aws::QuickSight
6806
6815
  #
6807
6816
  # resp = client.delete_identity_propagation_config({
6808
6817
  # aws_account_id: "AwsAccountId", # required
6809
- # service: "REDSHIFT", # required, accepts REDSHIFT, QBUSINESS, ATHENA
6818
+ # service: "REDSHIFT", # required, accepts REDSHIFT, QBUSINESS, ATHENA, GLUE_DATA_CATALOG
6810
6819
  # })
6811
6820
  #
6812
6821
  # @example Response structure
@@ -9151,10 +9160,19 @@ module Aws::QuickSight
9151
9160
  # resp.custom_permissions.capabilities.research #=> String, one of "DENY"
9152
9161
  # resp.custom_permissions.capabilities.self_upgrade_user_role #=> String, one of "DENY"
9153
9162
  # resp.custom_permissions.capabilities.extension #=> String, one of "DENY"
9163
+ # resp.custom_permissions.capabilities.use_browser_extension #=> String, one of "DENY"
9164
+ # resp.custom_permissions.capabilities.use_word_add_in_extension #=> String, one of "DENY"
9165
+ # resp.custom_permissions.capabilities.use_outlook_add_in_extension #=> String, one of "DENY"
9166
+ # resp.custom_permissions.capabilities.use_excel_add_in_extension #=> String, one of "DENY"
9167
+ # resp.custom_permissions.capabilities.use_powerpoint_add_in_extension #=> String, one of "DENY"
9154
9168
  # resp.custom_permissions.capabilities.manage_shared_folders #=> String, one of "DENY"
9155
9169
  # resp.custom_permissions.capabilities.generate_analyses #=> String, one of "DENY"
9156
9170
  # resp.custom_permissions.capabilities.story #=> String, one of "DENY"
9157
9171
  # resp.custom_permissions.capabilities.scenario #=> String, one of "DENY"
9172
+ # resp.custom_permissions.capabilities.trigger #=> String, one of "DENY"
9173
+ # resp.custom_permissions.capabilities.schedule_trigger #=> String, one of "DENY"
9174
+ # resp.custom_permissions.capabilities.inbound_email_trigger #=> String, one of "DENY"
9175
+ # resp.custom_permissions.capabilities.quick_event_trigger #=> String, one of "DENY"
9158
9176
  # resp.request_id #=> String
9159
9177
  #
9160
9178
  # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DescribeCustomPermissions AWS API Documentation
@@ -14028,10 +14046,19 @@ module Aws::QuickSight
14028
14046
  # resp.custom_permissions_list[0].capabilities.research #=> String, one of "DENY"
14029
14047
  # resp.custom_permissions_list[0].capabilities.self_upgrade_user_role #=> String, one of "DENY"
14030
14048
  # resp.custom_permissions_list[0].capabilities.extension #=> String, one of "DENY"
14049
+ # resp.custom_permissions_list[0].capabilities.use_browser_extension #=> String, one of "DENY"
14050
+ # resp.custom_permissions_list[0].capabilities.use_word_add_in_extension #=> String, one of "DENY"
14051
+ # resp.custom_permissions_list[0].capabilities.use_outlook_add_in_extension #=> String, one of "DENY"
14052
+ # resp.custom_permissions_list[0].capabilities.use_excel_add_in_extension #=> String, one of "DENY"
14053
+ # resp.custom_permissions_list[0].capabilities.use_powerpoint_add_in_extension #=> String, one of "DENY"
14031
14054
  # resp.custom_permissions_list[0].capabilities.manage_shared_folders #=> String, one of "DENY"
14032
14055
  # resp.custom_permissions_list[0].capabilities.generate_analyses #=> String, one of "DENY"
14033
14056
  # resp.custom_permissions_list[0].capabilities.story #=> String, one of "DENY"
14034
14057
  # resp.custom_permissions_list[0].capabilities.scenario #=> String, one of "DENY"
14058
+ # resp.custom_permissions_list[0].capabilities.trigger #=> String, one of "DENY"
14059
+ # resp.custom_permissions_list[0].capabilities.schedule_trigger #=> String, one of "DENY"
14060
+ # resp.custom_permissions_list[0].capabilities.inbound_email_trigger #=> String, one of "DENY"
14061
+ # resp.custom_permissions_list[0].capabilities.quick_event_trigger #=> String, one of "DENY"
14035
14062
  # resp.next_token #=> String
14036
14063
  # resp.request_id #=> String
14037
14064
  #
@@ -14991,7 +15018,7 @@ module Aws::QuickSight
14991
15018
  # @example Response structure
14992
15019
  #
14993
15020
  # resp.services #=> Array
14994
- # resp.services[0].service #=> String, one of "REDSHIFT", "QBUSINESS", "ATHENA"
15021
+ # resp.services[0].service #=> String, one of "REDSHIFT", "QBUSINESS", "ATHENA", "GLUE_DATA_CATALOG"
14995
15022
  # resp.services[0].authorized_targets #=> Array
14996
15023
  # resp.services[0].authorized_targets[0] #=> String
14997
15024
  # resp.next_token #=> String
@@ -20323,10 +20350,19 @@ module Aws::QuickSight
20323
20350
  # research: "DENY", # accepts DENY
20324
20351
  # self_upgrade_user_role: "DENY", # accepts DENY
20325
20352
  # extension: "DENY", # accepts DENY
20353
+ # use_browser_extension: "DENY", # accepts DENY
20354
+ # use_word_add_in_extension: "DENY", # accepts DENY
20355
+ # use_outlook_add_in_extension: "DENY", # accepts DENY
20356
+ # use_excel_add_in_extension: "DENY", # accepts DENY
20357
+ # use_powerpoint_add_in_extension: "DENY", # accepts DENY
20326
20358
  # manage_shared_folders: "DENY", # accepts DENY
20327
20359
  # generate_analyses: "DENY", # accepts DENY
20328
20360
  # story: "DENY", # accepts DENY
20329
20361
  # scenario: "DENY", # accepts DENY
20362
+ # trigger: "DENY", # accepts DENY
20363
+ # schedule_trigger: "DENY", # accepts DENY
20364
+ # inbound_email_trigger: "DENY", # accepts DENY
20365
+ # quick_event_trigger: "DENY", # accepts DENY
20330
20366
  # },
20331
20367
  # })
20332
20368
  #
@@ -22579,7 +22615,7 @@ module Aws::QuickSight
22579
22615
  #
22580
22616
  # resp = client.update_identity_propagation_config({
22581
22617
  # aws_account_id: "AwsAccountId", # required
22582
- # service: "REDSHIFT", # required, accepts REDSHIFT, QBUSINESS, ATHENA
22618
+ # service: "REDSHIFT", # required, accepts REDSHIFT, QBUSINESS, ATHENA, GLUE_DATA_CATALOG
22583
22619
  # authorized_targets: ["String"],
22584
22620
  # })
22585
22621
  #
@@ -24732,7 +24768,7 @@ module Aws::QuickSight
24732
24768
  tracer: tracer
24733
24769
  )
24734
24770
  context[:gem_name] = 'aws-sdk-quicksight'
24735
- context[:gem_version] = '1.190.0'
24771
+ context[:gem_version] = '1.192.0'
24736
24772
  Seahorse::Client::Request.new(handlers, context)
24737
24773
  end
24738
24774
 
@@ -4022,10 +4022,19 @@ module Aws::QuickSight
4022
4022
  Capabilities.add_member(:research, Shapes::ShapeRef.new(shape: CapabilityState, location_name: "Research"))
4023
4023
  Capabilities.add_member(:self_upgrade_user_role, Shapes::ShapeRef.new(shape: CapabilityState, location_name: "SelfUpgradeUserRole"))
4024
4024
  Capabilities.add_member(:extension, Shapes::ShapeRef.new(shape: CapabilityState, location_name: "Extension"))
4025
+ Capabilities.add_member(:use_browser_extension, Shapes::ShapeRef.new(shape: CapabilityState, location_name: "UseBrowserExtension"))
4026
+ Capabilities.add_member(:use_word_add_in_extension, Shapes::ShapeRef.new(shape: CapabilityState, location_name: "UseWordAddInExtension"))
4027
+ Capabilities.add_member(:use_outlook_add_in_extension, Shapes::ShapeRef.new(shape: CapabilityState, location_name: "UseOutlookAddInExtension"))
4028
+ Capabilities.add_member(:use_excel_add_in_extension, Shapes::ShapeRef.new(shape: CapabilityState, location_name: "UseExcelAddInExtension"))
4029
+ Capabilities.add_member(:use_powerpoint_add_in_extension, Shapes::ShapeRef.new(shape: CapabilityState, location_name: "UsePowerpointAddInExtension"))
4025
4030
  Capabilities.add_member(:manage_shared_folders, Shapes::ShapeRef.new(shape: CapabilityState, location_name: "ManageSharedFolders"))
4026
4031
  Capabilities.add_member(:generate_analyses, Shapes::ShapeRef.new(shape: CapabilityState, location_name: "GenerateAnalyses"))
4027
4032
  Capabilities.add_member(:story, Shapes::ShapeRef.new(shape: CapabilityState, location_name: "Story"))
4028
4033
  Capabilities.add_member(:scenario, Shapes::ShapeRef.new(shape: CapabilityState, location_name: "Scenario"))
4034
+ Capabilities.add_member(:trigger, Shapes::ShapeRef.new(shape: CapabilityState, location_name: "Trigger"))
4035
+ Capabilities.add_member(:schedule_trigger, Shapes::ShapeRef.new(shape: CapabilityState, location_name: "ScheduleTrigger"))
4036
+ Capabilities.add_member(:inbound_email_trigger, Shapes::ShapeRef.new(shape: CapabilityState, location_name: "InboundEmailTrigger"))
4037
+ Capabilities.add_member(:quick_event_trigger, Shapes::ShapeRef.new(shape: CapabilityState, location_name: "QuickEventTrigger"))
4029
4038
  Capabilities.struct_class = Types::Capabilities
4030
4039
 
4031
4040
  CapacityBytesRangeFilter.add_member(:min_bytes, Shapes::ShapeRef.new(shape: CapacityBytesRangeFilterMinBytesLong, location_name: "minBytes"))
@@ -5765,6 +5765,29 @@ module Aws::QuickSight
5765
5765
  # The ability to perform Extension-related actions.
5766
5766
  # @return [String]
5767
5767
  #
5768
+ # @!attribute [rw] use_browser_extension
5769
+ # The ability to use Amazon Quick through the browser extension for
5770
+ # Chrome, Firefox, and Edge.
5771
+ # @return [String]
5772
+ #
5773
+ # @!attribute [rw] use_word_add_in_extension
5774
+ # The ability to use Amazon Quick through the Microsoft Word add-in.
5775
+ # @return [String]
5776
+ #
5777
+ # @!attribute [rw] use_outlook_add_in_extension
5778
+ # The ability to use Amazon Quick through the Microsoft Outlook
5779
+ # add-in.
5780
+ # @return [String]
5781
+ #
5782
+ # @!attribute [rw] use_excel_add_in_extension
5783
+ # The ability to use Amazon Quick through the Microsoft Excel add-in.
5784
+ # @return [String]
5785
+ #
5786
+ # @!attribute [rw] use_powerpoint_add_in_extension
5787
+ # The ability to use Amazon Quick through the Microsoft PowerPoint
5788
+ # add-in.
5789
+ # @return [String]
5790
+ #
5768
5791
  # @!attribute [rw] manage_shared_folders
5769
5792
  # The ability to create, update, delete and view shared folders (both
5770
5793
  # restricted and unrestricted), ability to add any asset to shared
@@ -5786,6 +5809,26 @@ module Aws::QuickSight
5786
5809
  # The ability to perform Scenario-related actions.
5787
5810
  # @return [String]
5788
5811
  #
5812
+ # @!attribute [rw] trigger
5813
+ # The ability to manage trigger-related settings for flows and
5814
+ # automations.
5815
+ # @return [String]
5816
+ #
5817
+ # @!attribute [rw] schedule_trigger
5818
+ # The ability to create, view, edit, delete, and run schedule triggers
5819
+ # for flows and automations.
5820
+ # @return [String]
5821
+ #
5822
+ # @!attribute [rw] inbound_email_trigger
5823
+ # The ability to create, view, edit, delete, and run inbound email
5824
+ # triggers for flows and automations.
5825
+ # @return [String]
5826
+ #
5827
+ # @!attribute [rw] quick_event_trigger
5828
+ # The ability to create, view, edit, delete, and run Quick event
5829
+ # triggers for flows and automations.
5830
+ # @return [String]
5831
+ #
5789
5832
  # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/Capabilities AWS API Documentation
5790
5833
  #
5791
5834
  class Capabilities < Struct.new(
@@ -6013,10 +6056,19 @@ module Aws::QuickSight
6013
6056
  :research,
6014
6057
  :self_upgrade_user_role,
6015
6058
  :extension,
6059
+ :use_browser_extension,
6060
+ :use_word_add_in_extension,
6061
+ :use_outlook_add_in_extension,
6062
+ :use_excel_add_in_extension,
6063
+ :use_powerpoint_add_in_extension,
6016
6064
  :manage_shared_folders,
6017
6065
  :generate_analyses,
6018
6066
  :story,
6019
- :scenario)
6067
+ :scenario,
6068
+ :trigger,
6069
+ :schedule_trigger,
6070
+ :inbound_email_trigger,
6071
+ :quick_event_trigger)
6020
6072
  SENSITIVE = []
6021
6073
  include Aws::Structure
6022
6074
  end
@@ -54,7 +54,7 @@ module Aws::QuickSight
54
54
  autoload :EndpointProvider, 'aws-sdk-quicksight/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-quicksight/endpoints'
56
56
 
57
- GEM_VERSION = '1.190.0'
57
+ GEM_VERSION = '1.192.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -1221,7 +1221,7 @@ module Aws
1221
1221
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/QuickSight/Client.html#delete_identity_propagation_config-instance_method
1222
1222
  def delete_identity_propagation_config: (
1223
1223
  aws_account_id: ::String,
1224
- service: ("REDSHIFT" | "QBUSINESS" | "ATHENA")
1224
+ service: ("REDSHIFT" | "QBUSINESS" | "ATHENA" | "GLUE_DATA_CATALOG")
1225
1225
  ) -> _DeleteIdentityPropagationConfigResponseSuccess
1226
1226
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteIdentityPropagationConfigResponseSuccess
1227
1227
 
@@ -4705,7 +4705,7 @@ module Aws
4705
4705
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/QuickSight/Client.html#update_identity_propagation_config-instance_method
4706
4706
  def update_identity_propagation_config: (
4707
4707
  aws_account_id: ::String,
4708
- service: ("REDSHIFT" | "QBUSINESS" | "ATHENA"),
4708
+ service: ("REDSHIFT" | "QBUSINESS" | "ATHENA" | "GLUE_DATA_CATALOG"),
4709
4709
  ?authorized_targets: Array[::String]
4710
4710
  ) -> _UpdateIdentityPropagationConfigResponseSuccess
4711
4711
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateIdentityPropagationConfigResponseSuccess
data/sig/params.rbs CHANGED
@@ -5207,10 +5207,19 @@ module Aws
5207
5207
  research: ("DENY")?,
5208
5208
  self_upgrade_user_role: ("DENY")?,
5209
5209
  extension: ("DENY")?,
5210
+ use_browser_extension: ("DENY")?,
5211
+ use_word_add_in_extension: ("DENY")?,
5212
+ use_outlook_add_in_extension: ("DENY")?,
5213
+ use_excel_add_in_extension: ("DENY")?,
5214
+ use_powerpoint_add_in_extension: ("DENY")?,
5210
5215
  manage_shared_folders: ("DENY")?,
5211
5216
  generate_analyses: ("DENY")?,
5212
5217
  story: ("DENY")?,
5213
- scenario: ("DENY")?
5218
+ scenario: ("DENY")?,
5219
+ trigger: ("DENY")?,
5220
+ schedule_trigger: ("DENY")?,
5221
+ inbound_email_trigger: ("DENY")?,
5222
+ quick_event_trigger: ("DENY")?
5214
5223
  }
5215
5224
 
5216
5225
  type dashboard_source_entity = {
data/sig/types.rbs CHANGED
@@ -821,7 +821,7 @@ module Aws::QuickSight
821
821
  end
822
822
 
823
823
  class AuthorizedTargetsByService
824
- attr_accessor service: ("REDSHIFT" | "QBUSINESS" | "ATHENA")
824
+ attr_accessor service: ("REDSHIFT" | "QBUSINESS" | "ATHENA" | "GLUE_DATA_CATALOG")
825
825
  attr_accessor authorized_targets: ::Array[::String]
826
826
  SENSITIVE: []
827
827
  end
@@ -1489,10 +1489,19 @@ module Aws::QuickSight
1489
1489
  attr_accessor research: ("DENY")
1490
1490
  attr_accessor self_upgrade_user_role: ("DENY")
1491
1491
  attr_accessor extension: ("DENY")
1492
+ attr_accessor use_browser_extension: ("DENY")
1493
+ attr_accessor use_word_add_in_extension: ("DENY")
1494
+ attr_accessor use_outlook_add_in_extension: ("DENY")
1495
+ attr_accessor use_excel_add_in_extension: ("DENY")
1496
+ attr_accessor use_powerpoint_add_in_extension: ("DENY")
1492
1497
  attr_accessor manage_shared_folders: ("DENY")
1493
1498
  attr_accessor generate_analyses: ("DENY")
1494
1499
  attr_accessor story: ("DENY")
1495
1500
  attr_accessor scenario: ("DENY")
1501
+ attr_accessor trigger: ("DENY")
1502
+ attr_accessor schedule_trigger: ("DENY")
1503
+ attr_accessor inbound_email_trigger: ("DENY")
1504
+ attr_accessor quick_event_trigger: ("DENY")
1496
1505
  SENSITIVE: []
1497
1506
  end
1498
1507
 
@@ -3887,7 +3896,7 @@ module Aws::QuickSight
3887
3896
 
3888
3897
  class DeleteIdentityPropagationConfigRequest
3889
3898
  attr_accessor aws_account_id: ::String
3890
- attr_accessor service: ("REDSHIFT" | "QBUSINESS" | "ATHENA")
3899
+ attr_accessor service: ("REDSHIFT" | "QBUSINESS" | "ATHENA" | "GLUE_DATA_CATALOG")
3891
3900
  SENSITIVE: []
3892
3901
  end
3893
3902
 
@@ -12094,7 +12103,7 @@ module Aws::QuickSight
12094
12103
 
12095
12104
  class UpdateIdentityPropagationConfigRequest
12096
12105
  attr_accessor aws_account_id: ::String
12097
- attr_accessor service: ("REDSHIFT" | "QBUSINESS" | "ATHENA")
12106
+ attr_accessor service: ("REDSHIFT" | "QBUSINESS" | "ATHENA" | "GLUE_DATA_CATALOG")
12098
12107
  attr_accessor authorized_targets: ::Array[::String]
12099
12108
  SENSITIVE: []
12100
12109
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-quicksight
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.190.0
4
+ version: 1.192.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services