aws-sdk-groundstation 1.44.0 → 1.45.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ab3e48a42b3f0f385563f26b5f52cccabf496c8003e8a938c4ba309204f5300e
4
- data.tar.gz: 3b8617fae5ee95d3e03c571c1fbf88da198bcd7b4e15f2f725b05f4c21ed1dab
3
+ metadata.gz: f2cc09627a74f4056e3d56b223552c04ff37799284e7f7f6219e4ebf8c0d47e3
4
+ data.tar.gz: b23eb1e481fcf12b6cc5cb5fc8ea8414572ea54ed817b4d2bc16837666e7a944
5
5
  SHA512:
6
- metadata.gz: 915671021b67065b90b8d078acdda1f483c3641030c125f4002483a9561b2cbb03e4976c654fb101e48ad6c81c8f0ee7ab18b2c6fb7cd459a44ac32ea5ff1957
7
- data.tar.gz: 9415fe962953bc665e03e643e251913b0a2a6ccfbeb80b0895297dc50d2fe49fd735deaf66c45b073f60601f788f7a75d9948b3478c26c52e0703738fafeb667
6
+ metadata.gz: 33d5b0cb479d6f6b6cc0a02ceaecf5a9b7b1802abea3fb0b57e4796d465bd0affe906c7ad6e503917a1c6e1e9a3259616235bc1dd7b2246096ab3c638aa7b4ea
7
+ data.tar.gz: a63ce90ea3f2abe6850aee18df0f6d8467a09b77aaf557059d73036827ded50171ddf654cb31fe87937703cce508975c179a0c49f3de16c3da0ff1ea1714fa77
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.45.0 (2024-04-03)
5
+ ------------------
6
+
7
+ * Feature - This release adds visibilityStartTime and visibilityEndTime to DescribeContact and ListContacts responses.
8
+
4
9
  1.44.0 (2024-01-26)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.44.0
1
+ 1.45.0
@@ -723,11 +723,12 @@ module Aws::GroundStation
723
723
  #
724
724
  # @option params [Integer] :contact_post_pass_duration_seconds
725
725
  # Amount of time after a contact ends that you’d like to receive a
726
- # CloudWatch event indicating the pass has finished.
726
+ # Ground Station Contact State Change event indicating the pass has
727
+ # finished.
727
728
  #
728
729
  # @option params [Integer] :contact_pre_pass_duration_seconds
729
- # Amount of time prior to contact start you’d like to receive a
730
- # CloudWatch event indicating an upcoming pass.
730
+ # Amount of time prior to contact start you’d like to receive a Ground
731
+ # Station Contact State Change event indicating an upcoming pass.
731
732
  #
732
733
  # @option params [required, Array<Array>] :dataflow_edges
733
734
  # A list of lists of ARNs. Each list of ARNs is an edge, with a *from*
@@ -933,6 +934,8 @@ module Aws::GroundStation
933
934
  # * {Types::DescribeContactResponse#satellite_arn #satellite_arn} => String
934
935
  # * {Types::DescribeContactResponse#start_time #start_time} => Time
935
936
  # * {Types::DescribeContactResponse#tags #tags} => Hash&lt;String,String&gt;
937
+ # * {Types::DescribeContactResponse#visibility_end_time #visibility_end_time} => Time
938
+ # * {Types::DescribeContactResponse#visibility_start_time #visibility_start_time} => Time
936
939
  #
937
940
  # @example Request syntax with placeholder values
938
941
  #
@@ -1017,6 +1020,8 @@ module Aws::GroundStation
1017
1020
  # resp.start_time #=> Time
1018
1021
  # resp.tags #=> Hash
1019
1022
  # resp.tags["String"] #=> String
1023
+ # resp.visibility_end_time #=> Time
1024
+ # resp.visibility_start_time #=> Time
1020
1025
  #
1021
1026
  #
1022
1027
  # The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
@@ -1496,6 +1501,8 @@ module Aws::GroundStation
1496
1501
  # resp.contact_list[0].start_time #=> Time
1497
1502
  # resp.contact_list[0].tags #=> Hash
1498
1503
  # resp.contact_list[0].tags["String"] #=> String
1504
+ # resp.contact_list[0].visibility_end_time #=> Time
1505
+ # resp.contact_list[0].visibility_start_time #=> Time
1499
1506
  # resp.next_token #=> String
1500
1507
  #
1501
1508
  # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/ListContacts AWS API Documentation
@@ -2152,11 +2159,13 @@ module Aws::GroundStation
2152
2159
  #
2153
2160
  # @option params [Integer] :contact_post_pass_duration_seconds
2154
2161
  # Amount of time after a contact ends that you’d like to receive a
2155
- # CloudWatch event indicating the pass has finished.
2162
+ # Ground Station Contact State Change event indicating the pass has
2163
+ # finished.
2156
2164
  #
2157
2165
  # @option params [Integer] :contact_pre_pass_duration_seconds
2158
2166
  # Amount of time after a contact ends that you’d like to receive a
2159
- # CloudWatch event indicating the pass has finished.
2167
+ # Ground Station Contact State Change event indicating the pass has
2168
+ # finished.
2160
2169
  #
2161
2170
  # @option params [Array<Array>] :dataflow_edges
2162
2171
  # A list of lists of ARNs. Each list of ARNs is an edge, with a *from*
@@ -2232,7 +2241,7 @@ module Aws::GroundStation
2232
2241
  params: params,
2233
2242
  config: config)
2234
2243
  context[:gem_name] = 'aws-sdk-groundstation'
2235
- context[:gem_version] = '1.44.0'
2244
+ context[:gem_version] = '1.45.0'
2236
2245
  Seahorse::Client::Request.new(handlers, context)
2237
2246
  end
2238
2247
 
@@ -337,6 +337,8 @@ module Aws::GroundStation
337
337
  ContactData.add_member(:satellite_arn, Shapes::ShapeRef.new(shape: satelliteArn, location_name: "satelliteArn"))
338
338
  ContactData.add_member(:start_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "startTime"))
339
339
  ContactData.add_member(:tags, Shapes::ShapeRef.new(shape: TagsMap, location_name: "tags"))
340
+ ContactData.add_member(:visibility_end_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "visibilityEndTime"))
341
+ ContactData.add_member(:visibility_start_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "visibilityStartTime"))
340
342
  ContactData.struct_class = Types::ContactData
341
343
 
342
344
  ContactIdResponse.add_member(:contact_id, Shapes::ShapeRef.new(shape: Uuid, location_name: "contactId"))
@@ -446,6 +448,8 @@ module Aws::GroundStation
446
448
  DescribeContactResponse.add_member(:satellite_arn, Shapes::ShapeRef.new(shape: satelliteArn, location_name: "satelliteArn"))
447
449
  DescribeContactResponse.add_member(:start_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "startTime"))
448
450
  DescribeContactResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagsMap, location_name: "tags"))
451
+ DescribeContactResponse.add_member(:visibility_end_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "visibilityEndTime"))
452
+ DescribeContactResponse.add_member(:visibility_start_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "visibilityStartTime"))
449
453
  DescribeContactResponse.struct_class = Types::DescribeContactResponse
450
454
 
451
455
  DescribeEphemerisRequest.add_member(:ephemeris_id, Shapes::ShapeRef.new(shape: Uuid, required: true, location: "uri", location_name: "ephemerisId"))
@@ -490,6 +490,30 @@ module Aws::GroundStation
490
490
  # Tags assigned to a contact.
491
491
  # @return [Hash<String,String>]
492
492
  #
493
+ # @!attribute [rw] visibility_end_time
494
+ # Projected time in UTC your satellite will set below the [receive
495
+ # mask][1]. This time is based on the satellite's current active
496
+ # ephemeris for future contacts and the ephemeris that was active
497
+ # during contact execution for completed contacts. *This field is not
498
+ # present for contacts with a `SCHEDULING` or `SCHEDULED` status.*
499
+ #
500
+ #
501
+ #
502
+ # [1]: https://docs.aws.amazon.com/ground-station/latest/ug/site-masks.html
503
+ # @return [Time]
504
+ #
505
+ # @!attribute [rw] visibility_start_time
506
+ # Projected time in UTC your satellite will rise above the [receive
507
+ # mask][1]. This time is based on the satellite's current active
508
+ # ephemeris for future contacts and the ephemeris that was active
509
+ # during contact execution for completed contacts. *This field is not
510
+ # present for contacts with a `SCHEDULING` or `SCHEDULED` status.*
511
+ #
512
+ #
513
+ #
514
+ # [1]: https://docs.aws.amazon.com/ground-station/latest/ug/site-masks.html
515
+ # @return [Time]
516
+ #
493
517
  # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/ContactData AWS API Documentation
494
518
  #
495
519
  class ContactData < Struct.new(
@@ -505,7 +529,9 @@ module Aws::GroundStation
505
529
  :region,
506
530
  :satellite_arn,
507
531
  :start_time,
508
- :tags)
532
+ :tags,
533
+ :visibility_end_time,
534
+ :visibility_start_time)
509
535
  SENSITIVE = []
510
536
  include Aws::Structure
511
537
  end
@@ -640,12 +666,13 @@ module Aws::GroundStation
640
666
 
641
667
  # @!attribute [rw] contact_post_pass_duration_seconds
642
668
  # Amount of time after a contact ends that you’d like to receive a
643
- # CloudWatch event indicating the pass has finished.
669
+ # Ground Station Contact State Change event indicating the pass has
670
+ # finished.
644
671
  # @return [Integer]
645
672
  #
646
673
  # @!attribute [rw] contact_pre_pass_duration_seconds
647
- # Amount of time prior to contact start you’d like to receive a
648
- # CloudWatch event indicating an upcoming pass.
674
+ # Amount of time prior to contact start you’d like to receive a Ground
675
+ # Station Contact State Change event indicating an upcoming pass.
649
676
  # @return [Integer]
650
677
  #
651
678
  # @!attribute [rw] dataflow_edges
@@ -968,6 +995,28 @@ module Aws::GroundStation
968
995
  # Tags assigned to a contact.
969
996
  # @return [Hash<String,String>]
970
997
  #
998
+ # @!attribute [rw] visibility_end_time
999
+ # Projected time in UTC your satellite will set below the [receive
1000
+ # mask][1]. This time is based on the satellite's current active
1001
+ # ephemeris for future contacts and the ephemeris that was active
1002
+ # during contact execution for completed contacts.
1003
+ #
1004
+ #
1005
+ #
1006
+ # [1]: https://docs.aws.amazon.com/ground-station/latest/ug/site-masks.html
1007
+ # @return [Time]
1008
+ #
1009
+ # @!attribute [rw] visibility_start_time
1010
+ # Projected time in UTC your satellite will rise above the [receive
1011
+ # mask][1]. This time is based on the satellite's current active
1012
+ # ephemeris for future contacts and the ephemeris that was active
1013
+ # during contact execution for completed contacts.
1014
+ #
1015
+ #
1016
+ #
1017
+ # [1]: https://docs.aws.amazon.com/ground-station/latest/ug/site-masks.html
1018
+ # @return [Time]
1019
+ #
971
1020
  # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/DescribeContactResponse AWS API Documentation
972
1021
  #
973
1022
  class DescribeContactResponse < Struct.new(
@@ -984,7 +1033,9 @@ module Aws::GroundStation
984
1033
  :region,
985
1034
  :satellite_arn,
986
1035
  :start_time,
987
- :tags)
1036
+ :tags,
1037
+ :visibility_end_time,
1038
+ :visibility_start_time)
988
1039
  SENSITIVE = []
989
1040
  include Aws::Structure
990
1041
  end
@@ -2802,12 +2853,14 @@ module Aws::GroundStation
2802
2853
 
2803
2854
  # @!attribute [rw] contact_post_pass_duration_seconds
2804
2855
  # Amount of time after a contact ends that you’d like to receive a
2805
- # CloudWatch event indicating the pass has finished.
2856
+ # Ground Station Contact State Change event indicating the pass has
2857
+ # finished.
2806
2858
  # @return [Integer]
2807
2859
  #
2808
2860
  # @!attribute [rw] contact_pre_pass_duration_seconds
2809
2861
  # Amount of time after a contact ends that you’d like to receive a
2810
- # CloudWatch event indicating the pass has finished.
2862
+ # Ground Station Contact State Change event indicating the pass has
2863
+ # finished.
2811
2864
  # @return [Integer]
2812
2865
  #
2813
2866
  # @!attribute [rw] dataflow_edges
@@ -53,6 +53,6 @@ require_relative 'aws-sdk-groundstation/customizations'
53
53
  # @!group service
54
54
  module Aws::GroundStation
55
55
 
56
- GEM_VERSION = '1.44.0'
56
+ GEM_VERSION = '1.45.0'
57
57
 
58
58
  end
data/sig/client.rbs CHANGED
@@ -339,6 +339,8 @@ module Aws
339
339
  def satellite_arn: () -> ::String
340
340
  def start_time: () -> ::Time
341
341
  def tags: () -> ::Hash[::String, ::String]
342
+ def visibility_end_time: () -> ::Time
343
+ def visibility_start_time: () -> ::Time
342
344
  end
343
345
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GroundStation/Client.html#describe_contact-instance_method
344
346
  def describe_contact: (
data/sig/types.rbs CHANGED
@@ -160,6 +160,8 @@ module Aws::GroundStation
160
160
  attr_accessor satellite_arn: ::String
161
161
  attr_accessor start_time: ::Time
162
162
  attr_accessor tags: ::Hash[::String, ::String]
163
+ attr_accessor visibility_end_time: ::Time
164
+ attr_accessor visibility_start_time: ::Time
163
165
  SENSITIVE: []
164
166
  end
165
167
 
@@ -297,6 +299,8 @@ module Aws::GroundStation
297
299
  attr_accessor satellite_arn: ::String
298
300
  attr_accessor start_time: ::Time
299
301
  attr_accessor tags: ::Hash[::String, ::String]
302
+ attr_accessor visibility_end_time: ::Time
303
+ attr_accessor visibility_start_time: ::Time
300
304
  SENSITIVE: []
301
305
  end
302
306
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-groundstation
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.44.0
4
+ version: 1.45.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-01-26 00:00:00.000000000 Z
11
+ date: 2024-04-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core