aws-sdk-groundstation 1.4.0 → 1.9.1

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
- SHA1:
3
- metadata.gz: c6ab23f2d80e3779a501de6b4be1658f8a6320da
4
- data.tar.gz: f61fc8c6aa1128c79e15cbf37949be290945f80d
2
+ SHA256:
3
+ metadata.gz: d7676d164ab341dc59655883c2933fb1651f52b9e2dd0abd6b3985bbc304d9a4
4
+ data.tar.gz: 6cd52ba26e773475c3adabc3c764fb66bd6c8bab9a0b2e367047d4be8e6c652b
5
5
  SHA512:
6
- metadata.gz: 3054e584a0480f32d3828440b940002e5cc034282cf3d401e2f15882c512fcf8baf7d5a839ede86319d1e832f82f5b62d9fee52e530135d081256e2fe6919d81
7
- data.tar.gz: b666324076f5f44a39728371c944bf7bba00f99d0ab30200bacf0eee19d5a1065146063a51605bde5161c7c48279578b541f43c9d319419ef731a2735bff2edd
6
+ metadata.gz: a35b42b662af0dd9573190146139a9da238b4d7df2e59c8416383d0be7313bce3a97dba796b86d106c7ba766e9c6c7b3c6e9bab105fdbac7c2539163b0117088
7
+ data.tar.gz: d6a3bbfa619e6c179c03d183e9ee76cc4d05ba4ec477b9cfd29e6586960c504768c837127c2c682a85824ff4cc7f710abdfb94c76e481c347eb68f98eef2e085
@@ -24,17 +24,20 @@ require_relative 'aws-sdk-groundstation/customizations'
24
24
  # methods each accept a hash of request parameters and return a response
25
25
  # structure.
26
26
  #
27
+ # ground_station = Aws::GroundStation::Client.new
28
+ # resp = ground_station.cancel_contact(params)
29
+ #
27
30
  # See {Client} for more information.
28
31
  #
29
32
  # # Errors
30
33
  #
31
- # Errors returned from AWS Ground Station all
32
- # extend {Errors::ServiceError}.
34
+ # Errors returned from AWS Ground Station are defined in the
35
+ # {Errors} module and all extend {Errors::ServiceError}.
33
36
  #
34
37
  # begin
35
38
  # # do stuff
36
39
  # rescue Aws::GroundStation::Errors::ServiceError
37
- # # rescues all service API errors
40
+ # # rescues all AWS Ground Station API errors
38
41
  # end
39
42
  #
40
43
  # See {Errors} for more information.
@@ -42,6 +45,6 @@ require_relative 'aws-sdk-groundstation/customizations'
42
45
  # @service
43
46
  module Aws::GroundStation
44
47
 
45
- GEM_VERSION = '1.4.0'
48
+ GEM_VERSION = '1.9.1'
46
49
 
47
50
  end
@@ -24,12 +24,25 @@ require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
24
24
  require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
25
25
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
26
26
  require 'aws-sdk-core/plugins/transfer_encoding.rb'
27
+ require 'aws-sdk-core/plugins/http_checksum.rb'
27
28
  require 'aws-sdk-core/plugins/signature_v4.rb'
28
29
  require 'aws-sdk-core/plugins/protocols/rest_json.rb'
29
30
 
30
31
  Aws::Plugins::GlobalConfiguration.add_identifier(:groundstation)
31
32
 
32
33
  module Aws::GroundStation
34
+ # An API client for GroundStation. To construct a client, you need to configure a `:region` and `:credentials`.
35
+ #
36
+ # client = Aws::GroundStation::Client.new(
37
+ # region: region_name,
38
+ # credentials: credentials,
39
+ # # ...
40
+ # )
41
+ #
42
+ # For details on configuring region and credentials see
43
+ # the [developer guide](/sdk-for-ruby/v3/developer-guide/setup-config.html).
44
+ #
45
+ # See {#initialize} for a full list of supported configuration options.
33
46
  class Client < Seahorse::Client::Base
34
47
 
35
48
  include Aws::ClientStubs
@@ -57,6 +70,7 @@ module Aws::GroundStation
57
70
  add_plugin(Aws::Plugins::ClientMetricsPlugin)
58
71
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
59
72
  add_plugin(Aws::Plugins::TransferEncoding)
73
+ add_plugin(Aws::Plugins::HttpChecksum)
60
74
  add_plugin(Aws::Plugins::SignatureV4)
61
75
  add_plugin(Aws::Plugins::Protocols::RestJson)
62
76
 
@@ -93,7 +107,7 @@ module Aws::GroundStation
93
107
  # @option options [required, String] :region
94
108
  # The AWS region to connect to. The configured `:region` is
95
109
  # used to determine the service `:endpoint`. When not passed,
96
- # a default `:region` is search for in the following locations:
110
+ # a default `:region` is searched for in the following locations:
97
111
  #
98
112
  # * `Aws.config[:region]`
99
113
  # * `ENV['AWS_REGION']`
@@ -108,6 +122,12 @@ module Aws::GroundStation
108
122
  # When set to `true`, a thread polling for endpoints will be running in
109
123
  # the background every 60 secs (default). Defaults to `false`.
110
124
  #
125
+ # @option options [Boolean] :adaptive_retry_wait_to_fill (true)
126
+ # Used only in `adaptive` retry mode. When true, the request will sleep
127
+ # until there is sufficent client side capacity to retry the request.
128
+ # When false, the request will raise a `RetryCapacityNotAvailableError` and will
129
+ # not retry instead of sleeping.
130
+ #
111
131
  # @option options [Boolean] :client_side_monitoring (false)
112
132
  # When `true`, client-side metrics will be collected for all API requests from
113
133
  # this client.
@@ -132,6 +152,10 @@ module Aws::GroundStation
132
152
  # When `true`, an attempt is made to coerce request parameters into
133
153
  # the required types.
134
154
  #
155
+ # @option options [Boolean] :correct_clock_skew (true)
156
+ # Used only in `standard` and adaptive retry modes. Specifies whether to apply
157
+ # a clock skew correction and retry requests with skewed client clocks.
158
+ #
135
159
  # @option options [Boolean] :disable_host_prefix_injection (false)
136
160
  # Set to true to disable SDK automatically adding host prefix
137
161
  # to default service endpoint when available.
@@ -139,7 +163,7 @@ module Aws::GroundStation
139
163
  # @option options [String] :endpoint
140
164
  # The client endpoint is normally constructed from the `:region`
141
165
  # option. You should only configure an `:endpoint` when connecting
142
- # to test endpoints. This should be avalid HTTP(S) URI.
166
+ # to test or custom endpoints. This should be a valid HTTP(S) URI.
143
167
  #
144
168
  # @option options [Integer] :endpoint_cache_max_entries (1000)
145
169
  # Used for the maximum size limit of the LRU cache storing endpoints data
@@ -154,7 +178,7 @@ module Aws::GroundStation
154
178
  # requests fetching endpoints information. Defaults to 60 sec.
155
179
  #
156
180
  # @option options [Boolean] :endpoint_discovery (false)
157
- # When set to `true`, endpoint discovery will be enabled for operations when available. Defaults to `false`.
181
+ # When set to `true`, endpoint discovery will be enabled for operations when available.
158
182
  #
159
183
  # @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
160
184
  # The log formatter.
@@ -166,15 +190,29 @@ module Aws::GroundStation
166
190
  # The Logger instance to send log messages to. If this option
167
191
  # is not set, logging will be disabled.
168
192
  #
193
+ # @option options [Integer] :max_attempts (3)
194
+ # An integer representing the maximum number attempts that will be made for
195
+ # a single request, including the initial attempt. For example,
196
+ # setting this value to 5 will result in a request being retried up to
197
+ # 4 times. Used in `standard` and `adaptive` retry modes.
198
+ #
169
199
  # @option options [String] :profile ("default")
170
200
  # Used when loading credentials from the shared credentials file
171
201
  # at HOME/.aws/credentials. When not specified, 'default' is used.
172
202
  #
203
+ # @option options [Proc] :retry_backoff
204
+ # A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
205
+ # This option is only used in the `legacy` retry mode.
206
+ #
173
207
  # @option options [Float] :retry_base_delay (0.3)
174
- # The base delay in seconds used by the default backoff function.
208
+ # The base delay in seconds used by the default backoff function. This option
209
+ # is only used in the `legacy` retry mode.
175
210
  #
176
211
  # @option options [Symbol] :retry_jitter (:none)
177
- # A delay randomiser function used by the default backoff function. Some predefined functions can be referenced by name - :none, :equal, :full, otherwise a Proc that takes and returns a number.
212
+ # A delay randomiser function used by the default backoff function.
213
+ # Some predefined functions can be referenced by name - :none, :equal, :full,
214
+ # otherwise a Proc that takes and returns a number. This option is only used
215
+ # in the `legacy` retry mode.
178
216
  #
179
217
  # @see https://www.awsarchitectureblog.com/2015/03/backoff.html
180
218
  #
@@ -182,11 +220,30 @@ module Aws::GroundStation
182
220
  # The maximum number of times to retry failed requests. Only
183
221
  # ~ 500 level server errors and certain ~ 400 level client errors
184
222
  # are retried. Generally, these are throttling errors, data
185
- # checksum errors, networking errors, timeout errors and auth
186
- # errors from expired credentials.
223
+ # checksum errors, networking errors, timeout errors, auth errors,
224
+ # endpoint discovery, and errors from expired credentials.
225
+ # This option is only used in the `legacy` retry mode.
187
226
  #
188
227
  # @option options [Integer] :retry_max_delay (0)
189
- # The maximum number of seconds to delay between retries (0 for no limit) used by the default backoff function.
228
+ # The maximum number of seconds to delay between retries (0 for no limit)
229
+ # used by the default backoff function. This option is only used in the
230
+ # `legacy` retry mode.
231
+ #
232
+ # @option options [String] :retry_mode ("legacy")
233
+ # Specifies which retry algorithm to use. Values are:
234
+ #
235
+ # * `legacy` - The pre-existing retry behavior. This is default value if
236
+ # no retry mode is provided.
237
+ #
238
+ # * `standard` - A standardized set of retry rules across the AWS SDKs.
239
+ # This includes support for retry quotas, which limit the number of
240
+ # unsuccessful retries a client can make.
241
+ #
242
+ # * `adaptive` - An experimental retry mode that includes all the
243
+ # functionality of `standard` mode along with automatic client side
244
+ # throttling. This is a provisional mode that may change behavior
245
+ # in the future.
246
+ #
190
247
  #
191
248
  # @option options [String] :secret_access_key
192
249
  #
@@ -209,16 +266,15 @@ module Aws::GroundStation
209
266
  # requests through. Formatted like 'http://proxy.com:123'.
210
267
  #
211
268
  # @option options [Float] :http_open_timeout (15) The number of
212
- # seconds to wait when opening a HTTP session before rasing a
269
+ # seconds to wait when opening a HTTP session before raising a
213
270
  # `Timeout::Error`.
214
271
  #
215
272
  # @option options [Integer] :http_read_timeout (60) The default
216
273
  # number of seconds to wait for response data. This value can
217
- # safely be set
218
- # per-request on the session yeidled by {#session_for}.
274
+ # safely be set per-request on the session.
219
275
  #
220
276
  # @option options [Float] :http_idle_timeout (5) The number of
221
- # seconds a connection is allowed to sit idble before it is
277
+ # seconds a connection is allowed to sit idle before it is
222
278
  # considered stale. Stale connections are closed and removed
223
279
  # from the pool before making a request.
224
280
  #
@@ -227,7 +283,7 @@ module Aws::GroundStation
227
283
  # request body. This option has no effect unless the request has
228
284
  # "Expect" header set to "100-continue". Defaults to `nil` which
229
285
  # disables this behaviour. This value can safely be set per
230
- # request on the session yeidled by {#session_for}.
286
+ # request on the session.
231
287
  #
232
288
  # @option options [Boolean] :http_wire_trace (false) When `true`,
233
289
  # HTTP debug output will be sent to the `:logger`.
@@ -352,6 +408,7 @@ module Aws::GroundStation
352
408
  # },
353
409
  # dataflow_endpoint_config: {
354
410
  # dataflow_endpoint_name: "String", # required
411
+ # dataflow_endpoint_region: "String",
355
412
  # },
356
413
  # tracking_config: {
357
414
  # autotrack: "PREFERRED", # required, accepts PREFERRED, REMOVED, REQUIRED
@@ -443,7 +500,7 @@ module Aws::GroundStation
443
500
  # Creates a mission profile.
444
501
  #
445
502
  # `dataflowEdges` is a list of lists of strings. Each lower level list
446
- # of strings has two elements: a *from ARN* and a *to ARN*.
503
+ # of strings has two elements: a *from* ARN and a *to* ARN.
447
504
  #
448
505
  # @option params [Integer] :contact_post_pass_duration_seconds
449
506
  # Amount of time after a contact ends that you’d like to receive a
@@ -454,8 +511,8 @@ module Aws::GroundStation
454
511
  # CloudWatch event indicating an upcoming pass.
455
512
  #
456
513
  # @option params [required, Array<Array>] :dataflow_edges
457
- # A list of lists of ARNs. Each list of ARNs is an edge, with a from
458
- # `Config` and a to `Config`.
514
+ # A list of lists of ARNs. Each list of ARNs is an edge, with a *from*
515
+ # `Config` and a *to* `Config`.
459
516
  #
460
517
  # @option params [required, Integer] :minimum_viable_contact_duration_seconds
461
518
  # Smallest amount of time in seconds that you’d like to see for an
@@ -543,7 +600,7 @@ module Aws::GroundStation
543
600
  # Deletes a dataflow endpoint group.
544
601
  #
545
602
  # @option params [required, String] :dataflow_endpoint_group_id
546
- # ID of a dataflow endpoint group.
603
+ # UUID of a dataflow endpoint group.
547
604
  #
548
605
  # @return [Types::DataflowEndpointGroupIdResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
549
606
  #
@@ -612,6 +669,7 @@ module Aws::GroundStation
612
669
  # * {Types::DescribeContactResponse#mission_profile_arn #mission_profile_arn} => String
613
670
  # * {Types::DescribeContactResponse#post_pass_end_time #post_pass_end_time} => Time
614
671
  # * {Types::DescribeContactResponse#pre_pass_start_time #pre_pass_start_time} => Time
672
+ # * {Types::DescribeContactResponse#region #region} => String
615
673
  # * {Types::DescribeContactResponse#satellite_arn #satellite_arn} => String
616
674
  # * {Types::DescribeContactResponse#start_time #start_time} => Time
617
675
  # * {Types::DescribeContactResponse#tags #tags} => Hash&lt;String,String&gt;
@@ -625,7 +683,7 @@ module Aws::GroundStation
625
683
  # @example Response structure
626
684
  #
627
685
  # resp.contact_id #=> String
628
- # resp.contact_status #=> String, one of "AVAILABLE", "AWS_CANCELLED", "CANCELLED", "COMPLETED", "FAILED", "FAILED_TO_SCHEDULE", "PASS", "POSTPASS", "PREPASS", "SCHEDULED", "SCHEDULING"
686
+ # resp.contact_status #=> String, one of "AVAILABLE", "AWS_CANCELLED", "CANCELLED", "CANCELLING", "COMPLETED", "FAILED", "FAILED_TO_SCHEDULE", "PASS", "POSTPASS", "PREPASS", "SCHEDULED", "SCHEDULING"
629
687
  # resp.end_time #=> Time
630
688
  # resp.error_message #=> String
631
689
  # resp.ground_station #=> String
@@ -634,6 +692,7 @@ module Aws::GroundStation
634
692
  # resp.mission_profile_arn #=> String
635
693
  # resp.post_pass_end_time #=> Time
636
694
  # resp.pre_pass_start_time #=> Time
695
+ # resp.region #=> String
637
696
  # resp.satellite_arn #=> String
638
697
  # resp.start_time #=> Time
639
698
  # resp.tags #=> Hash
@@ -695,6 +754,7 @@ module Aws::GroundStation
695
754
  # resp.config_data.antenna_uplink_config.target_eirp.units #=> String, one of "dBW"
696
755
  # resp.config_data.antenna_uplink_config.target_eirp.value #=> Float
697
756
  # resp.config_data.dataflow_endpoint_config.dataflow_endpoint_name #=> String
757
+ # resp.config_data.dataflow_endpoint_config.dataflow_endpoint_region #=> String
698
758
  # resp.config_data.tracking_config.autotrack #=> String, one of "PREFERRED", "REMOVED", "REQUIRED"
699
759
  # resp.config_data.uplink_echo_config.antenna_uplink_config_arn #=> String
700
760
  # resp.config_data.uplink_echo_config.enabled #=> Boolean
@@ -757,6 +817,46 @@ module Aws::GroundStation
757
817
  req.send_request(options)
758
818
  end
759
819
 
820
+ # Returns the number of minutes used by account.
821
+ #
822
+ # @option params [required, Integer] :month
823
+ # The month being requested, with a value of 1-12.
824
+ #
825
+ # @option params [required, Integer] :year
826
+ # The year being requested, in the format of YYYY.
827
+ #
828
+ # @return [Types::GetMinuteUsageResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
829
+ #
830
+ # * {Types::GetMinuteUsageResponse#estimated_minutes_remaining #estimated_minutes_remaining} => Integer
831
+ # * {Types::GetMinuteUsageResponse#is_reserved_minutes_customer #is_reserved_minutes_customer} => Boolean
832
+ # * {Types::GetMinuteUsageResponse#total_reserved_minute_allocation #total_reserved_minute_allocation} => Integer
833
+ # * {Types::GetMinuteUsageResponse#total_scheduled_minutes #total_scheduled_minutes} => Integer
834
+ # * {Types::GetMinuteUsageResponse#upcoming_minutes_scheduled #upcoming_minutes_scheduled} => Integer
835
+ #
836
+ # @example Request syntax with placeholder values
837
+ #
838
+ # resp = client.get_minute_usage({
839
+ # month: 1, # required
840
+ # year: 1, # required
841
+ # })
842
+ #
843
+ # @example Response structure
844
+ #
845
+ # resp.estimated_minutes_remaining #=> Integer
846
+ # resp.is_reserved_minutes_customer #=> Boolean
847
+ # resp.total_reserved_minute_allocation #=> Integer
848
+ # resp.total_scheduled_minutes #=> Integer
849
+ # resp.upcoming_minutes_scheduled #=> Integer
850
+ #
851
+ # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/GetMinuteUsage AWS API Documentation
852
+ #
853
+ # @overload get_minute_usage(params = {})
854
+ # @param [Hash] params ({})
855
+ def get_minute_usage(params = {}, options = {})
856
+ req = build_request(:get_minute_usage, params)
857
+ req.send_request(options)
858
+ end
859
+
760
860
  # Returns a mission profile.
761
861
  #
762
862
  # @option params [required, String] :mission_profile_id
@@ -806,6 +906,41 @@ module Aws::GroundStation
806
906
  req.send_request(options)
807
907
  end
808
908
 
909
+ # Returns a satellite.
910
+ #
911
+ # @option params [required, String] :satellite_id
912
+ # UUID of a satellite.
913
+ #
914
+ # @return [Types::GetSatelliteResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
915
+ #
916
+ # * {Types::GetSatelliteResponse#ground_stations #ground_stations} => Array&lt;String&gt;
917
+ # * {Types::GetSatelliteResponse#norad_satellite_id #norad_satellite_id} => Integer
918
+ # * {Types::GetSatelliteResponse#satellite_arn #satellite_arn} => String
919
+ # * {Types::GetSatelliteResponse#satellite_id #satellite_id} => String
920
+ #
921
+ # @example Request syntax with placeholder values
922
+ #
923
+ # resp = client.get_satellite({
924
+ # satellite_id: "String", # required
925
+ # })
926
+ #
927
+ # @example Response structure
928
+ #
929
+ # resp.ground_stations #=> Array
930
+ # resp.ground_stations[0] #=> String
931
+ # resp.norad_satellite_id #=> Integer
932
+ # resp.satellite_arn #=> String
933
+ # resp.satellite_id #=> String
934
+ #
935
+ # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/GetSatellite AWS API Documentation
936
+ #
937
+ # @overload get_satellite(params = {})
938
+ # @param [Hash] params ({})
939
+ def get_satellite(params = {}, options = {})
940
+ req = build_request(:get_satellite, params)
941
+ req.send_request(options)
942
+ end
943
+
809
944
  # Returns a list of `Config` objects.
810
945
  #
811
946
  # @option params [Integer] :max_results
@@ -820,6 +955,8 @@ module Aws::GroundStation
820
955
  # * {Types::ListConfigsResponse#config_list #config_list} => Array&lt;Types::ConfigListItem&gt;
821
956
  # * {Types::ListConfigsResponse#next_token #next_token} => String
822
957
  #
958
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
959
+ #
823
960
  # @example Request syntax with placeholder values
824
961
  #
825
962
  # resp = client.list_configs({
@@ -848,7 +985,7 @@ module Aws::GroundStation
848
985
  # Returns a list of contacts.
849
986
  #
850
987
  # If `statusList` contains AVAILABLE, the request must include
851
- # `groundstation`, `missionprofileArn`, and `satelliteArn`.
988
+ # `groundStation`, `missionprofileArn`, and `satelliteArn`.
852
989
  #
853
990
  # @option params [required, Time,DateTime,Date,Integer,String] :end_time
854
991
  # End time of a contact.
@@ -880,6 +1017,8 @@ module Aws::GroundStation
880
1017
  # * {Types::ListContactsResponse#contact_list #contact_list} => Array&lt;Types::ContactData&gt;
881
1018
  # * {Types::ListContactsResponse#next_token #next_token} => String
882
1019
  #
1020
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
1021
+ #
883
1022
  # @example Request syntax with placeholder values
884
1023
  #
885
1024
  # resp = client.list_contacts({
@@ -890,14 +1029,14 @@ module Aws::GroundStation
890
1029
  # next_token: "String",
891
1030
  # satellite_arn: "satelliteArn",
892
1031
  # start_time: Time.now, # required
893
- # status_list: ["AVAILABLE"], # required, accepts AVAILABLE, AWS_CANCELLED, CANCELLED, COMPLETED, FAILED, FAILED_TO_SCHEDULE, PASS, POSTPASS, PREPASS, SCHEDULED, SCHEDULING
1032
+ # status_list: ["AVAILABLE"], # required, accepts AVAILABLE, AWS_CANCELLED, CANCELLED, CANCELLING, COMPLETED, FAILED, FAILED_TO_SCHEDULE, PASS, POSTPASS, PREPASS, SCHEDULED, SCHEDULING
894
1033
  # })
895
1034
  #
896
1035
  # @example Response structure
897
1036
  #
898
1037
  # resp.contact_list #=> Array
899
1038
  # resp.contact_list[0].contact_id #=> String
900
- # resp.contact_list[0].contact_status #=> String, one of "AVAILABLE", "AWS_CANCELLED", "CANCELLED", "COMPLETED", "FAILED", "FAILED_TO_SCHEDULE", "PASS", "POSTPASS", "PREPASS", "SCHEDULED", "SCHEDULING"
1039
+ # resp.contact_list[0].contact_status #=> String, one of "AVAILABLE", "AWS_CANCELLED", "CANCELLED", "CANCELLING", "COMPLETED", "FAILED", "FAILED_TO_SCHEDULE", "PASS", "POSTPASS", "PREPASS", "SCHEDULED", "SCHEDULING"
901
1040
  # resp.contact_list[0].end_time #=> Time
902
1041
  # resp.contact_list[0].error_message #=> String
903
1042
  # resp.contact_list[0].ground_station #=> String
@@ -906,6 +1045,7 @@ module Aws::GroundStation
906
1045
  # resp.contact_list[0].mission_profile_arn #=> String
907
1046
  # resp.contact_list[0].post_pass_end_time #=> Time
908
1047
  # resp.contact_list[0].pre_pass_start_time #=> Time
1048
+ # resp.contact_list[0].region #=> String
909
1049
  # resp.contact_list[0].satellite_arn #=> String
910
1050
  # resp.contact_list[0].start_time #=> Time
911
1051
  # resp.contact_list[0].tags #=> Hash
@@ -936,6 +1076,8 @@ module Aws::GroundStation
936
1076
  # * {Types::ListDataflowEndpointGroupsResponse#dataflow_endpoint_group_list #dataflow_endpoint_group_list} => Array&lt;Types::DataflowEndpointListItem&gt;
937
1077
  # * {Types::ListDataflowEndpointGroupsResponse#next_token #next_token} => String
938
1078
  #
1079
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
1080
+ #
939
1081
  # @example Request syntax with placeholder values
940
1082
  #
941
1083
  # resp = client.list_dataflow_endpoint_groups({
@@ -959,6 +1101,50 @@ module Aws::GroundStation
959
1101
  req.send_request(options)
960
1102
  end
961
1103
 
1104
+ # Returns a list of ground stations.
1105
+ #
1106
+ # @option params [Integer] :max_results
1107
+ # Maximum number of ground stations returned.
1108
+ #
1109
+ # @option params [String] :next_token
1110
+ # Next token that can be supplied in the next call to get the next page
1111
+ # of ground stations.
1112
+ #
1113
+ # @option params [String] :satellite_id
1114
+ # Satellite ID to retrieve on-boarded ground stations.
1115
+ #
1116
+ # @return [Types::ListGroundStationsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1117
+ #
1118
+ # * {Types::ListGroundStationsResponse#ground_station_list #ground_station_list} => Array&lt;Types::GroundStationData&gt;
1119
+ # * {Types::ListGroundStationsResponse#next_token #next_token} => String
1120
+ #
1121
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
1122
+ #
1123
+ # @example Request syntax with placeholder values
1124
+ #
1125
+ # resp = client.list_ground_stations({
1126
+ # max_results: 1,
1127
+ # next_token: "String",
1128
+ # satellite_id: "String",
1129
+ # })
1130
+ #
1131
+ # @example Response structure
1132
+ #
1133
+ # resp.ground_station_list #=> Array
1134
+ # resp.ground_station_list[0].ground_station_id #=> String
1135
+ # resp.ground_station_list[0].ground_station_name #=> String
1136
+ # resp.ground_station_list[0].region #=> String
1137
+ # resp.next_token #=> String
1138
+ #
1139
+ # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/ListGroundStations AWS API Documentation
1140
+ #
1141
+ # @overload list_ground_stations(params = {})
1142
+ # @param [Hash] params ({})
1143
+ def list_ground_stations(params = {}, options = {})
1144
+ req = build_request(:list_ground_stations, params)
1145
+ req.send_request(options)
1146
+ end
1147
+
962
1148
  # Returns a list of mission profiles.
963
1149
  #
964
1150
  # @option params [Integer] :max_results
@@ -973,6 +1159,8 @@ module Aws::GroundStation
973
1159
  # * {Types::ListMissionProfilesResponse#mission_profile_list #mission_profile_list} => Array&lt;Types::MissionProfileListItem&gt;
974
1160
  # * {Types::ListMissionProfilesResponse#next_token #next_token} => String
975
1161
  #
1162
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
1163
+ #
976
1164
  # @example Request syntax with placeholder values
977
1165
  #
978
1166
  # resp = client.list_mission_profiles({
@@ -998,6 +1186,77 @@ module Aws::GroundStation
998
1186
  req.send_request(options)
999
1187
  end
1000
1188
 
1189
+ # Returns a list of satellites.
1190
+ #
1191
+ # @option params [Integer] :max_results
1192
+ # Maximum number of satellites returned.
1193
+ #
1194
+ # @option params [String] :next_token
1195
+ # Next token that can be supplied in the next call to get the next page
1196
+ # of satellites.
1197
+ #
1198
+ # @return [Types::ListSatellitesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1199
+ #
1200
+ # * {Types::ListSatellitesResponse#next_token #next_token} => String
1201
+ # * {Types::ListSatellitesResponse#satellites #satellites} => Array&lt;Types::SatelliteListItem&gt;
1202
+ #
1203
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
1204
+ #
1205
+ # @example Request syntax with placeholder values
1206
+ #
1207
+ # resp = client.list_satellites({
1208
+ # max_results: 1,
1209
+ # next_token: "String",
1210
+ # })
1211
+ #
1212
+ # @example Response structure
1213
+ #
1214
+ # resp.next_token #=> String
1215
+ # resp.satellites #=> Array
1216
+ # resp.satellites[0].ground_stations #=> Array
1217
+ # resp.satellites[0].ground_stations[0] #=> String
1218
+ # resp.satellites[0].norad_satellite_id #=> Integer
1219
+ # resp.satellites[0].satellite_arn #=> String
1220
+ # resp.satellites[0].satellite_id #=> String
1221
+ #
1222
+ # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/ListSatellites AWS API Documentation
1223
+ #
1224
+ # @overload list_satellites(params = {})
1225
+ # @param [Hash] params ({})
1226
+ def list_satellites(params = {}, options = {})
1227
+ req = build_request(:list_satellites, params)
1228
+ req.send_request(options)
1229
+ end
1230
+
1231
+ # Returns a list of tags for a specified resource.
1232
+ #
1233
+ # @option params [required, String] :resource_arn
1234
+ # ARN of a resource.
1235
+ #
1236
+ # @return [Types::ListTagsForResourceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1237
+ #
1238
+ # * {Types::ListTagsForResourceResponse#tags #tags} => Hash&lt;String,String&gt;
1239
+ #
1240
+ # @example Request syntax with placeholder values
1241
+ #
1242
+ # resp = client.list_tags_for_resource({
1243
+ # resource_arn: "String", # required
1244
+ # })
1245
+ #
1246
+ # @example Response structure
1247
+ #
1248
+ # resp.tags #=> Hash
1249
+ # resp.tags["String"] #=> String
1250
+ #
1251
+ # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/ListTagsForResource AWS API Documentation
1252
+ #
1253
+ # @overload list_tags_for_resource(params = {})
1254
+ # @param [Hash] params ({})
1255
+ def list_tags_for_resource(params = {}, options = {})
1256
+ req = build_request(:list_tags_for_resource, params)
1257
+ req.send_request(options)
1258
+ end
1259
+
1001
1260
  # Reserves a contact using specified parameters.
1002
1261
  #
1003
1262
  # @option params [required, Time,DateTime,Date,Integer,String] :end_time
@@ -1048,13 +1307,67 @@ module Aws::GroundStation
1048
1307
  req.send_request(options)
1049
1308
  end
1050
1309
 
1310
+ # Assigns a tag to a resource.
1311
+ #
1312
+ # @option params [required, String] :resource_arn
1313
+ # ARN of a resource tag.
1314
+ #
1315
+ # @option params [required, Hash<String,String>] :tags
1316
+ # Tags assigned to a resource.
1317
+ #
1318
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1319
+ #
1320
+ # @example Request syntax with placeholder values
1321
+ #
1322
+ # resp = client.tag_resource({
1323
+ # resource_arn: "String", # required
1324
+ # tags: { # required
1325
+ # "String" => "String",
1326
+ # },
1327
+ # })
1328
+ #
1329
+ # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/TagResource AWS API Documentation
1330
+ #
1331
+ # @overload tag_resource(params = {})
1332
+ # @param [Hash] params ({})
1333
+ def tag_resource(params = {}, options = {})
1334
+ req = build_request(:tag_resource, params)
1335
+ req.send_request(options)
1336
+ end
1337
+
1338
+ # Deassigns a resource tag.
1339
+ #
1340
+ # @option params [required, String] :resource_arn
1341
+ # ARN of a resource.
1342
+ #
1343
+ # @option params [required, Array<String>] :tag_keys
1344
+ # Keys of a resource tag.
1345
+ #
1346
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1347
+ #
1348
+ # @example Request syntax with placeholder values
1349
+ #
1350
+ # resp = client.untag_resource({
1351
+ # resource_arn: "String", # required
1352
+ # tag_keys: ["String"], # required
1353
+ # })
1354
+ #
1355
+ # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/UntagResource AWS API Documentation
1356
+ #
1357
+ # @overload untag_resource(params = {})
1358
+ # @param [Hash] params ({})
1359
+ def untag_resource(params = {}, options = {})
1360
+ req = build_request(:untag_resource, params)
1361
+ req.send_request(options)
1362
+ end
1363
+
1051
1364
  # Updates the `Config` used when scheduling contacts.
1052
1365
  #
1053
1366
  # Updating a `Config` will not update the execution parameters for
1054
1367
  # existing future contacts scheduled with this `Config`.
1055
1368
  #
1056
1369
  # @option params [required, Types::ConfigTypeData] :config_data
1057
- # Parameters for a `Config`.
1370
+ # Parameters of a `Config`.
1058
1371
  #
1059
1372
  # @option params [required, String] :config_id
1060
1373
  # UUID of a `Config`.
@@ -1122,6 +1435,7 @@ module Aws::GroundStation
1122
1435
  # },
1123
1436
  # dataflow_endpoint_config: {
1124
1437
  # dataflow_endpoint_name: "String", # required
1438
+ # dataflow_endpoint_region: "String",
1125
1439
  # },
1126
1440
  # tracking_config: {
1127
1441
  # autotrack: "PREFERRED", # required, accepts PREFERRED, REMOVED, REQUIRED
@@ -1165,8 +1479,8 @@ module Aws::GroundStation
1165
1479
  # CloudWatch event indicating the pass has finished.
1166
1480
  #
1167
1481
  # @option params [Array<Array>] :dataflow_edges
1168
- # A list of lists of ARNs. Each list of ARNs is an edge, with a from
1169
- # `Config` and a to `Config`.
1482
+ # A list of lists of ARNs. Each list of ARNs is an edge, with a *from*
1483
+ # `Config` and a *to* `Config`.
1170
1484
  #
1171
1485
  # @option params [Integer] :minimum_viable_contact_duration_seconds
1172
1486
  # Smallest amount of time in seconds that you’d like to see for an
@@ -1174,7 +1488,7 @@ module Aws::GroundStation
1174
1488
  # contacts shorter than this duration.
1175
1489
  #
1176
1490
  # @option params [required, String] :mission_profile_id
1177
- # ID of a mission profile.
1491
+ # UUID of a mission profile.
1178
1492
  #
1179
1493
  # @option params [String] :name
1180
1494
  # Name of a mission profile.
@@ -1213,244 +1527,6 @@ module Aws::GroundStation
1213
1527
  req.send_request(options)
1214
1528
  end
1215
1529
 
1216
- # Returns the number of minutes used by account.
1217
- #
1218
- # @option params [required, Integer] :month
1219
- # The month being requested, with a value of 1-12.
1220
- #
1221
- # @option params [required, Integer] :year
1222
- # The year being requested, in the format of YYYY.
1223
- #
1224
- # @return [Types::GetMinuteUsageResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1225
- #
1226
- # * {Types::GetMinuteUsageResponse#estimated_minutes_remaining #estimated_minutes_remaining} => Integer
1227
- # * {Types::GetMinuteUsageResponse#is_reserved_minutes_customer #is_reserved_minutes_customer} => Boolean
1228
- # * {Types::GetMinuteUsageResponse#total_reserved_minute_allocation #total_reserved_minute_allocation} => Integer
1229
- # * {Types::GetMinuteUsageResponse#total_scheduled_minutes #total_scheduled_minutes} => Integer
1230
- # * {Types::GetMinuteUsageResponse#upcoming_minutes_scheduled #upcoming_minutes_scheduled} => Integer
1231
- #
1232
- # @example Request syntax with placeholder values
1233
- #
1234
- # resp = client.get_minute_usage({
1235
- # month: 1, # required
1236
- # year: 1, # required
1237
- # })
1238
- #
1239
- # @example Response structure
1240
- #
1241
- # resp.estimated_minutes_remaining #=> Integer
1242
- # resp.is_reserved_minutes_customer #=> Boolean
1243
- # resp.total_reserved_minute_allocation #=> Integer
1244
- # resp.total_scheduled_minutes #=> Integer
1245
- # resp.upcoming_minutes_scheduled #=> Integer
1246
- #
1247
- # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/GetMinuteUsage AWS API Documentation
1248
- #
1249
- # @overload get_minute_usage(params = {})
1250
- # @param [Hash] params ({})
1251
- def get_minute_usage(params = {}, options = {})
1252
- req = build_request(:get_minute_usage, params)
1253
- req.send_request(options)
1254
- end
1255
-
1256
- # Returns a satellite.
1257
- #
1258
- # @option params [required, String] :satellite_id
1259
- # UUID of a satellite.
1260
- #
1261
- # @return [Types::GetSatelliteResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1262
- #
1263
- # * {Types::GetSatelliteResponse#date_created #date_created} => Time
1264
- # * {Types::GetSatelliteResponse#last_updated #last_updated} => Time
1265
- # * {Types::GetSatelliteResponse#norad_satellite_id #norad_satellite_id} => Integer
1266
- # * {Types::GetSatelliteResponse#satellite_arn #satellite_arn} => String
1267
- # * {Types::GetSatelliteResponse#satellite_id #satellite_id} => String
1268
- # * {Types::GetSatelliteResponse#tags #tags} => Hash&lt;String,String&gt;
1269
- #
1270
- # @example Request syntax with placeholder values
1271
- #
1272
- # resp = client.get_satellite({
1273
- # satellite_id: "String", # required
1274
- # })
1275
- #
1276
- # @example Response structure
1277
- #
1278
- # resp.date_created #=> Time
1279
- # resp.last_updated #=> Time
1280
- # resp.norad_satellite_id #=> Integer
1281
- # resp.satellite_arn #=> String
1282
- # resp.satellite_id #=> String
1283
- # resp.tags #=> Hash
1284
- # resp.tags["String"] #=> String
1285
- #
1286
- # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/GetSatellite AWS API Documentation
1287
- #
1288
- # @overload get_satellite(params = {})
1289
- # @param [Hash] params ({})
1290
- def get_satellite(params = {}, options = {})
1291
- req = build_request(:get_satellite, params)
1292
- req.send_request(options)
1293
- end
1294
-
1295
- # Returns a list of ground stations.
1296
- #
1297
- # @option params [Integer] :max_results
1298
- # Maximum number of ground stations returned.
1299
- #
1300
- # @option params [String] :next_token
1301
- # Next token that can be supplied in the next call to get the next page
1302
- # of ground stations.
1303
- #
1304
- # @return [Types::ListGroundStationsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1305
- #
1306
- # * {Types::ListGroundStationsResponse#ground_station_list #ground_station_list} => Array&lt;Types::GroundStationData&gt;
1307
- # * {Types::ListGroundStationsResponse#next_token #next_token} => String
1308
- #
1309
- # @example Request syntax with placeholder values
1310
- #
1311
- # resp = client.list_ground_stations({
1312
- # max_results: 1,
1313
- # next_token: "String",
1314
- # })
1315
- #
1316
- # @example Response structure
1317
- #
1318
- # resp.ground_station_list #=> Array
1319
- # resp.ground_station_list[0].ground_station_id #=> String
1320
- # resp.ground_station_list[0].ground_station_name #=> String
1321
- # resp.ground_station_list[0].region #=> String
1322
- # resp.next_token #=> String
1323
- #
1324
- # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/ListGroundStations AWS API Documentation
1325
- #
1326
- # @overload list_ground_stations(params = {})
1327
- # @param [Hash] params ({})
1328
- def list_ground_stations(params = {}, options = {})
1329
- req = build_request(:list_ground_stations, params)
1330
- req.send_request(options)
1331
- end
1332
-
1333
- # Returns a list of satellites.
1334
- #
1335
- # @option params [Integer] :max_results
1336
- # Maximum number of satellites returned.
1337
- #
1338
- # @option params [String] :next_token
1339
- # Next token that can be supplied in the next call to get the next page
1340
- # of satellites.
1341
- #
1342
- # @return [Types::ListSatellitesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1343
- #
1344
- # * {Types::ListSatellitesResponse#next_token #next_token} => String
1345
- # * {Types::ListSatellitesResponse#satellites #satellites} => Array&lt;Types::SatelliteListItem&gt;
1346
- #
1347
- # @example Request syntax with placeholder values
1348
- #
1349
- # resp = client.list_satellites({
1350
- # max_results: 1,
1351
- # next_token: "String",
1352
- # })
1353
- #
1354
- # @example Response structure
1355
- #
1356
- # resp.next_token #=> String
1357
- # resp.satellites #=> Array
1358
- # resp.satellites[0].norad_satellite_id #=> Integer
1359
- # resp.satellites[0].satellite_arn #=> String
1360
- # resp.satellites[0].satellite_id #=> String
1361
- #
1362
- # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/ListSatellites AWS API Documentation
1363
- #
1364
- # @overload list_satellites(params = {})
1365
- # @param [Hash] params ({})
1366
- def list_satellites(params = {}, options = {})
1367
- req = build_request(:list_satellites, params)
1368
- req.send_request(options)
1369
- end
1370
-
1371
- # Returns a list of tags or a specified resource.
1372
- #
1373
- # @option params [required, String] :resource_arn
1374
- # ARN of a resource.
1375
- #
1376
- # @return [Types::ListTagsForResourceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1377
- #
1378
- # * {Types::ListTagsForResourceResponse#tags #tags} => Hash&lt;String,String&gt;
1379
- #
1380
- # @example Request syntax with placeholder values
1381
- #
1382
- # resp = client.list_tags_for_resource({
1383
- # resource_arn: "String", # required
1384
- # })
1385
- #
1386
- # @example Response structure
1387
- #
1388
- # resp.tags #=> Hash
1389
- # resp.tags["String"] #=> String
1390
- #
1391
- # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/ListTagsForResource AWS API Documentation
1392
- #
1393
- # @overload list_tags_for_resource(params = {})
1394
- # @param [Hash] params ({})
1395
- def list_tags_for_resource(params = {}, options = {})
1396
- req = build_request(:list_tags_for_resource, params)
1397
- req.send_request(options)
1398
- end
1399
-
1400
- # Assigns a tag to a resource.
1401
- #
1402
- # @option params [required, String] :resource_arn
1403
- # ARN of a resource tag.
1404
- #
1405
- # @option params [Hash<String,String>] :tags
1406
- # Tags assigned to a resource.
1407
- #
1408
- # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1409
- #
1410
- # @example Request syntax with placeholder values
1411
- #
1412
- # resp = client.tag_resource({
1413
- # resource_arn: "String", # required
1414
- # tags: {
1415
- # "String" => "String",
1416
- # },
1417
- # })
1418
- #
1419
- # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/TagResource AWS API Documentation
1420
- #
1421
- # @overload tag_resource(params = {})
1422
- # @param [Hash] params ({})
1423
- def tag_resource(params = {}, options = {})
1424
- req = build_request(:tag_resource, params)
1425
- req.send_request(options)
1426
- end
1427
-
1428
- # Deassigns a resource tag.
1429
- #
1430
- # @option params [required, String] :resource_arn
1431
- # ARN of a resource.
1432
- #
1433
- # @option params [required, Array<String>] :tag_keys
1434
- # Keys of a resource tag.
1435
- #
1436
- # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1437
- #
1438
- # @example Request syntax with placeholder values
1439
- #
1440
- # resp = client.untag_resource({
1441
- # resource_arn: "String", # required
1442
- # tag_keys: ["String"], # required
1443
- # })
1444
- #
1445
- # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/UntagResource AWS API Documentation
1446
- #
1447
- # @overload untag_resource(params = {})
1448
- # @param [Hash] params ({})
1449
- def untag_resource(params = {}, options = {})
1450
- req = build_request(:untag_resource, params)
1451
- req.send_request(options)
1452
- end
1453
-
1454
1530
  # @!endgroup
1455
1531
 
1456
1532
  # @param params ({})
@@ -1464,7 +1540,7 @@ module Aws::GroundStation
1464
1540
  params: params,
1465
1541
  config: config)
1466
1542
  context[:gem_name] = 'aws-sdk-groundstation'
1467
- context[:gem_version] = '1.4.0'
1543
+ context[:gem_version] = '1.9.1'
1468
1544
  Seahorse::Client::Request.new(handlers, context)
1469
1545
  end
1470
1546