google-apis-networksecurity_v1beta1 0.47.0 → 0.48.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: ec320a0c28d7b308708b66c8c0d279581bac9fe172f809808513c0c9e478c672
4
- data.tar.gz: 820cda43f81bc5348585ee532f3b03c143b97b0521dbdd7c9f704a1af6c1ceee
3
+ metadata.gz: 1cdd9a9bf2755abf1721d0a109ddc6da6988a5bb1cedea222190f80124b53dce
4
+ data.tar.gz: 15fe11ca8bdc9ab57a4062316a615d14d8dfb5b1bedd490b37dee237e295e724
5
5
  SHA512:
6
- metadata.gz: f1df04a328274761939612c9939cce00fed393bee114ed90d0b46b2fea3c5fc07b644f1acf875365e6584944d88d4b7fe2909cba1f4e7774fa4eea0d44df82fc
7
- data.tar.gz: 27c1f0f3e032855975e32cd5f4c432aa1eeda604adb7b549df73110df5a59807390a0a599dd5f47dec82e5dbc44e8ac721ae07425056877c63b51f032cd4de5c
6
+ metadata.gz: e6d9d62dcf049e67e9dcb98812e2f41a7d401f4bd9c93de9a060336b577d1a203e6145f157c07eb81aa4fc1cd346bd685b2eb11bbaff3f4ec672d75018650aaa
7
+ data.tar.gz: 2c907815205152790b4fbcf75050094b2b55e8af0916bde1a4b40309b91af0c5712d2c54adfd4715a122ac04d582959f0fa246c1b0dd7c73bac2515d6ab053e9
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-networksecurity_v1beta1
2
2
 
3
+ ### v0.48.0 (2025-06-08)
4
+
5
+ * Regenerated from discovery document revision 20250527
6
+
3
7
  ### v0.47.0 (2025-06-01)
4
8
 
5
9
  * Regenerated from discovery document revision 20250514
@@ -375,6 +375,12 @@ module Google
375
375
  class AuthzPolicyAuthzRuleFromRequestSource
376
376
  include Google::Apis::Core::Hashable
377
377
 
378
+ # Optional. A list of IPs or CIDRs to match against the source IP of a request.
379
+ # Limited to 5 ip_blocks.
380
+ # Corresponds to the JSON property `ipBlocks`
381
+ # @return [Array<Google::Apis::NetworksecurityV1beta1::AuthzPolicyAuthzRuleIpBlock>]
382
+ attr_accessor :ip_blocks
383
+
378
384
  # Optional. A list of resources to match against the resource of the source VM
379
385
  # of a request. Limited to 5 resources.
380
386
  # Corresponds to the JSON property `resources`
@@ -387,6 +393,7 @@ module Google
387
393
 
388
394
  # Update properties of this object
389
395
  def update!(**args)
396
+ @ip_blocks = args[:ip_blocks] if args.key?(:ip_blocks)
390
397
  @resources = args[:resources] if args.key?(:resources)
391
398
  end
392
399
  end
@@ -416,6 +423,31 @@ module Google
416
423
  end
417
424
  end
418
425
 
426
+ # Represents a range of IP Addresses.
427
+ class AuthzPolicyAuthzRuleIpBlock
428
+ include Google::Apis::Core::Hashable
429
+
430
+ # Required. The length of the address range.
431
+ # Corresponds to the JSON property `length`
432
+ # @return [Fixnum]
433
+ attr_accessor :length
434
+
435
+ # Required. The address prefix.
436
+ # Corresponds to the JSON property `prefix`
437
+ # @return [String]
438
+ attr_accessor :prefix
439
+
440
+ def initialize(**args)
441
+ update!(**args)
442
+ end
443
+
444
+ # Update properties of this object
445
+ def update!(**args)
446
+ @length = args[:length] if args.key?(:length)
447
+ @prefix = args[:prefix] if args.key?(:prefix)
448
+ end
449
+ end
450
+
419
451
  # Describes the properties of a client VM resource accessing the internal
420
452
  # application load balancers.
421
453
  class AuthzPolicyAuthzRuleRequestResource
@@ -4224,9 +4256,11 @@ module Google
4224
4256
  # @return [Array<String>]
4225
4257
  attr_accessor :available_symantec_sites
4226
4258
 
4227
- # Optional. A secret ID or secret name can be specified, but it will be parsed
4228
- # and stored as secret URI in the format of "projects/`PROJECT_NUMBER`/secrets/
4229
- # my-secret".
4259
+ # Optional. API Key used to call Symantec APIs on the user's behalf. Required if
4260
+ # using SYMANTEC_CLOUD_SWG. P4SA account needs permissions granted to read this
4261
+ # secret. A secret ID, secret name, or secret URI can be specified, but it will
4262
+ # be parsed and stored as secret URI in the format of "projects/`PROJECT_NUMBER`/
4263
+ # secrets/my-secret".
4230
4264
  # Corresponds to the JSON property `secretPath`
4231
4265
  # @return [String]
4232
4266
  attr_accessor :secret_path
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module NetworksecurityV1beta1
18
18
  # Version of the google-apis-networksecurity_v1beta1 gem
19
- GEM_VERSION = "0.47.0"
19
+ GEM_VERSION = "0.48.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250514"
25
+ REVISION = "20250527"
26
26
  end
27
27
  end
28
28
  end
@@ -76,6 +76,12 @@ module Google
76
76
  include Google::Apis::Core::JsonObjectSupport
77
77
  end
78
78
 
79
+ class AuthzPolicyAuthzRuleIpBlock
80
+ class Representation < Google::Apis::Core::JsonRepresentation; end
81
+
82
+ include Google::Apis::Core::JsonObjectSupport
83
+ end
84
+
79
85
  class AuthzPolicyAuthzRuleRequestResource
80
86
  class Representation < Google::Apis::Core::JsonRepresentation; end
81
87
 
@@ -794,6 +800,8 @@ module Google
794
800
  class AuthzPolicyAuthzRuleFromRequestSource
795
801
  # @private
796
802
  class Representation < Google::Apis::Core::JsonRepresentation
803
+ collection :ip_blocks, as: 'ipBlocks', class: Google::Apis::NetworksecurityV1beta1::AuthzPolicyAuthzRuleIpBlock, decorator: Google::Apis::NetworksecurityV1beta1::AuthzPolicyAuthzRuleIpBlock::Representation
804
+
797
805
  collection :resources, as: 'resources', class: Google::Apis::NetworksecurityV1beta1::AuthzPolicyAuthzRuleRequestResource, decorator: Google::Apis::NetworksecurityV1beta1::AuthzPolicyAuthzRuleRequestResource::Representation
798
806
 
799
807
  end
@@ -808,6 +816,14 @@ module Google
808
816
  end
809
817
  end
810
818
 
819
+ class AuthzPolicyAuthzRuleIpBlock
820
+ # @private
821
+ class Representation < Google::Apis::Core::JsonRepresentation
822
+ property :length, as: 'length'
823
+ property :prefix, as: 'prefix'
824
+ end
825
+ end
826
+
811
827
  class AuthzPolicyAuthzRuleRequestResource
812
828
  # @private
813
829
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-networksecurity_v1beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.47.0
4
+ version: 0.48.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
@@ -57,7 +57,7 @@ licenses:
57
57
  metadata:
58
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
59
59
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-networksecurity_v1beta1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-networksecurity_v1beta1/v0.47.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-networksecurity_v1beta1/v0.48.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-networksecurity_v1beta1
62
62
  rdoc_options: []
63
63
  require_paths: