google-apis-appengine_v1beta 0.58.0 → 0.59.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: 7aeb4e525a27a93a97715b5eb373b14c7e29c81b4dc965cf5dc533fd95498881
4
- data.tar.gz: 0feb6fae0b74d0f6a4082da5f5983194f3b3126e56f66ddb6634884b8bb7e3c5
3
+ metadata.gz: c61e2610f5abc1d27ea27cf23f9d1599c6af50a26b1acd07f27a97d40d975c02
4
+ data.tar.gz: 7c9bb668a92a678c961d838c7bf58015a4f1decad766d92024a39ca246014efe
5
5
  SHA512:
6
- metadata.gz: e962a728e5bb79f8ba7066c53eccdb74d4c45d171e082d3c11caf475fd59facb714f7695a81ed3ba1d93ff490783040aeaec93e88ecf85938d35e8f8136db5b6
7
- data.tar.gz: 6023c326c5fe53a7eaa89f684b2f9aaddb9eb474f98276f3ae4bf7dfa9248d769c1777f1c7d8c75e54e0c578759ebcfd27bd9948cfd4222cb5a7a0b825edf0f6
6
+ metadata.gz: 385b2d6eba753d5ea602214da9bcc67d81fd782a0774bad155fe1c1182c2b937ff32dc0a136e7efcc66c691c5dc551a63d64c4992af7690a343381457d9a9ad4
7
+ data.tar.gz: 90cd1893831d2df2e94654778ac7dc4f7d3bca280ae62f6da3d40905da09a267d9378365aeeed36d36d235f4fec76e775e091b36fd0a5cc75b6d65d0d8d0c756
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-appengine_v1beta
2
2
 
3
+ ### v0.59.0 (2025-10-12)
4
+
5
+ * Regenerated from discovery document revision 20251005
6
+
3
7
  ### v0.58.0 (2025-10-05)
4
8
 
5
9
  * Regenerated from discovery document revision 20250930
@@ -3135,6 +3135,32 @@ module Google
3135
3135
  end
3136
3136
  end
3137
3137
 
3138
+ # Subnetwork key message.
3139
+ class SubnetworkKey
3140
+ include Google::Apis::Core::Hashable
3141
+
3142
+ # Project id (name not number) of the project that hosts the network
3143
+ # Corresponds to the JSON property `hostProjectId`
3144
+ # @return [String]
3145
+ attr_accessor :host_project_id
3146
+
3147
+ # Short name of the subnetwork. e.g. SUBNET instead of projects/`PROJECT_NAME`/
3148
+ # regions/`REGION`/subnetworks/`SUBNET`
3149
+ # Corresponds to the JSON property `subnet`
3150
+ # @return [String]
3151
+ attr_accessor :subnet
3152
+
3153
+ def initialize(**args)
3154
+ update!(**args)
3155
+ end
3156
+
3157
+ # Update properties of this object
3158
+ def update!(**args)
3159
+ @host_project_id = args[:host_project_id] if args.key?(:host_project_id)
3160
+ @subnet = args[:subnet] if args.key?(:subnet)
3161
+ end
3162
+ end
3163
+
3138
3164
  # Traffic routing configuration for versions within a single service. Traffic
3139
3165
  # splits define how traffic directed to the service is assigned to versions.
3140
3166
  class TrafficSplit
@@ -3534,6 +3560,11 @@ module Google
3534
3560
  # @return [Google::Apis::AppengineV1beta::VpcAccessConnector]
3535
3561
  attr_accessor :vpc_access_connector
3536
3562
 
3563
+ # Vpc Egress configuration.
3564
+ # Corresponds to the JSON property `vpcEgress`
3565
+ # @return [Google::Apis::AppengineV1beta::VpcEgress]
3566
+ attr_accessor :vpc_egress
3567
+
3537
3568
  # The Google Compute Engine zones that are supported by this version in the App
3538
3569
  # Engine flexible environment. Deprecated.
3539
3570
  # Corresponds to the JSON property `zones`
@@ -3587,6 +3618,7 @@ module Google
3587
3618
  @version_url = args[:version_url] if args.key?(:version_url)
3588
3619
  @vm = args[:vm] if args.key?(:vm)
3589
3620
  @vpc_access_connector = args[:vpc_access_connector] if args.key?(:vpc_access_connector)
3621
+ @vpc_egress = args[:vpc_egress] if args.key?(:vpc_egress)
3590
3622
  @zones = args[:zones] if args.key?(:zones)
3591
3623
  end
3592
3624
  end
@@ -3650,6 +3682,57 @@ module Google
3650
3682
  end
3651
3683
  end
3652
3684
 
3685
+ # Vpc Egress configuration.
3686
+ class VpcEgress
3687
+ include Google::Apis::Core::Hashable
3688
+
3689
+ # The egress setting for the subnetwork, controlling what traffic is diverted
3690
+ # through it.
3691
+ # Corresponds to the JSON property `egressSetting`
3692
+ # @return [String]
3693
+ attr_accessor :egress_setting
3694
+
3695
+ # The network tags to apply to the instance.
3696
+ # Corresponds to the JSON property `networkTags`
3697
+ # @return [Array<Google::Apis::AppengineV1beta::VpcNetworkTag>]
3698
+ attr_accessor :network_tags
3699
+
3700
+ # Subnetwork key message.
3701
+ # Corresponds to the JSON property `subnetworkKey`
3702
+ # @return [Google::Apis::AppengineV1beta::SubnetworkKey]
3703
+ attr_accessor :subnetwork_key
3704
+
3705
+ def initialize(**args)
3706
+ update!(**args)
3707
+ end
3708
+
3709
+ # Update properties of this object
3710
+ def update!(**args)
3711
+ @egress_setting = args[:egress_setting] if args.key?(:egress_setting)
3712
+ @network_tags = args[:network_tags] if args.key?(:network_tags)
3713
+ @subnetwork_key = args[:subnetwork_key] if args.key?(:subnetwork_key)
3714
+ end
3715
+ end
3716
+
3717
+ # Network tag message.
3718
+ class VpcNetworkTag
3719
+ include Google::Apis::Core::Hashable
3720
+
3721
+ # value for the tag name
3722
+ # Corresponds to the JSON property `value`
3723
+ # @return [String]
3724
+ attr_accessor :value
3725
+
3726
+ def initialize(**args)
3727
+ update!(**args)
3728
+ end
3729
+
3730
+ # Update properties of this object
3731
+ def update!(**args)
3732
+ @value = args[:value] if args.key?(:value)
3733
+ end
3734
+ end
3735
+
3653
3736
  # The zip file information for a zip deployment.
3654
3737
  class ZipInfo
3655
3738
  include Google::Apis::Core::Hashable
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module AppengineV1beta
18
18
  # Version of the google-apis-appengine_v1beta gem
19
- GEM_VERSION = "0.58.0"
19
+ GEM_VERSION = "0.59.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 = "20250930"
25
+ REVISION = "20251005"
26
26
  end
27
27
  end
28
28
  end
@@ -478,6 +478,12 @@ module Google
478
478
  include Google::Apis::Core::JsonObjectSupport
479
479
  end
480
480
 
481
+ class SubnetworkKey
482
+ class Representation < Google::Apis::Core::JsonRepresentation; end
483
+
484
+ include Google::Apis::Core::JsonObjectSupport
485
+ end
486
+
481
487
  class TrafficSplit
482
488
  class Representation < Google::Apis::Core::JsonRepresentation; end
483
489
 
@@ -514,6 +520,18 @@ module Google
514
520
  include Google::Apis::Core::JsonObjectSupport
515
521
  end
516
522
 
523
+ class VpcEgress
524
+ class Representation < Google::Apis::Core::JsonRepresentation; end
525
+
526
+ include Google::Apis::Core::JsonObjectSupport
527
+ end
528
+
529
+ class VpcNetworkTag
530
+ class Representation < Google::Apis::Core::JsonRepresentation; end
531
+
532
+ include Google::Apis::Core::JsonObjectSupport
533
+ end
534
+
517
535
  class ZipInfo
518
536
  class Representation < Google::Apis::Core::JsonRepresentation; end
519
537
 
@@ -1314,6 +1332,14 @@ module Google
1314
1332
  end
1315
1333
  end
1316
1334
 
1335
+ class SubnetworkKey
1336
+ # @private
1337
+ class Representation < Google::Apis::Core::JsonRepresentation
1338
+ property :host_project_id, as: 'hostProjectId'
1339
+ property :subnet, as: 'subnet'
1340
+ end
1341
+ end
1342
+
1317
1343
  class TrafficSplit
1318
1344
  # @private
1319
1345
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1409,6 +1435,8 @@ module Google
1409
1435
  property :vm, as: 'vm'
1410
1436
  property :vpc_access_connector, as: 'vpcAccessConnector', class: Google::Apis::AppengineV1beta::VpcAccessConnector, decorator: Google::Apis::AppengineV1beta::VpcAccessConnector::Representation
1411
1437
 
1438
+ property :vpc_egress, as: 'vpcEgress', class: Google::Apis::AppengineV1beta::VpcEgress, decorator: Google::Apis::AppengineV1beta::VpcEgress::Representation
1439
+
1412
1440
  collection :zones, as: 'zones'
1413
1441
  end
1414
1442
  end
@@ -1430,6 +1458,24 @@ module Google
1430
1458
  end
1431
1459
  end
1432
1460
 
1461
+ class VpcEgress
1462
+ # @private
1463
+ class Representation < Google::Apis::Core::JsonRepresentation
1464
+ property :egress_setting, as: 'egressSetting'
1465
+ collection :network_tags, as: 'networkTags', class: Google::Apis::AppengineV1beta::VpcNetworkTag, decorator: Google::Apis::AppengineV1beta::VpcNetworkTag::Representation
1466
+
1467
+ property :subnetwork_key, as: 'subnetworkKey', class: Google::Apis::AppengineV1beta::SubnetworkKey, decorator: Google::Apis::AppengineV1beta::SubnetworkKey::Representation
1468
+
1469
+ end
1470
+ end
1471
+
1472
+ class VpcNetworkTag
1473
+ # @private
1474
+ class Representation < Google::Apis::Core::JsonRepresentation
1475
+ property :value, as: 'value'
1476
+ end
1477
+ end
1478
+
1433
1479
  class ZipInfo
1434
1480
  # @private
1435
1481
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-appengine_v1beta
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.58.0
4
+ version: 0.59.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-appengine_v1beta/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-appengine_v1beta/v0.58.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-appengine_v1beta/v0.59.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-appengine_v1beta
62
62
  rdoc_options: []
63
63
  require_paths: