aws-sdk-appstream 1.93.0 → 1.100.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 +35 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-appstream/client.rb +296 -8
- data/lib/aws-sdk-appstream/client_api.rb +129 -0
- data/lib/aws-sdk-appstream/endpoints.rb +119 -300
- data/lib/aws-sdk-appstream/plugins/endpoints.rb +26 -6
- data/lib/aws-sdk-appstream/types.rb +303 -2
- data/lib/aws-sdk-appstream.rb +16 -12
- data/sig/client.rbs +75 -0
- data/sig/resource.rbs +2 -0
- data/sig/types.rbs +73 -0
- metadata +4 -4
data/sig/types.rbs
CHANGED
@@ -397,6 +397,21 @@ module Aws::AppStream
|
|
397
397
|
SENSITIVE: []
|
398
398
|
end
|
399
399
|
|
400
|
+
class CreateThemeForStackRequest
|
401
|
+
attr_accessor stack_name: ::String
|
402
|
+
attr_accessor footer_links: ::Array[Types::ThemeFooterLink]
|
403
|
+
attr_accessor title_text: ::String
|
404
|
+
attr_accessor theme_styling: ("LIGHT_BLUE" | "BLUE" | "PINK" | "RED")
|
405
|
+
attr_accessor organization_logo_s3_location: Types::S3Location
|
406
|
+
attr_accessor favicon_s3_location: Types::S3Location
|
407
|
+
SENSITIVE: []
|
408
|
+
end
|
409
|
+
|
410
|
+
class CreateThemeForStackResult
|
411
|
+
attr_accessor theme: Types::Theme
|
412
|
+
SENSITIVE: []
|
413
|
+
end
|
414
|
+
|
400
415
|
class CreateUpdatedImageRequest
|
401
416
|
attr_accessor existing_image_name: ::String
|
402
417
|
attr_accessor new_image_name: ::String
|
@@ -520,6 +535,14 @@ module Aws::AppStream
|
|
520
535
|
class DeleteStackResult < Aws::EmptyStructure
|
521
536
|
end
|
522
537
|
|
538
|
+
class DeleteThemeForStackRequest
|
539
|
+
attr_accessor stack_name: ::String
|
540
|
+
SENSITIVE: []
|
541
|
+
end
|
542
|
+
|
543
|
+
class DeleteThemeForStackResult < Aws::EmptyStructure
|
544
|
+
end
|
545
|
+
|
523
546
|
class DeleteUsageReportSubscriptionRequest < Aws::EmptyStructure
|
524
547
|
end
|
525
548
|
|
@@ -713,6 +736,16 @@ module Aws::AppStream
|
|
713
736
|
SENSITIVE: []
|
714
737
|
end
|
715
738
|
|
739
|
+
class DescribeThemeForStackRequest
|
740
|
+
attr_accessor stack_name: ::String
|
741
|
+
SENSITIVE: []
|
742
|
+
end
|
743
|
+
|
744
|
+
class DescribeThemeForStackResult
|
745
|
+
attr_accessor theme: Types::Theme
|
746
|
+
SENSITIVE: []
|
747
|
+
end
|
748
|
+
|
716
749
|
class DescribeUsageReportSubscriptionsRequest
|
717
750
|
attr_accessor max_results: ::Integer
|
718
751
|
attr_accessor next_token: ::String
|
@@ -922,6 +955,10 @@ module Aws::AppStream
|
|
922
955
|
attr_accessor appstream_agent_version: ::String
|
923
956
|
attr_accessor image_permissions: Types::ImagePermissions
|
924
957
|
attr_accessor image_errors: ::Array[Types::ResourceError]
|
958
|
+
attr_accessor latest_appstream_agent_version: ("TRUE" | "FALSE")
|
959
|
+
attr_accessor supported_instance_families: ::Array[::String]
|
960
|
+
attr_accessor dynamic_app_providers_enabled: ("ENABLED" | "DISABLED")
|
961
|
+
attr_accessor image_shared_with_others: ("TRUE" | "FALSE")
|
925
962
|
SENSITIVE: []
|
926
963
|
end
|
927
964
|
|
@@ -944,6 +981,7 @@ module Aws::AppStream
|
|
944
981
|
attr_accessor image_builder_errors: ::Array[Types::ResourceError]
|
945
982
|
attr_accessor appstream_agent_version: ::String
|
946
983
|
attr_accessor access_endpoints: ::Array[Types::AccessEndpoint]
|
984
|
+
attr_accessor latest_appstream_agent_version: ("TRUE" | "FALSE")
|
947
985
|
SENSITIVE: []
|
948
986
|
end
|
949
987
|
|
@@ -1230,6 +1268,24 @@ module Aws::AppStream
|
|
1230
1268
|
class TagResourceResponse < Aws::EmptyStructure
|
1231
1269
|
end
|
1232
1270
|
|
1271
|
+
class Theme
|
1272
|
+
attr_accessor stack_name: ::String
|
1273
|
+
attr_accessor state: ("ENABLED" | "DISABLED")
|
1274
|
+
attr_accessor theme_title_text: ::String
|
1275
|
+
attr_accessor theme_styling: ("LIGHT_BLUE" | "BLUE" | "PINK" | "RED")
|
1276
|
+
attr_accessor theme_footer_links: ::Array[Types::ThemeFooterLink]
|
1277
|
+
attr_accessor theme_organization_logo_url: ::String
|
1278
|
+
attr_accessor theme_favicon_url: ::String
|
1279
|
+
attr_accessor created_time: ::Time
|
1280
|
+
SENSITIVE: []
|
1281
|
+
end
|
1282
|
+
|
1283
|
+
class ThemeFooterLink
|
1284
|
+
attr_accessor display_name: ::String
|
1285
|
+
attr_accessor footer_link_url: ::String
|
1286
|
+
SENSITIVE: []
|
1287
|
+
end
|
1288
|
+
|
1233
1289
|
class UntagResourceRequest
|
1234
1290
|
attr_accessor resource_arn: ::String
|
1235
1291
|
attr_accessor tag_keys: ::Array[::String]
|
@@ -1366,6 +1422,23 @@ module Aws::AppStream
|
|
1366
1422
|
SENSITIVE: []
|
1367
1423
|
end
|
1368
1424
|
|
1425
|
+
class UpdateThemeForStackRequest
|
1426
|
+
attr_accessor stack_name: ::String
|
1427
|
+
attr_accessor footer_links: ::Array[Types::ThemeFooterLink]
|
1428
|
+
attr_accessor title_text: ::String
|
1429
|
+
attr_accessor theme_styling: ("LIGHT_BLUE" | "BLUE" | "PINK" | "RED")
|
1430
|
+
attr_accessor organization_logo_s3_location: Types::S3Location
|
1431
|
+
attr_accessor favicon_s3_location: Types::S3Location
|
1432
|
+
attr_accessor state: ("ENABLED" | "DISABLED")
|
1433
|
+
attr_accessor attributes_to_delete: ::Array[("FOOTER_LINKS")]
|
1434
|
+
SENSITIVE: []
|
1435
|
+
end
|
1436
|
+
|
1437
|
+
class UpdateThemeForStackResult
|
1438
|
+
attr_accessor theme: Types::Theme
|
1439
|
+
SENSITIVE: []
|
1440
|
+
end
|
1441
|
+
|
1369
1442
|
class UsageReportSubscription
|
1370
1443
|
attr_accessor s3_bucket_name: ::String
|
1371
1444
|
attr_accessor schedule: ("DAILY")
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-appstream
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.100.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: 2024-
|
11
|
+
date: 2024-09-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.207.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.207.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|