aws-sdk-mediaconnect 1.22.0 → 1.27.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: 8080ccec81b01e10e844e604cde39ea0f99165bf60fbe17340dc614d375f9536
4
- data.tar.gz: dee80894599bd7ba6bdb5080a6ad17719c93086dd79ab99609c7b649c819cc91
3
+ metadata.gz: bb1c59517e123e1ebfbabd46e603bf9648bfc93ec380acf2cd917e611458e4f6
4
+ data.tar.gz: '06990869e8816e6c682328ee6aeeb93ebbbb9422bede9f4a64dca51d77746cd7'
5
5
  SHA512:
6
- metadata.gz: 0c2dea9ad34c10710b595696b327b3088ddcad3832c558dba4195d4481cee1c1bbdc79f8feba21f82bcf4717d8af7b90a290caaf9c44d8e1bd123faf423fe5b2
7
- data.tar.gz: 7f1054cd2b9e1544ea3208382edf9127c399e43082e44aac9b7ef69c2ee262b5e79a569f4dab919075c01eaded8d6c8438a52056333b7428bb29acba37ba7d62
6
+ metadata.gz: 39af8168dca71d80c854f2d3e3b0ddb1c55318766841cc04b852f5a9b1cbfd092ecb6d58a8a1825d45a6472d223deb9df5c3a3cc2eaab2b4e108c867256d4db9
7
+ data.tar.gz: 922945e3355f50c5574fb3df4dd5a2dfd23ed35b3b876c1056ea78d54f7ed3b060801a68e6a00ed90f523e411e300a8be36e7a8714eec18842444ca5a2330ebf
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -5,6 +7,7 @@
5
7
  #
6
8
  # WARNING ABOUT GENERATED CODE
7
9
 
10
+
8
11
  require 'aws-sdk-core'
9
12
  require 'aws-sigv4'
10
13
 
@@ -42,9 +45,9 @@ require_relative 'aws-sdk-mediaconnect/customizations'
42
45
  #
43
46
  # See {Errors} for more information.
44
47
  #
45
- # @service
48
+ # @!group service
46
49
  module Aws::MediaConnect
47
50
 
48
- GEM_VERSION = '1.22.0'
51
+ GEM_VERSION = '1.27.0'
49
52
 
50
53
  end
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -24,6 +26,7 @@ require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
24
26
  require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
25
27
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
26
28
  require 'aws-sdk-core/plugins/transfer_encoding.rb'
29
+ require 'aws-sdk-core/plugins/http_checksum.rb'
27
30
  require 'aws-sdk-core/plugins/signature_v4.rb'
28
31
  require 'aws-sdk-core/plugins/protocols/rest_json.rb'
29
32
 
@@ -69,6 +72,7 @@ module Aws::MediaConnect
69
72
  add_plugin(Aws::Plugins::ClientMetricsPlugin)
70
73
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
71
74
  add_plugin(Aws::Plugins::TransferEncoding)
75
+ add_plugin(Aws::Plugins::HttpChecksum)
72
76
  add_plugin(Aws::Plugins::SignatureV4)
73
77
  add_plugin(Aws::Plugins::Protocols::RestJson)
74
78
 
@@ -81,13 +85,28 @@ module Aws::MediaConnect
81
85
  # * `Aws::Credentials` - Used for configuring static, non-refreshing
82
86
  # credentials.
83
87
  #
88
+ # * `Aws::SharedCredentials` - Used for loading static credentials from a
89
+ # shared file, such as `~/.aws/config`.
90
+ #
91
+ # * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
92
+ #
93
+ # * `Aws::AssumeRoleWebIdentityCredentials` - Used when you need to
94
+ # assume a role after providing credentials via the web.
95
+ #
96
+ # * `Aws::SSOCredentials` - Used for loading credentials from AWS SSO using an
97
+ # access token generated from `aws login`.
98
+ #
99
+ # * `Aws::ProcessCredentials` - Used for loading credentials from a
100
+ # process that outputs to stdout.
101
+ #
84
102
  # * `Aws::InstanceProfileCredentials` - Used for loading credentials
85
103
  # from an EC2 IMDS on an EC2 instance.
86
104
  #
87
- # * `Aws::SharedCredentials` - Used for loading credentials from a
88
- # shared file, such as `~/.aws/config`.
105
+ # * `Aws::ECSCredentials` - Used for loading credentials from
106
+ # instances running in ECS.
89
107
  #
90
- # * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
108
+ # * `Aws::CognitoIdentityCredentials` - Used for loading credentials
109
+ # from the Cognito Identity service.
91
110
  #
92
111
  # When `:credentials` are not configured directly, the following
93
112
  # locations will be searched for credentials:
@@ -97,10 +116,10 @@ module Aws::MediaConnect
97
116
  # * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
98
117
  # * `~/.aws/credentials`
99
118
  # * `~/.aws/config`
100
- # * EC2 IMDS instance profile - When used by default, the timeouts are
101
- # very aggressive. Construct and pass an instance of
102
- # `Aws::InstanceProfileCredentails` to enable retries and extended
103
- # timeouts.
119
+ # * EC2/ECS IMDS instance profile - When used by default, the timeouts
120
+ # are very aggressive. Construct and pass an instance of
121
+ # `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
122
+ # enable retries and extended timeouts.
104
123
  #
105
124
  # @option options [required, String] :region
106
125
  # The AWS region to connect to. The configured `:region` is
@@ -161,7 +180,7 @@ module Aws::MediaConnect
161
180
  # @option options [String] :endpoint
162
181
  # The client endpoint is normally constructed from the `:region`
163
182
  # option. You should only configure an `:endpoint` when connecting
164
- # to test endpoints. This should be a valid HTTP(S) URI.
183
+ # to test or custom endpoints. This should be a valid HTTP(S) URI.
165
184
  #
166
185
  # @option options [Integer] :endpoint_cache_max_entries (1000)
167
186
  # Used for the maximum size limit of the LRU cache storing endpoints data
@@ -576,6 +595,7 @@ module Aws::MediaConnect
576
595
  # secret_arn: "__string",
577
596
  # url: "__string",
578
597
  # },
598
+ # entitlement_status: "ENABLED", # accepts ENABLED, DISABLED
579
599
  # name: "__string",
580
600
  # subscribers: ["__string"], # required
581
601
  # },
@@ -689,6 +709,7 @@ module Aws::MediaConnect
689
709
  # resp.flow.entitlements[0].encryption.secret_arn #=> String
690
710
  # resp.flow.entitlements[0].encryption.url #=> String
691
711
  # resp.flow.entitlements[0].entitlement_arn #=> String
712
+ # resp.flow.entitlements[0].entitlement_status #=> String, one of "ENABLED", "DISABLED"
692
713
  # resp.flow.entitlements[0].name #=> String
693
714
  # resp.flow.entitlements[0].subscribers #=> Array
694
715
  # resp.flow.entitlements[0].subscribers[0] #=> String
@@ -859,6 +880,7 @@ module Aws::MediaConnect
859
880
  # resp.flow.entitlements[0].encryption.secret_arn #=> String
860
881
  # resp.flow.entitlements[0].encryption.url #=> String
861
882
  # resp.flow.entitlements[0].entitlement_arn #=> String
883
+ # resp.flow.entitlements[0].entitlement_status #=> String, one of "ENABLED", "DISABLED"
862
884
  # resp.flow.entitlements[0].name #=> String
863
885
  # resp.flow.entitlements[0].subscribers #=> Array
864
886
  # resp.flow.entitlements[0].subscribers[0] #=> String
@@ -997,6 +1019,7 @@ module Aws::MediaConnect
997
1019
  # secret_arn: "__string",
998
1020
  # url: "__string",
999
1021
  # },
1022
+ # entitlement_status: "ENABLED", # accepts ENABLED, DISABLED
1000
1023
  # name: "__string",
1001
1024
  # subscribers: ["__string"], # required
1002
1025
  # },
@@ -1019,6 +1042,7 @@ module Aws::MediaConnect
1019
1042
  # resp.entitlements[0].encryption.secret_arn #=> String
1020
1043
  # resp.entitlements[0].encryption.url #=> String
1021
1044
  # resp.entitlements[0].entitlement_arn #=> String
1045
+ # resp.entitlements[0].entitlement_status #=> String, one of "ENABLED", "DISABLED"
1022
1046
  # resp.entitlements[0].name #=> String
1023
1047
  # resp.entitlements[0].subscribers #=> Array
1024
1048
  # resp.entitlements[0].subscribers[0] #=> String
@@ -1435,6 +1459,7 @@ module Aws::MediaConnect
1435
1459
  # resp.flow.entitlements[0].encryption.secret_arn #=> String
1436
1460
  # resp.flow.entitlements[0].encryption.url #=> String
1437
1461
  # resp.flow.entitlements[0].entitlement_arn #=> String
1462
+ # resp.flow.entitlements[0].entitlement_status #=> String, one of "ENABLED", "DISABLED"
1438
1463
  # resp.flow.entitlements[0].name #=> String
1439
1464
  # resp.flow.entitlements[0].subscribers #=> Array
1440
1465
  # resp.flow.entitlements[0].subscribers[0] #=> String
@@ -1556,6 +1581,12 @@ module Aws::MediaConnect
1556
1581
  #
1557
1582
  # @option params [required, String] :entitlement_arn
1558
1583
  #
1584
+ # @option params [String] :entitlement_status
1585
+ # An indication of whether you want to enable the entitlement to allow
1586
+ # access, or disable it to stop streaming content to the subscriber’s
1587
+ # flow temporarily. If you don’t specify the entitlementStatus field in
1588
+ # your request, MediaConnect leaves the value unchanged.
1589
+ #
1559
1590
  # @option params [required, String] :flow_arn
1560
1591
  #
1561
1592
  # @option params [Array<String>] :subscribers
@@ -1584,6 +1615,7 @@ module Aws::MediaConnect
1584
1615
  # url: "__string",
1585
1616
  # },
1586
1617
  # entitlement_arn: "__string", # required
1618
+ # entitlement_status: "ENABLED", # accepts ENABLED, DISABLED
1587
1619
  # flow_arn: "__string", # required
1588
1620
  # subscribers: ["__string"],
1589
1621
  # })
@@ -1602,6 +1634,7 @@ module Aws::MediaConnect
1602
1634
  # resp.entitlement.encryption.secret_arn #=> String
1603
1635
  # resp.entitlement.encryption.url #=> String
1604
1636
  # resp.entitlement.entitlement_arn #=> String
1637
+ # resp.entitlement.entitlement_status #=> String, one of "ENABLED", "DISABLED"
1605
1638
  # resp.entitlement.name #=> String
1606
1639
  # resp.entitlement.subscribers #=> Array
1607
1640
  # resp.entitlement.subscribers[0] #=> String
@@ -1862,7 +1895,7 @@ module Aws::MediaConnect
1862
1895
  params: params,
1863
1896
  config: config)
1864
1897
  context[:gem_name] = 'aws-sdk-mediaconnect'
1865
- context[:gem_version] = '1.22.0'
1898
+ context[:gem_version] = '1.27.0'
1866
1899
  Seahorse::Client::Request.new(handlers, context)
1867
1900
  end
1868
1901
 
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -30,6 +32,7 @@ module Aws::MediaConnect
30
32
  DescribeFlowResponse = Shapes::StructureShape.new(name: 'DescribeFlowResponse')
31
33
  Encryption = Shapes::StructureShape.new(name: 'Encryption')
32
34
  Entitlement = Shapes::StructureShape.new(name: 'Entitlement')
35
+ EntitlementStatus = Shapes::StringShape.new(name: 'EntitlementStatus')
33
36
  FailoverConfig = Shapes::StructureShape.new(name: 'FailoverConfig')
34
37
  Flow = Shapes::StructureShape.new(name: 'Flow')
35
38
  ForbiddenException = Shapes::StructureShape.new(name: 'ForbiddenException')
@@ -198,6 +201,7 @@ module Aws::MediaConnect
198
201
  Entitlement.add_member(:description, Shapes::ShapeRef.new(shape: __string, location_name: "description"))
199
202
  Entitlement.add_member(:encryption, Shapes::ShapeRef.new(shape: Encryption, location_name: "encryption"))
200
203
  Entitlement.add_member(:entitlement_arn, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "entitlementArn"))
204
+ Entitlement.add_member(:entitlement_status, Shapes::ShapeRef.new(shape: EntitlementStatus, location_name: "entitlementStatus"))
201
205
  Entitlement.add_member(:name, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "name"))
202
206
  Entitlement.add_member(:subscribers, Shapes::ShapeRef.new(shape: __listOf__string, required: true, location_name: "subscribers"))
203
207
  Entitlement.struct_class = Types::Entitlement
@@ -226,6 +230,7 @@ module Aws::MediaConnect
226
230
  GrantEntitlementRequest.add_member(:data_transfer_subscriber_fee_percent, Shapes::ShapeRef.new(shape: __integer, location_name: "dataTransferSubscriberFeePercent"))
227
231
  GrantEntitlementRequest.add_member(:description, Shapes::ShapeRef.new(shape: __string, location_name: "description"))
228
232
  GrantEntitlementRequest.add_member(:encryption, Shapes::ShapeRef.new(shape: Encryption, location_name: "encryption"))
233
+ GrantEntitlementRequest.add_member(:entitlement_status, Shapes::ShapeRef.new(shape: EntitlementStatus, location_name: "entitlementStatus"))
229
234
  GrantEntitlementRequest.add_member(:name, Shapes::ShapeRef.new(shape: __string, location_name: "name"))
230
235
  GrantEntitlementRequest.add_member(:subscribers, Shapes::ShapeRef.new(shape: __listOf__string, required: true, location_name: "subscribers"))
231
236
  GrantEntitlementRequest.struct_class = Types::GrantEntitlementRequest
@@ -415,6 +420,7 @@ module Aws::MediaConnect
415
420
  UpdateFlowEntitlementRequest.add_member(:description, Shapes::ShapeRef.new(shape: __string, location_name: "description"))
416
421
  UpdateFlowEntitlementRequest.add_member(:encryption, Shapes::ShapeRef.new(shape: UpdateEncryption, location_name: "encryption"))
417
422
  UpdateFlowEntitlementRequest.add_member(:entitlement_arn, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "entitlementArn"))
423
+ UpdateFlowEntitlementRequest.add_member(:entitlement_status, Shapes::ShapeRef.new(shape: EntitlementStatus, location_name: "entitlementStatus"))
418
424
  UpdateFlowEntitlementRequest.add_member(:flow_arn, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "flowArn"))
419
425
  UpdateFlowEntitlementRequest.add_member(:subscribers, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "subscribers"))
420
426
  UpdateFlowEntitlementRequest.struct_class = Types::UpdateFlowEntitlementRequest
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -19,6 +21,7 @@ module Aws::MediaConnect
19
21
  #
20
22
  class AddFlowOutputs420Exception < Struct.new(
21
23
  :message)
24
+ SENSITIVE = []
22
25
  include Aws::Structure
23
26
  end
24
27
 
@@ -72,6 +75,7 @@ module Aws::MediaConnect
72
75
  class AddFlowOutputsRequest < Struct.new(
73
76
  :flow_arn,
74
77
  :outputs)
78
+ SENSITIVE = []
75
79
  include Aws::Structure
76
80
  end
77
81
 
@@ -91,6 +95,7 @@ module Aws::MediaConnect
91
95
  class AddFlowOutputsResponse < Struct.new(
92
96
  :flow_arn,
93
97
  :outputs)
98
+ SENSITIVE = []
94
99
  include Aws::Structure
95
100
  end
96
101
 
@@ -140,6 +145,7 @@ module Aws::MediaConnect
140
145
  class AddFlowSourcesRequest < Struct.new(
141
146
  :flow_arn,
142
147
  :sources)
148
+ SENSITIVE = []
143
149
  include Aws::Structure
144
150
  end
145
151
 
@@ -159,6 +165,7 @@ module Aws::MediaConnect
159
165
  class AddFlowSourcesResponse < Struct.new(
160
166
  :flow_arn,
161
167
  :sources)
168
+ SENSITIVE = []
162
169
  include Aws::Structure
163
170
  end
164
171
 
@@ -191,6 +198,7 @@ module Aws::MediaConnect
191
198
  class AddFlowVpcInterfacesRequest < Struct.new(
192
199
  :flow_arn,
193
200
  :vpc_interfaces)
201
+ SENSITIVE = []
194
202
  include Aws::Structure
195
203
  end
196
204
 
@@ -210,6 +218,7 @@ module Aws::MediaConnect
210
218
  class AddFlowVpcInterfacesResponse < Struct.new(
211
219
  :flow_arn,
212
220
  :vpc_interfaces)
221
+ SENSITIVE = []
213
222
  include Aws::Structure
214
223
  end
215
224
 
@@ -317,6 +326,7 @@ module Aws::MediaConnect
317
326
  :smoothing_latency,
318
327
  :stream_id,
319
328
  :vpc_interface_attachment)
329
+ SENSITIVE = []
320
330
  include Aws::Structure
321
331
  end
322
332
 
@@ -331,6 +341,7 @@ module Aws::MediaConnect
331
341
  #
332
342
  class BadRequestException < Struct.new(
333
343
  :message)
344
+ SENSITIVE = []
334
345
  include Aws::Structure
335
346
  end
336
347
 
@@ -345,6 +356,7 @@ module Aws::MediaConnect
345
356
  #
346
357
  class CreateFlow420Exception < Struct.new(
347
358
  :message)
359
+ SENSITIVE = []
348
360
  include Aws::Structure
349
361
  end
350
362
 
@@ -371,6 +383,7 @@ module Aws::MediaConnect
371
383
  # secret_arn: "__string",
372
384
  # url: "__string",
373
385
  # },
386
+ # entitlement_status: "ENABLED", # accepts ENABLED, DISABLED
374
387
  # name: "__string",
375
388
  # subscribers: ["__string"], # required
376
389
  # },
@@ -510,6 +523,7 @@ module Aws::MediaConnect
510
523
  :source_failover_config,
511
524
  :sources,
512
525
  :vpc_interfaces)
526
+ SENSITIVE = []
513
527
  include Aws::Structure
514
528
  end
515
529
 
@@ -524,6 +538,7 @@ module Aws::MediaConnect
524
538
  #
525
539
  class CreateFlowResponse < Struct.new(
526
540
  :flow)
541
+ SENSITIVE = []
527
542
  include Aws::Structure
528
543
  end
529
544
 
@@ -541,6 +556,7 @@ module Aws::MediaConnect
541
556
  #
542
557
  class DeleteFlowRequest < Struct.new(
543
558
  :flow_arn)
559
+ SENSITIVE = []
544
560
  include Aws::Structure
545
561
  end
546
562
 
@@ -559,6 +575,7 @@ module Aws::MediaConnect
559
575
  class DeleteFlowResponse < Struct.new(
560
576
  :flow_arn,
561
577
  :status)
578
+ SENSITIVE = []
562
579
  include Aws::Structure
563
580
  end
564
581
 
@@ -576,6 +593,7 @@ module Aws::MediaConnect
576
593
  #
577
594
  class DescribeFlowRequest < Struct.new(
578
595
  :flow_arn)
596
+ SENSITIVE = []
579
597
  include Aws::Structure
580
598
  end
581
599
 
@@ -595,6 +613,7 @@ module Aws::MediaConnect
595
613
  class DescribeFlowResponse < Struct.new(
596
614
  :flow,
597
615
  :messages)
616
+ SENSITIVE = []
598
617
  include Aws::Structure
599
618
  end
600
619
 
@@ -680,6 +699,7 @@ module Aws::MediaConnect
680
699
  :role_arn,
681
700
  :secret_arn,
682
701
  :url)
702
+ SENSITIVE = []
683
703
  include Aws::Structure
684
704
  end
685
705
 
@@ -703,6 +723,10 @@ module Aws::MediaConnect
703
723
  # The ARN of the entitlement.
704
724
  # @return [String]
705
725
  #
726
+ # @!attribute [rw] entitlement_status
727
+ # An indication of whether the entitlement is enabled.
728
+ # @return [String]
729
+ #
706
730
  # @!attribute [rw] name
707
731
  # The name of the entitlement.
708
732
  # @return [String]
@@ -720,8 +744,10 @@ module Aws::MediaConnect
720
744
  :description,
721
745
  :encryption,
722
746
  :entitlement_arn,
747
+ :entitlement_status,
723
748
  :name,
724
749
  :subscribers)
750
+ SENSITIVE = []
725
751
  include Aws::Structure
726
752
  end
727
753
 
@@ -747,6 +773,7 @@ module Aws::MediaConnect
747
773
  class FailoverConfig < Struct.new(
748
774
  :recovery_window,
749
775
  :state)
776
+ SENSITIVE = []
750
777
  include Aws::Structure
751
778
  end
752
779
 
@@ -819,6 +846,7 @@ module Aws::MediaConnect
819
846
  :sources,
820
847
  :status,
821
848
  :vpc_interfaces)
849
+ SENSITIVE = []
822
850
  include Aws::Structure
823
851
  end
824
852
 
@@ -833,6 +861,7 @@ module Aws::MediaConnect
833
861
  #
834
862
  class ForbiddenException < Struct.new(
835
863
  :message)
864
+ SENSITIVE = []
836
865
  include Aws::Structure
837
866
  end
838
867
 
@@ -855,6 +884,7 @@ module Aws::MediaConnect
855
884
  # secret_arn: "__string",
856
885
  # url: "__string",
857
886
  # },
887
+ # entitlement_status: "ENABLED", # accepts ENABLED, DISABLED
858
888
  # name: "__string",
859
889
  # subscribers: ["__string"], # required
860
890
  # }
@@ -875,6 +905,13 @@ module Aws::MediaConnect
875
905
  # associated with this entitlement.
876
906
  # @return [Types::Encryption]
877
907
  #
908
+ # @!attribute [rw] entitlement_status
909
+ # An indication of whether the new entitlement should be enabled or
910
+ # disabled as soon as it is created. If you don’t specify the
911
+ # entitlementStatus field in your request, MediaConnect sets it to
912
+ # ENABLED.
913
+ # @return [String]
914
+ #
878
915
  # @!attribute [rw] name
879
916
  # The name of the entitlement. This value must be unique within the
880
917
  # current flow.
@@ -892,8 +929,10 @@ module Aws::MediaConnect
892
929
  :data_transfer_subscriber_fee_percent,
893
930
  :description,
894
931
  :encryption,
932
+ :entitlement_status,
895
933
  :name,
896
934
  :subscribers)
935
+ SENSITIVE = []
897
936
  include Aws::Structure
898
937
  end
899
938
 
@@ -908,6 +947,7 @@ module Aws::MediaConnect
908
947
  #
909
948
  class GrantFlowEntitlements420Exception < Struct.new(
910
949
  :message)
950
+ SENSITIVE = []
911
951
  include Aws::Structure
912
952
  end
913
953
 
@@ -932,6 +972,7 @@ module Aws::MediaConnect
932
972
  # secret_arn: "__string",
933
973
  # url: "__string",
934
974
  # },
975
+ # entitlement_status: "ENABLED", # accepts ENABLED, DISABLED
935
976
  # name: "__string",
936
977
  # subscribers: ["__string"], # required
937
978
  # },
@@ -951,6 +992,7 @@ module Aws::MediaConnect
951
992
  class GrantFlowEntitlementsRequest < Struct.new(
952
993
  :entitlements,
953
994
  :flow_arn)
995
+ SENSITIVE = []
954
996
  include Aws::Structure
955
997
  end
956
998
 
@@ -969,6 +1011,7 @@ module Aws::MediaConnect
969
1011
  class GrantFlowEntitlementsResponse < Struct.new(
970
1012
  :entitlements,
971
1013
  :flow_arn)
1014
+ SENSITIVE = []
972
1015
  include Aws::Structure
973
1016
  end
974
1017
 
@@ -983,6 +1026,7 @@ module Aws::MediaConnect
983
1026
  #
984
1027
  class InternalServerErrorException < Struct.new(
985
1028
  :message)
1029
+ SENSITIVE = []
986
1030
  include Aws::Structure
987
1031
  end
988
1032
 
@@ -1005,6 +1049,7 @@ module Aws::MediaConnect
1005
1049
  class ListEntitlementsRequest < Struct.new(
1006
1050
  :max_results,
1007
1051
  :next_token)
1052
+ SENSITIVE = []
1008
1053
  include Aws::Structure
1009
1054
  end
1010
1055
 
@@ -1031,6 +1076,7 @@ module Aws::MediaConnect
1031
1076
  class ListEntitlementsResponse < Struct.new(
1032
1077
  :entitlements,
1033
1078
  :next_token)
1079
+ SENSITIVE = []
1034
1080
  include Aws::Structure
1035
1081
  end
1036
1082
 
@@ -1053,6 +1099,7 @@ module Aws::MediaConnect
1053
1099
  class ListFlowsRequest < Struct.new(
1054
1100
  :max_results,
1055
1101
  :next_token)
1102
+ SENSITIVE = []
1056
1103
  include Aws::Structure
1057
1104
  end
1058
1105
 
@@ -1077,6 +1124,7 @@ module Aws::MediaConnect
1077
1124
  class ListFlowsResponse < Struct.new(
1078
1125
  :flows,
1079
1126
  :next_token)
1127
+ SENSITIVE = []
1080
1128
  include Aws::Structure
1081
1129
  end
1082
1130
 
@@ -1094,6 +1142,7 @@ module Aws::MediaConnect
1094
1142
  #
1095
1143
  class ListTagsForResourceRequest < Struct.new(
1096
1144
  :resource_arn)
1145
+ SENSITIVE = []
1097
1146
  include Aws::Structure
1098
1147
  end
1099
1148
 
@@ -1109,6 +1158,7 @@ module Aws::MediaConnect
1109
1158
  #
1110
1159
  class ListTagsForResourceResponse < Struct.new(
1111
1160
  :tags)
1161
+ SENSITIVE = []
1112
1162
  include Aws::Structure
1113
1163
  end
1114
1164
 
@@ -1133,6 +1183,7 @@ module Aws::MediaConnect
1133
1183
  :data_transfer_subscriber_fee_percent,
1134
1184
  :entitlement_arn,
1135
1185
  :entitlement_name)
1186
+ SENSITIVE = []
1136
1187
  include Aws::Structure
1137
1188
  end
1138
1189
 
@@ -1175,6 +1226,7 @@ module Aws::MediaConnect
1175
1226
  :name,
1176
1227
  :source_type,
1177
1228
  :status)
1229
+ SENSITIVE = []
1178
1230
  include Aws::Structure
1179
1231
  end
1180
1232
 
@@ -1189,6 +1241,7 @@ module Aws::MediaConnect
1189
1241
  #
1190
1242
  class Messages < Struct.new(
1191
1243
  :errors)
1244
+ SENSITIVE = []
1192
1245
  include Aws::Structure
1193
1246
  end
1194
1247
 
@@ -1203,6 +1256,7 @@ module Aws::MediaConnect
1203
1256
  #
1204
1257
  class NotFoundException < Struct.new(
1205
1258
  :message)
1259
+ SENSITIVE = []
1206
1260
  include Aws::Structure
1207
1261
  end
1208
1262
 
@@ -1273,6 +1327,7 @@ module Aws::MediaConnect
1273
1327
  :port,
1274
1328
  :transport,
1275
1329
  :vpc_interface_attachment)
1330
+ SENSITIVE = []
1276
1331
  include Aws::Structure
1277
1332
  end
1278
1333
 
@@ -1295,6 +1350,7 @@ module Aws::MediaConnect
1295
1350
  class RemoveFlowOutputRequest < Struct.new(
1296
1351
  :flow_arn,
1297
1352
  :output_arn)
1353
+ SENSITIVE = []
1298
1354
  include Aws::Structure
1299
1355
  end
1300
1356
 
@@ -1314,6 +1370,7 @@ module Aws::MediaConnect
1314
1370
  class RemoveFlowOutputResponse < Struct.new(
1315
1371
  :flow_arn,
1316
1372
  :output_arn)
1373
+ SENSITIVE = []
1317
1374
  include Aws::Structure
1318
1375
  end
1319
1376
 
@@ -1336,6 +1393,7 @@ module Aws::MediaConnect
1336
1393
  class RemoveFlowSourceRequest < Struct.new(
1337
1394
  :flow_arn,
1338
1395
  :source_arn)
1396
+ SENSITIVE = []
1339
1397
  include Aws::Structure
1340
1398
  end
1341
1399
 
@@ -1355,6 +1413,7 @@ module Aws::MediaConnect
1355
1413
  class RemoveFlowSourceResponse < Struct.new(
1356
1414
  :flow_arn,
1357
1415
  :source_arn)
1416
+ SENSITIVE = []
1358
1417
  include Aws::Structure
1359
1418
  end
1360
1419
 
@@ -1377,6 +1436,7 @@ module Aws::MediaConnect
1377
1436
  class RemoveFlowVpcInterfaceRequest < Struct.new(
1378
1437
  :flow_arn,
1379
1438
  :vpc_interface_name)
1439
+ SENSITIVE = []
1380
1440
  include Aws::Structure
1381
1441
  end
1382
1442
 
@@ -1403,6 +1463,7 @@ module Aws::MediaConnect
1403
1463
  :flow_arn,
1404
1464
  :non_deleted_network_interface_ids,
1405
1465
  :vpc_interface_name)
1466
+ SENSITIVE = []
1406
1467
  include Aws::Structure
1407
1468
  end
1408
1469
 
@@ -1418,6 +1479,7 @@ module Aws::MediaConnect
1418
1479
  #
1419
1480
  class ResponseError < Struct.new(
1420
1481
  :message)
1482
+ SENSITIVE = []
1421
1483
  include Aws::Structure
1422
1484
  end
1423
1485
 
@@ -1440,6 +1502,7 @@ module Aws::MediaConnect
1440
1502
  class RevokeFlowEntitlementRequest < Struct.new(
1441
1503
  :entitlement_arn,
1442
1504
  :flow_arn)
1505
+ SENSITIVE = []
1443
1506
  include Aws::Structure
1444
1507
  end
1445
1508
 
@@ -1460,6 +1523,7 @@ module Aws::MediaConnect
1460
1523
  class RevokeFlowEntitlementResponse < Struct.new(
1461
1524
  :entitlement_arn,
1462
1525
  :flow_arn)
1526
+ SENSITIVE = []
1463
1527
  include Aws::Structure
1464
1528
  end
1465
1529
 
@@ -1474,6 +1538,7 @@ module Aws::MediaConnect
1474
1538
  #
1475
1539
  class ServiceUnavailableException < Struct.new(
1476
1540
  :message)
1541
+ SENSITIVE = []
1477
1542
  include Aws::Structure
1478
1543
  end
1479
1544
 
@@ -1573,6 +1638,7 @@ module Aws::MediaConnect
1573
1638
  :stream_id,
1574
1639
  :vpc_interface_name,
1575
1640
  :whitelist_cidr)
1641
+ SENSITIVE = []
1576
1642
  include Aws::Structure
1577
1643
  end
1578
1644
 
@@ -1647,6 +1713,7 @@ module Aws::MediaConnect
1647
1713
  :transport,
1648
1714
  :vpc_interface_name,
1649
1715
  :whitelist_cidr)
1716
+ SENSITIVE = []
1650
1717
  include Aws::Structure
1651
1718
  end
1652
1719
 
@@ -1664,6 +1731,7 @@ module Aws::MediaConnect
1664
1731
  #
1665
1732
  class StartFlowRequest < Struct.new(
1666
1733
  :flow_arn)
1734
+ SENSITIVE = []
1667
1735
  include Aws::Structure
1668
1736
  end
1669
1737
 
@@ -1682,6 +1750,7 @@ module Aws::MediaConnect
1682
1750
  class StartFlowResponse < Struct.new(
1683
1751
  :flow_arn,
1684
1752
  :status)
1753
+ SENSITIVE = []
1685
1754
  include Aws::Structure
1686
1755
  end
1687
1756
 
@@ -1699,6 +1768,7 @@ module Aws::MediaConnect
1699
1768
  #
1700
1769
  class StopFlowRequest < Struct.new(
1701
1770
  :flow_arn)
1771
+ SENSITIVE = []
1702
1772
  include Aws::Structure
1703
1773
  end
1704
1774
 
@@ -1717,6 +1787,7 @@ module Aws::MediaConnect
1717
1787
  class StopFlowResponse < Struct.new(
1718
1788
  :flow_arn,
1719
1789
  :status)
1790
+ SENSITIVE = []
1720
1791
  include Aws::Structure
1721
1792
  end
1722
1793
 
@@ -1748,6 +1819,7 @@ module Aws::MediaConnect
1748
1819
  class TagResourceRequest < Struct.new(
1749
1820
  :resource_arn,
1750
1821
  :tags)
1822
+ SENSITIVE = []
1751
1823
  include Aws::Structure
1752
1824
  end
1753
1825
 
@@ -1762,6 +1834,7 @@ module Aws::MediaConnect
1762
1834
  #
1763
1835
  class TooManyRequestsException < Struct.new(
1764
1836
  :message)
1837
+ SENSITIVE = []
1765
1838
  include Aws::Structure
1766
1839
  end
1767
1840
 
@@ -1812,6 +1885,7 @@ module Aws::MediaConnect
1812
1885
  :remote_id,
1813
1886
  :smoothing_latency,
1814
1887
  :stream_id)
1888
+ SENSITIVE = []
1815
1889
  include Aws::Structure
1816
1890
  end
1817
1891
 
@@ -1834,6 +1908,7 @@ module Aws::MediaConnect
1834
1908
  class UntagResourceRequest < Struct.new(
1835
1909
  :resource_arn,
1836
1910
  :tag_keys)
1911
+ SENSITIVE = []
1837
1912
  include Aws::Structure
1838
1913
  end
1839
1914
 
@@ -1919,6 +1994,7 @@ module Aws::MediaConnect
1919
1994
  :role_arn,
1920
1995
  :secret_arn,
1921
1996
  :url)
1997
+ SENSITIVE = []
1922
1998
  include Aws::Structure
1923
1999
  end
1924
2000
 
@@ -1944,6 +2020,7 @@ module Aws::MediaConnect
1944
2020
  class UpdateFailoverConfig < Struct.new(
1945
2021
  :recovery_window,
1946
2022
  :state)
2023
+ SENSITIVE = []
1947
2024
  include Aws::Structure
1948
2025
  end
1949
2026
 
@@ -1966,6 +2043,7 @@ module Aws::MediaConnect
1966
2043
  # url: "__string",
1967
2044
  # },
1968
2045
  # entitlement_arn: "__string", # required
2046
+ # entitlement_status: "ENABLED", # accepts ENABLED, DISABLED
1969
2047
  # flow_arn: "__string", # required
1970
2048
  # subscribers: ["__string"],
1971
2049
  # }
@@ -1984,6 +2062,13 @@ module Aws::MediaConnect
1984
2062
  # @!attribute [rw] entitlement_arn
1985
2063
  # @return [String]
1986
2064
  #
2065
+ # @!attribute [rw] entitlement_status
2066
+ # An indication of whether you want to enable the entitlement to allow
2067
+ # access, or disable it to stop streaming content to the subscriber’s
2068
+ # flow temporarily. If you don’t specify the entitlementStatus field
2069
+ # in your request, MediaConnect leaves the value unchanged.
2070
+ # @return [String]
2071
+ #
1987
2072
  # @!attribute [rw] flow_arn
1988
2073
  # @return [String]
1989
2074
  #
@@ -1999,8 +2084,10 @@ module Aws::MediaConnect
1999
2084
  :description,
2000
2085
  :encryption,
2001
2086
  :entitlement_arn,
2087
+ :entitlement_status,
2002
2088
  :flow_arn,
2003
2089
  :subscribers)
2090
+ SENSITIVE = []
2004
2091
  include Aws::Structure
2005
2092
  end
2006
2093
 
@@ -2021,6 +2108,7 @@ module Aws::MediaConnect
2021
2108
  class UpdateFlowEntitlementResponse < Struct.new(
2022
2109
  :entitlement,
2023
2110
  :flow_arn)
2111
+ SENSITIVE = []
2024
2112
  include Aws::Structure
2025
2113
  end
2026
2114
 
@@ -2132,6 +2220,7 @@ module Aws::MediaConnect
2132
2220
  :smoothing_latency,
2133
2221
  :stream_id,
2134
2222
  :vpc_interface_attachment)
2223
+ SENSITIVE = []
2135
2224
  include Aws::Structure
2136
2225
  end
2137
2226
 
@@ -2151,6 +2240,7 @@ module Aws::MediaConnect
2151
2240
  class UpdateFlowOutputResponse < Struct.new(
2152
2241
  :flow_arn,
2153
2242
  :output)
2243
+ SENSITIVE = []
2154
2244
  include Aws::Structure
2155
2245
  end
2156
2246
 
@@ -2179,6 +2269,7 @@ module Aws::MediaConnect
2179
2269
  class UpdateFlowRequest < Struct.new(
2180
2270
  :flow_arn,
2181
2271
  :source_failover_config)
2272
+ SENSITIVE = []
2182
2273
  include Aws::Structure
2183
2274
  end
2184
2275
 
@@ -2193,6 +2284,7 @@ module Aws::MediaConnect
2193
2284
  #
2194
2285
  class UpdateFlowResponse < Struct.new(
2195
2286
  :flow)
2287
+ SENSITIVE = []
2196
2288
  include Aws::Structure
2197
2289
  end
2198
2290
 
@@ -2296,6 +2388,7 @@ module Aws::MediaConnect
2296
2388
  :stream_id,
2297
2389
  :vpc_interface_name,
2298
2390
  :whitelist_cidr)
2391
+ SENSITIVE = []
2299
2392
  include Aws::Structure
2300
2393
  end
2301
2394
 
@@ -2316,6 +2409,7 @@ module Aws::MediaConnect
2316
2409
  class UpdateFlowSourceResponse < Struct.new(
2317
2410
  :flow_arn,
2318
2411
  :source)
2412
+ SENSITIVE = []
2319
2413
  include Aws::Structure
2320
2414
  end
2321
2415
 
@@ -2352,6 +2446,7 @@ module Aws::MediaConnect
2352
2446
  :role_arn,
2353
2447
  :security_group_ids,
2354
2448
  :subnet_id)
2449
+ SENSITIVE = []
2355
2450
  include Aws::Structure
2356
2451
  end
2357
2452
 
@@ -2372,6 +2467,7 @@ module Aws::MediaConnect
2372
2467
  #
2373
2468
  class VpcInterfaceAttachment < Struct.new(
2374
2469
  :vpc_interface_name)
2470
+ SENSITIVE = []
2375
2471
  include Aws::Structure
2376
2472
  end
2377
2473
 
@@ -2412,6 +2508,7 @@ module Aws::MediaConnect
2412
2508
  :role_arn,
2413
2509
  :security_group_ids,
2414
2510
  :subnet_id)
2511
+ SENSITIVE = []
2415
2512
  include Aws::Structure
2416
2513
  end
2417
2514
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-mediaconnect
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.22.0
4
+ version: 1.27.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: 2020-05-28 00:00:00.000000000 Z
11
+ date: 2020-09-15 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.71.0
22
+ version: 3.99.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.71.0
32
+ version: 3.99.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement