aws-sdk-networkflowmonitor 1.8.0 → 1.9.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: b2a94b12f58452c0fcf295eb5bf93cf3321eab953448192e63767f0f8fcb71ae
4
- data.tar.gz: ee3a21125fb490217660545c99ce440a36c9ca2e7f75cb53ee6222afae75d022
3
+ metadata.gz: 6072920c2d819ed1a43930336d50ce6c5eff97c2b35ecb120af3704929deb103
4
+ data.tar.gz: 8dab9a9486d2f6bc362689a252e2e6ec1d9338cf06e374ac2ff20097a5cfd25c
5
5
  SHA512:
6
- metadata.gz: 45dc56cfd0bfbf235ba04967fe47c00342ff2eeec9c08dcb98648b4d3157b9b9d6c09b865f20aecdf219ec08d958cffbf805add0779e3a1cca75b6b2b8b0e0c0
7
- data.tar.gz: 0d34f89e04b8a135b810e98b23c2fcd00b885b7fe3a449adb1e3a85fca03efda1df4824685d76d27caaaf990af8f924bc2c76d8f86e12470fcd0acf95bc72b6a
6
+ metadata.gz: 4ca6b5eaf7a6155f9a0434ddabb23facd2bdd86cd82027dc09f07825425cbfc17403a1efe5446537eaced01e718e8b6385d7aad638617e7278162afd706f91ff
7
+ data.tar.gz: 84166f179f49b3b61d7b46427de0c6d8faaf328daed89fd3c348c87c21b8274ed51ce491b12d578c6305231fd635d89f36491cb0d60c776ee0d8dc7e92078a18
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.9.0 (2025-07-16)
5
+ ------------------
6
+
7
+ * Feature - Introducing 2 new scope status types - DEACTIVATING and DEACTIVATED.
8
+
4
9
  1.8.0 (2025-06-30)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.8.0
1
+ 1.9.0
@@ -621,7 +621,7 @@ module Aws::NetworkFlowMonitor
621
621
  # @example Response structure
622
622
  #
623
623
  # resp.scope_id #=> String
624
- # resp.status #=> String, one of "SUCCEEDED", "IN_PROGRESS", "FAILED"
624
+ # resp.status #=> String, one of "SUCCEEDED", "IN_PROGRESS", "FAILED", "DEACTIVATING", "DEACTIVATED"
625
625
  # resp.scope_arn #=> String
626
626
  # resp.tags #=> Hash
627
627
  # resp.tags["TagKey"] #=> String
@@ -1156,7 +1156,7 @@ module Aws::NetworkFlowMonitor
1156
1156
  # @example Response structure
1157
1157
  #
1158
1158
  # resp.scope_id #=> String
1159
- # resp.status #=> String, one of "SUCCEEDED", "IN_PROGRESS", "FAILED"
1159
+ # resp.status #=> String, one of "SUCCEEDED", "IN_PROGRESS", "FAILED", "DEACTIVATING", "DEACTIVATED"
1160
1160
  # resp.scope_arn #=> String
1161
1161
  # resp.targets #=> Array
1162
1162
  # resp.targets[0].target_identifier.target_id.account_id #=> String
@@ -1256,7 +1256,7 @@ module Aws::NetworkFlowMonitor
1256
1256
  #
1257
1257
  # resp.scopes #=> Array
1258
1258
  # resp.scopes[0].scope_id #=> String
1259
- # resp.scopes[0].status #=> String, one of "SUCCEEDED", "IN_PROGRESS", "FAILED"
1259
+ # resp.scopes[0].status #=> String, one of "SUCCEEDED", "IN_PROGRESS", "FAILED", "DEACTIVATING", "DEACTIVATED"
1260
1260
  # resp.scopes[0].scope_arn #=> String
1261
1261
  # resp.next_token #=> String
1262
1262
  #
@@ -1865,7 +1865,7 @@ module Aws::NetworkFlowMonitor
1865
1865
  # @example Response structure
1866
1866
  #
1867
1867
  # resp.scope_id #=> String
1868
- # resp.status #=> String, one of "SUCCEEDED", "IN_PROGRESS", "FAILED"
1868
+ # resp.status #=> String, one of "SUCCEEDED", "IN_PROGRESS", "FAILED", "DEACTIVATING", "DEACTIVATED"
1869
1869
  # resp.scope_arn #=> String
1870
1870
  # resp.tags #=> Hash
1871
1871
  # resp.tags["TagKey"] #=> String
@@ -1897,7 +1897,7 @@ module Aws::NetworkFlowMonitor
1897
1897
  tracer: tracer
1898
1898
  )
1899
1899
  context[:gem_name] = 'aws-sdk-networkflowmonitor'
1900
- context[:gem_version] = '1.8.0'
1900
+ context[:gem_version] = '1.9.0'
1901
1901
  Seahorse::Client::Request.new(handlers, context)
1902
1902
  end
1903
1903
 
@@ -184,8 +184,14 @@ module Aws::NetworkFlowMonitor
184
184
  # @return [String]
185
185
  #
186
186
  # @!attribute [rw] status
187
- # The status for a call to create a scope. The status can be one of
188
- # the following: `SUCCEEDED`, `IN_PROGRESS`, or `FAILED`.
187
+ # The status for a scope. The status can be one of the following:
188
+ # `SUCCEEDED`, `IN_PROGRESS`, `FAILED`, `DEACTIVATING`, or
189
+ # `DEACTIVATED`.
190
+ #
191
+ # A status of `DEACTIVATING` means that you've requested a scope to
192
+ # be deactivated and Network Flow Monitor is in the process of
193
+ # deactivating the scope. A status of `DEACTIVATED` means that the
194
+ # deactivating process is complete.
189
195
  # @return [String]
190
196
  #
191
197
  # @!attribute [rw] scope_arn
@@ -629,8 +635,14 @@ module Aws::NetworkFlowMonitor
629
635
  # @return [String]
630
636
  #
631
637
  # @!attribute [rw] status
632
- # The status of a scope. The status can be one of the following:
633
- # `SUCCEEDED`, `IN_PROGRESS`, or `FAILED`.
638
+ # The status for a scope. The status can be one of the following:
639
+ # `SUCCEEDED`, `IN_PROGRESS`, `FAILED`, `DEACTIVATING`, or
640
+ # `DEACTIVATED`.
641
+ #
642
+ # A status of `DEACTIVATING` means that you've requested a scope to
643
+ # be deactivated and Network Flow Monitor is in the process of
644
+ # deactivating the scope. A status of `DEACTIVATED` means that the
645
+ # deactivating process is complete.
634
646
  # @return [String]
635
647
  #
636
648
  # @!attribute [rw] scope_arn
@@ -1089,9 +1101,14 @@ module Aws::NetworkFlowMonitor
1089
1101
  # @return [String]
1090
1102
  #
1091
1103
  # @!attribute [rw] status
1092
- # The status of a scope. The status can be one of the following,
1093
- # depending on the state of scope creation: `SUCCEEDED`,
1094
- # `IN_PROGRESS`, or `FAILED`.
1104
+ # The status for a scope. The status can be one of the following:
1105
+ # `SUCCEEDED`, `IN_PROGRESS`, `FAILED`, `DEACTIVATING`, or
1106
+ # `DEACTIVATED`.
1107
+ #
1108
+ # A status of `DEACTIVATING` means that you've requested a scope to
1109
+ # be deactivated and Network Flow Monitor is in the process of
1110
+ # deactivating the scope. A status of `DEACTIVATED` means that the
1111
+ # deactivating process is complete.
1095
1112
  # @return [String]
1096
1113
  #
1097
1114
  # @!attribute [rw] scope_arn
@@ -1706,8 +1723,14 @@ module Aws::NetworkFlowMonitor
1706
1723
  # @return [String]
1707
1724
  #
1708
1725
  # @!attribute [rw] status
1709
- # The status for a call to update a scope. The status can be one of
1710
- # the following: `SUCCEEDED`, `IN_PROGRESS`, or `FAILED`.
1726
+ # The status for a scope. The status can be one of the following:
1727
+ # `SUCCEEDED`, `IN_PROGRESS`, `FAILED`, `DEACTIVATING`, or
1728
+ # `DEACTIVATED`.
1729
+ #
1730
+ # A status of `DEACTIVATING` means that you've requested a scope to
1731
+ # be deactivated and Network Flow Monitor is in the process of
1732
+ # deactivating the scope. A status of `DEACTIVATED` means that the
1733
+ # deactivating process is complete.
1711
1734
  # @return [String]
1712
1735
  #
1713
1736
  # @!attribute [rw] scope_arn
@@ -55,7 +55,7 @@ module Aws::NetworkFlowMonitor
55
55
  autoload :EndpointProvider, 'aws-sdk-networkflowmonitor/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-networkflowmonitor/endpoints'
57
57
 
58
- GEM_VERSION = '1.8.0'
58
+ GEM_VERSION = '1.9.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -112,7 +112,7 @@ module Aws
112
112
  interface _CreateScopeResponseSuccess
113
113
  include ::Seahorse::Client::_ResponseSuccess[Types::CreateScopeOutput]
114
114
  def scope_id: () -> ::String
115
- def status: () -> ("SUCCEEDED" | "IN_PROGRESS" | "FAILED")
115
+ def status: () -> ("SUCCEEDED" | "IN_PROGRESS" | "FAILED" | "DEACTIVATING" | "DEACTIVATED")
116
116
  def scope_arn: () -> ::String
117
117
  def tags: () -> ::Hash[::String, ::String]
118
118
  end
@@ -249,7 +249,7 @@ module Aws
249
249
  interface _GetScopeResponseSuccess
250
250
  include ::Seahorse::Client::_ResponseSuccess[Types::GetScopeOutput]
251
251
  def scope_id: () -> ::String
252
- def status: () -> ("SUCCEEDED" | "IN_PROGRESS" | "FAILED")
252
+ def status: () -> ("SUCCEEDED" | "IN_PROGRESS" | "FAILED" | "DEACTIVATING" | "DEACTIVATED")
253
253
  def scope_arn: () -> ::String
254
254
  def targets: () -> ::Array[Types::TargetResource]
255
255
  def tags: () -> ::Hash[::String, ::String]
@@ -434,7 +434,7 @@ module Aws
434
434
  interface _UpdateScopeResponseSuccess
435
435
  include ::Seahorse::Client::_ResponseSuccess[Types::UpdateScopeOutput]
436
436
  def scope_id: () -> ::String
437
- def status: () -> ("SUCCEEDED" | "IN_PROGRESS" | "FAILED")
437
+ def status: () -> ("SUCCEEDED" | "IN_PROGRESS" | "FAILED" | "DEACTIVATING" | "DEACTIVATED")
438
438
  def scope_arn: () -> ::String
439
439
  def tags: () -> ::Hash[::String, ::String]
440
440
  end
data/sig/types.rbs CHANGED
@@ -49,7 +49,7 @@ module Aws::NetworkFlowMonitor
49
49
 
50
50
  class CreateScopeOutput
51
51
  attr_accessor scope_id: ::String
52
- attr_accessor status: ("SUCCEEDED" | "IN_PROGRESS" | "FAILED")
52
+ attr_accessor status: ("SUCCEEDED" | "IN_PROGRESS" | "FAILED" | "DEACTIVATING" | "DEACTIVATED")
53
53
  attr_accessor scope_arn: ::String
54
54
  attr_accessor tags: ::Hash[::String, ::String]
55
55
  SENSITIVE: []
@@ -172,7 +172,7 @@ module Aws::NetworkFlowMonitor
172
172
 
173
173
  class GetScopeOutput
174
174
  attr_accessor scope_id: ::String
175
- attr_accessor status: ("SUCCEEDED" | "IN_PROGRESS" | "FAILED")
175
+ attr_accessor status: ("SUCCEEDED" | "IN_PROGRESS" | "FAILED" | "DEACTIVATING" | "DEACTIVATED")
176
176
  attr_accessor scope_arn: ::String
177
177
  attr_accessor targets: ::Array[Types::TargetResource]
178
178
  attr_accessor tags: ::Hash[::String, ::String]
@@ -284,7 +284,7 @@ module Aws::NetworkFlowMonitor
284
284
 
285
285
  class ScopeSummary
286
286
  attr_accessor scope_id: ::String
287
- attr_accessor status: ("SUCCEEDED" | "IN_PROGRESS" | "FAILED")
287
+ attr_accessor status: ("SUCCEEDED" | "IN_PROGRESS" | "FAILED" | "DEACTIVATING" | "DEACTIVATED")
288
288
  attr_accessor scope_arn: ::String
289
289
  SENSITIVE: []
290
290
  end
@@ -450,7 +450,7 @@ module Aws::NetworkFlowMonitor
450
450
 
451
451
  class UpdateScopeOutput
452
452
  attr_accessor scope_id: ::String
453
- attr_accessor status: ("SUCCEEDED" | "IN_PROGRESS" | "FAILED")
453
+ attr_accessor status: ("SUCCEEDED" | "IN_PROGRESS" | "FAILED" | "DEACTIVATING" | "DEACTIVATED")
454
454
  attr_accessor scope_arn: ::String
455
455
  attr_accessor tags: ::Hash[::String, ::String]
456
456
  SENSITIVE: []
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-networkflowmonitor
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.8.0
4
+ version: 1.9.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services