aws-sdk-ivsrealtime 1.10.0 → 1.11.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: 439c2d4f4c7faf8ca72cf032c8785d28d8ea10e2619bb4c89045b507a790dcd1
4
- data.tar.gz: 75824a27932d053e71115d59d3c7b0a2bfe9999b62bb0090a01615648529f9ff
3
+ metadata.gz: 47ad4cd62ed789e67ba34974bd34de6d2a05cedff0cdda27bd2a04d4c3e0a787
4
+ data.tar.gz: 8e66d4acda81386ffdf2102059fcd959a97f7e1aa8ae6fa4a77d0c89dfcb702b
5
5
  SHA512:
6
- metadata.gz: e0a9d47a6ecfbed01bee162cf3c52d26b3685ba9dbacf08cc35fbb4d840d5d41d80f879babfd8786095a4b0dae176ab4f8ff3025c5c603d69f3f980178963e03
7
- data.tar.gz: 9f0aab2a2ffb11b1090c768a321b6a8868fff95167f8ccb323fc869dde0f1e6fa94a7011c49acc655ba191556c16b37a9f9b7812f75f67b3da7bcb7a221de815
6
+ metadata.gz: 9906130b0df0cceb2112e6ff7e9a9e813f8bf12675943c9025dc796ce78e19d502b14a5eafb244834cca4dc411f47787b88dd0a0bdc94e640356d638482f9358
7
+ data.tar.gz: f85c9802e4eaf0ad3c32cf57de056bef958977ba06167c60e2d27c68649ffd33170b073fc551d2673c400273dee2f41021d4ff76ed5b7a44c6e03c8f9f953645
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.11.0 (2023-10-12)
5
+ ------------------
6
+
7
+ * Feature - Update GetParticipant to return additional metadata.
8
+
4
9
  1.10.0 (2023-09-27)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.10.0
1
+ 1.11.0
@@ -610,9 +610,15 @@ module Aws::IVSRealTime
610
610
  #
611
611
  # resp.participant.attributes #=> Hash
612
612
  # resp.participant.attributes["String"] #=> String
613
+ # resp.participant.browser_name #=> String
614
+ # resp.participant.browser_version #=> String
613
615
  # resp.participant.first_join_time #=> Time
616
+ # resp.participant.isp_name #=> String
617
+ # resp.participant.os_name #=> String
618
+ # resp.participant.os_version #=> String
614
619
  # resp.participant.participant_id #=> String
615
620
  # resp.participant.published #=> Boolean
621
+ # resp.participant.sdk_version #=> String
616
622
  # resp.participant.state #=> String, one of "CONNECTED", "DISCONNECTED"
617
623
  # resp.participant.user_id #=> String
618
624
  #
@@ -1052,7 +1058,7 @@ module Aws::IVSRealTime
1052
1058
  params: params,
1053
1059
  config: config)
1054
1060
  context[:gem_name] = 'aws-sdk-ivsrealtime'
1055
- context[:gem_version] = '1.10.0'
1061
+ context[:gem_version] = '1.11.0'
1056
1062
  Seahorse::Client::Request.new(handlers, context)
1057
1063
  end
1058
1064
 
@@ -52,6 +52,7 @@ module Aws::IVSRealTime
52
52
  PaginationToken = Shapes::StringShape.new(name: 'PaginationToken')
53
53
  Participant = Shapes::StructureShape.new(name: 'Participant')
54
54
  ParticipantAttributes = Shapes::MapShape.new(name: 'ParticipantAttributes')
55
+ ParticipantClientAttribute = Shapes::StringShape.new(name: 'ParticipantClientAttribute')
55
56
  ParticipantId = Shapes::StringShape.new(name: 'ParticipantId')
56
57
  ParticipantList = Shapes::ListShape.new(name: 'ParticipantList')
57
58
  ParticipantState = Shapes::StringShape.new(name: 'ParticipantState')
@@ -216,9 +217,15 @@ module Aws::IVSRealTime
216
217
  ListTagsForResourceResponse.struct_class = Types::ListTagsForResourceResponse
217
218
 
218
219
  Participant.add_member(:attributes, Shapes::ShapeRef.new(shape: ParticipantAttributes, location_name: "attributes"))
220
+ Participant.add_member(:browser_name, Shapes::ShapeRef.new(shape: ParticipantClientAttribute, location_name: "browserName"))
221
+ Participant.add_member(:browser_version, Shapes::ShapeRef.new(shape: ParticipantClientAttribute, location_name: "browserVersion"))
219
222
  Participant.add_member(:first_join_time, Shapes::ShapeRef.new(shape: Time, location_name: "firstJoinTime"))
223
+ Participant.add_member(:isp_name, Shapes::ShapeRef.new(shape: ParticipantClientAttribute, location_name: "ispName"))
224
+ Participant.add_member(:os_name, Shapes::ShapeRef.new(shape: ParticipantClientAttribute, location_name: "osName"))
225
+ Participant.add_member(:os_version, Shapes::ShapeRef.new(shape: ParticipantClientAttribute, location_name: "osVersion"))
220
226
  Participant.add_member(:participant_id, Shapes::ShapeRef.new(shape: ParticipantId, location_name: "participantId"))
221
227
  Participant.add_member(:published, Shapes::ShapeRef.new(shape: Published, location_name: "published"))
228
+ Participant.add_member(:sdk_version, Shapes::ShapeRef.new(shape: ParticipantClientAttribute, location_name: "sdkVersion"))
222
229
  Participant.add_member(:state, Shapes::ShapeRef.new(shape: ParticipantState, location_name: "state"))
223
230
  Participant.add_member(:user_id, Shapes::ShapeRef.new(shape: UserId, location_name: "userId"))
224
231
  Participant.struct_class = Types::Participant
@@ -565,11 +565,31 @@ module Aws::IVSRealTime
565
565
  # identifying, confidential, or sensitive information*.
566
566
  # @return [Hash<String,String>]
567
567
  #
568
+ # @!attribute [rw] browser_name
569
+ # The participant’s browser.
570
+ # @return [String]
571
+ #
572
+ # @!attribute [rw] browser_version
573
+ # The participant’s browser version.
574
+ # @return [String]
575
+ #
568
576
  # @!attribute [rw] first_join_time
569
577
  # ISO 8601 timestamp (returned as a string) when the participant first
570
578
  # joined the stage session.
571
579
  # @return [Time]
572
580
  #
581
+ # @!attribute [rw] isp_name
582
+ # The participant’s Internet Service Provider.
583
+ # @return [String]
584
+ #
585
+ # @!attribute [rw] os_name
586
+ # The participant’s operating system.
587
+ # @return [String]
588
+ #
589
+ # @!attribute [rw] os_version
590
+ # The participant’s operating system version.
591
+ # @return [String]
592
+ #
573
593
  # @!attribute [rw] participant_id
574
594
  # Unique identifier for this participant, assigned by IVS.
575
595
  # @return [String]
@@ -578,6 +598,10 @@ module Aws::IVSRealTime
578
598
  # Whether the participant ever published to the stage session.
579
599
  # @return [Boolean]
580
600
  #
601
+ # @!attribute [rw] sdk_version
602
+ # The participant’s SDK version.
603
+ # @return [String]
604
+ #
581
605
  # @!attribute [rw] state
582
606
  # Whether the participant is connected to or disconnected from the
583
607
  # stage.
@@ -595,9 +619,15 @@ module Aws::IVSRealTime
595
619
  #
596
620
  class Participant < Struct.new(
597
621
  :attributes,
622
+ :browser_name,
623
+ :browser_version,
598
624
  :first_join_time,
625
+ :isp_name,
626
+ :os_name,
627
+ :os_version,
599
628
  :participant_id,
600
629
  :published,
630
+ :sdk_version,
601
631
  :state,
602
632
  :user_id)
603
633
  SENSITIVE = []
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-ivsrealtime/customizations'
52
52
  # @!group service
53
53
  module Aws::IVSRealTime
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-ivsrealtime
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: 2023-09-27 00:00:00.000000000 Z
11
+ date: 2023-10-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core