google-apis-networksecurity_v1 0.31.0 → 0.32.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: b405a629e898e7005a178dc30cb4c856f1cd08234c5e9f0143767ac164fb8438
4
- data.tar.gz: b576425cb00f5c2a62b8ea634a3a5bffd4fe0f16e16215aaaa05c8ca83b00ae8
3
+ metadata.gz: 7c08bc8d44ec9b60f0200f227e996764930062e7d76b5c6c2e2340acc5832d2e
4
+ data.tar.gz: eb75cdd90044346859d0cb2369c862344f60cc1609a97047a5addb2826eeb82f
5
5
  SHA512:
6
- metadata.gz: cbc06a698dad058e54c17a03ae1ac6befe7b8b7245e1e740b0f9482e39f548674348758a1c17d5a12a1decce12d482c368a27009de9f26eb904bbbc0eb975658
7
- data.tar.gz: 85f3b178e62ad17e40ab50bf49d5370642c206d1c7d9b2767f7b6ff444701c9224f67032c5be1a03b91bc02fd9614e12fde01369d4a81abf8a4fcc330283775c
6
+ metadata.gz: 522daaba5e0ef18e1a0898f685c68ea6f8e2d521e6e110e375c818c04c0720189ee4806621b2dddefe56bcc26339f7c64052e321a252252caf957656b1d7d51b
7
+ data.tar.gz: 46c31ed3ad60251b01b48ca0e6165cdc327e2564ac6d0981ada9211ab1fda6661433a1ef87547eaaf165c65a6ea96befac883b99362d1c17a4a3a8a54d73af8e
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-networksecurity_v1
2
2
 
3
+ ### v0.32.0 (2024-12-08)
4
+
5
+ * Regenerated from discovery document revision 20241202
6
+
3
7
  ### v0.31.0 (2024-11-17)
4
8
 
5
9
  * Regenerated from discovery document revision 20241109
@@ -325,7 +325,7 @@ module Google
325
325
  attr_accessor :not_sources
326
326
 
327
327
  # Optional. Describes the properties of a request's sources. At least one of
328
- # sources or notSources must be specified. Limited to 5 sources. A match occurs
328
+ # sources or notSources must be specified. Limited to 1 source. A match occurs
329
329
  # when ANY source (in sources or notSources) matches the request. Within a
330
330
  # single source, the match follows AND semantics across fields and OR semantics
331
331
  # within a single field, i.e. a match occurs when ANY principal matches AND ANY
@@ -517,7 +517,7 @@ module Google
517
517
  attr_accessor :not_operations
518
518
 
519
519
  # Optional. Describes properties of one or more targets of a request. At least
520
- # one of operations or notOperations must be specified. Limited to 5 operations.
520
+ # one of operations or notOperations must be specified. Limited to 1 operation.
521
521
  # A match occurs when ANY operation (in operations or notOperations) matches.
522
522
  # Within an operation, the match follows AND semantics across fields and OR
523
523
  # semantics within a field, i.e. a match occurs when ANY path matches AND ANY
@@ -842,6 +842,27 @@ module Google
842
842
  end
843
843
  end
844
844
 
845
+ # CustomInterceptProfile defines the Packet Intercept Endpoint Group used to
846
+ # intercept traffic to a third-party firewall in a Firewall rule.
847
+ class CustomInterceptProfile
848
+ include Google::Apis::Core::Hashable
849
+
850
+ # Required. The InterceptEndpointGroup to which traffic associated with the SP
851
+ # should be mirrored.
852
+ # Corresponds to the JSON property `interceptEndpointGroup`
853
+ # @return [String]
854
+ attr_accessor :intercept_endpoint_group
855
+
856
+ def initialize(**args)
857
+ update!(**args)
858
+ end
859
+
860
+ # Update properties of this object
861
+ def update!(**args)
862
+ @intercept_endpoint_group = args[:intercept_endpoint_group] if args.key?(:intercept_endpoint_group)
863
+ end
864
+ end
865
+
845
866
  # CustomMirroringProfile defines an action for mirroring traffic to a collector'
846
867
  # s EndpointGroup
847
868
  class CustomMirroringProfile
@@ -2497,7 +2518,7 @@ module Google
2497
2518
  end
2498
2519
 
2499
2520
  # SecurityProfile is a resource that defines the behavior for one of many
2500
- # ProfileTypes. Next ID: 12
2521
+ # ProfileTypes.
2501
2522
  class SecurityProfile
2502
2523
  include Google::Apis::Core::Hashable
2503
2524
 
@@ -2506,6 +2527,12 @@ module Google
2506
2527
  # @return [String]
2507
2528
  attr_accessor :create_time
2508
2529
 
2530
+ # CustomInterceptProfile defines the Packet Intercept Endpoint Group used to
2531
+ # intercept traffic to a third-party firewall in a Firewall rule.
2532
+ # Corresponds to the JSON property `customInterceptProfile`
2533
+ # @return [Google::Apis::NetworksecurityV1::CustomInterceptProfile]
2534
+ attr_accessor :custom_intercept_profile
2535
+
2509
2536
  # CustomMirroringProfile defines an action for mirroring traffic to a collector'
2510
2537
  # s EndpointGroup
2511
2538
  # Corresponds to the JSON property `customMirroringProfile`
@@ -2559,6 +2586,7 @@ module Google
2559
2586
  # Update properties of this object
2560
2587
  def update!(**args)
2561
2588
  @create_time = args[:create_time] if args.key?(:create_time)
2589
+ @custom_intercept_profile = args[:custom_intercept_profile] if args.key?(:custom_intercept_profile)
2562
2590
  @custom_mirroring_profile = args[:custom_mirroring_profile] if args.key?(:custom_mirroring_profile)
2563
2591
  @description = args[:description] if args.key?(:description)
2564
2592
  @etag = args[:etag] if args.key?(:etag)
@@ -2571,7 +2599,7 @@ module Google
2571
2599
  end
2572
2600
 
2573
2601
  # SecurityProfileGroup is a resource that defines the behavior for various
2574
- # ProfileTypes. Next ID: 11
2602
+ # ProfileTypes.
2575
2603
  class SecurityProfileGroup
2576
2604
  include Google::Apis::Core::Hashable
2577
2605
 
@@ -2580,6 +2608,12 @@ module Google
2580
2608
  # @return [String]
2581
2609
  attr_accessor :create_time
2582
2610
 
2611
+ # Optional. Reference to a SecurityProfile with the CustomIntercept
2612
+ # configuration.
2613
+ # Corresponds to the JSON property `customInterceptProfile`
2614
+ # @return [String]
2615
+ attr_accessor :custom_intercept_profile
2616
+
2583
2617
  # Optional. Reference to a SecurityProfile with the CustomMirroring
2584
2618
  # configuration.
2585
2619
  # Corresponds to the JSON property `customMirroringProfile`
@@ -2629,6 +2663,7 @@ module Google
2629
2663
  # Update properties of this object
2630
2664
  def update!(**args)
2631
2665
  @create_time = args[:create_time] if args.key?(:create_time)
2666
+ @custom_intercept_profile = args[:custom_intercept_profile] if args.key?(:custom_intercept_profile)
2632
2667
  @custom_mirroring_profile = args[:custom_mirroring_profile] if args.key?(:custom_mirroring_profile)
2633
2668
  @description = args[:description] if args.key?(:description)
2634
2669
  @etag = args[:etag] if args.key?(:etag)
@@ -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.31.0"
19
+ GEM_VERSION = "0.32.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 = "20241109"
25
+ REVISION = "20241202"
26
26
  end
27
27
  end
28
28
  end
@@ -154,6 +154,12 @@ module Google
154
154
  include Google::Apis::Core::JsonObjectSupport
155
155
  end
156
156
 
157
+ class CustomInterceptProfile
158
+ class Representation < Google::Apis::Core::JsonRepresentation; end
159
+
160
+ include Google::Apis::Core::JsonObjectSupport
161
+ end
162
+
157
163
  class CustomMirroringProfile
158
164
  class Representation < Google::Apis::Core::JsonRepresentation; end
159
165
 
@@ -695,6 +701,13 @@ module Google
695
701
  end
696
702
  end
697
703
 
704
+ class CustomInterceptProfile
705
+ # @private
706
+ class Representation < Google::Apis::Core::JsonRepresentation
707
+ property :intercept_endpoint_group, as: 'interceptEndpointGroup'
708
+ end
709
+ end
710
+
698
711
  class CustomMirroringProfile
699
712
  # @private
700
713
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1112,6 +1125,8 @@ module Google
1112
1125
  # @private
1113
1126
  class Representation < Google::Apis::Core::JsonRepresentation
1114
1127
  property :create_time, as: 'createTime'
1128
+ property :custom_intercept_profile, as: 'customInterceptProfile', class: Google::Apis::NetworksecurityV1::CustomInterceptProfile, decorator: Google::Apis::NetworksecurityV1::CustomInterceptProfile::Representation
1129
+
1115
1130
  property :custom_mirroring_profile, as: 'customMirroringProfile', class: Google::Apis::NetworksecurityV1::CustomMirroringProfile, decorator: Google::Apis::NetworksecurityV1::CustomMirroringProfile::Representation
1116
1131
 
1117
1132
  property :description, as: 'description'
@@ -1129,6 +1144,7 @@ module Google
1129
1144
  # @private
1130
1145
  class Representation < Google::Apis::Core::JsonRepresentation
1131
1146
  property :create_time, as: 'createTime'
1147
+ property :custom_intercept_profile, as: 'customInterceptProfile'
1132
1148
  property :custom_mirroring_profile, as: 'customMirroringProfile'
1133
1149
  property :description, as: 'description'
1134
1150
  property :etag, as: 'etag'
@@ -633,8 +633,8 @@ module Google
633
633
  # Clients can use Operations.GetOperation or other methods to check whether the
634
634
  # cancellation succeeded or whether the operation completed despite cancellation.
635
635
  # On successful cancellation, the operation is not deleted; instead, it becomes
636
- # an operation with an Operation.error value with a google.rpc.Status.code of 1,
637
- # corresponding to `Code.CANCELLED`.
636
+ # an operation with an Operation.error value with a google.rpc.Status.code of `1`
637
+ # , corresponding to `Code.CANCELLED`.
638
638
  # @param [String] name
639
639
  # The name of the operation resource to be cancelled.
640
640
  # @param [Google::Apis::NetworksecurityV1::CancelOperationRequest] cancel_operation_request_object
@@ -3242,8 +3242,8 @@ module Google
3242
3242
  # Clients can use Operations.GetOperation or other methods to check whether the
3243
3243
  # cancellation succeeded or whether the operation completed despite cancellation.
3244
3244
  # On successful cancellation, the operation is not deleted; instead, it becomes
3245
- # an operation with an Operation.error value with a google.rpc.Status.code of 1,
3246
- # corresponding to `Code.CANCELLED`.
3245
+ # an operation with an Operation.error value with a google.rpc.Status.code of `1`
3246
+ # , corresponding to `Code.CANCELLED`.
3247
3247
  # @param [String] name
3248
3248
  # The name of the operation resource to be cancelled.
3249
3249
  # @param [Google::Apis::NetworksecurityV1::CancelOperationRequest] cancel_operation_request_object
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.31.0
4
+ version: 0.32.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-12-04 00:00:00.000000000 Z
11
+ date: 2024-12-08 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.31.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-networksecurity_v1/v0.32.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: []
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
77
  requirements: []
78
- rubygems_version: 3.5.22
78
+ rubygems_version: 3.5.23
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Network Security API V1