google-apis-servicenetworking_v1beta 0.55.0 → 0.56.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: 9624b3f2e732ce7fcf79d78140ac14a85627891a0f64ac54e1c998e44d7a4c50
4
- data.tar.gz: 416186296d923a0f4b91940af6ce3c374e41ab95d3a5d8805d621e8f7d770fdc
3
+ metadata.gz: 59f2ff32a97f1ed6acc01a76623a740a6f714467a1dc6419d58a953ab807adb6
4
+ data.tar.gz: f00541c6fa68900780229be02467f05815200707768e3ccdbe1810ae054e61ce
5
5
  SHA512:
6
- metadata.gz: dfe4f781b8b255ad5dede46d26ba6292c17e0ac3576c7372dc4710b09b27a0a68f13405bd300caac2b39024346fbda974846c3437cd3f3281c225c1c14e87f13
7
- data.tar.gz: 97deee67a2363798c6b7105d0f24cfede9e4454a40aa42bac72d6ea131a12ae70c660d981726fde674d1cc351092362262057732a81e8514bb8e8d1678dbf063
6
+ metadata.gz: 5fb04002c9efa00aed45f3d5d927ea2fb8090f223c64285ab916d3013941ea9288e0fcb6d55b98282f8dac98e87cd88357a688357d7c001e46d9256b54d045fb
7
+ data.tar.gz: 28d5ebdd5007fade0d4a602126b984916300e504c62bea03e0a2ccb801f6f6c552b29a3c8f948cd1c67937ec6e69f360c37fc1d463554cced1f7bb2bf66c5f54
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-servicenetworking_v1beta
2
2
 
3
+ ### v0.56.0 (2024-12-02)
4
+
5
+ * Regenerated from discovery document revision 20241113
6
+ * Regenerated using generator version 0.15.1
7
+
3
8
  ### v0.55.0 (2024-07-25)
4
9
 
5
10
  * Regenerated from discovery document revision 20240716
@@ -774,6 +774,12 @@ module Google
774
774
  # @return [String]
775
775
  attr_accessor :reference_docs_uri
776
776
 
777
+ # This message is used to configure the generation of a subset of the RPCs in a
778
+ # service for client libraries.
779
+ # Corresponds to the JSON property `selectiveGapicGeneration`
780
+ # @return [Google::Apis::ServicenetworkingV1beta::SelectiveGapicGeneration]
781
+ attr_accessor :selective_gapic_generation
782
+
777
783
  def initialize(**args)
778
784
  update!(**args)
779
785
  end
@@ -782,6 +788,7 @@ module Google
782
788
  def update!(**args)
783
789
  @destinations = args[:destinations] if args.key?(:destinations)
784
790
  @reference_docs_uri = args[:reference_docs_uri] if args.key?(:reference_docs_uri)
791
+ @selective_gapic_generation = args[:selective_gapic_generation] if args.key?(:selective_gapic_generation)
785
792
  end
786
793
  end
787
794
 
@@ -1601,6 +1608,39 @@ module Google
1601
1608
  end
1602
1609
  end
1603
1610
 
1611
+ # Experimental features to be included during client library generation. These
1612
+ # fields will be deprecated once the feature graduates and is enabled by default.
1613
+ class ExperimentalFeatures
1614
+ include Google::Apis::Core::Hashable
1615
+
1616
+ # Enables generation of protobuf code using new types that are more Pythonic
1617
+ # which are included in `protobuf>=5.29.x`. This feature will be enabled by
1618
+ # default 1 month after launching the feature in preview packages.
1619
+ # Corresponds to the JSON property `protobufPythonicTypesEnabled`
1620
+ # @return [Boolean]
1621
+ attr_accessor :protobuf_pythonic_types_enabled
1622
+ alias_method :protobuf_pythonic_types_enabled?, :protobuf_pythonic_types_enabled
1623
+
1624
+ # Enables generation of asynchronous REST clients if `rest` transport is enabled.
1625
+ # By default, asynchronous REST clients will not be generated. This feature
1626
+ # will be enabled by default 1 month after launching the feature in preview
1627
+ # packages.
1628
+ # Corresponds to the JSON property `restAsyncIoEnabled`
1629
+ # @return [Boolean]
1630
+ attr_accessor :rest_async_io_enabled
1631
+ alias_method :rest_async_io_enabled?, :rest_async_io_enabled
1632
+
1633
+ def initialize(**args)
1634
+ update!(**args)
1635
+ end
1636
+
1637
+ # Update properties of this object
1638
+ def update!(**args)
1639
+ @protobuf_pythonic_types_enabled = args[:protobuf_pythonic_types_enabled] if args.key?(:protobuf_pythonic_types_enabled)
1640
+ @rest_async_io_enabled = args[:rest_async_io_enabled] if args.key?(:rest_async_io_enabled)
1641
+ end
1642
+ end
1643
+
1604
1644
  # A single field of a message type.
1605
1645
  class Field
1606
1646
  include Google::Apis::Core::Hashable
@@ -1730,6 +1770,13 @@ module Google
1730
1770
  # @return [Google::Apis::ServicenetworkingV1beta::CommonLanguageSettings]
1731
1771
  attr_accessor :common
1732
1772
 
1773
+ # Map of service names to renamed services. Keys are the package relative
1774
+ # service names and values are the name to be used for the service client and
1775
+ # call options. publishing: go_settings: renamed_services: Publisher: TopicAdmin
1776
+ # Corresponds to the JSON property `renamedServices`
1777
+ # @return [Hash<String,String>]
1778
+ attr_accessor :renamed_services
1779
+
1733
1780
  def initialize(**args)
1734
1781
  update!(**args)
1735
1782
  end
@@ -1737,6 +1784,7 @@ module Google
1737
1784
  # Update properties of this object
1738
1785
  def update!(**args)
1739
1786
  @common = args[:common] if args.key?(:common)
1787
+ @renamed_services = args[:renamed_services] if args.key?(:renamed_services)
1740
1788
  end
1741
1789
  end
1742
1790
 
@@ -2689,6 +2737,11 @@ module Google
2689
2737
  # @return [String]
2690
2738
  attr_accessor :sample_period
2691
2739
 
2740
+ # The scope of the timeseries data of the metric.
2741
+ # Corresponds to the JSON property `timeSeriesResourceHierarchyLevel`
2742
+ # @return [Array<String>]
2743
+ attr_accessor :time_series_resource_hierarchy_level
2744
+
2692
2745
  def initialize(**args)
2693
2746
  update!(**args)
2694
2747
  end
@@ -2698,6 +2751,7 @@ module Google
2698
2751
  @ingest_delay = args[:ingest_delay] if args.key?(:ingest_delay)
2699
2752
  @launch_stage = args[:launch_stage] if args.key?(:launch_stage)
2700
2753
  @sample_period = args[:sample_period] if args.key?(:sample_period)
2754
+ @time_series_resource_hierarchy_level = args[:time_series_resource_hierarchy_level] if args.key?(:time_series_resource_hierarchy_level)
2701
2755
  end
2702
2756
  end
2703
2757
 
@@ -2750,7 +2804,7 @@ module Google
2750
2804
  # AccessControl The mixin construct implies that all methods in `AccessControl`
2751
2805
  # are also declared with same name and request/response types in `Storage`. A
2752
2806
  # documentation generator or annotation processor will see the effective `
2753
- # Storage.GetAcl` method after inherting documentation and annotations as
2807
+ # Storage.GetAcl` method after inheriting documentation and annotations as
2754
2808
  # follows: service Storage ` // Get the underlying ACL object. rpc GetAcl(
2755
2809
  # GetAclRequest) returns (Acl) ` option (google.api.http).get = "/v2/`resource=**
2756
2810
  # `:getAcl"; ` ... ` Note how the version in the path pattern changed from `v1`
@@ -3216,10 +3270,11 @@ module Google
3216
3270
  # granularity. The role must be one of the following: - 'roles/container.
3217
3271
  # hostServiceAgentUser' applied on the shared VPC host project - 'roles/compute.
3218
3272
  # securityAdmin' applied on the shared VPC host project - 'roles/compute.
3219
- # networkAdmin' applied on the shared VPC host project - 'roles/compute.xpnAdmin'
3273
+ # networkAdmin' applied on the shared VPC host project - 'roles/tpu.xpnAgent'
3220
3274
  # applied on the shared VPC host project - 'roles/dns.admin' applied on the
3221
3275
  # shared VPC host project - 'roles/logging.admin' applied on the shared VPC host
3222
- # project
3276
+ # project - 'roles/monitoring.viewer' applied on the shared VPC host project - '
3277
+ # roles/servicemanagement.quotaViewer' applied on the shared VPC host project
3223
3278
  # Corresponds to the JSON property `role`
3224
3279
  # @return [String]
3225
3280
  attr_accessor :role
@@ -3336,6 +3391,12 @@ module Google
3336
3391
  # @return [Google::Apis::ServicenetworkingV1beta::CommonLanguageSettings]
3337
3392
  attr_accessor :common
3338
3393
 
3394
+ # Experimental features to be included during client library generation. These
3395
+ # fields will be deprecated once the feature graduates and is enabled by default.
3396
+ # Corresponds to the JSON property `experimentalFeatures`
3397
+ # @return [Google::Apis::ServicenetworkingV1beta::ExperimentalFeatures]
3398
+ attr_accessor :experimental_features
3399
+
3339
3400
  def initialize(**args)
3340
3401
  update!(**args)
3341
3402
  end
@@ -3343,6 +3404,7 @@ module Google
3343
3404
  # Update properties of this object
3344
3405
  def update!(**args)
3345
3406
  @common = args[:common] if args.key?(:common)
3407
+ @experimental_features = args[:experimental_features] if args.key?(:experimental_features)
3346
3408
  end
3347
3409
  end
3348
3410
 
@@ -3462,11 +3524,11 @@ module Google
3462
3524
  # @return [String]
3463
3525
  attr_accessor :name
3464
3526
 
3465
- # Specify the unit of the quota limit. It uses the same syntax as Metric.unit.
3466
- # The supported unit kinds are determined by the quota backend system. Here are
3467
- # some examples: * "1/min/`project`" for quota per minute per project. Note: the
3468
- # order of unit components is insignificant. The "1" at the beginning is
3469
- # required to follow the metric unit syntax.
3527
+ # Specify the unit of the quota limit. It uses the same syntax as
3528
+ # MetricDescriptor.unit. The supported unit kinds are determined by the quota
3529
+ # backend system. Here are some examples: * "1/min/`project`" for quota per
3530
+ # minute per project. Note: the order of unit components is insignificant. The "
3531
+ # 1" at the beginning is required to follow the metric unit syntax.
3470
3532
  # Corresponds to the JSON property `unit`
3471
3533
  # @return [String]
3472
3534
  attr_accessor :unit
@@ -3695,6 +3757,27 @@ module Google
3695
3757
  end
3696
3758
  end
3697
3759
 
3760
+ # This message is used to configure the generation of a subset of the RPCs in a
3761
+ # service for client libraries.
3762
+ class SelectiveGapicGeneration
3763
+ include Google::Apis::Core::Hashable
3764
+
3765
+ # An allowlist of the fully qualified names of RPCs that should be included on
3766
+ # public client surfaces.
3767
+ # Corresponds to the JSON property `methods`
3768
+ # @return [Array<String>]
3769
+ attr_accessor :methods_prop
3770
+
3771
+ def initialize(**args)
3772
+ update!(**args)
3773
+ end
3774
+
3775
+ # Update properties of this object
3776
+ def update!(**args)
3777
+ @methods_prop = args[:methods_prop] if args.key?(:methods_prop)
3778
+ end
3779
+ end
3780
+
3698
3781
  # `Service` is the root object of Google API service configuration (service
3699
3782
  # config). It describes the basic information about a logical service, such as
3700
3783
  # the service name and the user-facing title, and delegates other aspects to sub-
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ServicenetworkingV1beta
18
18
  # Version of the google-apis-servicenetworking_v1beta gem
19
- GEM_VERSION = "0.55.0"
19
+ GEM_VERSION = "0.56.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 = "20241113"
26
26
  end
27
27
  end
28
28
  end
@@ -250,6 +250,12 @@ module Google
250
250
  include Google::Apis::Core::JsonObjectSupport
251
251
  end
252
252
 
253
+ class ExperimentalFeatures
254
+ class Representation < Google::Apis::Core::JsonRepresentation; end
255
+
256
+ include Google::Apis::Core::JsonObjectSupport
257
+ end
258
+
253
259
  class Field
254
260
  class Representation < Google::Apis::Core::JsonRepresentation; end
255
261
 
@@ -544,6 +550,12 @@ module Google
544
550
  include Google::Apis::Core::JsonObjectSupport
545
551
  end
546
552
 
553
+ class SelectiveGapicGeneration
554
+ class Representation < Google::Apis::Core::JsonRepresentation; end
555
+
556
+ include Google::Apis::Core::JsonObjectSupport
557
+ end
558
+
547
559
  class Service
548
560
  class Representation < Google::Apis::Core::JsonRepresentation; end
549
561
 
@@ -812,6 +824,8 @@ module Google
812
824
  class Representation < Google::Apis::Core::JsonRepresentation
813
825
  collection :destinations, as: 'destinations'
814
826
  property :reference_docs_uri, as: 'referenceDocsUri'
827
+ property :selective_gapic_generation, as: 'selectiveGapicGeneration', class: Google::Apis::ServicenetworkingV1beta::SelectiveGapicGeneration, decorator: Google::Apis::ServicenetworkingV1beta::SelectiveGapicGeneration::Representation
828
+
815
829
  end
816
830
  end
817
831
 
@@ -1017,6 +1031,14 @@ module Google
1017
1031
  end
1018
1032
  end
1019
1033
 
1034
+ class ExperimentalFeatures
1035
+ # @private
1036
+ class Representation < Google::Apis::Core::JsonRepresentation
1037
+ property :protobuf_pythonic_types_enabled, as: 'protobufPythonicTypesEnabled'
1038
+ property :rest_async_io_enabled, as: 'restAsyncIoEnabled'
1039
+ end
1040
+ end
1041
+
1020
1042
  class Field
1021
1043
  # @private
1022
1044
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1048,6 +1070,7 @@ module Google
1048
1070
  class Representation < Google::Apis::Core::JsonRepresentation
1049
1071
  property :common, as: 'common', class: Google::Apis::ServicenetworkingV1beta::CommonLanguageSettings, decorator: Google::Apis::ServicenetworkingV1beta::CommonLanguageSettings::Representation
1050
1072
 
1073
+ hash :renamed_services, as: 'renamedServices'
1051
1074
  end
1052
1075
  end
1053
1076
 
@@ -1241,6 +1264,7 @@ module Google
1241
1264
  property :ingest_delay, as: 'ingestDelay'
1242
1265
  property :launch_stage, as: 'launchStage'
1243
1266
  property :sample_period, as: 'samplePeriod'
1267
+ collection :time_series_resource_hierarchy_level, as: 'timeSeriesResourceHierarchyLevel'
1244
1268
  end
1245
1269
  end
1246
1270
 
@@ -1396,6 +1420,8 @@ module Google
1396
1420
  class Representation < Google::Apis::Core::JsonRepresentation
1397
1421
  property :common, as: 'common', class: Google::Apis::ServicenetworkingV1beta::CommonLanguageSettings, decorator: Google::Apis::ServicenetworkingV1beta::CommonLanguageSettings::Representation
1398
1422
 
1423
+ property :experimental_features, as: 'experimentalFeatures', class: Google::Apis::ServicenetworkingV1beta::ExperimentalFeatures, decorator: Google::Apis::ServicenetworkingV1beta::ExperimentalFeatures::Representation
1424
+
1399
1425
  end
1400
1426
  end
1401
1427
 
@@ -1491,6 +1517,13 @@ module Google
1491
1517
  end
1492
1518
  end
1493
1519
 
1520
+ class SelectiveGapicGeneration
1521
+ # @private
1522
+ class Representation < Google::Apis::Core::JsonRepresentation
1523
+ collection :methods_prop, as: 'methods'
1524
+ end
1525
+ end
1526
+
1494
1527
  class Service
1495
1528
  # @private
1496
1529
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-servicenetworking_v1beta
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.55.0
4
+ version: 0.56.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-12-04 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_v1beta/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-servicenetworking_v1beta/v0.55.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-servicenetworking_v1beta/v0.56.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-servicenetworking_v1beta
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.22
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Service Networking API V1beta