aws-sdk-appstream 1.73.0 → 1.74.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 +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-appstream/client.rb +669 -12
- data/lib/aws-sdk-appstream/client_api.rb +308 -4
- data/lib/aws-sdk-appstream/endpoint_parameters.rb +0 -3
- data/lib/aws-sdk-appstream/endpoint_provider.rb +31 -22
- data/lib/aws-sdk-appstream/endpoints.rb +140 -0
- data/lib/aws-sdk-appstream/plugins/endpoints.rb +20 -0
- data/lib/aws-sdk-appstream/types.rb +664 -4
- data/lib/aws-sdk-appstream.rb +2 -2
- metadata +2 -2
@@ -12,6 +12,20 @@ module Aws::AppStream
|
|
12
12
|
# @api private
|
13
13
|
module Endpoints
|
14
14
|
|
15
|
+
class AssociateAppBlockBuilderAppBlock
|
16
|
+
def self.build(context)
|
17
|
+
unless context.config.regional_endpoint
|
18
|
+
endpoint = context.config.endpoint.to_s
|
19
|
+
end
|
20
|
+
Aws::AppStream::EndpointParameters.new(
|
21
|
+
region: context.config.region,
|
22
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
23
|
+
use_fips: context.config.use_fips_endpoint,
|
24
|
+
endpoint: endpoint,
|
25
|
+
)
|
26
|
+
end
|
27
|
+
end
|
28
|
+
|
15
29
|
class AssociateApplicationFleet
|
16
30
|
def self.build(context)
|
17
31
|
unless context.config.regional_endpoint
|
@@ -110,6 +124,34 @@ module Aws::AppStream
|
|
110
124
|
end
|
111
125
|
end
|
112
126
|
|
127
|
+
class CreateAppBlockBuilder
|
128
|
+
def self.build(context)
|
129
|
+
unless context.config.regional_endpoint
|
130
|
+
endpoint = context.config.endpoint.to_s
|
131
|
+
end
|
132
|
+
Aws::AppStream::EndpointParameters.new(
|
133
|
+
region: context.config.region,
|
134
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
135
|
+
use_fips: context.config.use_fips_endpoint,
|
136
|
+
endpoint: endpoint,
|
137
|
+
)
|
138
|
+
end
|
139
|
+
end
|
140
|
+
|
141
|
+
class CreateAppBlockBuilderStreamingURL
|
142
|
+
def self.build(context)
|
143
|
+
unless context.config.regional_endpoint
|
144
|
+
endpoint = context.config.endpoint.to_s
|
145
|
+
end
|
146
|
+
Aws::AppStream::EndpointParameters.new(
|
147
|
+
region: context.config.region,
|
148
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
149
|
+
use_fips: context.config.use_fips_endpoint,
|
150
|
+
endpoint: endpoint,
|
151
|
+
)
|
152
|
+
end
|
153
|
+
end
|
154
|
+
|
113
155
|
class CreateApplication
|
114
156
|
def self.build(context)
|
115
157
|
unless context.config.regional_endpoint
|
@@ -278,6 +320,20 @@ module Aws::AppStream
|
|
278
320
|
end
|
279
321
|
end
|
280
322
|
|
323
|
+
class DeleteAppBlockBuilder
|
324
|
+
def self.build(context)
|
325
|
+
unless context.config.regional_endpoint
|
326
|
+
endpoint = context.config.endpoint.to_s
|
327
|
+
end
|
328
|
+
Aws::AppStream::EndpointParameters.new(
|
329
|
+
region: context.config.region,
|
330
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
331
|
+
use_fips: context.config.use_fips_endpoint,
|
332
|
+
endpoint: endpoint,
|
333
|
+
)
|
334
|
+
end
|
335
|
+
end
|
336
|
+
|
281
337
|
class DeleteApplication
|
282
338
|
def self.build(context)
|
283
339
|
unless context.config.regional_endpoint
|
@@ -418,6 +474,34 @@ module Aws::AppStream
|
|
418
474
|
end
|
419
475
|
end
|
420
476
|
|
477
|
+
class DescribeAppBlockBuilderAppBlockAssociations
|
478
|
+
def self.build(context)
|
479
|
+
unless context.config.regional_endpoint
|
480
|
+
endpoint = context.config.endpoint.to_s
|
481
|
+
end
|
482
|
+
Aws::AppStream::EndpointParameters.new(
|
483
|
+
region: context.config.region,
|
484
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
485
|
+
use_fips: context.config.use_fips_endpoint,
|
486
|
+
endpoint: endpoint,
|
487
|
+
)
|
488
|
+
end
|
489
|
+
end
|
490
|
+
|
491
|
+
class DescribeAppBlockBuilders
|
492
|
+
def self.build(context)
|
493
|
+
unless context.config.regional_endpoint
|
494
|
+
endpoint = context.config.endpoint.to_s
|
495
|
+
end
|
496
|
+
Aws::AppStream::EndpointParameters.new(
|
497
|
+
region: context.config.region,
|
498
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
499
|
+
use_fips: context.config.use_fips_endpoint,
|
500
|
+
endpoint: endpoint,
|
501
|
+
)
|
502
|
+
end
|
503
|
+
end
|
504
|
+
|
421
505
|
class DescribeAppBlocks
|
422
506
|
def self.build(context)
|
423
507
|
unless context.config.regional_endpoint
|
@@ -628,6 +712,20 @@ module Aws::AppStream
|
|
628
712
|
end
|
629
713
|
end
|
630
714
|
|
715
|
+
class DisassociateAppBlockBuilderAppBlock
|
716
|
+
def self.build(context)
|
717
|
+
unless context.config.regional_endpoint
|
718
|
+
endpoint = context.config.endpoint.to_s
|
719
|
+
end
|
720
|
+
Aws::AppStream::EndpointParameters.new(
|
721
|
+
region: context.config.region,
|
722
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
723
|
+
use_fips: context.config.use_fips_endpoint,
|
724
|
+
endpoint: endpoint,
|
725
|
+
)
|
726
|
+
end
|
727
|
+
end
|
728
|
+
|
631
729
|
class DisassociateApplicationFleet
|
632
730
|
def self.build(context)
|
633
731
|
unless context.config.regional_endpoint
|
@@ -754,6 +852,20 @@ module Aws::AppStream
|
|
754
852
|
end
|
755
853
|
end
|
756
854
|
|
855
|
+
class StartAppBlockBuilder
|
856
|
+
def self.build(context)
|
857
|
+
unless context.config.regional_endpoint
|
858
|
+
endpoint = context.config.endpoint.to_s
|
859
|
+
end
|
860
|
+
Aws::AppStream::EndpointParameters.new(
|
861
|
+
region: context.config.region,
|
862
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
863
|
+
use_fips: context.config.use_fips_endpoint,
|
864
|
+
endpoint: endpoint,
|
865
|
+
)
|
866
|
+
end
|
867
|
+
end
|
868
|
+
|
757
869
|
class StartFleet
|
758
870
|
def self.build(context)
|
759
871
|
unless context.config.regional_endpoint
|
@@ -782,6 +894,20 @@ module Aws::AppStream
|
|
782
894
|
end
|
783
895
|
end
|
784
896
|
|
897
|
+
class StopAppBlockBuilder
|
898
|
+
def self.build(context)
|
899
|
+
unless context.config.regional_endpoint
|
900
|
+
endpoint = context.config.endpoint.to_s
|
901
|
+
end
|
902
|
+
Aws::AppStream::EndpointParameters.new(
|
903
|
+
region: context.config.region,
|
904
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
905
|
+
use_fips: context.config.use_fips_endpoint,
|
906
|
+
endpoint: endpoint,
|
907
|
+
)
|
908
|
+
end
|
909
|
+
end
|
910
|
+
|
785
911
|
class StopFleet
|
786
912
|
def self.build(context)
|
787
913
|
unless context.config.regional_endpoint
|
@@ -838,6 +964,20 @@ module Aws::AppStream
|
|
838
964
|
end
|
839
965
|
end
|
840
966
|
|
967
|
+
class UpdateAppBlockBuilder
|
968
|
+
def self.build(context)
|
969
|
+
unless context.config.regional_endpoint
|
970
|
+
endpoint = context.config.endpoint.to_s
|
971
|
+
end
|
972
|
+
Aws::AppStream::EndpointParameters.new(
|
973
|
+
region: context.config.region,
|
974
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
975
|
+
use_fips: context.config.use_fips_endpoint,
|
976
|
+
endpoint: endpoint,
|
977
|
+
)
|
978
|
+
end
|
979
|
+
end
|
980
|
+
|
841
981
|
class UpdateApplication
|
842
982
|
def self.build(context)
|
843
983
|
unless context.config.regional_endpoint
|
@@ -56,6 +56,8 @@ module Aws::AppStream
|
|
56
56
|
|
57
57
|
def parameters_for_operation(context)
|
58
58
|
case context.operation_name
|
59
|
+
when :associate_app_block_builder_app_block
|
60
|
+
Aws::AppStream::Endpoints::AssociateAppBlockBuilderAppBlock.build(context)
|
59
61
|
when :associate_application_fleet
|
60
62
|
Aws::AppStream::Endpoints::AssociateApplicationFleet.build(context)
|
61
63
|
when :associate_application_to_entitlement
|
@@ -70,6 +72,10 @@ module Aws::AppStream
|
|
70
72
|
Aws::AppStream::Endpoints::CopyImage.build(context)
|
71
73
|
when :create_app_block
|
72
74
|
Aws::AppStream::Endpoints::CreateAppBlock.build(context)
|
75
|
+
when :create_app_block_builder
|
76
|
+
Aws::AppStream::Endpoints::CreateAppBlockBuilder.build(context)
|
77
|
+
when :create_app_block_builder_streaming_url
|
78
|
+
Aws::AppStream::Endpoints::CreateAppBlockBuilderStreamingURL.build(context)
|
73
79
|
when :create_application
|
74
80
|
Aws::AppStream::Endpoints::CreateApplication.build(context)
|
75
81
|
when :create_directory_config
|
@@ -94,6 +100,8 @@ module Aws::AppStream
|
|
94
100
|
Aws::AppStream::Endpoints::CreateUser.build(context)
|
95
101
|
when :delete_app_block
|
96
102
|
Aws::AppStream::Endpoints::DeleteAppBlock.build(context)
|
103
|
+
when :delete_app_block_builder
|
104
|
+
Aws::AppStream::Endpoints::DeleteAppBlockBuilder.build(context)
|
97
105
|
when :delete_application
|
98
106
|
Aws::AppStream::Endpoints::DeleteApplication.build(context)
|
99
107
|
when :delete_directory_config
|
@@ -114,6 +122,10 @@ module Aws::AppStream
|
|
114
122
|
Aws::AppStream::Endpoints::DeleteUsageReportSubscription.build(context)
|
115
123
|
when :delete_user
|
116
124
|
Aws::AppStream::Endpoints::DeleteUser.build(context)
|
125
|
+
when :describe_app_block_builder_app_block_associations
|
126
|
+
Aws::AppStream::Endpoints::DescribeAppBlockBuilderAppBlockAssociations.build(context)
|
127
|
+
when :describe_app_block_builders
|
128
|
+
Aws::AppStream::Endpoints::DescribeAppBlockBuilders.build(context)
|
117
129
|
when :describe_app_blocks
|
118
130
|
Aws::AppStream::Endpoints::DescribeAppBlocks.build(context)
|
119
131
|
when :describe_application_fleet_associations
|
@@ -144,6 +156,8 @@ module Aws::AppStream
|
|
144
156
|
Aws::AppStream::Endpoints::DescribeUsers.build(context)
|
145
157
|
when :disable_user
|
146
158
|
Aws::AppStream::Endpoints::DisableUser.build(context)
|
159
|
+
when :disassociate_app_block_builder_app_block
|
160
|
+
Aws::AppStream::Endpoints::DisassociateAppBlockBuilderAppBlock.build(context)
|
147
161
|
when :disassociate_application_fleet
|
148
162
|
Aws::AppStream::Endpoints::DisassociateApplicationFleet.build(context)
|
149
163
|
when :disassociate_application_from_entitlement
|
@@ -162,10 +176,14 @@ module Aws::AppStream
|
|
162
176
|
Aws::AppStream::Endpoints::ListEntitledApplications.build(context)
|
163
177
|
when :list_tags_for_resource
|
164
178
|
Aws::AppStream::Endpoints::ListTagsForResource.build(context)
|
179
|
+
when :start_app_block_builder
|
180
|
+
Aws::AppStream::Endpoints::StartAppBlockBuilder.build(context)
|
165
181
|
when :start_fleet
|
166
182
|
Aws::AppStream::Endpoints::StartFleet.build(context)
|
167
183
|
when :start_image_builder
|
168
184
|
Aws::AppStream::Endpoints::StartImageBuilder.build(context)
|
185
|
+
when :stop_app_block_builder
|
186
|
+
Aws::AppStream::Endpoints::StopAppBlockBuilder.build(context)
|
169
187
|
when :stop_fleet
|
170
188
|
Aws::AppStream::Endpoints::StopFleet.build(context)
|
171
189
|
when :stop_image_builder
|
@@ -174,6 +192,8 @@ module Aws::AppStream
|
|
174
192
|
Aws::AppStream::Endpoints::TagResource.build(context)
|
175
193
|
when :untag_resource
|
176
194
|
Aws::AppStream::Endpoints::UntagResource.build(context)
|
195
|
+
when :update_app_block_builder
|
196
|
+
Aws::AppStream::Endpoints::UpdateAppBlockBuilder.build(context)
|
177
197
|
when :update_application
|
178
198
|
Aws::AppStream::Endpoints::UpdateApplication.build(context)
|
179
199
|
when :update_directory_config
|