aws-sdk-networkmonitor 1.1.0 → 1.3.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: ba76cc2e4d71078189adc5974a3ef96e57a5be6b368f0b756e29774cba863d56
4
- data.tar.gz: 4198def4e6533c33d0f77231612dc60888881c7fab0fce3208305df0e930a6b5
3
+ metadata.gz: 9622131952a081a967d9a509700a1327d125e1a9a2f9dd641d2bc5c3590ae41d
4
+ data.tar.gz: 52f5147ed06ef1dcbfa6c85726e6f23094e027de24d7662ae8a73f6550968cf9
5
5
  SHA512:
6
- metadata.gz: 1f6a7183eb6f2d3a8fb3f624cdcbf9e56ec7e6cb80e783afb02277b9d4f0f14bf81b05ead35066768db3c32f716cf148d11702a374f321fad450372eaa20f6b0
7
- data.tar.gz: 75ce86b97ad2e37fa2e8bc835da6edb92198e8df0bb5a703511d3aa7336eb4a9ce5ab79b589813c74e3d259ed58507318a6e2f06a8f46d65d3d2774c98051926
6
+ metadata.gz: 7bd54bb0763200f61988f214c3aff393a9026a335eb4f4027c747992acd8d3ed8826623ff6482237563328e470dfa78ed691814022f0753082d08fbf8650ad73
7
+ data.tar.gz: 4ab2632d9483ca2e35f75949b941df7f3d21b87561ddaf5cdadcb3476d134ace72db514de596ed2eac9752f75dd63d50580c566ad57c25c8930d0c904e1f13ee
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.3.0 (2024-04-25)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.2.0 (2024-04-10)
10
+ ------------------
11
+
12
+ * Feature - Examples were added to CloudWatch Network Monitor commands.
13
+
4
14
  1.1.0 (2024-01-26)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.1.0
1
+ 1.3.0
@@ -22,6 +22,7 @@ require 'aws-sdk-core/plugins/endpoint_pattern.rb'
22
22
  require 'aws-sdk-core/plugins/response_paging.rb'
23
23
  require 'aws-sdk-core/plugins/stub_responses.rb'
24
24
  require 'aws-sdk-core/plugins/idempotency_token.rb'
25
+ require 'aws-sdk-core/plugins/invocation_id.rb'
25
26
  require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
26
27
  require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
27
28
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
@@ -72,6 +73,7 @@ module Aws::NetworkMonitor
72
73
  add_plugin(Aws::Plugins::ResponsePaging)
73
74
  add_plugin(Aws::Plugins::StubResponses)
74
75
  add_plugin(Aws::Plugins::IdempotencyToken)
76
+ add_plugin(Aws::Plugins::InvocationId)
75
77
  add_plugin(Aws::Plugins::JsonvalueConverter)
76
78
  add_plugin(Aws::Plugins::ClientMetricsPlugin)
77
79
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
@@ -196,10 +198,17 @@ module Aws::NetworkMonitor
196
198
  # When set to 'true' the request body will not be compressed
197
199
  # for supported operations.
198
200
  #
199
- # @option options [String] :endpoint
200
- # The client endpoint is normally constructed from the `:region`
201
- # option. You should only configure an `:endpoint` when connecting
202
- # to test or custom endpoints. This should be a valid HTTP(S) URI.
201
+ # @option options [String, URI::HTTPS, URI::HTTP] :endpoint
202
+ # Normally you should not configure the `:endpoint` option
203
+ # directly. This is normally constructed from the `:region`
204
+ # option. Configuring `:endpoint` is normally reserved for
205
+ # connecting to test or custom endpoints. The endpoint should
206
+ # be a URI formatted like:
207
+ #
208
+ # 'http://example.com'
209
+ # 'https://example.com'
210
+ # 'http://example.com:123'
211
+ #
203
212
  #
204
213
  # @option options [Integer] :endpoint_cache_max_entries (1000)
205
214
  # Used for the maximum size limit of the LRU cache storing endpoints data
@@ -337,50 +346,65 @@ module Aws::NetworkMonitor
337
346
  # @option options [Aws::NetworkMonitor::EndpointProvider] :endpoint_provider
338
347
  # The endpoint provider used to resolve endpoints. Any object that responds to `#resolve_endpoint(parameters)` where `parameters` is a Struct similar to `Aws::NetworkMonitor::EndpointParameters`
339
348
  #
340
- # @option options [URI::HTTP,String] :http_proxy A proxy to send
341
- # requests through. Formatted like 'http://proxy.com:123'.
342
- #
343
- # @option options [Float] :http_open_timeout (15) The number of
344
- # seconds to wait when opening a HTTP session before raising a
345
- # `Timeout::Error`.
346
- #
347
- # @option options [Float] :http_read_timeout (60) The default
348
- # number of seconds to wait for response data. This value can
349
- # safely be set per-request on the session.
350
- #
351
- # @option options [Float] :http_idle_timeout (5) The number of
352
- # seconds a connection is allowed to sit idle before it is
353
- # considered stale. Stale connections are closed and removed
354
- # from the pool before making a request.
355
- #
356
- # @option options [Float] :http_continue_timeout (1) The number of
357
- # seconds to wait for a 100-continue response before sending the
358
- # request body. This option has no effect unless the request has
359
- # "Expect" header set to "100-continue". Defaults to `nil` which
360
- # disables this behaviour. This value can safely be set per
361
- # request on the session.
362
- #
363
- # @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
364
- # in seconds.
365
- #
366
- # @option options [Boolean] :http_wire_trace (false) When `true`,
367
- # HTTP debug output will be sent to the `:logger`.
349
+ # @option options [Float] :http_continue_timeout (1)
350
+ # The number of seconds to wait for a 100-continue response before sending the
351
+ # request body. This option has no effect unless the request has "Expect"
352
+ # header set to "100-continue". Defaults to `nil` which disables this
353
+ # behaviour. This value can safely be set per request on the session.
354
+ #
355
+ # @option options [Float] :http_idle_timeout (5)
356
+ # The number of seconds a connection is allowed to sit idle before it
357
+ # is considered stale. Stale connections are closed and removed from the
358
+ # pool before making a request.
359
+ #
360
+ # @option options [Float] :http_open_timeout (15)
361
+ # The default number of seconds to wait for response data.
362
+ # This value can safely be set per-request on the session.
363
+ #
364
+ # @option options [URI::HTTP,String] :http_proxy
365
+ # A proxy to send requests through. Formatted like 'http://proxy.com:123'.
366
+ #
367
+ # @option options [Float] :http_read_timeout (60)
368
+ # The default number of seconds to wait for response data.
369
+ # This value can safely be set per-request on the session.
370
+ #
371
+ # @option options [Boolean] :http_wire_trace (false)
372
+ # When `true`, HTTP debug output will be sent to the `:logger`.
373
+ #
374
+ # @option options [Proc] :on_chunk_received
375
+ # When a Proc object is provided, it will be used as callback when each chunk
376
+ # of the response body is received. It provides three arguments: the chunk,
377
+ # the number of bytes received, and the total number of
378
+ # bytes in the response (or nil if the server did not send a `content-length`).
379
+ #
380
+ # @option options [Proc] :on_chunk_sent
381
+ # When a Proc object is provided, it will be used as callback when each chunk
382
+ # of the request body is sent. It provides three arguments: the chunk,
383
+ # the number of bytes read from the body, and the total number of
384
+ # bytes in the body.
385
+ #
386
+ # @option options [Boolean] :raise_response_errors (true)
387
+ # When `true`, response errors are raised.
388
+ #
389
+ # @option options [String] :ssl_ca_bundle
390
+ # Full path to the SSL certificate authority bundle file that should be used when
391
+ # verifying peer certificates. If you do not pass `:ssl_ca_bundle` or
392
+ # `:ssl_ca_directory` the the system default will be used if available.
393
+ #
394
+ # @option options [String] :ssl_ca_directory
395
+ # Full path of the directory that contains the unbundled SSL certificate
396
+ # authority files for verifying peer certificates. If you do
397
+ # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the system
398
+ # default will be used if available.
368
399
  #
369
- # @option options [Boolean] :ssl_verify_peer (true) When `true`,
370
- # SSL peer certificates are verified when establishing a
371
- # connection.
400
+ # @option options [String] :ssl_ca_store
401
+ # Sets the X509::Store to verify peer certificate.
372
402
  #
373
- # @option options [String] :ssl_ca_bundle Full path to the SSL
374
- # certificate authority bundle file that should be used when
375
- # verifying peer certificates. If you do not pass
376
- # `:ssl_ca_bundle` or `:ssl_ca_directory` the the system default
377
- # will be used if available.
403
+ # @option options [Float] :ssl_timeout
404
+ # Sets the SSL timeout in seconds
378
405
  #
379
- # @option options [String] :ssl_ca_directory Full path of the
380
- # directory that contains the unbundled SSL certificate
381
- # authority files for verifying peer certificates. If you do
382
- # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the
383
- # system default will be used if available.
406
+ # @option options [Boolean] :ssl_verify_peer (true)
407
+ # When `true`, SSL peer certificates are verified when establishing a connection.
384
408
  #
385
409
  def initialize(*args)
386
410
  super
@@ -394,16 +418,35 @@ module Aws::NetworkMonitor
394
418
  # and your destination IP addresses. Each probe then aggregates and
395
419
  # sends metrics to Amazon CloudWatch.
396
420
  #
421
+ # You can also create a monitor with probes using this command. For each
422
+ # probe, you define the following:
423
+ #
424
+ # * `source`—The subnet IDs where the probes will be created.
425
+ #
426
+ # * `destination`— The target destination IP address for the probe.
427
+ #
428
+ # * `destinationPort`—Required only if the protocol is `TCP`.
429
+ #
430
+ # * `protocol`—The communication protocol between the source and
431
+ # destination. This will be either `TCP` or `ICMP`.
432
+ #
433
+ # * `packetSize`—The size of the packets. This must be a number between
434
+ # `56` and `8500`.
435
+ #
436
+ # * (Optional) `tags` —Key-value pairs created and assigned to the
437
+ # probe.
438
+ #
397
439
  # @option params [required, String] :monitor_name
398
440
  # The name identifying the monitor. It can contain only letters,
399
- # underscores (\_), or dashes (-), and can be up to 255 characters.
441
+ # underscores (\_), or dashes (-), and can be up to 200 characters.
400
442
  #
401
443
  # @option params [Array<Types::CreateMonitorProbeInput>] :probes
402
444
  # Displays a list of all of the probes created for a monitor.
403
445
  #
404
446
  # @option params [Integer] :aggregation_period
405
447
  # The time, in seconds, that metrics are aggregated and sent to Amazon
406
- # CloudWatch. Valid values are either `30` or `60`.
448
+ # CloudWatch. Valid values are either `30` or `60`. `60` is the default
449
+ # if no period is chosen.
407
450
  #
408
451
  # @option params [String] :client_token
409
452
  # Unique, case-sensitive identifier to ensure the idempotency of the
@@ -466,11 +509,12 @@ module Aws::NetworkMonitor
466
509
 
467
510
  # Create a probe within a monitor. Once you create a probe, and it
468
511
  # begins monitoring your network traffic, you'll incur billing charges
469
- # for that probe.
512
+ # for that probe. This action requires the `monitorName` parameter. Run
513
+ # `ListMonitors` to get a list of monitor names. Note the name of the
514
+ # `monitorName` you want to create the probe for.
470
515
  #
471
516
  # @option params [required, String] :monitor_name
472
- # The name of the monitor to associated with the probe. To get a list of
473
- # available monitors, use `ListMonitors`.
517
+ # The name of the monitor to associated with the probe.
474
518
  #
475
519
  # @option params [required, Types::ProbeInput] :probe
476
520
  # Describes the details of an individual probe for a monitor.
@@ -549,9 +593,11 @@ module Aws::NetworkMonitor
549
593
 
550
594
  # Deletes a specified monitor.
551
595
  #
596
+ # This action requires the `monitorName` parameter. Run `ListMonitors`
597
+ # to get a list of monitor names.
598
+ #
552
599
  # @option params [required, String] :monitor_name
553
- # The name of the monitor to delete. Use the `ListMonitors` action to
554
- # get a list of your current monitors.
600
+ # The name of the monitor to delete.
555
601
  #
556
602
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
557
603
  #
@@ -570,16 +616,19 @@ module Aws::NetworkMonitor
570
616
  req.send_request(options)
571
617
  end
572
618
 
573
- # Deletes the specified monitor. Once a probe is deleted you'll no
574
- # longer incur any billing fees for that probe.
619
+ # Deletes the specified probe. Once a probe is deleted you'll no longer
620
+ # incur any billing fees for that probe.
621
+ #
622
+ # This action requires both the `monitorName` and `probeId` parameters.
623
+ # Run `ListMonitors` to get a list of monitor names. Run `GetMonitor` to
624
+ # get a list of probes and probe IDs. You can only delete a single probe
625
+ # at a time using this action.
575
626
  #
576
627
  # @option params [required, String] :monitor_name
577
- # The name of the monitor to delete. For a list of the available
578
- # monitors, use the `ListMonitors` action.
628
+ # The name of the monitor to delete.
579
629
  #
580
630
  # @option params [required, String] :probe_id
581
- # The ID of the probe to delete. Run `GetMonitor` to get a lst of all
582
- # probes and probe IDs associated with the monitor.
631
+ # The ID of the probe to delete.
583
632
  #
584
633
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
585
634
  #
@@ -601,6 +650,9 @@ module Aws::NetworkMonitor
601
650
 
602
651
  # Returns details about a specific monitor.
603
652
  #
653
+ # This action requires the `monitorName` parameter. Run `ListMonitors`
654
+ # to get a list of monitor names.
655
+ #
604
656
  # @option params [required, String] :monitor_name
605
657
  # The name of the monitor that details are returned for.
606
658
  #
@@ -656,8 +708,10 @@ module Aws::NetworkMonitor
656
708
  req.send_request(options)
657
709
  end
658
710
 
659
- # Returns the details about a probe. You'll need both the `monitorName`
660
- # and `probeId`.
711
+ # Returns the details about a probe. This action requires both the
712
+ # `monitorName` and `probeId` parameters. Run `ListMonitors` to get a
713
+ # list of monitor names. Run `GetMonitor` to get a list of probes and
714
+ # probe IDs.
661
715
  #
662
716
  # @option params [required, String] :monitor_name
663
717
  # The name of the monitor associated with the probe. Run `ListMonitors`
@@ -851,11 +905,12 @@ module Aws::NetworkMonitor
851
905
  end
852
906
 
853
907
  # Updates the `aggregationPeriod` for a monitor. Monitors support an
854
- # `aggregationPeriod` of either `30` or `60` seconds.
908
+ # `aggregationPeriod` of either `30` or `60` seconds. This action
909
+ # requires the `monitorName` and `probeId` parameter. Run `ListMonitors`
910
+ # to get a list of monitor names.
855
911
  #
856
912
  # @option params [required, String] :monitor_name
857
- # The name of the monitor to update. Run `ListMonitors` to get a list of
858
- # monitor names.
913
+ # The name of the monitor to update.
859
914
  #
860
915
  # @option params [required, Integer] :aggregation_period
861
916
  # The aggregation time, in seconds, to change to. This must be either
@@ -898,11 +953,29 @@ module Aws::NetworkMonitor
898
953
  # and `probeId` parameters. Run `ListMonitors` to get a list of monitor
899
954
  # names. Run `GetMonitor` to get a list of probes and probe IDs.
900
955
  #
956
+ # You can update the following para create a monitor with probes using
957
+ # this command. For each probe, you define the following:
958
+ #
959
+ # * `state`—The state of the probe.
960
+ #
961
+ # * `destination`— The target destination IP address for the probe.
962
+ #
963
+ # * `destinationPort`—Required only if the protocol is `TCP`.
964
+ #
965
+ # * `protocol`—The communication protocol between the source and
966
+ # destination. This will be either `TCP` or `ICMP`.
967
+ #
968
+ # * `packetSize`—The size of the packets. This must be a number between
969
+ # `56` and `8500`.
970
+ #
971
+ # * (Optional) `tags` —Key-value pairs created and assigned to the
972
+ # probe.
973
+ #
901
974
  # @option params [required, String] :monitor_name
902
975
  # The name of the monitor that the probe was updated for.
903
976
  #
904
977
  # @option params [required, String] :probe_id
905
- # Run `GetMonitor` to get a list of probes and probe IDs.
978
+ # The ID of the probe to update.
906
979
  #
907
980
  # @option params [String] :state
908
981
  # The state of the probe update.
@@ -991,7 +1064,7 @@ module Aws::NetworkMonitor
991
1064
  params: params,
992
1065
  config: config)
993
1066
  context[:gem_name] = 'aws-sdk-networkmonitor'
994
- context[:gem_version] = '1.1.0'
1067
+ context[:gem_version] = '1.3.0'
995
1068
  Seahorse::Client::Request.new(handlers, context)
996
1069
  end
997
1070
 
@@ -38,7 +38,7 @@ module Aws::NetworkMonitor
38
38
 
39
39
  # @!attribute [rw] monitor_name
40
40
  # The name identifying the monitor. It can contain only letters,
41
- # underscores (\_), or dashes (-), and can be up to 255 characters.
41
+ # underscores (\_), or dashes (-), and can be up to 200 characters.
42
42
  # @return [String]
43
43
  #
44
44
  # @!attribute [rw] probes
@@ -47,7 +47,8 @@ module Aws::NetworkMonitor
47
47
  #
48
48
  # @!attribute [rw] aggregation_period
49
49
  # The time, in seconds, that metrics are aggregated and sent to Amazon
50
- # CloudWatch. Valid values are either `30` or `60`.
50
+ # CloudWatch. Valid values are either `30` or `60`. `60` is the
51
+ # default if no period is chosen.
51
52
  # @return [Integer]
52
53
  #
53
54
  # @!attribute [rw] client_token
@@ -115,7 +116,7 @@ module Aws::NetworkMonitor
115
116
  # @return [String]
116
117
  #
117
118
  # @!attribute [rw] destination
118
- # The destination IP address. This will be either `IPV4` or `IPV6`.
119
+ # The destination IP address. This must be either `IPV4` or `IPV6`.
119
120
  # @return [String]
120
121
  #
121
122
  # @!attribute [rw] destination_port
@@ -126,12 +127,12 @@ module Aws::NetworkMonitor
126
127
  #
127
128
  # @!attribute [rw] protocol
128
129
  # The protocol used for the network traffic between the `source` and
129
- # `destination`. This will be either `TCP` or `ICMP`.
130
+ # `destination`. This must be either `TCP` or `ICMP`.
130
131
  # @return [String]
131
132
  #
132
133
  # @!attribute [rw] packet_size
133
134
  # The size of the packets sent between the source and destination.
134
- # This will be a number between `56` and `8500`.
135
+ # This must be a number between `56` and `8500`.
135
136
  # @return [Integer]
136
137
  #
137
138
  # @!attribute [rw] probe_tags
@@ -152,8 +153,7 @@ module Aws::NetworkMonitor
152
153
  end
153
154
 
154
155
  # @!attribute [rw] monitor_name
155
- # The name of the monitor to associated with the probe. To get a list
156
- # of available monitors, use `ListMonitors`.
156
+ # The name of the monitor to associated with the probe.
157
157
  # @return [String]
158
158
  #
159
159
  # @!attribute [rw] probe
@@ -197,7 +197,7 @@ module Aws::NetworkMonitor
197
197
  # @return [String]
198
198
  #
199
199
  # @!attribute [rw] destination
200
- # The destination IP address for the monitor. This will be either an
200
+ # The destination IP address for the monitor. This must be either an
201
201
  # IPv4 or IPv6 address.
202
202
  # @return [String]
203
203
  #
@@ -209,12 +209,12 @@ module Aws::NetworkMonitor
209
209
  #
210
210
  # @!attribute [rw] protocol
211
211
  # The protocol used for the network traffic between the `source` and
212
- # `destination`. This will be either `TCP` or `ICMP`.
212
+ # `destination`. This must be either `TCP` or `ICMP`.
213
213
  # @return [String]
214
214
  #
215
215
  # @!attribute [rw] packet_size
216
216
  # The size of the packets sent between the source and destination.
217
- # This will be a number between `56` and `8500`.
217
+ # This must be a number between `56` and `8500`.
218
218
  # @return [Integer]
219
219
  #
220
220
  # @!attribute [rw] address_family
@@ -262,8 +262,7 @@ module Aws::NetworkMonitor
262
262
  end
263
263
 
264
264
  # @!attribute [rw] monitor_name
265
- # The name of the monitor to delete. Use the `ListMonitors` action to
266
- # get a list of your current monitors.
265
+ # The name of the monitor to delete.
267
266
  # @return [String]
268
267
  #
269
268
  # @see http://docs.aws.amazon.com/goto/WebAPI/networkmonitor-2023-08-01/DeleteMonitorInput AWS API Documentation
@@ -279,13 +278,11 @@ module Aws::NetworkMonitor
279
278
  class DeleteMonitorOutput < Aws::EmptyStructure; end
280
279
 
281
280
  # @!attribute [rw] monitor_name
282
- # The name of the monitor to delete. For a list of the available
283
- # monitors, use the `ListMonitors` action.
281
+ # The name of the monitor to delete.
284
282
  # @return [String]
285
283
  #
286
284
  # @!attribute [rw] probe_id
287
- # The ID of the probe to delete. Run `GetMonitor` to get a lst of all
288
- # probes and probe IDs associated with the monitor.
285
+ # The ID of the probe to delete.
289
286
  # @return [String]
290
287
  #
291
288
  # @see http://docs.aws.amazon.com/goto/WebAPI/networkmonitor-2023-08-01/DeleteProbeInput AWS API Documentation
@@ -318,12 +315,11 @@ module Aws::NetworkMonitor
318
315
  # @return [String]
319
316
  #
320
317
  # @!attribute [rw] monitor_name
321
- # The name of the monitor. To get a list of the current monitors and
322
- # their names, use the `ListMonitors` action.
318
+ # The name of the monitor.
323
319
  # @return [String]
324
320
  #
325
321
  # @!attribute [rw] state
326
- # Returns a list of the state of each monitor.
322
+ # Lists the status of the `state` of each monitor.
327
323
  # @return [String]
328
324
  #
329
325
  # @!attribute [rw] aggregation_period
@@ -393,7 +389,7 @@ module Aws::NetworkMonitor
393
389
  # @return [String]
394
390
  #
395
391
  # @!attribute [rw] destination
396
- # The destination IP address for the monitor. This will be either an
392
+ # The destination IP address for the monitor. This must be either an
397
393
  # IPv4 or IPv6 address.
398
394
  # @return [String]
399
395
  #
@@ -405,12 +401,12 @@ module Aws::NetworkMonitor
405
401
  #
406
402
  # @!attribute [rw] protocol
407
403
  # The protocol used for the network traffic between the `source` and
408
- # `destination`. This will be either `TCP` or `ICMP`.
404
+ # `destination`. This must be either `TCP` or `ICMP`.
409
405
  # @return [String]
410
406
  #
411
407
  # @!attribute [rw] packet_size
412
408
  # The size of the packets sent between the source and destination.
413
- # This will be a number between `56` and `8500`.
409
+ # This must be a number between `56` and `8500`.
414
410
  # @return [Integer]
415
411
  #
416
412
  # @!attribute [rw] address_family
@@ -574,7 +570,7 @@ module Aws::NetworkMonitor
574
570
  include Aws::Structure
575
571
  end
576
572
 
577
- # Describes information about a monitor probe.
573
+ # Describes information about a network monitor probe.
578
574
  #
579
575
  # @!attribute [rw] probe_id
580
576
  # The ID of the probe.
@@ -659,7 +655,7 @@ module Aws::NetworkMonitor
659
655
  # @return [String]
660
656
  #
661
657
  # @!attribute [rw] destination
662
- # The destination IP address. This will be either `IPV4` or `IPV6`.
658
+ # The destination IP address. This must be either `IPV4` or `IPV6`.
663
659
  # @return [String]
664
660
  #
665
661
  # @!attribute [rw] destination_port
@@ -670,12 +666,12 @@ module Aws::NetworkMonitor
670
666
  #
671
667
  # @!attribute [rw] protocol
672
668
  # The protocol used for the network traffic between the `source` and
673
- # `destination`. This will be either `TCP` or `ICMP`.
669
+ # `destination`. This must be either `TCP` or `ICMP`.
674
670
  # @return [String]
675
671
  #
676
672
  # @!attribute [rw] packet_size
677
673
  # The size of the packets sent between the source and destination.
678
- # This will be a number between `56` and `8500`.
674
+ # This must be a number between `56` and `8500`.
679
675
  # @return [Integer]
680
676
  #
681
677
  # @!attribute [rw] tags
@@ -777,8 +773,7 @@ module Aws::NetworkMonitor
777
773
  class UntagResourceOutput < Aws::EmptyStructure; end
778
774
 
779
775
  # @!attribute [rw] monitor_name
780
- # The name of the monitor to update. Run `ListMonitors` to get a list
781
- # of monitor names.
776
+ # The name of the monitor to update.
782
777
  # @return [String]
783
778
  #
784
779
  # @!attribute [rw] aggregation_period
@@ -832,7 +827,7 @@ module Aws::NetworkMonitor
832
827
  # @return [String]
833
828
  #
834
829
  # @!attribute [rw] probe_id
835
- # Run `GetMonitor` to get a list of probes and probe IDs.
830
+ # The ID of the probe to update.
836
831
  # @return [String]
837
832
  #
838
833
  # @!attribute [rw] state
@@ -892,7 +887,7 @@ module Aws::NetworkMonitor
892
887
  # @return [String]
893
888
  #
894
889
  # @!attribute [rw] destination_port
895
- # The updated destination port. This will be a number between `1` and
890
+ # The updated destination port. This must be a number between `1` and
896
891
  # `65536`.
897
892
  # @return [Integer]
898
893
  #
@@ -905,7 +900,7 @@ module Aws::NetworkMonitor
905
900
  # @return [Integer]
906
901
  #
907
902
  # @!attribute [rw] address_family
908
- # The updated IP address family. This will be either `IPV4` or `IPV6`.
903
+ # The updated IP address family. This must be either `IPV4` or `IPV6`.
909
904
  # @return [String]
910
905
  #
911
906
  # @!attribute [rw] vpc_id
@@ -53,6 +53,6 @@ require_relative 'aws-sdk-networkmonitor/customizations'
53
53
  # @!group service
54
54
  module Aws::NetworkMonitor
55
55
 
56
- GEM_VERSION = '1.1.0'
56
+ GEM_VERSION = '1.3.0'
57
57
 
58
58
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-networkmonitor
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0
4
+ version: 1.3.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-25 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.191.0
22
+ version: 3.193.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.191.0
32
+ version: 3.193.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement