aws-sdk-fms 1.53.0 → 1.54.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 +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-fms/client.rb +5 -5
- data/lib/aws-sdk-fms/endpoint_parameters.rb +3 -0
- data/lib/aws-sdk-fms/endpoint_provider.rb +74 -75
- data/lib/aws-sdk-fms/types.rb +0 -535
- data/lib/aws-sdk-fms.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 99a45aa480566e83b16c3d4f68b760fd745011f92b9fb5345172fdf1d9c90285
|
4
|
+
data.tar.gz: d1a8b24175e21835b7e0dfdda3af08294919f4b8a995677f137ec237fc2f779d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 80b0682cde723c649aecea30a960279508798a66ed20b6333a933edb24cb1465d299f878f5c06129b6dedca673488aee7c58ac17a4dd728d3e96f3c8e8640d8c
|
7
|
+
data.tar.gz: 41396e96de3b36cbf74390acadce5e88a43908fe68ba790fe19f0b47b379594ed473cd01140807fbe3aee121a6890a99066639d67a118c41807fadf52ee99b69
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.54.0
|
data/lib/aws-sdk-fms/client.rb
CHANGED
@@ -429,7 +429,7 @@ module Aws::FMS
|
|
429
429
|
# @example Request syntax with placeholder values
|
430
430
|
#
|
431
431
|
# resp = client.associate_third_party_firewall({
|
432
|
-
# third_party_firewall: "PALO_ALTO_NETWORKS_CLOUD_NGFW", # required, accepts PALO_ALTO_NETWORKS_CLOUD_NGFW
|
432
|
+
# third_party_firewall: "PALO_ALTO_NETWORKS_CLOUD_NGFW", # required, accepts PALO_ALTO_NETWORKS_CLOUD_NGFW, FORTIGATE_CLOUD_NATIVE_FIREWALL
|
433
433
|
# })
|
434
434
|
#
|
435
435
|
# @example Response structure
|
@@ -692,7 +692,7 @@ module Aws::FMS
|
|
692
692
|
# @example Request syntax with placeholder values
|
693
693
|
#
|
694
694
|
# resp = client.disassociate_third_party_firewall({
|
695
|
-
# third_party_firewall: "PALO_ALTO_NETWORKS_CLOUD_NGFW", # required, accepts PALO_ALTO_NETWORKS_CLOUD_NGFW
|
695
|
+
# third_party_firewall: "PALO_ALTO_NETWORKS_CLOUD_NGFW", # required, accepts PALO_ALTO_NETWORKS_CLOUD_NGFW, FORTIGATE_CLOUD_NATIVE_FIREWALL
|
696
696
|
# })
|
697
697
|
#
|
698
698
|
# @example Response structure
|
@@ -1091,7 +1091,7 @@ module Aws::FMS
|
|
1091
1091
|
# @example Request syntax with placeholder values
|
1092
1092
|
#
|
1093
1093
|
# resp = client.get_third_party_firewall_association_status({
|
1094
|
-
# third_party_firewall: "PALO_ALTO_NETWORKS_CLOUD_NGFW", # required, accepts PALO_ALTO_NETWORKS_CLOUD_NGFW
|
1094
|
+
# third_party_firewall: "PALO_ALTO_NETWORKS_CLOUD_NGFW", # required, accepts PALO_ALTO_NETWORKS_CLOUD_NGFW, FORTIGATE_CLOUD_NATIVE_FIREWALL
|
1095
1095
|
# })
|
1096
1096
|
#
|
1097
1097
|
# @example Response structure
|
@@ -1974,7 +1974,7 @@ module Aws::FMS
|
|
1974
1974
|
# @example Request syntax with placeholder values
|
1975
1975
|
#
|
1976
1976
|
# resp = client.list_third_party_firewall_firewall_policies({
|
1977
|
-
# third_party_firewall: "PALO_ALTO_NETWORKS_CLOUD_NGFW", # required, accepts PALO_ALTO_NETWORKS_CLOUD_NGFW
|
1977
|
+
# third_party_firewall: "PALO_ALTO_NETWORKS_CLOUD_NGFW", # required, accepts PALO_ALTO_NETWORKS_CLOUD_NGFW, FORTIGATE_CLOUD_NATIVE_FIREWALL
|
1978
1978
|
# next_token: "PaginationToken",
|
1979
1979
|
# max_results: 1, # required
|
1980
1980
|
# })
|
@@ -2430,7 +2430,7 @@ module Aws::FMS
|
|
2430
2430
|
params: params,
|
2431
2431
|
config: config)
|
2432
2432
|
context[:gem_name] = 'aws-sdk-fms'
|
2433
|
-
context[:gem_version] = '1.
|
2433
|
+
context[:gem_version] = '1.54.0'
|
2434
2434
|
Seahorse::Client::Request.new(handlers, context)
|
2435
2435
|
end
|
2436
2436
|
|
@@ -50,6 +50,9 @@ module Aws::FMS
|
|
50
50
|
|
51
51
|
def initialize(options = {})
|
52
52
|
self[:region] = options[:region]
|
53
|
+
if self[:region].nil?
|
54
|
+
raise ArgumentError, "Missing required EndpointParameter: :region"
|
55
|
+
end
|
53
56
|
self[:use_dual_stack] = options[:use_dual_stack]
|
54
57
|
self[:use_dual_stack] = false if self[:use_dual_stack].nil?
|
55
58
|
if self[:use_dual_stack].nil?
|
@@ -29,82 +29,81 @@ module Aws::FMS
|
|
29
29
|
# @api private
|
30
30
|
RULES = <<-JSON
|
31
31
|
eyJ2ZXJzaW9uIjoiMS4wIiwicGFyYW1ldGVycyI6eyJSZWdpb24iOnsiYnVp
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
ZWQsIGJ1dCB0aGlzIHBhcnRpdGlvbiBkb2VzIG5vdCBzdXBwb3J0IG9uZSBv
|
81
|
-
ciBib3RoIiwidHlwZSI6ImVycm9yIn1dfSx7ImNvbmRpdGlvbnMiOlt7ImZu
|
82
|
-
IjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUZJUFMifSx0
|
83
|
-
cnVlXX1dLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRpb25zIjpb
|
84
|
-
eyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbdHJ1ZSx7ImZuIjoiZ2V0
|
85
|
-
QXR0ciIsImFyZ3YiOlt7InJlZiI6IlBhcnRpdGlvblJlc3VsdCJ9LCJzdXBw
|
86
|
-
b3J0c0ZJUFMiXX1dfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRp
|
87
|
-
dGlvbnMiOltdLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRpb25z
|
88
|
-
IjpbXSwiZW5kcG9pbnQiOnsidXJsIjoiaHR0cHM6Ly9mbXMtZmlwcy57UmVn
|
89
|
-
aW9ufS57UGFydGl0aW9uUmVzdWx0I2Ruc1N1ZmZpeH0iLCJwcm9wZXJ0aWVz
|
90
|
-
Ijp7fSwiaGVhZGVycyI6e319LCJ0eXBlIjoiZW5kcG9pbnQifV19XX0seyJj
|
91
|
-
b25kaXRpb25zIjpbXSwiZXJyb3IiOiJGSVBTIGlzIGVuYWJsZWQgYnV0IHRo
|
92
|
-
aXMgcGFydGl0aW9uIGRvZXMgbm90IHN1cHBvcnQgRklQUyIsInR5cGUiOiJl
|
32
|
+
bHRJbiI6IkFXUzo6UmVnaW9uIiwicmVxdWlyZWQiOnRydWUsImRvY3VtZW50
|
33
|
+
YXRpb24iOiJUaGUgQVdTIHJlZ2lvbiB1c2VkIHRvIGRpc3BhdGNoIHRoZSBy
|
34
|
+
ZXF1ZXN0LiIsInR5cGUiOiJTdHJpbmcifSwiVXNlRHVhbFN0YWNrIjp7ImJ1
|
35
|
+
aWx0SW4iOiJBV1M6OlVzZUR1YWxTdGFjayIsInJlcXVpcmVkIjp0cnVlLCJk
|
36
|
+
ZWZhdWx0IjpmYWxzZSwiZG9jdW1lbnRhdGlvbiI6IldoZW4gdHJ1ZSwgdXNl
|
37
|
+
IHRoZSBkdWFsLXN0YWNrIGVuZHBvaW50LiBJZiB0aGUgY29uZmlndXJlZCBl
|
38
|
+
bmRwb2ludCBkb2VzIG5vdCBzdXBwb3J0IGR1YWwtc3RhY2ssIGRpc3BhdGNo
|
39
|
+
aW5nIHRoZSByZXF1ZXN0IE1BWSByZXR1cm4gYW4gZXJyb3IuIiwidHlwZSI6
|
40
|
+
IkJvb2xlYW4ifSwiVXNlRklQUyI6eyJidWlsdEluIjoiQVdTOjpVc2VGSVBT
|
41
|
+
IiwicmVxdWlyZWQiOnRydWUsImRlZmF1bHQiOmZhbHNlLCJkb2N1bWVudGF0
|
42
|
+
aW9uIjoiV2hlbiB0cnVlLCBzZW5kIHRoaXMgcmVxdWVzdCB0byB0aGUgRklQ
|
43
|
+
Uy1jb21wbGlhbnQgcmVnaW9uYWwgZW5kcG9pbnQuIElmIHRoZSBjb25maWd1
|
44
|
+
cmVkIGVuZHBvaW50IGRvZXMgbm90IGhhdmUgYSBGSVBTIGNvbXBsaWFudCBl
|
45
|
+
bmRwb2ludCwgZGlzcGF0Y2hpbmcgdGhlIHJlcXVlc3Qgd2lsbCByZXR1cm4g
|
46
|
+
YW4gZXJyb3IuIiwidHlwZSI6IkJvb2xlYW4ifSwiRW5kcG9pbnQiOnsiYnVp
|
47
|
+
bHRJbiI6IlNESzo6RW5kcG9pbnQiLCJyZXF1aXJlZCI6ZmFsc2UsImRvY3Vt
|
48
|
+
ZW50YXRpb24iOiJPdmVycmlkZSB0aGUgZW5kcG9pbnQgdXNlZCB0byBzZW5k
|
49
|
+
IHRoaXMgcmVxdWVzdCIsInR5cGUiOiJTdHJpbmcifX0sInJ1bGVzIjpbeyJj
|
50
|
+
b25kaXRpb25zIjpbeyJmbiI6ImF3cy5wYXJ0aXRpb24iLCJhcmd2IjpbeyJy
|
51
|
+
ZWYiOiJSZWdpb24ifV0sImFzc2lnbiI6IlBhcnRpdGlvblJlc3VsdCJ9XSwi
|
52
|
+
dHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6W3siZm4iOiJp
|
53
|
+
c1NldCIsImFyZ3YiOlt7InJlZiI6IkVuZHBvaW50In1dfV0sInR5cGUiOiJ0
|
54
|
+
cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVx
|
55
|
+
dWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUZJUFMifSx0cnVlXX1dLCJlcnJv
|
56
|
+
ciI6IkludmFsaWQgQ29uZmlndXJhdGlvbjogRklQUyBhbmQgY3VzdG9tIGVu
|
57
|
+
ZHBvaW50IGFyZSBub3Qgc3VwcG9ydGVkIiwidHlwZSI6ImVycm9yIn0seyJj
|
58
|
+
b25kaXRpb25zIjpbXSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0
|
59
|
+
aW9ucyI6W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoi
|
60
|
+
VXNlRHVhbFN0YWNrIn0sdHJ1ZV19XSwiZXJyb3IiOiJJbnZhbGlkIENvbmZp
|
61
|
+
Z3VyYXRpb246IER1YWxzdGFjayBhbmQgY3VzdG9tIGVuZHBvaW50IGFyZSBu
|
62
|
+
b3Qgc3VwcG9ydGVkIiwidHlwZSI6ImVycm9yIn0seyJjb25kaXRpb25zIjpb
|
63
|
+
XSwiZW5kcG9pbnQiOnsidXJsIjp7InJlZiI6IkVuZHBvaW50In0sInByb3Bl
|
64
|
+
cnRpZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9XX1d
|
65
|
+
fSx7ImNvbmRpdGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3Yi
|
66
|
+
Olt7InJlZiI6IlVzZUZJUFMifSx0cnVlXX0seyJmbiI6ImJvb2xlYW5FcXVh
|
67
|
+
bHMiLCJhcmd2IjpbeyJyZWYiOiJVc2VEdWFsU3RhY2sifSx0cnVlXX1dLCJ0
|
68
|
+
eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRpb25zIjpbeyJmbiI6ImJv
|
69
|
+
b2xlYW5FcXVhbHMiLCJhcmd2IjpbdHJ1ZSx7ImZuIjoiZ2V0QXR0ciIsImFy
|
70
|
+
Z3YiOlt7InJlZiI6IlBhcnRpdGlvblJlc3VsdCJ9LCJzdXBwb3J0c0ZJUFMi
|
71
|
+
XX1dfSx7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVlLHsiZm4i
|
72
|
+
OiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0In0s
|
73
|
+
InN1cHBvcnRzRHVhbFN0YWNrIl19XX1dLCJ0eXBlIjoidHJlZSIsInJ1bGVz
|
74
|
+
IjpbeyJjb25kaXRpb25zIjpbXSwiZW5kcG9pbnQiOnsidXJsIjoiaHR0cHM6
|
75
|
+
Ly9mbXMtZmlwcy57UmVnaW9ufS57UGFydGl0aW9uUmVzdWx0I2R1YWxTdGFj
|
76
|
+
a0Ruc1N1ZmZpeH0iLCJwcm9wZXJ0aWVzIjp7fSwiaGVhZGVycyI6e319LCJ0
|
77
|
+
eXBlIjoiZW5kcG9pbnQifV19LHsiY29uZGl0aW9ucyI6W10sImVycm9yIjoi
|
78
|
+
RklQUyBhbmQgRHVhbFN0YWNrIGFyZSBlbmFibGVkLCBidXQgdGhpcyBwYXJ0
|
79
|
+
aXRpb24gZG9lcyBub3Qgc3VwcG9ydCBvbmUgb3IgYm90aCIsInR5cGUiOiJl
|
93
80
|
cnJvciJ9XX0seyJjb25kaXRpb25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMi
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
81
|
+
LCJhcmd2IjpbeyJyZWYiOiJVc2VGSVBTIn0sdHJ1ZV19XSwidHlwZSI6InRy
|
82
|
+
ZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6W3siZm4iOiJib29sZWFuRXF1
|
83
|
+
YWxzIiwiYXJndiI6W3RydWUseyJmbiI6ImdldEF0dHIiLCJhcmd2IjpbeyJy
|
84
|
+
ZWYiOiJQYXJ0aXRpb25SZXN1bHQifSwic3VwcG9ydHNGSVBTIl19XX1dLCJ0
|
85
|
+
eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRpb25zIjpbXSwidHlwZSI6
|
86
|
+
InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6W10sImVuZHBvaW50Ijp7
|
87
|
+
InVybCI6Imh0dHBzOi8vZm1zLWZpcHMue1JlZ2lvbn0ue1BhcnRpdGlvblJl
|
88
|
+
c3VsdCNkbnNTdWZmaXh9IiwicHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9
|
89
|
+
fSwidHlwZSI6ImVuZHBvaW50In1dfV19LHsiY29uZGl0aW9ucyI6W10sImVy
|
90
|
+
cm9yIjoiRklQUyBpcyBlbmFibGVkIGJ1dCB0aGlzIHBhcnRpdGlvbiBkb2Vz
|
91
|
+
IG5vdCBzdXBwb3J0IEZJUFMiLCJ0eXBlIjoiZXJyb3IifV19LHsiY29uZGl0
|
92
|
+
aW9ucyI6W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoi
|
93
|
+
VXNlRHVhbFN0YWNrIn0sdHJ1ZV19XSwidHlwZSI6InRyZWUiLCJydWxlcyI6
|
94
|
+
W3siY29uZGl0aW9ucyI6W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6
|
95
|
+
W3RydWUseyJmbiI6ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQYXJ0aXRp
|
96
|
+
b25SZXN1bHQifSwic3VwcG9ydHNEdWFsU3RhY2siXX1dfV0sInR5cGUiOiJ0
|
97
|
+
cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1
|
98
|
+
cmwiOiJodHRwczovL2Ztcy57UmVnaW9ufS57UGFydGl0aW9uUmVzdWx0I2R1
|
99
|
+
YWxTdGFja0Ruc1N1ZmZpeH0iLCJwcm9wZXJ0aWVzIjp7fSwiaGVhZGVycyI6
|
100
|
+
e319LCJ0eXBlIjoiZW5kcG9pbnQifV19LHsiY29uZGl0aW9ucyI6W10sImVy
|
101
|
+
cm9yIjoiRHVhbFN0YWNrIGlzIGVuYWJsZWQgYnV0IHRoaXMgcGFydGl0aW9u
|
102
|
+
IGRvZXMgbm90IHN1cHBvcnQgRHVhbFN0YWNrIiwidHlwZSI6ImVycm9yIn1d
|
103
|
+
fSx7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOiJodHRwczov
|
104
|
+
L2Ztcy57UmVnaW9ufS57UGFydGl0aW9uUmVzdWx0I2Ruc1N1ZmZpeH0iLCJw
|
105
|
+
cm9wZXJ0aWVzIjp7fSwiaGVhZGVycyI6e319LCJ0eXBlIjoiZW5kcG9pbnQi
|
106
|
+
fV19XX0=
|
108
107
|
|
109
108
|
JSON
|
110
109
|
end
|
data/lib/aws-sdk-fms/types.rb
CHANGED
@@ -31,15 +31,6 @@ module Aws::FMS
|
|
31
31
|
|
32
32
|
# An individual Firewall Manager application.
|
33
33
|
#
|
34
|
-
# @note When making an API call, you may pass App
|
35
|
-
# data as a hash:
|
36
|
-
#
|
37
|
-
# {
|
38
|
-
# app_name: "ResourceName", # required
|
39
|
-
# protocol: "Protocol", # required
|
40
|
-
# port: 1, # required
|
41
|
-
# }
|
42
|
-
#
|
43
34
|
# @!attribute [rw] app_name
|
44
35
|
# The application's name.
|
45
36
|
# @return [String]
|
@@ -70,33 +61,6 @@ module Aws::FMS
|
|
70
61
|
|
71
62
|
# An Firewall Manager applications list.
|
72
63
|
#
|
73
|
-
# @note When making an API call, you may pass AppsListData
|
74
|
-
# data as a hash:
|
75
|
-
#
|
76
|
-
# {
|
77
|
-
# list_id: "ListId",
|
78
|
-
# list_name: "ResourceName", # required
|
79
|
-
# list_update_token: "UpdateToken",
|
80
|
-
# create_time: Time.now,
|
81
|
-
# last_update_time: Time.now,
|
82
|
-
# apps_list: [ # required
|
83
|
-
# {
|
84
|
-
# app_name: "ResourceName", # required
|
85
|
-
# protocol: "Protocol", # required
|
86
|
-
# port: 1, # required
|
87
|
-
# },
|
88
|
-
# ],
|
89
|
-
# previous_apps_list: {
|
90
|
-
# "PreviousListVersion" => [
|
91
|
-
# {
|
92
|
-
# app_name: "ResourceName", # required
|
93
|
-
# protocol: "Protocol", # required
|
94
|
-
# port: 1, # required
|
95
|
-
# },
|
96
|
-
# ],
|
97
|
-
# },
|
98
|
-
# }
|
99
|
-
#
|
100
64
|
# @!attribute [rw] list_id
|
101
65
|
# The ID of the Firewall Manager applications list.
|
102
66
|
# @return [String]
|
@@ -173,13 +137,6 @@ module Aws::FMS
|
|
173
137
|
include Aws::Structure
|
174
138
|
end
|
175
139
|
|
176
|
-
# @note When making an API call, you may pass AssociateAdminAccountRequest
|
177
|
-
# data as a hash:
|
178
|
-
#
|
179
|
-
# {
|
180
|
-
# admin_account: "AWSAccountId", # required
|
181
|
-
# }
|
182
|
-
#
|
183
140
|
# @!attribute [rw] admin_account
|
184
141
|
# The Amazon Web Services account ID to associate with Firewall
|
185
142
|
# Manager as the Firewall Manager administrator account. This must be
|
@@ -200,13 +157,6 @@ module Aws::FMS
|
|
200
157
|
include Aws::Structure
|
201
158
|
end
|
202
159
|
|
203
|
-
# @note When making an API call, you may pass AssociateThirdPartyFirewallRequest
|
204
|
-
# data as a hash:
|
205
|
-
#
|
206
|
-
# {
|
207
|
-
# third_party_firewall: "PALO_ALTO_NETWORKS_CLOUD_NGFW", # required, accepts PALO_ALTO_NETWORKS_CLOUD_NGFW
|
208
|
-
# }
|
209
|
-
#
|
210
160
|
# @!attribute [rw] third_party_firewall
|
211
161
|
# The name of the third-party firewall vendor.
|
212
162
|
# @return [String]
|
@@ -320,14 +270,6 @@ module Aws::FMS
|
|
320
270
|
include Aws::Structure
|
321
271
|
end
|
322
272
|
|
323
|
-
# @note When making an API call, you may pass BatchAssociateResourceRequest
|
324
|
-
# data as a hash:
|
325
|
-
#
|
326
|
-
# {
|
327
|
-
# resource_set_identifier: "Identifier", # required
|
328
|
-
# items: ["Identifier"], # required
|
329
|
-
# }
|
330
|
-
#
|
331
273
|
# @!attribute [rw] resource_set_identifier
|
332
274
|
# A unique identifier for the resource set, used in a TODO to refer to
|
333
275
|
# the resource set.
|
@@ -366,14 +308,6 @@ module Aws::FMS
|
|
366
308
|
include Aws::Structure
|
367
309
|
end
|
368
310
|
|
369
|
-
# @note When making an API call, you may pass BatchDisassociateResourceRequest
|
370
|
-
# data as a hash:
|
371
|
-
#
|
372
|
-
# {
|
373
|
-
# resource_set_identifier: "Identifier", # required
|
374
|
-
# items: ["Identifier"], # required
|
375
|
-
# }
|
376
|
-
#
|
377
311
|
# @!attribute [rw] resource_set_identifier
|
378
312
|
# A unique identifier for the resource set, used in a TODO to refer to
|
379
313
|
# the resource set.
|
@@ -450,13 +384,6 @@ module Aws::FMS
|
|
450
384
|
include Aws::Structure
|
451
385
|
end
|
452
386
|
|
453
|
-
# @note When making an API call, you may pass DeleteAppsListRequest
|
454
|
-
# data as a hash:
|
455
|
-
#
|
456
|
-
# {
|
457
|
-
# list_id: "ListId", # required
|
458
|
-
# }
|
459
|
-
#
|
460
387
|
# @!attribute [rw] list_id
|
461
388
|
# The ID of the applications list that you want to delete. You can
|
462
389
|
# retrieve this ID from `PutAppsList`, `ListAppsLists`, and
|
@@ -477,14 +404,6 @@ module Aws::FMS
|
|
477
404
|
#
|
478
405
|
class DeleteNotificationChannelRequest < Aws::EmptyStructure; end
|
479
406
|
|
480
|
-
# @note When making an API call, you may pass DeletePolicyRequest
|
481
|
-
# data as a hash:
|
482
|
-
#
|
483
|
-
# {
|
484
|
-
# policy_id: "PolicyId", # required
|
485
|
-
# delete_all_policy_resources: false,
|
486
|
-
# }
|
487
|
-
#
|
488
407
|
# @!attribute [rw] policy_id
|
489
408
|
# The ID of the policy that you want to delete. You can retrieve this
|
490
409
|
# ID from `PutPolicy` and `ListPolicies`.
|
@@ -531,13 +450,6 @@ module Aws::FMS
|
|
531
450
|
include Aws::Structure
|
532
451
|
end
|
533
452
|
|
534
|
-
# @note When making an API call, you may pass DeleteProtocolsListRequest
|
535
|
-
# data as a hash:
|
536
|
-
#
|
537
|
-
# {
|
538
|
-
# list_id: "ListId", # required
|
539
|
-
# }
|
540
|
-
#
|
541
453
|
# @!attribute [rw] list_id
|
542
454
|
# The ID of the protocols list that you want to delete. You can
|
543
455
|
# retrieve this ID from `PutProtocolsList`, `ListProtocolsLists`, and
|
@@ -552,13 +464,6 @@ module Aws::FMS
|
|
552
464
|
include Aws::Structure
|
553
465
|
end
|
554
466
|
|
555
|
-
# @note When making an API call, you may pass DeleteResourceSetRequest
|
556
|
-
# data as a hash:
|
557
|
-
#
|
558
|
-
# {
|
559
|
-
# identifier: "Base62Id", # required
|
560
|
-
# }
|
561
|
-
#
|
562
467
|
# @!attribute [rw] identifier
|
563
468
|
# A unique identifier for the resource set, used in a TODO to refer to
|
564
469
|
# the resource set.
|
@@ -578,13 +483,6 @@ module Aws::FMS
|
|
578
483
|
#
|
579
484
|
class DisassociateAdminAccountRequest < Aws::EmptyStructure; end
|
580
485
|
|
581
|
-
# @note When making an API call, you may pass DisassociateThirdPartyFirewallRequest
|
582
|
-
# data as a hash:
|
583
|
-
#
|
584
|
-
# {
|
585
|
-
# third_party_firewall: "PALO_ALTO_NETWORKS_CLOUD_NGFW", # required, accepts PALO_ALTO_NETWORKS_CLOUD_NGFW
|
586
|
-
# }
|
587
|
-
#
|
588
486
|
# @!attribute [rw] third_party_firewall
|
589
487
|
# The name of the third-party firewall vendor.
|
590
488
|
# @return [String]
|
@@ -1181,14 +1079,6 @@ module Aws::FMS
|
|
1181
1079
|
include Aws::Structure
|
1182
1080
|
end
|
1183
1081
|
|
1184
|
-
# @note When making an API call, you may pass GetAppsListRequest
|
1185
|
-
# data as a hash:
|
1186
|
-
#
|
1187
|
-
# {
|
1188
|
-
# list_id: "ListId", # required
|
1189
|
-
# default_list: false,
|
1190
|
-
# }
|
1191
|
-
#
|
1192
1082
|
# @!attribute [rw] list_id
|
1193
1083
|
# The ID of the Firewall Manager applications list that you want the
|
1194
1084
|
# details for.
|
@@ -1225,14 +1115,6 @@ module Aws::FMS
|
|
1225
1115
|
include Aws::Structure
|
1226
1116
|
end
|
1227
1117
|
|
1228
|
-
# @note When making an API call, you may pass GetComplianceDetailRequest
|
1229
|
-
# data as a hash:
|
1230
|
-
#
|
1231
|
-
# {
|
1232
|
-
# policy_id: "PolicyId", # required
|
1233
|
-
# member_account: "AWSAccountId", # required
|
1234
|
-
# }
|
1235
|
-
#
|
1236
1118
|
# @!attribute [rw] policy_id
|
1237
1119
|
# The ID of the policy that you want to get the details for.
|
1238
1120
|
# `PolicyId` is returned by `PutPolicy` and by `ListPolicies`.
|
@@ -1289,13 +1171,6 @@ module Aws::FMS
|
|
1289
1171
|
include Aws::Structure
|
1290
1172
|
end
|
1291
1173
|
|
1292
|
-
# @note When making an API call, you may pass GetPolicyRequest
|
1293
|
-
# data as a hash:
|
1294
|
-
#
|
1295
|
-
# {
|
1296
|
-
# policy_id: "PolicyId", # required
|
1297
|
-
# }
|
1298
|
-
#
|
1299
1174
|
# @!attribute [rw] policy_id
|
1300
1175
|
# The ID of the Firewall Manager policy that you want the details for.
|
1301
1176
|
# @return [String]
|
@@ -1325,18 +1200,6 @@ module Aws::FMS
|
|
1325
1200
|
include Aws::Structure
|
1326
1201
|
end
|
1327
1202
|
|
1328
|
-
# @note When making an API call, you may pass GetProtectionStatusRequest
|
1329
|
-
# data as a hash:
|
1330
|
-
#
|
1331
|
-
# {
|
1332
|
-
# policy_id: "PolicyId", # required
|
1333
|
-
# member_account_id: "AWSAccountId",
|
1334
|
-
# start_time: Time.now,
|
1335
|
-
# end_time: Time.now,
|
1336
|
-
# next_token: "PaginationToken",
|
1337
|
-
# max_results: 1,
|
1338
|
-
# }
|
1339
|
-
#
|
1340
1203
|
# @!attribute [rw] policy_id
|
1341
1204
|
# The ID of the policy for which you want to get the attack
|
1342
1205
|
# information.
|
@@ -1442,14 +1305,6 @@ module Aws::FMS
|
|
1442
1305
|
include Aws::Structure
|
1443
1306
|
end
|
1444
1307
|
|
1445
|
-
# @note When making an API call, you may pass GetProtocolsListRequest
|
1446
|
-
# data as a hash:
|
1447
|
-
#
|
1448
|
-
# {
|
1449
|
-
# list_id: "ListId", # required
|
1450
|
-
# default_list: false,
|
1451
|
-
# }
|
1452
|
-
#
|
1453
1308
|
# @!attribute [rw] list_id
|
1454
1309
|
# The ID of the Firewall Manager protocols list that you want the
|
1455
1310
|
# details for.
|
@@ -1486,13 +1341,6 @@ module Aws::FMS
|
|
1486
1341
|
include Aws::Structure
|
1487
1342
|
end
|
1488
1343
|
|
1489
|
-
# @note When making an API call, you may pass GetResourceSetRequest
|
1490
|
-
# data as a hash:
|
1491
|
-
#
|
1492
|
-
# {
|
1493
|
-
# identifier: "Base62Id", # required
|
1494
|
-
# }
|
1495
|
-
#
|
1496
1344
|
# @!attribute [rw] identifier
|
1497
1345
|
# A unique identifier for the resource set, used in a TODO to refer to
|
1498
1346
|
# the resource set.
|
@@ -1523,13 +1371,6 @@ module Aws::FMS
|
|
1523
1371
|
include Aws::Structure
|
1524
1372
|
end
|
1525
1373
|
|
1526
|
-
# @note When making an API call, you may pass GetThirdPartyFirewallAssociationStatusRequest
|
1527
|
-
# data as a hash:
|
1528
|
-
#
|
1529
|
-
# {
|
1530
|
-
# third_party_firewall: "PALO_ALTO_NETWORKS_CLOUD_NGFW", # required, accepts PALO_ALTO_NETWORKS_CLOUD_NGFW
|
1531
|
-
# }
|
1532
|
-
#
|
1533
1374
|
# @!attribute [rw] third_party_firewall
|
1534
1375
|
# The name of the third-party firewall vendor.
|
1535
1376
|
# @return [String]
|
@@ -1590,16 +1431,6 @@ module Aws::FMS
|
|
1590
1431
|
include Aws::Structure
|
1591
1432
|
end
|
1592
1433
|
|
1593
|
-
# @note When making an API call, you may pass GetViolationDetailsRequest
|
1594
|
-
# data as a hash:
|
1595
|
-
#
|
1596
|
-
# {
|
1597
|
-
# policy_id: "PolicyId", # required
|
1598
|
-
# member_account: "AWSAccountId", # required
|
1599
|
-
# resource_id: "ResourceId", # required
|
1600
|
-
# resource_type: "ResourceType", # required
|
1601
|
-
# }
|
1602
|
-
#
|
1603
1434
|
# @!attribute [rw] policy_id
|
1604
1435
|
# The ID of the Firewall Manager policy that you want the details for.
|
1605
1436
|
# This currently only supports security group content audit policies.
|
@@ -1727,15 +1558,6 @@ module Aws::FMS
|
|
1727
1558
|
include Aws::Structure
|
1728
1559
|
end
|
1729
1560
|
|
1730
|
-
# @note When making an API call, you may pass ListAppsListsRequest
|
1731
|
-
# data as a hash:
|
1732
|
-
#
|
1733
|
-
# {
|
1734
|
-
# default_lists: false,
|
1735
|
-
# next_token: "PaginationToken",
|
1736
|
-
# max_results: 1, # required
|
1737
|
-
# }
|
1738
|
-
#
|
1739
1561
|
# @!attribute [rw] default_lists
|
1740
1562
|
# Specifies whether the lists to retrieve are default lists owned by
|
1741
1563
|
# Firewall Manager.
|
@@ -1789,15 +1611,6 @@ module Aws::FMS
|
|
1789
1611
|
include Aws::Structure
|
1790
1612
|
end
|
1791
1613
|
|
1792
|
-
# @note When making an API call, you may pass ListComplianceStatusRequest
|
1793
|
-
# data as a hash:
|
1794
|
-
#
|
1795
|
-
# {
|
1796
|
-
# policy_id: "PolicyId", # required
|
1797
|
-
# next_token: "PaginationToken",
|
1798
|
-
# max_results: 1,
|
1799
|
-
# }
|
1800
|
-
#
|
1801
1614
|
# @!attribute [rw] policy_id
|
1802
1615
|
# The ID of the Firewall Manager policy that you want the details for.
|
1803
1616
|
# @return [String]
|
@@ -1853,16 +1666,6 @@ module Aws::FMS
|
|
1853
1666
|
include Aws::Structure
|
1854
1667
|
end
|
1855
1668
|
|
1856
|
-
# @note When making an API call, you may pass ListDiscoveredResourcesRequest
|
1857
|
-
# data as a hash:
|
1858
|
-
#
|
1859
|
-
# {
|
1860
|
-
# member_account_ids: ["AWSAccountId"], # required
|
1861
|
-
# resource_type: "ResourceType", # required
|
1862
|
-
# max_results: 1,
|
1863
|
-
# next_token: "PaginationToken",
|
1864
|
-
# }
|
1865
|
-
#
|
1866
1669
|
# @!attribute [rw] member_account_ids
|
1867
1670
|
# The Amazon Web Services account IDs to discover resources in. Only
|
1868
1671
|
# one account is supported per request. The account must be a member
|
@@ -1920,14 +1723,6 @@ module Aws::FMS
|
|
1920
1723
|
include Aws::Structure
|
1921
1724
|
end
|
1922
1725
|
|
1923
|
-
# @note When making an API call, you may pass ListMemberAccountsRequest
|
1924
|
-
# data as a hash:
|
1925
|
-
#
|
1926
|
-
# {
|
1927
|
-
# next_token: "PaginationToken",
|
1928
|
-
# max_results: 1,
|
1929
|
-
# }
|
1930
|
-
#
|
1931
1726
|
# @!attribute [rw] next_token
|
1932
1727
|
# If you specify a value for `MaxResults` and you have more account
|
1933
1728
|
# IDs than the number that you specify for `MaxResults`, Firewall
|
@@ -1976,14 +1771,6 @@ module Aws::FMS
|
|
1976
1771
|
include Aws::Structure
|
1977
1772
|
end
|
1978
1773
|
|
1979
|
-
# @note When making an API call, you may pass ListPoliciesRequest
|
1980
|
-
# data as a hash:
|
1981
|
-
#
|
1982
|
-
# {
|
1983
|
-
# next_token: "PaginationToken",
|
1984
|
-
# max_results: 1,
|
1985
|
-
# }
|
1986
|
-
#
|
1987
1774
|
# @!attribute [rw] next_token
|
1988
1775
|
# If you specify a value for `MaxResults` and you have more
|
1989
1776
|
# `PolicySummary` objects than the number that you specify for
|
@@ -2032,15 +1819,6 @@ module Aws::FMS
|
|
2032
1819
|
include Aws::Structure
|
2033
1820
|
end
|
2034
1821
|
|
2035
|
-
# @note When making an API call, you may pass ListProtocolsListsRequest
|
2036
|
-
# data as a hash:
|
2037
|
-
#
|
2038
|
-
# {
|
2039
|
-
# default_lists: false,
|
2040
|
-
# next_token: "PaginationToken",
|
2041
|
-
# max_results: 1, # required
|
2042
|
-
# }
|
2043
|
-
#
|
2044
1822
|
# @!attribute [rw] default_lists
|
2045
1823
|
# Specifies whether the lists to retrieve are default lists owned by
|
2046
1824
|
# Firewall Manager.
|
@@ -2094,15 +1872,6 @@ module Aws::FMS
|
|
2094
1872
|
include Aws::Structure
|
2095
1873
|
end
|
2096
1874
|
|
2097
|
-
# @note When making an API call, you may pass ListResourceSetResourcesRequest
|
2098
|
-
# data as a hash:
|
2099
|
-
#
|
2100
|
-
# {
|
2101
|
-
# identifier: "ResourceId", # required
|
2102
|
-
# max_results: 1,
|
2103
|
-
# next_token: "PaginationToken",
|
2104
|
-
# }
|
2105
|
-
#
|
2106
1875
|
# @!attribute [rw] identifier
|
2107
1876
|
# A unique identifier for the resource set, used in a TODO to refer to
|
2108
1877
|
# the resource set.
|
@@ -2155,14 +1924,6 @@ module Aws::FMS
|
|
2155
1924
|
include Aws::Structure
|
2156
1925
|
end
|
2157
1926
|
|
2158
|
-
# @note When making an API call, you may pass ListResourceSetsRequest
|
2159
|
-
# data as a hash:
|
2160
|
-
#
|
2161
|
-
# {
|
2162
|
-
# next_token: "PaginationToken",
|
2163
|
-
# max_results: 1,
|
2164
|
-
# }
|
2165
|
-
#
|
2166
1927
|
# @!attribute [rw] next_token
|
2167
1928
|
# When you request a list of objects with a `MaxResults` setting, if
|
2168
1929
|
# the number of objects that are still available for retrieval exceeds
|
@@ -2208,13 +1969,6 @@ module Aws::FMS
|
|
2208
1969
|
include Aws::Structure
|
2209
1970
|
end
|
2210
1971
|
|
2211
|
-
# @note When making an API call, you may pass ListTagsForResourceRequest
|
2212
|
-
# data as a hash:
|
2213
|
-
#
|
2214
|
-
# {
|
2215
|
-
# resource_arn: "ResourceArn", # required
|
2216
|
-
# }
|
2217
|
-
#
|
2218
1972
|
# @!attribute [rw] resource_arn
|
2219
1973
|
# The Amazon Resource Name (ARN) of the resource to return tags for.
|
2220
1974
|
# The Firewall Manager resources that support tagging are policies,
|
@@ -2241,15 +1995,6 @@ module Aws::FMS
|
|
2241
1995
|
include Aws::Structure
|
2242
1996
|
end
|
2243
1997
|
|
2244
|
-
# @note When making an API call, you may pass ListThirdPartyFirewallFirewallPoliciesRequest
|
2245
|
-
# data as a hash:
|
2246
|
-
#
|
2247
|
-
# {
|
2248
|
-
# third_party_firewall: "PALO_ALTO_NETWORKS_CLOUD_NGFW", # required, accepts PALO_ALTO_NETWORKS_CLOUD_NGFW
|
2249
|
-
# next_token: "PaginationToken",
|
2250
|
-
# max_results: 1, # required
|
2251
|
-
# }
|
2252
|
-
#
|
2253
1998
|
# @!attribute [rw] third_party_firewall
|
2254
1999
|
# The name of the third-party firewall vendor.
|
2255
2000
|
# @return [String]
|
@@ -2648,13 +2393,6 @@ module Aws::FMS
|
|
2648
2393
|
#
|
2649
2394
|
# [1]: https://docs.aws.amazon.com/network-firewall/latest/developerguide/architectures.html
|
2650
2395
|
#
|
2651
|
-
# @note When making an API call, you may pass NetworkFirewallPolicy
|
2652
|
-
# data as a hash:
|
2653
|
-
#
|
2654
|
-
# {
|
2655
|
-
# firewall_deployment_model: "CENTRALIZED", # accepts CENTRALIZED, DISTRIBUTED
|
2656
|
-
# }
|
2657
|
-
#
|
2658
2396
|
# @!attribute [rw] firewall_deployment_model
|
2659
2397
|
# Defines the deployment model to use for the firewall policy. To use
|
2660
2398
|
# a distributed model, set [PolicyOption][1] to `NULL`.
|
@@ -2867,46 +2605,6 @@ module Aws::FMS
|
|
2867
2605
|
|
2868
2606
|
# An Firewall Manager policy.
|
2869
2607
|
#
|
2870
|
-
# @note When making an API call, you may pass Policy
|
2871
|
-
# data as a hash:
|
2872
|
-
#
|
2873
|
-
# {
|
2874
|
-
# policy_id: "PolicyId",
|
2875
|
-
# policy_name: "ResourceName", # required
|
2876
|
-
# policy_update_token: "PolicyUpdateToken",
|
2877
|
-
# security_service_policy_data: { # required
|
2878
|
-
# type: "WAF", # required, accepts WAF, WAFV2, SHIELD_ADVANCED, SECURITY_GROUPS_COMMON, SECURITY_GROUPS_CONTENT_AUDIT, SECURITY_GROUPS_USAGE_AUDIT, NETWORK_FIREWALL, DNS_FIREWALL, THIRD_PARTY_FIREWALL, IMPORT_NETWORK_FIREWALL
|
2879
|
-
# managed_service_data: "ManagedServiceData",
|
2880
|
-
# policy_option: {
|
2881
|
-
# network_firewall_policy: {
|
2882
|
-
# firewall_deployment_model: "CENTRALIZED", # accepts CENTRALIZED, DISTRIBUTED
|
2883
|
-
# },
|
2884
|
-
# third_party_firewall_policy: {
|
2885
|
-
# firewall_deployment_model: "CENTRALIZED", # accepts CENTRALIZED, DISTRIBUTED
|
2886
|
-
# },
|
2887
|
-
# },
|
2888
|
-
# },
|
2889
|
-
# resource_type: "ResourceType", # required
|
2890
|
-
# resource_type_list: ["ResourceType"],
|
2891
|
-
# resource_tags: [
|
2892
|
-
# {
|
2893
|
-
# key: "ResourceTagKey", # required
|
2894
|
-
# value: "ResourceTagValue",
|
2895
|
-
# },
|
2896
|
-
# ],
|
2897
|
-
# exclude_resource_tags: false, # required
|
2898
|
-
# remediation_enabled: false, # required
|
2899
|
-
# delete_unused_fm_managed_resources: false,
|
2900
|
-
# include_map: {
|
2901
|
-
# "ACCOUNT" => ["CustomerPolicyScopeId"],
|
2902
|
-
# },
|
2903
|
-
# exclude_map: {
|
2904
|
-
# "ACCOUNT" => ["CustomerPolicyScopeId"],
|
2905
|
-
# },
|
2906
|
-
# resource_set_ids: ["Base62Id"],
|
2907
|
-
# policy_description: "ResourceDescription",
|
2908
|
-
# }
|
2909
|
-
#
|
2910
2608
|
# @!attribute [rw] policy_id
|
2911
2609
|
# The ID of the Firewall Manager policy.
|
2912
2610
|
# @return [String]
|
@@ -3185,18 +2883,6 @@ module Aws::FMS
|
|
3185
2883
|
# Contains the Network Firewall firewall policy options to configure the
|
3186
2884
|
# policy's deployment model and third-party firewall policy settings.
|
3187
2885
|
#
|
3188
|
-
# @note When making an API call, you may pass PolicyOption
|
3189
|
-
# data as a hash:
|
3190
|
-
#
|
3191
|
-
# {
|
3192
|
-
# network_firewall_policy: {
|
3193
|
-
# firewall_deployment_model: "CENTRALIZED", # accepts CENTRALIZED, DISTRIBUTED
|
3194
|
-
# },
|
3195
|
-
# third_party_firewall_policy: {
|
3196
|
-
# firewall_deployment_model: "CENTRALIZED", # accepts CENTRALIZED, DISTRIBUTED
|
3197
|
-
# },
|
3198
|
-
# }
|
3199
|
-
#
|
3200
2886
|
# @!attribute [rw] network_firewall_policy
|
3201
2887
|
# Defines the deployment model to use for the firewall policy.
|
3202
2888
|
# @return [Types::NetworkFirewallPolicy]
|
@@ -3333,21 +3019,6 @@ module Aws::FMS
|
|
3333
3019
|
|
3334
3020
|
# An Firewall Manager protocols list.
|
3335
3021
|
#
|
3336
|
-
# @note When making an API call, you may pass ProtocolsListData
|
3337
|
-
# data as a hash:
|
3338
|
-
#
|
3339
|
-
# {
|
3340
|
-
# list_id: "ListId",
|
3341
|
-
# list_name: "ResourceName", # required
|
3342
|
-
# list_update_token: "UpdateToken",
|
3343
|
-
# create_time: Time.now,
|
3344
|
-
# last_update_time: Time.now,
|
3345
|
-
# protocols_list: ["Protocol"], # required
|
3346
|
-
# previous_protocols_list: {
|
3347
|
-
# "PreviousListVersion" => ["Protocol"],
|
3348
|
-
# },
|
3349
|
-
# }
|
3350
|
-
#
|
3351
3022
|
# @!attribute [rw] list_id
|
3352
3023
|
# The ID of the Firewall Manager protocols list.
|
3353
3024
|
# @return [String]
|
@@ -3423,41 +3094,6 @@ module Aws::FMS
|
|
3423
3094
|
include Aws::Structure
|
3424
3095
|
end
|
3425
3096
|
|
3426
|
-
# @note When making an API call, you may pass PutAppsListRequest
|
3427
|
-
# data as a hash:
|
3428
|
-
#
|
3429
|
-
# {
|
3430
|
-
# apps_list: { # required
|
3431
|
-
# list_id: "ListId",
|
3432
|
-
# list_name: "ResourceName", # required
|
3433
|
-
# list_update_token: "UpdateToken",
|
3434
|
-
# create_time: Time.now,
|
3435
|
-
# last_update_time: Time.now,
|
3436
|
-
# apps_list: [ # required
|
3437
|
-
# {
|
3438
|
-
# app_name: "ResourceName", # required
|
3439
|
-
# protocol: "Protocol", # required
|
3440
|
-
# port: 1, # required
|
3441
|
-
# },
|
3442
|
-
# ],
|
3443
|
-
# previous_apps_list: {
|
3444
|
-
# "PreviousListVersion" => [
|
3445
|
-
# {
|
3446
|
-
# app_name: "ResourceName", # required
|
3447
|
-
# protocol: "Protocol", # required
|
3448
|
-
# port: 1, # required
|
3449
|
-
# },
|
3450
|
-
# ],
|
3451
|
-
# },
|
3452
|
-
# },
|
3453
|
-
# tag_list: [
|
3454
|
-
# {
|
3455
|
-
# key: "TagKey", # required
|
3456
|
-
# value: "TagValue", # required
|
3457
|
-
# },
|
3458
|
-
# ],
|
3459
|
-
# }
|
3460
|
-
#
|
3461
3097
|
# @!attribute [rw] apps_list
|
3462
3098
|
# The details of the Firewall Manager applications list to be created.
|
3463
3099
|
# @return [Types::AppsListData]
|
@@ -3492,14 +3128,6 @@ module Aws::FMS
|
|
3492
3128
|
include Aws::Structure
|
3493
3129
|
end
|
3494
3130
|
|
3495
|
-
# @note When making an API call, you may pass PutNotificationChannelRequest
|
3496
|
-
# data as a hash:
|
3497
|
-
#
|
3498
|
-
# {
|
3499
|
-
# sns_topic_arn: "ResourceArn", # required
|
3500
|
-
# sns_role_name: "ResourceArn", # required
|
3501
|
-
# }
|
3502
|
-
#
|
3503
3131
|
# @!attribute [rw] sns_topic_arn
|
3504
3132
|
# The Amazon Resource Name (ARN) of the SNS topic that collects
|
3505
3133
|
# notifications from Firewall Manager.
|
@@ -3519,54 +3147,6 @@ module Aws::FMS
|
|
3519
3147
|
include Aws::Structure
|
3520
3148
|
end
|
3521
3149
|
|
3522
|
-
# @note When making an API call, you may pass PutPolicyRequest
|
3523
|
-
# data as a hash:
|
3524
|
-
#
|
3525
|
-
# {
|
3526
|
-
# policy: { # required
|
3527
|
-
# policy_id: "PolicyId",
|
3528
|
-
# policy_name: "ResourceName", # required
|
3529
|
-
# policy_update_token: "PolicyUpdateToken",
|
3530
|
-
# security_service_policy_data: { # required
|
3531
|
-
# type: "WAF", # required, accepts WAF, WAFV2, SHIELD_ADVANCED, SECURITY_GROUPS_COMMON, SECURITY_GROUPS_CONTENT_AUDIT, SECURITY_GROUPS_USAGE_AUDIT, NETWORK_FIREWALL, DNS_FIREWALL, THIRD_PARTY_FIREWALL, IMPORT_NETWORK_FIREWALL
|
3532
|
-
# managed_service_data: "ManagedServiceData",
|
3533
|
-
# policy_option: {
|
3534
|
-
# network_firewall_policy: {
|
3535
|
-
# firewall_deployment_model: "CENTRALIZED", # accepts CENTRALIZED, DISTRIBUTED
|
3536
|
-
# },
|
3537
|
-
# third_party_firewall_policy: {
|
3538
|
-
# firewall_deployment_model: "CENTRALIZED", # accepts CENTRALIZED, DISTRIBUTED
|
3539
|
-
# },
|
3540
|
-
# },
|
3541
|
-
# },
|
3542
|
-
# resource_type: "ResourceType", # required
|
3543
|
-
# resource_type_list: ["ResourceType"],
|
3544
|
-
# resource_tags: [
|
3545
|
-
# {
|
3546
|
-
# key: "ResourceTagKey", # required
|
3547
|
-
# value: "ResourceTagValue",
|
3548
|
-
# },
|
3549
|
-
# ],
|
3550
|
-
# exclude_resource_tags: false, # required
|
3551
|
-
# remediation_enabled: false, # required
|
3552
|
-
# delete_unused_fm_managed_resources: false,
|
3553
|
-
# include_map: {
|
3554
|
-
# "ACCOUNT" => ["CustomerPolicyScopeId"],
|
3555
|
-
# },
|
3556
|
-
# exclude_map: {
|
3557
|
-
# "ACCOUNT" => ["CustomerPolicyScopeId"],
|
3558
|
-
# },
|
3559
|
-
# resource_set_ids: ["Base62Id"],
|
3560
|
-
# policy_description: "ResourceDescription",
|
3561
|
-
# },
|
3562
|
-
# tag_list: [
|
3563
|
-
# {
|
3564
|
-
# key: "TagKey", # required
|
3565
|
-
# value: "TagValue", # required
|
3566
|
-
# },
|
3567
|
-
# ],
|
3568
|
-
# }
|
3569
|
-
#
|
3570
3150
|
# @!attribute [rw] policy
|
3571
3151
|
# The details of the Firewall Manager policy to be created.
|
3572
3152
|
# @return [Types::Policy]
|
@@ -3601,29 +3181,6 @@ module Aws::FMS
|
|
3601
3181
|
include Aws::Structure
|
3602
3182
|
end
|
3603
3183
|
|
3604
|
-
# @note When making an API call, you may pass PutProtocolsListRequest
|
3605
|
-
# data as a hash:
|
3606
|
-
#
|
3607
|
-
# {
|
3608
|
-
# protocols_list: { # required
|
3609
|
-
# list_id: "ListId",
|
3610
|
-
# list_name: "ResourceName", # required
|
3611
|
-
# list_update_token: "UpdateToken",
|
3612
|
-
# create_time: Time.now,
|
3613
|
-
# last_update_time: Time.now,
|
3614
|
-
# protocols_list: ["Protocol"], # required
|
3615
|
-
# previous_protocols_list: {
|
3616
|
-
# "PreviousListVersion" => ["Protocol"],
|
3617
|
-
# },
|
3618
|
-
# },
|
3619
|
-
# tag_list: [
|
3620
|
-
# {
|
3621
|
-
# key: "TagKey", # required
|
3622
|
-
# value: "TagValue", # required
|
3623
|
-
# },
|
3624
|
-
# ],
|
3625
|
-
# }
|
3626
|
-
#
|
3627
3184
|
# @!attribute [rw] protocols_list
|
3628
3185
|
# The details of the Firewall Manager protocols list to be created.
|
3629
3186
|
# @return [Types::ProtocolsListData]
|
@@ -3658,26 +3215,6 @@ module Aws::FMS
|
|
3658
3215
|
include Aws::Structure
|
3659
3216
|
end
|
3660
3217
|
|
3661
|
-
# @note When making an API call, you may pass PutResourceSetRequest
|
3662
|
-
# data as a hash:
|
3663
|
-
#
|
3664
|
-
# {
|
3665
|
-
# resource_set: { # required
|
3666
|
-
# id: "Base62Id",
|
3667
|
-
# name: "Name", # required
|
3668
|
-
# description: "Description",
|
3669
|
-
# update_token: "UpdateToken",
|
3670
|
-
# resource_type_list: ["ResourceType"], # required
|
3671
|
-
# last_update_time: Time.now,
|
3672
|
-
# },
|
3673
|
-
# tag_list: [
|
3674
|
-
# {
|
3675
|
-
# key: "TagKey", # required
|
3676
|
-
# value: "TagValue", # required
|
3677
|
-
# },
|
3678
|
-
# ],
|
3679
|
-
# }
|
3680
|
-
#
|
3681
3218
|
# @!attribute [rw] resource_set
|
3682
3219
|
# Details about the resource set to be created or updated.>
|
3683
3220
|
# @return [Types::ResourceSet]
|
@@ -3829,18 +3366,6 @@ module Aws::FMS
|
|
3829
3366
|
|
3830
3367
|
# A set of resources to include in a policy.
|
3831
3368
|
#
|
3832
|
-
# @note When making an API call, you may pass ResourceSet
|
3833
|
-
# data as a hash:
|
3834
|
-
#
|
3835
|
-
# {
|
3836
|
-
# id: "Base62Id",
|
3837
|
-
# name: "Name", # required
|
3838
|
-
# description: "Description",
|
3839
|
-
# update_token: "UpdateToken",
|
3840
|
-
# resource_type_list: ["ResourceType"], # required
|
3841
|
-
# last_update_time: Time.now,
|
3842
|
-
# }
|
3843
|
-
#
|
3844
3369
|
# @!attribute [rw] id
|
3845
3370
|
# A unique identifier for the resource set. This ID is returned in the
|
3846
3371
|
# responses to create and list commands. You provide it to operations
|
@@ -3947,14 +3472,6 @@ module Aws::FMS
|
|
3947
3472
|
#
|
3948
3473
|
# [1]: https://docs.aws.amazon.com/awsconsolehelpdocs/latest/gsg/tag-editor.html
|
3949
3474
|
#
|
3950
|
-
# @note When making an API call, you may pass ResourceTag
|
3951
|
-
# data as a hash:
|
3952
|
-
#
|
3953
|
-
# {
|
3954
|
-
# key: "ResourceTagKey", # required
|
3955
|
-
# value: "ResourceTagValue",
|
3956
|
-
# }
|
3957
|
-
#
|
3958
3475
|
# @!attribute [rw] key
|
3959
3476
|
# The resource tag key.
|
3960
3477
|
# @return [String]
|
@@ -4299,22 +3816,6 @@ module Aws::FMS
|
|
4299
3816
|
# Details about the security service that is being used to protect the
|
4300
3817
|
# resources.
|
4301
3818
|
#
|
4302
|
-
# @note When making an API call, you may pass SecurityServicePolicyData
|
4303
|
-
# data as a hash:
|
4304
|
-
#
|
4305
|
-
# {
|
4306
|
-
# type: "WAF", # required, accepts WAF, WAFV2, SHIELD_ADVANCED, SECURITY_GROUPS_COMMON, SECURITY_GROUPS_CONTENT_AUDIT, SECURITY_GROUPS_USAGE_AUDIT, NETWORK_FIREWALL, DNS_FIREWALL, THIRD_PARTY_FIREWALL, IMPORT_NETWORK_FIREWALL
|
4307
|
-
# managed_service_data: "ManagedServiceData",
|
4308
|
-
# policy_option: {
|
4309
|
-
# network_firewall_policy: {
|
4310
|
-
# firewall_deployment_model: "CENTRALIZED", # accepts CENTRALIZED, DISTRIBUTED
|
4311
|
-
# },
|
4312
|
-
# third_party_firewall_policy: {
|
4313
|
-
# firewall_deployment_model: "CENTRALIZED", # accepts CENTRALIZED, DISTRIBUTED
|
4314
|
-
# },
|
4315
|
-
# },
|
4316
|
-
# }
|
4317
|
-
#
|
4318
3819
|
# @!attribute [rw] type
|
4319
3820
|
# The service that the policy is using to protect the resources. This
|
4320
3821
|
# specifies the type of policy that is created, either an WAF policy,
|
@@ -4630,14 +4131,6 @@ module Aws::FMS
|
|
4630
4131
|
# "test," "development," or "production"). You can add up to 50
|
4631
4132
|
# tags to each Amazon Web Services resource.
|
4632
4133
|
#
|
4633
|
-
# @note When making an API call, you may pass Tag
|
4634
|
-
# data as a hash:
|
4635
|
-
#
|
4636
|
-
# {
|
4637
|
-
# key: "TagKey", # required
|
4638
|
-
# value: "TagValue", # required
|
4639
|
-
# }
|
4640
|
-
#
|
4641
4134
|
# @!attribute [rw] key
|
4642
4135
|
# Part of the key:value pair that defines a tag. You can use a tag key
|
4643
4136
|
# to describe a category of information, such as "customer." Tag
|
@@ -4659,19 +4152,6 @@ module Aws::FMS
|
|
4659
4152
|
include Aws::Structure
|
4660
4153
|
end
|
4661
4154
|
|
4662
|
-
# @note When making an API call, you may pass TagResourceRequest
|
4663
|
-
# data as a hash:
|
4664
|
-
#
|
4665
|
-
# {
|
4666
|
-
# resource_arn: "ResourceArn", # required
|
4667
|
-
# tag_list: [ # required
|
4668
|
-
# {
|
4669
|
-
# key: "TagKey", # required
|
4670
|
-
# value: "TagValue", # required
|
4671
|
-
# },
|
4672
|
-
# ],
|
4673
|
-
# }
|
4674
|
-
#
|
4675
4155
|
# @!attribute [rw] resource_arn
|
4676
4156
|
# The Amazon Resource Name (ARN) of the resource to return tags for.
|
4677
4157
|
# The Firewall Manager resources that support tagging are policies,
|
@@ -4821,13 +4301,6 @@ module Aws::FMS
|
|
4821
4301
|
|
4822
4302
|
# Configures the deployment model for the third-party firewall.
|
4823
4303
|
#
|
4824
|
-
# @note When making an API call, you may pass ThirdPartyFirewallPolicy
|
4825
|
-
# data as a hash:
|
4826
|
-
#
|
4827
|
-
# {
|
4828
|
-
# firewall_deployment_model: "CENTRALIZED", # accepts CENTRALIZED, DISTRIBUTED
|
4829
|
-
# }
|
4830
|
-
#
|
4831
4304
|
# @!attribute [rw] firewall_deployment_model
|
4832
4305
|
# Defines the deployment model to use for the third-party firewall
|
4833
4306
|
# policy.
|
@@ -4841,14 +4314,6 @@ module Aws::FMS
|
|
4841
4314
|
include Aws::Structure
|
4842
4315
|
end
|
4843
4316
|
|
4844
|
-
# @note When making an API call, you may pass UntagResourceRequest
|
4845
|
-
# data as a hash:
|
4846
|
-
#
|
4847
|
-
# {
|
4848
|
-
# resource_arn: "ResourceArn", # required
|
4849
|
-
# tag_keys: ["TagKey"], # required
|
4850
|
-
# }
|
4851
|
-
#
|
4852
4317
|
# @!attribute [rw] resource_arn
|
4853
4318
|
# The Amazon Resource Name (ARN) of the resource to return tags for.
|
4854
4319
|
# The Firewall Manager resources that support tagging are policies,
|
data/lib/aws-sdk-fms.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-fms
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.54.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: 2022-
|
11
|
+
date: 2022-12-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|