google-apis-beyondcorp_v1alpha 0.50.0 → 0.52.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: d7dd024a0d9545f9b5c0314c0a29c2a75d875fa0411cf2613ff70440e51c64ed
4
+ data.tar.gz: cdfbebfdc3867d92c352277792a0f021047dcdccfdb8eedb3ec729b4d8af6932
5
5
  SHA512:
6
- metadata.gz: 6ef52e30b4be755541dbeb22d9b665cab0fb887faaf2fcf7f9c88f04c62ef0dfd939415f4f9aa8ebf3c04cad3f50df29e370524c4aa0dfa777e3339e76a2d1c6
7
- data.tar.gz: 9cb4918571253fbf13946947f76480d5435b9c04c9aee9cf940b0d5a3ddaa15f5847d4a616df1120e65ac0f563e21853de3c55118f441a4a6826458d30103c8f
6
+ metadata.gz: 3268f094b8483288085df59affa5a9b0f0e835ccc0bc271e618220e5e21247b5328ba825788140adebccc4c35884554e5dc218bce751e143f11771c32e8d8876
7
+ data.tar.gz: c6ecb916d82da0e3f9f1ee306e7c6ec9a7f032eee6641ead15d14e8912d07c25dddbef5efcdd7f5ee3a3670e579f8946c1e3a35dcf24f9cf5ef5672c4f11fd92
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-beyondcorp_v1alpha
2
2
 
3
+ ### v0.52.0 (2025-08-03)
4
+
5
+ * Regenerated from discovery document revision 20250723
6
+
7
+ ### v0.51.0 (2025-07-27)
8
+
9
+ * Regenerated from discovery document revision 20250714
10
+
3
11
  ### v0.50.0 (2025-06-29)
4
12
 
5
13
  * Regenerated from discovery document revision 20250616
@@ -2662,7 +2662,7 @@ module Google
2662
2662
  end
2663
2663
  end
2664
2664
 
2665
- # A Beyondcorp Application resource information.
2665
+ # The information about an application resource.
2666
2666
  class GoogleCloudBeyondcorpSecuritygatewaysV1alphaApplication
2667
2667
  include Google::Apis::Core::Hashable
2668
2668
 
@@ -2671,19 +2671,20 @@ module Google
2671
2671
  # @return [String]
2672
2672
  attr_accessor :create_time
2673
2673
 
2674
- # Optional. An arbitrary user-provided name for the Application resource. Cannot
2674
+ # Optional. An arbitrary user-provided name for the application resource. Cannot
2675
2675
  # exceed 64 characters.
2676
2676
  # Corresponds to the JSON property `displayName`
2677
2677
  # @return [String]
2678
2678
  attr_accessor :display_name
2679
2679
 
2680
2680
  # Required. Endpoint matchers associated with an application. A combination of
2681
- # hostname and ports as endpoint matcher is used to match the application. Match
2682
- # conditions for OR logic. An array of match conditions to allow for multiple
2683
- # matching criteria. The rule is considered a match if one the conditions are
2684
- # met. The conditions can be one of the following combination (Hostname), (
2685
- # Hostname & Ports) EXAMPLES: Hostname - ("*.abc.com"), ("xyz.abc.com") Hostname
2686
- # and Ports - ("abc.com" and "22"), ("abc.com" and "22,33") etc
2681
+ # hostname and ports as endpoint matchers is used to match the application.
2682
+ # Match conditions for OR logic. An array of match conditions to allow for
2683
+ # multiple matching criteria. The rule is considered a match if one of the
2684
+ # conditions is met. The conditions can be one of the following combinations (
2685
+ # Hostname), (Hostname & Ports) EXAMPLES: Hostname - ("*.example.com"), ("xyz.
2686
+ # example.com") Hostname and Ports - ("example.com" and "22"), ("example.com"
2687
+ # and "22,33") etc
2687
2688
  # Corresponds to the JSON property `endpointMatchers`
2688
2689
  # @return [Array<Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpSecuritygatewaysV1alphaEndpointMatcher>]
2689
2690
  attr_accessor :endpoint_matchers
@@ -2698,6 +2699,11 @@ module Google
2698
2699
  # @return [String]
2699
2700
  attr_accessor :update_time
2700
2701
 
2702
+ # Optional. Which upstream resources to forward traffic to.
2703
+ # Corresponds to the JSON property `upstreams`
2704
+ # @return [Array<Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpSecuritygatewaysV1alphaApplicationUpstream>]
2705
+ attr_accessor :upstreams
2706
+
2701
2707
  def initialize(**args)
2702
2708
  update!(**args)
2703
2709
  end
@@ -2709,6 +2715,71 @@ module Google
2709
2715
  @endpoint_matchers = args[:endpoint_matchers] if args.key?(:endpoint_matchers)
2710
2716
  @name = args[:name] if args.key?(:name)
2711
2717
  @update_time = args[:update_time] if args.key?(:update_time)
2718
+ @upstreams = args[:upstreams] if args.key?(:upstreams)
2719
+ end
2720
+ end
2721
+
2722
+ # Which upstream resource to forward traffic to.
2723
+ class GoogleCloudBeyondcorpSecuritygatewaysV1alphaApplicationUpstream
2724
+ include Google::Apis::Core::Hashable
2725
+
2726
+ # Routing policy information.
2727
+ # Corresponds to the JSON property `egressPolicy`
2728
+ # @return [Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpSecuritygatewaysV1alphaEgressPolicy]
2729
+ attr_accessor :egress_policy
2730
+
2731
+ # Network to forward traffic to.
2732
+ # Corresponds to the JSON property `network`
2733
+ # @return [Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpSecuritygatewaysV1alphaApplicationUpstreamNetwork]
2734
+ attr_accessor :network
2735
+
2736
+ def initialize(**args)
2737
+ update!(**args)
2738
+ end
2739
+
2740
+ # Update properties of this object
2741
+ def update!(**args)
2742
+ @egress_policy = args[:egress_policy] if args.key?(:egress_policy)
2743
+ @network = args[:network] if args.key?(:network)
2744
+ end
2745
+ end
2746
+
2747
+ # Network to forward traffic to.
2748
+ class GoogleCloudBeyondcorpSecuritygatewaysV1alphaApplicationUpstreamNetwork
2749
+ include Google::Apis::Core::Hashable
2750
+
2751
+ # Required. Network name is of the format: `projects/`project`/global/networks/`
2752
+ # network`
2753
+ # Corresponds to the JSON property `name`
2754
+ # @return [String]
2755
+ attr_accessor :name
2756
+
2757
+ def initialize(**args)
2758
+ update!(**args)
2759
+ end
2760
+
2761
+ # Update properties of this object
2762
+ def update!(**args)
2763
+ @name = args[:name] if args.key?(:name)
2764
+ end
2765
+ end
2766
+
2767
+ # Routing policy information.
2768
+ class GoogleCloudBeyondcorpSecuritygatewaysV1alphaEgressPolicy
2769
+ include Google::Apis::Core::Hashable
2770
+
2771
+ # Required. List of the regions where the application sends traffic.
2772
+ # Corresponds to the JSON property `regions`
2773
+ # @return [Array<String>]
2774
+ attr_accessor :regions
2775
+
2776
+ def initialize(**args)
2777
+ update!(**args)
2778
+ end
2779
+
2780
+ # Update properties of this object
2781
+ def update!(**args)
2782
+ @regions = args[:regions] if args.key?(:regions)
2712
2783
  end
2713
2784
  end
2714
2785
 
@@ -2841,7 +2912,7 @@ module Google
2841
2912
  end
2842
2913
  end
2843
2914
 
2844
- # Information about a BeyondCorp SecurityGateway resource.
2915
+ # The information about a security gateway resource.
2845
2916
  class GoogleCloudBeyondcorpSecuritygatewaysV1alphaSecurityGateway
2846
2917
  include Google::Apis::Core::Hashable
2847
2918
 
@@ -2850,6 +2921,12 @@ module Google
2850
2921
  # @return [String]
2851
2922
  attr_accessor :create_time
2852
2923
 
2924
+ # Output only. Service account used for operations that involve resources in
2925
+ # consumer projects.
2926
+ # Corresponds to the JSON property `delegatingServiceAccount`
2927
+ # @return [String]
2928
+ attr_accessor :delegating_service_account
2929
+
2853
2930
  # Optional. An arbitrary user-provided name for the SecurityGateway. Cannot
2854
2931
  # exceed 64 characters.
2855
2932
  # Corresponds to the JSON property `displayName`
@@ -2890,6 +2967,7 @@ module Google
2890
2967
  # Update properties of this object
2891
2968
  def update!(**args)
2892
2969
  @create_time = args[:create_time] if args.key?(:create_time)
2970
+ @delegating_service_account = args[:delegating_service_account] if args.key?(:delegating_service_account)
2893
2971
  @display_name = args[:display_name] if args.key?(:display_name)
2894
2972
  @external_ips = args[:external_ips] if args.key?(:external_ips)
2895
2973
  @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.52.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 = "20250723"
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
@@ -3323,7 +3323,7 @@ module Google
3323
3323
  execute_or_queue_command(command, &block)
3324
3324
  end
3325
3325
 
3326
- # Creates a new SecurityGateway in a given project and location.
3326
+ # Creates a new Security Gateway in a given project and location.
3327
3327
  # @param [String] parent
3328
3328
  # Required. The resource project name of the SecurityGateway location using the
3329
3329
  # form: `projects/`project_id`/locations/`location_id``
@@ -3331,7 +3331,7 @@ module Google
3331
3331
  # @param [String] request_id
3332
3332
  # Optional. An optional request ID to identify requests. Specify a unique
3333
3333
  # request ID so that if you must retry your request, the server will know to
3334
- # ignore request if it has already been completed. The server will guarantee
3334
+ # ignore the request if it has already been completed. The server will guarantee
3335
3335
  # that for at least 60 minutes since the first request.
3336
3336
  # @param [String] security_gateway_id
3337
3337
  # Optional. User-settable SecurityGateway resource ID. * Must start with a
@@ -3712,7 +3712,7 @@ module Google
3712
3712
  execute_or_queue_command(command, &block)
3713
3713
  end
3714
3714
 
3715
- # Deletes a single Application.
3715
+ # Deletes a single application.
3716
3716
  # @param [String] name
3717
3717
  # Required. Name of the resource.
3718
3718
  # @param [String] request_id
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.52.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.52.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: