google-apis-networksecurity_v1 0.29.0 → 0.30.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 53c0b355f4d855b6c7e376f024b4292ace07dc48a692ab0eed4b3ec22d0104be
|
4
|
+
data.tar.gz: 7d70530fe72d6bbee2a1cb2dcd635d57fb40860bef4b4392003cae55e050546d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 652a2a00c9e691da2c2c593440a02456ac1ef017a917a872583ae4f8b6024bcc72e0390ff785ce19a87fed757294f63a097bb57e414c1b84aec7ac7773b9e87d
|
7
|
+
data.tar.gz: bc0e8e86b9995362cb0d8d74ee73c140f36d1b8c1b6440066c1bb1533655c3a4a6a48801c33c10e634c945f82e75276869b86a4bbb9d71f65b1afe590e5cd7e5
|
data/CHANGELOG.md
CHANGED
@@ -333,6 +333,27 @@ module Google
|
|
333
333
|
end
|
334
334
|
end
|
335
335
|
|
336
|
+
# CustomMirroringProfile defines an action for mirroring traffic to a collector'
|
337
|
+
# s EndpointGroup
|
338
|
+
class CustomMirroringProfile
|
339
|
+
include Google::Apis::Core::Hashable
|
340
|
+
|
341
|
+
# Required. The MirroringEndpointGroup to which traffic associated with the SP
|
342
|
+
# should be mirrored.
|
343
|
+
# Corresponds to the JSON property `mirroringEndpointGroup`
|
344
|
+
# @return [String]
|
345
|
+
attr_accessor :mirroring_endpoint_group
|
346
|
+
|
347
|
+
def initialize(**args)
|
348
|
+
update!(**args)
|
349
|
+
end
|
350
|
+
|
351
|
+
# Update properties of this object
|
352
|
+
def update!(**args)
|
353
|
+
@mirroring_endpoint_group = args[:mirroring_endpoint_group] if args.key?(:mirroring_endpoint_group)
|
354
|
+
end
|
355
|
+
end
|
356
|
+
|
336
357
|
# Specification of traffic destination attributes.
|
337
358
|
class Destination
|
338
359
|
include Google::Apis::Core::Hashable
|
@@ -1945,6 +1966,12 @@ module Google
|
|
1945
1966
|
# @return [String]
|
1946
1967
|
attr_accessor :create_time
|
1947
1968
|
|
1969
|
+
# CustomMirroringProfile defines an action for mirroring traffic to a collector'
|
1970
|
+
# s EndpointGroup
|
1971
|
+
# Corresponds to the JSON property `customMirroringProfile`
|
1972
|
+
# @return [Google::Apis::NetworksecurityV1::CustomMirroringProfile]
|
1973
|
+
attr_accessor :custom_mirroring_profile
|
1974
|
+
|
1948
1975
|
# Optional. An optional description of the profile. Max length 512 characters.
|
1949
1976
|
# Corresponds to the JSON property `description`
|
1950
1977
|
# @return [String]
|
@@ -1992,6 +2019,7 @@ module Google
|
|
1992
2019
|
# Update properties of this object
|
1993
2020
|
def update!(**args)
|
1994
2021
|
@create_time = args[:create_time] if args.key?(:create_time)
|
2022
|
+
@custom_mirroring_profile = args[:custom_mirroring_profile] if args.key?(:custom_mirroring_profile)
|
1995
2023
|
@description = args[:description] if args.key?(:description)
|
1996
2024
|
@etag = args[:etag] if args.key?(:etag)
|
1997
2025
|
@labels = args[:labels] if args.key?(:labels)
|
@@ -2012,6 +2040,12 @@ module Google
|
|
2012
2040
|
# @return [String]
|
2013
2041
|
attr_accessor :create_time
|
2014
2042
|
|
2043
|
+
# Optional. Reference to a SecurityProfile with the CustomMirroring
|
2044
|
+
# configuration.
|
2045
|
+
# Corresponds to the JSON property `customMirroringProfile`
|
2046
|
+
# @return [String]
|
2047
|
+
attr_accessor :custom_mirroring_profile
|
2048
|
+
|
2015
2049
|
# Optional. An optional description of the profile group. Max length 2048
|
2016
2050
|
# characters.
|
2017
2051
|
# Corresponds to the JSON property `description`
|
@@ -2055,6 +2089,7 @@ module Google
|
|
2055
2089
|
# Update properties of this object
|
2056
2090
|
def update!(**args)
|
2057
2091
|
@create_time = args[:create_time] if args.key?(:create_time)
|
2092
|
+
@custom_mirroring_profile = args[:custom_mirroring_profile] if args.key?(:custom_mirroring_profile)
|
2058
2093
|
@description = args[:description] if args.key?(:description)
|
2059
2094
|
@etag = args[:etag] if args.key?(:etag)
|
2060
2095
|
@labels = args[:labels] if args.key?(:labels)
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module NetworksecurityV1
|
18
18
|
# Version of the google-apis-networksecurity_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.30.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.15.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240919"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -64,6 +64,12 @@ module Google
|
|
64
64
|
include Google::Apis::Core::JsonObjectSupport
|
65
65
|
end
|
66
66
|
|
67
|
+
class CustomMirroringProfile
|
68
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
69
|
+
|
70
|
+
include Google::Apis::Core::JsonObjectSupport
|
71
|
+
end
|
72
|
+
|
67
73
|
class Destination
|
68
74
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
69
75
|
|
@@ -445,6 +451,13 @@ module Google
|
|
445
451
|
end
|
446
452
|
end
|
447
453
|
|
454
|
+
class CustomMirroringProfile
|
455
|
+
# @private
|
456
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
457
|
+
property :mirroring_endpoint_group, as: 'mirroringEndpointGroup'
|
458
|
+
end
|
459
|
+
end
|
460
|
+
|
448
461
|
class Destination
|
449
462
|
# @private
|
450
463
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -845,6 +858,8 @@ module Google
|
|
845
858
|
# @private
|
846
859
|
class Representation < Google::Apis::Core::JsonRepresentation
|
847
860
|
property :create_time, as: 'createTime'
|
861
|
+
property :custom_mirroring_profile, as: 'customMirroringProfile', class: Google::Apis::NetworksecurityV1::CustomMirroringProfile, decorator: Google::Apis::NetworksecurityV1::CustomMirroringProfile::Representation
|
862
|
+
|
848
863
|
property :description, as: 'description'
|
849
864
|
property :etag, as: 'etag'
|
850
865
|
hash :labels, as: 'labels'
|
@@ -860,6 +875,7 @@ module Google
|
|
860
875
|
# @private
|
861
876
|
class Representation < Google::Apis::Core::JsonRepresentation
|
862
877
|
property :create_time, as: 'createTime'
|
878
|
+
property :custom_mirroring_profile, as: 'customMirroringProfile'
|
863
879
|
property :description, as: 'description'
|
864
880
|
property :etag, as: 'etag'
|
865
881
|
hash :labels, as: 'labels'
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-networksecurity_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.30.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-09-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-networksecurity_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-networksecurity_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-networksecurity_v1/v0.30.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-networksecurity_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|