google-apis-servicenetworking_v1 0.62.0 → 0.64.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1d70c01b384e22264e5842da21bfb6702576dcea5c169a8520d0ad939be1949e
4
- data.tar.gz: 6bc5facc3db40ca606a62714559e6d9236b85acdae9063d9adad17dc0a9531c0
3
+ metadata.gz: 5b8b8763c4f6a6ff2f73b09fe641330b065c704861ee6965c0485c5bd69ff3e0
4
+ data.tar.gz: bf981edf0460ae199e1d240b87dbf1b06f50c5139468eb9f76d3ac1a42baf83d
5
5
  SHA512:
6
- metadata.gz: 884099d7c41db42e0e81e802e52501c363ff31772cb96d4817f8ea45843b44d1394e2ffab42a8984d8893450f1ce6df2ab2f1aed550df5966c37deb440049af5
7
- data.tar.gz: 4d3a9e939c7e39beac50eb5d7aa484bfabcaf2289f4df1c86e00dec37d40f8f35548574d4711450cb3b86dec95c86b8a041bff0052efdb28524f7b5ff91dbde5
6
+ metadata.gz: 541821202c5cb7b326b74a2a008484226bbb131981fde08e5be21e3a9e2d34940fea030d1d23cddd58d709ad9fc334eed2c5254750d9b3f49130ae921da19700
7
+ data.tar.gz: 399a5a3cd50d97e8e1213584962af24b49f20bc346650f906be918beedf29a4168461cb89af98ca7a9e63f1f7522f48f2ac11276c7e6f4faa15b07f697c9fdd1
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-servicenetworking_v1
2
2
 
3
+ ### v0.64.0 (2024-09-01)
4
+
5
+ * Regenerated from discovery document revision 20240825
6
+
7
+ ### v0.63.0 (2024-08-25)
8
+
9
+ * Regenerated from discovery document revision 20240820
10
+ * Regenerated using generator version 0.15.1
11
+
3
12
  ### v0.62.0 (2024-07-25)
4
13
 
5
14
  * Regenerated from discovery document revision 20240716
@@ -344,6 +344,18 @@ module Google
344
344
  # @return [Array<Google::Apis::ServicenetworkingV1::SecondaryIpRangeSpec>]
345
345
  attr_accessor :secondary_ip_range_specs
346
346
 
347
+ # Optional. Skips validating if the requested_address is in use by SN VPC’s
348
+ # peering group. Compute Engine will still perform this check and fail the
349
+ # request if the requested_address is in use. Note that Compute Engine does not
350
+ # check for the existence of dynamic routes when performing this check. Caller
351
+ # of this API should make sure that there are no dynamic routes overlapping with
352
+ # the requested_address/prefix_length IP address range otherwise the created
353
+ # subnet could cause misrouting.
354
+ # Corresponds to the JSON property `skipRequestedAddressValidation`
355
+ # @return [Boolean]
356
+ attr_accessor :skip_requested_address_validation
357
+ alias_method :skip_requested_address_validation?, :skip_requested_address_validation
358
+
347
359
  # Required. A name for the new subnet. For information about the naming
348
360
  # requirements, see [subnetwork](/compute/docs/reference/rest/v1/subnetworks) in
349
361
  # the Compute API documentation.
@@ -389,6 +401,7 @@ module Google
389
401
  @requested_ranges = args[:requested_ranges] if args.key?(:requested_ranges)
390
402
  @role = args[:role] if args.key?(:role)
391
403
  @secondary_ip_range_specs = args[:secondary_ip_range_specs] if args.key?(:secondary_ip_range_specs)
404
+ @skip_requested_address_validation = args[:skip_requested_address_validation] if args.key?(:skip_requested_address_validation)
392
405
  @subnetwork = args[:subnetwork] if args.key?(:subnetwork)
393
406
  @subnetwork_users = args[:subnetwork_users] if args.key?(:subnetwork_users)
394
407
  @use_custom_compute_idempotency_window = args[:use_custom_compute_idempotency_window] if args.key?(:use_custom_compute_idempotency_window)
@@ -1945,6 +1958,30 @@ module Google
1945
1958
  end
1946
1959
  end
1947
1960
 
1961
+ # Experimental features to be included during client library generation. These
1962
+ # fields will be deprecated once the feature graduates and is enabled by default.
1963
+ class ExperimentalFeatures
1964
+ include Google::Apis::Core::Hashable
1965
+
1966
+ # Enables generation of asynchronous REST clients if `rest` transport is enabled.
1967
+ # By default, asynchronous REST clients will not be generated. This feature
1968
+ # will be enabled by default 1 month after launching the feature in preview
1969
+ # packages.
1970
+ # Corresponds to the JSON property `restAsyncIoEnabled`
1971
+ # @return [Boolean]
1972
+ attr_accessor :rest_async_io_enabled
1973
+ alias_method :rest_async_io_enabled?, :rest_async_io_enabled
1974
+
1975
+ def initialize(**args)
1976
+ update!(**args)
1977
+ end
1978
+
1979
+ # Update properties of this object
1980
+ def update!(**args)
1981
+ @rest_async_io_enabled = args[:rest_async_io_enabled] if args.key?(:rest_async_io_enabled)
1982
+ end
1983
+ end
1984
+
1948
1985
  # A single field of a message type.
1949
1986
  class Field
1950
1987
  include Google::Apis::Core::Hashable
@@ -3143,6 +3180,11 @@ module Google
3143
3180
  # @return [String]
3144
3181
  attr_accessor :sample_period
3145
3182
 
3183
+ # The scope of the timeseries data of the metric.
3184
+ # Corresponds to the JSON property `timeSeriesResourceHierarchyLevel`
3185
+ # @return [Array<String>]
3186
+ attr_accessor :time_series_resource_hierarchy_level
3187
+
3146
3188
  def initialize(**args)
3147
3189
  update!(**args)
3148
3190
  end
@@ -3152,6 +3194,7 @@ module Google
3152
3194
  @ingest_delay = args[:ingest_delay] if args.key?(:ingest_delay)
3153
3195
  @launch_stage = args[:launch_stage] if args.key?(:launch_stage)
3154
3196
  @sample_period = args[:sample_period] if args.key?(:sample_period)
3197
+ @time_series_resource_hierarchy_level = args[:time_series_resource_hierarchy_level] if args.key?(:time_series_resource_hierarchy_level)
3155
3198
  end
3156
3199
  end
3157
3200
 
@@ -3670,10 +3713,10 @@ module Google
3670
3713
  # granularity. The role must be one of the following: - 'roles/container.
3671
3714
  # hostServiceAgentUser' applied on the shared VPC host project - 'roles/compute.
3672
3715
  # securityAdmin' applied on the shared VPC host project - 'roles/compute.
3673
- # networkAdmin' applied on the shared VPC host project - 'roles/compute.xpnAdmin'
3716
+ # networkAdmin' applied on the shared VPC host project - 'roles/tpu.xpnAgent'
3674
3717
  # applied on the shared VPC host project - 'roles/dns.admin' applied on the
3675
3718
  # shared VPC host project - 'roles/logging.admin' applied on the shared VPC host
3676
- # project
3719
+ # project - 'roles/monitoring.viewer' applied on the shared VPC host project
3677
3720
  # Corresponds to the JSON property `role`
3678
3721
  # @return [String]
3679
3722
  attr_accessor :role
@@ -3790,6 +3833,12 @@ module Google
3790
3833
  # @return [Google::Apis::ServicenetworkingV1::CommonLanguageSettings]
3791
3834
  attr_accessor :common
3792
3835
 
3836
+ # Experimental features to be included during client library generation. These
3837
+ # fields will be deprecated once the feature graduates and is enabled by default.
3838
+ # Corresponds to the JSON property `experimentalFeatures`
3839
+ # @return [Google::Apis::ServicenetworkingV1::ExperimentalFeatures]
3840
+ attr_accessor :experimental_features
3841
+
3793
3842
  def initialize(**args)
3794
3843
  update!(**args)
3795
3844
  end
@@ -3797,6 +3846,7 @@ module Google
3797
3846
  # Update properties of this object
3798
3847
  def update!(**args)
3799
3848
  @common = args[:common] if args.key?(:common)
3849
+ @experimental_features = args[:experimental_features] if args.key?(:experimental_features)
3800
3850
  end
3801
3851
  end
3802
3852
 
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ServicenetworkingV1
18
18
  # Version of the google-apis-servicenetworking_v1 gem
19
- GEM_VERSION = "0.62.0"
19
+ GEM_VERSION = "0.64.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.15.0"
22
+ GENERATOR_VERSION = "0.15.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240716"
25
+ REVISION = "20240825"
26
26
  end
27
27
  end
28
28
  end
@@ -310,6 +310,12 @@ module Google
310
310
  include Google::Apis::Core::JsonObjectSupport
311
311
  end
312
312
 
313
+ class ExperimentalFeatures
314
+ class Representation < Google::Apis::Core::JsonRepresentation; end
315
+
316
+ include Google::Apis::Core::JsonObjectSupport
317
+ end
318
+
313
319
  class Field
314
320
  class Representation < Google::Apis::Core::JsonRepresentation; end
315
321
 
@@ -844,6 +850,7 @@ module Google
844
850
  property :role, as: 'role'
845
851
  collection :secondary_ip_range_specs, as: 'secondaryIpRangeSpecs', class: Google::Apis::ServicenetworkingV1::SecondaryIpRangeSpec, decorator: Google::Apis::ServicenetworkingV1::SecondaryIpRangeSpec::Representation
846
852
 
853
+ property :skip_requested_address_validation, as: 'skipRequestedAddressValidation'
847
854
  property :subnetwork, as: 'subnetwork'
848
855
  collection :subnetwork_users, as: 'subnetworkUsers'
849
856
  property :use_custom_compute_idempotency_window, as: 'useCustomComputeIdempotencyWindow'
@@ -1245,6 +1252,13 @@ module Google
1245
1252
  end
1246
1253
  end
1247
1254
 
1255
+ class ExperimentalFeatures
1256
+ # @private
1257
+ class Representation < Google::Apis::Core::JsonRepresentation
1258
+ property :rest_async_io_enabled, as: 'restAsyncIoEnabled'
1259
+ end
1260
+ end
1261
+
1248
1262
  class Field
1249
1263
  # @private
1250
1264
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1512,6 +1526,7 @@ module Google
1512
1526
  property :ingest_delay, as: 'ingestDelay'
1513
1527
  property :launch_stage, as: 'launchStage'
1514
1528
  property :sample_period, as: 'samplePeriod'
1529
+ collection :time_series_resource_hierarchy_level, as: 'timeSeriesResourceHierarchyLevel'
1515
1530
  end
1516
1531
  end
1517
1532
 
@@ -1667,6 +1682,8 @@ module Google
1667
1682
  class Representation < Google::Apis::Core::JsonRepresentation
1668
1683
  property :common, as: 'common', class: Google::Apis::ServicenetworkingV1::CommonLanguageSettings, decorator: Google::Apis::ServicenetworkingV1::CommonLanguageSettings::Representation
1669
1684
 
1685
+ property :experimental_features, as: 'experimentalFeatures', class: Google::Apis::ServicenetworkingV1::ExperimentalFeatures, decorator: Google::Apis::ServicenetworkingV1::ExperimentalFeatures::Representation
1686
+
1670
1687
  end
1671
1688
  end
1672
1689
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-servicenetworking_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.62.0
4
+ version: 0.64.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-07-25 00:00:00.000000000 Z
11
+ date: 2024-09-01 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-servicenetworking_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-servicenetworking_v1/v0.62.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-servicenetworking_v1/v0.64.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-servicenetworking_v1
63
63
  post_install_message:
64
64
  rdoc_options: []