google-apis-networkconnectivity_v1 0.48.0 → 0.49.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: 3fb67610a0aed6a56faa4f46105d0d1f5836503aaf5c9aea227cbb21641dd1c9
4
- data.tar.gz: 1f96f8df0fdc4b98dd500689ffb0548900cc73ddc618767c2b962cc4a81b06a1
3
+ metadata.gz: 4b555e6994968e0aa8675884ad70c8c4671d43a4a057f1aa1a3779cd8e070ea7
4
+ data.tar.gz: 136ba0752a2c07ca20861687a57f0b640ce72bc75627a7ada1d9e1f7fd4580ca
5
5
  SHA512:
6
- metadata.gz: 5c23bab5ab57ba1840116e1cae1160ab71d91163e8d90e9daa2a36794620fa163696bf4e633faded0103a6c02cce34be1667ca7d4465f9c6aa9d1eae1f35b19f
7
- data.tar.gz: ec886a12830be9c1a6079ec67c592ceeaa373d791a7d60daada4e46dd724e70fbabce8d7cc94a260d2ac6c7a712ad5c93c99ceeb8b54323ad3a6daccd3350007
6
+ metadata.gz: 74ffddfa9107fa618c69da5d07e7804f198bd6d68f706e16cd0fc8e8b9ab155d0eabcfa0d1ba7fa4cc87574a808ea1e4da3ea1dd0947eaf7f20fa37e45172f76
7
+ data.tar.gz: 377bc181f8e48a666cf8b81a03b5a3f6ce19b3f419818dac1dc220bcc9c9eb998e223dbcc88ec2677ed832de4189f6969783402318bdf5201b31171b46120a96
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-networkconnectivity_v1
2
2
 
3
+ ### v0.49.0 (2024-10-20)
4
+
5
+ * Regenerated from discovery document revision 20241009
6
+
3
7
  ### v0.48.0 (2024-09-29)
4
8
 
5
9
  * Regenerated from discovery document revision 20240923
@@ -298,6 +298,11 @@ module Google
298
298
  attr_accessor :disable_global_access
299
299
  alias_method :disable_global_access?, :disable_global_access
300
300
 
301
+ # The requested IP version for the PSC connection.
302
+ # Corresponds to the JSON property `ipVersion`
303
+ # @return [String]
304
+ attr_accessor :ip_version
305
+
301
306
  # The resource path of the consumer network where PSC connections are allowed to
302
307
  # be created in. Note, this network does not need be in the ConsumerPscConfig.
303
308
  # project in the case of SharedVPC. Example: projects/`projectNumOrId`/global/
@@ -343,6 +348,7 @@ module Google
343
348
  def update!(**args)
344
349
  @consumer_instance_project = args[:consumer_instance_project] if args.key?(:consumer_instance_project)
345
350
  @disable_global_access = args[:disable_global_access] if args.key?(:disable_global_access)
351
+ @ip_version = args[:ip_version] if args.key?(:ip_version)
346
352
  @network = args[:network] if args.key?(:network)
347
353
  @producer_instance_id = args[:producer_instance_id] if args.key?(:producer_instance_id)
348
354
  @producer_instance_metadata = args[:producer_instance_metadata] if args.key?(:producer_instance_metadata)
@@ -402,6 +408,11 @@ module Google
402
408
  # @return [String]
403
409
  attr_accessor :ip
404
410
 
411
+ # The requested IP version for the PSC connection.
412
+ # Corresponds to the JSON property `ipVersion`
413
+ # @return [String]
414
+ attr_accessor :ip_version
415
+
405
416
  # The consumer network whose PSC forwarding rule is connected to the service
406
417
  # attachments in this service connection map. Note that the network could be on
407
418
  # a different project (shared VPC).
@@ -460,6 +471,7 @@ module Google
460
471
  @forwarding_rule = args[:forwarding_rule] if args.key?(:forwarding_rule)
461
472
  @gce_operation = args[:gce_operation] if args.key?(:gce_operation)
462
473
  @ip = args[:ip] if args.key?(:ip)
474
+ @ip_version = args[:ip_version] if args.key?(:ip_version)
463
475
  @network = args[:network] if args.key?(:network)
464
476
  @producer_instance_id = args[:producer_instance_id] if args.key?(:producer_instance_id)
465
477
  @producer_instance_metadata = args[:producer_instance_metadata] if args.key?(:producer_instance_metadata)
@@ -2402,6 +2414,11 @@ module Google
2402
2414
  # @return [String]
2403
2415
  attr_accessor :gce_operation
2404
2416
 
2417
+ # The requested IP version for the PSC connection.
2418
+ # Corresponds to the JSON property `ipVersion`
2419
+ # @return [String]
2420
+ attr_accessor :ip_version
2421
+
2405
2422
  # Immutable. Deprecated. Use producer_instance_metadata instead. An immutable
2406
2423
  # identifier for the producer instance.
2407
2424
  # Corresponds to the JSON property `producerInstanceId`
@@ -2449,6 +2466,7 @@ module Google
2449
2466
  @error_info = args[:error_info] if args.key?(:error_info)
2450
2467
  @error_type = args[:error_type] if args.key?(:error_type)
2451
2468
  @gce_operation = args[:gce_operation] if args.key?(:gce_operation)
2469
+ @ip_version = args[:ip_version] if args.key?(:ip_version)
2452
2470
  @producer_instance_id = args[:producer_instance_id] if args.key?(:producer_instance_id)
2453
2471
  @producer_instance_metadata = args[:producer_instance_metadata] if args.key?(:producer_instance_metadata)
2454
2472
  @psc_connection_id = args[:psc_connection_id] if args.key?(:psc_connection_id)
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module NetworkconnectivityV1
18
18
  # Version of the google-apis-networkconnectivity_v1 gem
19
- GEM_VERSION = "0.48.0"
19
+ GEM_VERSION = "0.49.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 = "20240923"
25
+ REVISION = "20241009"
26
26
  end
27
27
  end
28
28
  end
@@ -521,6 +521,7 @@ module Google
521
521
  class Representation < Google::Apis::Core::JsonRepresentation
522
522
  property :consumer_instance_project, as: 'consumerInstanceProject'
523
523
  property :disable_global_access, as: 'disableGlobalAccess'
524
+ property :ip_version, as: 'ipVersion'
524
525
  property :network, as: 'network'
525
526
  property :producer_instance_id, as: 'producerInstanceId'
526
527
  hash :producer_instance_metadata, as: 'producerInstanceMetadata'
@@ -541,6 +542,7 @@ module Google
541
542
  property :forwarding_rule, as: 'forwardingRule'
542
543
  property :gce_operation, as: 'gceOperation'
543
544
  property :ip, as: 'ip'
545
+ property :ip_version, as: 'ipVersion'
544
546
  property :network, as: 'network'
545
547
  property :producer_instance_id, as: 'producerInstanceId'
546
548
  hash :producer_instance_metadata, as: 'producerInstanceMetadata'
@@ -1018,6 +1020,7 @@ module Google
1018
1020
 
1019
1021
  property :error_type, as: 'errorType'
1020
1022
  property :gce_operation, as: 'gceOperation'
1023
+ property :ip_version, as: 'ipVersion'
1021
1024
  property :producer_instance_id, as: 'producerInstanceId'
1022
1025
  hash :producer_instance_metadata, as: 'producerInstanceMetadata'
1023
1026
  property :psc_connection_id, as: 'pscConnectionId'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-networkconnectivity_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.48.0
4
+ version: 0.49.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-09-29 00:00:00.000000000 Z
11
+ date: 2024-10-27 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-networkconnectivity_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-networkconnectivity_v1/v0.48.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-networkconnectivity_v1/v0.49.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-networkconnectivity_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.6
78
+ rubygems_version: 3.5.21
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Network Connectivity API V1