google-apis-beyondcorp_v1alpha 0.50.0 → 0.51.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: cfbd4b23439dde094e9b0921cb6d49237c60dace207b6825b7a576ca50856da6
4
- data.tar.gz: d30e1ee87fe9c7ada350542614228c2f5f2aa239338a7d890bdcd44ac85dc453
3
+ metadata.gz: 24825adb6d4f6ce006eda23ee8190ca32245ff507ac3e9d8509500c52ea00182
4
+ data.tar.gz: cc698db225c7b237f81ab41e536cac1ca4a7bc41bebda50772807bf3dbabdadd
5
5
  SHA512:
6
- metadata.gz: 6ef52e30b4be755541dbeb22d9b665cab0fb887faaf2fcf7f9c88f04c62ef0dfd939415f4f9aa8ebf3c04cad3f50df29e370524c4aa0dfa777e3339e76a2d1c6
7
- data.tar.gz: 9cb4918571253fbf13946947f76480d5435b9c04c9aee9cf940b0d5a3ddaa15f5847d4a616df1120e65ac0f563e21853de3c55118f441a4a6826458d30103c8f
6
+ metadata.gz: d0ebe45a900bc490fb1812d96c0333937e17e8b4724850bb449a3f266efb5af7888fdde6b8187ff3fd5b0089f80494e378239f57a86fdde7a857406cce3e75e7
7
+ data.tar.gz: 4447dacc612f84c98bcc0cf595d4bb05034be30406f3d6b3020db6a03173b2f3d5f6444da8b6449e04d246a19cf8917e3ebd7e24ed3d92f2f202506d18a39c83
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-beyondcorp_v1alpha
2
2
 
3
+ ### v0.51.0 (2025-07-27)
4
+
5
+ * Regenerated from discovery document revision 20250714
6
+
3
7
  ### v0.50.0 (2025-06-29)
4
8
 
5
9
  * Regenerated from discovery document revision 20250616
@@ -2698,6 +2698,11 @@ module Google
2698
2698
  # @return [String]
2699
2699
  attr_accessor :update_time
2700
2700
 
2701
+ # Optional. Which upstream resources to forward traffic to.
2702
+ # Corresponds to the JSON property `upstreams`
2703
+ # @return [Array<Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpSecuritygatewaysV1alphaApplicationUpstream>]
2704
+ attr_accessor :upstreams
2705
+
2701
2706
  def initialize(**args)
2702
2707
  update!(**args)
2703
2708
  end
@@ -2709,6 +2714,71 @@ module Google
2709
2714
  @endpoint_matchers = args[:endpoint_matchers] if args.key?(:endpoint_matchers)
2710
2715
  @name = args[:name] if args.key?(:name)
2711
2716
  @update_time = args[:update_time] if args.key?(:update_time)
2717
+ @upstreams = args[:upstreams] if args.key?(:upstreams)
2718
+ end
2719
+ end
2720
+
2721
+ # Which upstream resource to forward traffic to.
2722
+ class GoogleCloudBeyondcorpSecuritygatewaysV1alphaApplicationUpstream
2723
+ include Google::Apis::Core::Hashable
2724
+
2725
+ # Routing policy information.
2726
+ # Corresponds to the JSON property `egressPolicy`
2727
+ # @return [Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpSecuritygatewaysV1alphaEgressPolicy]
2728
+ attr_accessor :egress_policy
2729
+
2730
+ # Network to forward traffic to.
2731
+ # Corresponds to the JSON property `network`
2732
+ # @return [Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpSecuritygatewaysV1alphaApplicationUpstreamNetwork]
2733
+ attr_accessor :network
2734
+
2735
+ def initialize(**args)
2736
+ update!(**args)
2737
+ end
2738
+
2739
+ # Update properties of this object
2740
+ def update!(**args)
2741
+ @egress_policy = args[:egress_policy] if args.key?(:egress_policy)
2742
+ @network = args[:network] if args.key?(:network)
2743
+ end
2744
+ end
2745
+
2746
+ # Network to forward traffic to.
2747
+ class GoogleCloudBeyondcorpSecuritygatewaysV1alphaApplicationUpstreamNetwork
2748
+ include Google::Apis::Core::Hashable
2749
+
2750
+ # Required. Network name is of the format: `projects/`project`/global/networks/`
2751
+ # network`
2752
+ # Corresponds to the JSON property `name`
2753
+ # @return [String]
2754
+ attr_accessor :name
2755
+
2756
+ def initialize(**args)
2757
+ update!(**args)
2758
+ end
2759
+
2760
+ # Update properties of this object
2761
+ def update!(**args)
2762
+ @name = args[:name] if args.key?(:name)
2763
+ end
2764
+ end
2765
+
2766
+ # Routing policy information.
2767
+ class GoogleCloudBeyondcorpSecuritygatewaysV1alphaEgressPolicy
2768
+ include Google::Apis::Core::Hashable
2769
+
2770
+ # Required. List of the regions where the application sends traffic.
2771
+ # Corresponds to the JSON property `regions`
2772
+ # @return [Array<String>]
2773
+ attr_accessor :regions
2774
+
2775
+ def initialize(**args)
2776
+ update!(**args)
2777
+ end
2778
+
2779
+ # Update properties of this object
2780
+ def update!(**args)
2781
+ @regions = args[:regions] if args.key?(:regions)
2712
2782
  end
2713
2783
  end
2714
2784
 
@@ -2850,6 +2920,12 @@ module Google
2850
2920
  # @return [String]
2851
2921
  attr_accessor :create_time
2852
2922
 
2923
+ # Output only. Service account used for operations that involve resources in
2924
+ # consumer projects.
2925
+ # Corresponds to the JSON property `delegatingServiceAccount`
2926
+ # @return [String]
2927
+ attr_accessor :delegating_service_account
2928
+
2853
2929
  # Optional. An arbitrary user-provided name for the SecurityGateway. Cannot
2854
2930
  # exceed 64 characters.
2855
2931
  # Corresponds to the JSON property `displayName`
@@ -2890,6 +2966,7 @@ module Google
2890
2966
  # Update properties of this object
2891
2967
  def update!(**args)
2892
2968
  @create_time = args[:create_time] if args.key?(:create_time)
2969
+ @delegating_service_account = args[:delegating_service_account] if args.key?(:delegating_service_account)
2893
2970
  @display_name = args[:display_name] if args.key?(:display_name)
2894
2971
  @external_ips = args[:external_ips] if args.key?(:external_ips)
2895
2972
  @hubs = args[:hubs] if args.key?(:hubs)
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module BeyondcorpV1alpha
18
18
  # Version of the google-apis-beyondcorp_v1alpha gem
19
- GEM_VERSION = "0.50.0"
19
+ GEM_VERSION = "0.51.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 = "20250616"
25
+ REVISION = "20250714"
26
26
  end
27
27
  end
28
28
  end
@@ -412,6 +412,24 @@ module Google
412
412
  include Google::Apis::Core::JsonObjectSupport
413
413
  end
414
414
 
415
+ class GoogleCloudBeyondcorpSecuritygatewaysV1alphaApplicationUpstream
416
+ class Representation < Google::Apis::Core::JsonRepresentation; end
417
+
418
+ include Google::Apis::Core::JsonObjectSupport
419
+ end
420
+
421
+ class GoogleCloudBeyondcorpSecuritygatewaysV1alphaApplicationUpstreamNetwork
422
+ class Representation < Google::Apis::Core::JsonRepresentation; end
423
+
424
+ include Google::Apis::Core::JsonObjectSupport
425
+ end
426
+
427
+ class GoogleCloudBeyondcorpSecuritygatewaysV1alphaEgressPolicy
428
+ class Representation < Google::Apis::Core::JsonRepresentation; end
429
+
430
+ include Google::Apis::Core::JsonObjectSupport
431
+ end
432
+
415
433
  class GoogleCloudBeyondcorpSecuritygatewaysV1alphaEndpointMatcher
416
434
  class Representation < Google::Apis::Core::JsonRepresentation; end
417
435
 
@@ -1322,6 +1340,32 @@ module Google
1322
1340
 
1323
1341
  property :name, as: 'name'
1324
1342
  property :update_time, as: 'updateTime'
1343
+ collection :upstreams, as: 'upstreams', class: Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpSecuritygatewaysV1alphaApplicationUpstream, decorator: Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpSecuritygatewaysV1alphaApplicationUpstream::Representation
1344
+
1345
+ end
1346
+ end
1347
+
1348
+ class GoogleCloudBeyondcorpSecuritygatewaysV1alphaApplicationUpstream
1349
+ # @private
1350
+ class Representation < Google::Apis::Core::JsonRepresentation
1351
+ property :egress_policy, as: 'egressPolicy', class: Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpSecuritygatewaysV1alphaEgressPolicy, decorator: Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpSecuritygatewaysV1alphaEgressPolicy::Representation
1352
+
1353
+ property :network, as: 'network', class: Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpSecuritygatewaysV1alphaApplicationUpstreamNetwork, decorator: Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpSecuritygatewaysV1alphaApplicationUpstreamNetwork::Representation
1354
+
1355
+ end
1356
+ end
1357
+
1358
+ class GoogleCloudBeyondcorpSecuritygatewaysV1alphaApplicationUpstreamNetwork
1359
+ # @private
1360
+ class Representation < Google::Apis::Core::JsonRepresentation
1361
+ property :name, as: 'name'
1362
+ end
1363
+ end
1364
+
1365
+ class GoogleCloudBeyondcorpSecuritygatewaysV1alphaEgressPolicy
1366
+ # @private
1367
+ class Representation < Google::Apis::Core::JsonRepresentation
1368
+ collection :regions, as: 'regions'
1325
1369
  end
1326
1370
  end
1327
1371
 
@@ -1372,6 +1416,7 @@ module Google
1372
1416
  # @private
1373
1417
  class Representation < Google::Apis::Core::JsonRepresentation
1374
1418
  property :create_time, as: 'createTime'
1419
+ property :delegating_service_account, as: 'delegatingServiceAccount'
1375
1420
  property :display_name, as: 'displayName'
1376
1421
  collection :external_ips, as: 'externalIps'
1377
1422
  hash :hubs, as: 'hubs', class: Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpSecuritygatewaysV1alphaHub, decorator: Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpSecuritygatewaysV1alphaHub::Representation
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-beyondcorp_v1alpha
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.50.0
4
+ version: 0.51.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-beyondcorp_v1alpha/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-beyondcorp_v1alpha/v0.50.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-beyondcorp_v1alpha/v0.51.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-beyondcorp_v1alpha
62
62
  rdoc_options: []
63
63
  require_paths: