google-apis-servicenetworking_v1beta 0.55.0 → 0.57.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: 9624b3f2e732ce7fcf79d78140ac14a85627891a0f64ac54e1c998e44d7a4c50
4
- data.tar.gz: 416186296d923a0f4b91940af6ce3c374e41ab95d3a5d8805d621e8f7d770fdc
3
+ metadata.gz: 65a8664b9b13ce8c9e66c27da74ecf32643a607bc61e116bff29e6e5aed30449
4
+ data.tar.gz: 380fee60beeaa5051f19a64c87b091a7bd05d55195d79427965fa69f9e7107e2
5
5
  SHA512:
6
- metadata.gz: dfe4f781b8b255ad5dede46d26ba6292c17e0ac3576c7372dc4710b09b27a0a68f13405bd300caac2b39024346fbda974846c3437cd3f3281c225c1c14e87f13
7
- data.tar.gz: 97deee67a2363798c6b7105d0f24cfede9e4454a40aa42bac72d6ea131a12ae70c660d981726fde674d1cc351092362262057732a81e8514bb8e8d1678dbf063
6
+ metadata.gz: 4ca7848de51bc8f802d35443a93e9fdaae918bc4adc6d36f22711f95775f1ddcea0da8aeee9a236b4d7aec50058ab237ca01586470475c1e893de28a5ba96795
7
+ data.tar.gz: 49d3a4722e1ce49d2a38b928b5c8844d35b5e35ddfbbd2f6527e24e0a8ece1b8f8fa3e3d5225f4985a733d5b062a72b29dd21eef54f27bc4c9041786fd6f62e6
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-servicenetworking_v1beta
2
2
 
3
+ ### v0.57.0 (2024-12-15)
4
+
5
+ * Regenerated from discovery document revision 20241212
6
+
7
+ ### v0.56.0 (2024-12-02)
8
+
9
+ * Regenerated from discovery document revision 20241113
10
+ * Regenerated using generator version 0.15.1
11
+
3
12
  ### v0.55.0 (2024-07-25)
4
13
 
5
14
  * 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
 
@@ -1293,6 +1300,12 @@ module Google
1293
1300
  class Documentation
1294
1301
  include Google::Apis::Core::Hashable
1295
1302
 
1303
+ # Optional information about the IAM configuration. This is typically used to
1304
+ # link to documentation about a product's IAM roles and permissions.
1305
+ # Corresponds to the JSON property `additionalIamInfo`
1306
+ # @return [String]
1307
+ attr_accessor :additional_iam_info
1308
+
1296
1309
  # The URL to the root of documentation.
1297
1310
  # Corresponds to the JSON property `documentationRootUrl`
1298
1311
  # @return [String]
@@ -1345,6 +1358,7 @@ module Google
1345
1358
 
1346
1359
  # Update properties of this object
1347
1360
  def update!(**args)
1361
+ @additional_iam_info = args[:additional_iam_info] if args.key?(:additional_iam_info)
1348
1362
  @documentation_root_url = args[:documentation_root_url] if args.key?(:documentation_root_url)
1349
1363
  @overview = args[:overview] if args.key?(:overview)
1350
1364
  @pages = args[:pages] if args.key?(:pages)
@@ -1601,6 +1615,39 @@ module Google
1601
1615
  end
1602
1616
  end
1603
1617
 
1618
+ # Experimental features to be included during client library generation. These
1619
+ # fields will be deprecated once the feature graduates and is enabled by default.
1620
+ class ExperimentalFeatures
1621
+ include Google::Apis::Core::Hashable
1622
+
1623
+ # Enables generation of protobuf code using new types that are more Pythonic
1624
+ # which are included in `protobuf>=5.29.x`. This feature will be enabled by
1625
+ # default 1 month after launching the feature in preview packages.
1626
+ # Corresponds to the JSON property `protobufPythonicTypesEnabled`
1627
+ # @return [Boolean]
1628
+ attr_accessor :protobuf_pythonic_types_enabled
1629
+ alias_method :protobuf_pythonic_types_enabled?, :protobuf_pythonic_types_enabled
1630
+
1631
+ # Enables generation of asynchronous REST clients if `rest` transport is enabled.
1632
+ # By default, asynchronous REST clients will not be generated. This feature
1633
+ # will be enabled by default 1 month after launching the feature in preview
1634
+ # packages.
1635
+ # Corresponds to the JSON property `restAsyncIoEnabled`
1636
+ # @return [Boolean]
1637
+ attr_accessor :rest_async_io_enabled
1638
+ alias_method :rest_async_io_enabled?, :rest_async_io_enabled
1639
+
1640
+ def initialize(**args)
1641
+ update!(**args)
1642
+ end
1643
+
1644
+ # Update properties of this object
1645
+ def update!(**args)
1646
+ @protobuf_pythonic_types_enabled = args[:protobuf_pythonic_types_enabled] if args.key?(:protobuf_pythonic_types_enabled)
1647
+ @rest_async_io_enabled = args[:rest_async_io_enabled] if args.key?(:rest_async_io_enabled)
1648
+ end
1649
+ end
1650
+
1604
1651
  # A single field of a message type.
1605
1652
  class Field
1606
1653
  include Google::Apis::Core::Hashable
@@ -1730,6 +1777,13 @@ module Google
1730
1777
  # @return [Google::Apis::ServicenetworkingV1beta::CommonLanguageSettings]
1731
1778
  attr_accessor :common
1732
1779
 
1780
+ # Map of service names to renamed services. Keys are the package relative
1781
+ # service names and values are the name to be used for the service client and
1782
+ # call options. publishing: go_settings: renamed_services: Publisher: TopicAdmin
1783
+ # Corresponds to the JSON property `renamedServices`
1784
+ # @return [Hash<String,String>]
1785
+ attr_accessor :renamed_services
1786
+
1733
1787
  def initialize(**args)
1734
1788
  update!(**args)
1735
1789
  end
@@ -1737,6 +1791,7 @@ module Google
1737
1791
  # Update properties of this object
1738
1792
  def update!(**args)
1739
1793
  @common = args[:common] if args.key?(:common)
1794
+ @renamed_services = args[:renamed_services] if args.key?(:renamed_services)
1740
1795
  end
1741
1796
  end
1742
1797
 
@@ -2689,6 +2744,11 @@ module Google
2689
2744
  # @return [String]
2690
2745
  attr_accessor :sample_period
2691
2746
 
2747
+ # The scope of the timeseries data of the metric.
2748
+ # Corresponds to the JSON property `timeSeriesResourceHierarchyLevel`
2749
+ # @return [Array<String>]
2750
+ attr_accessor :time_series_resource_hierarchy_level
2751
+
2692
2752
  def initialize(**args)
2693
2753
  update!(**args)
2694
2754
  end
@@ -2698,6 +2758,7 @@ module Google
2698
2758
  @ingest_delay = args[:ingest_delay] if args.key?(:ingest_delay)
2699
2759
  @launch_stage = args[:launch_stage] if args.key?(:launch_stage)
2700
2760
  @sample_period = args[:sample_period] if args.key?(:sample_period)
2761
+ @time_series_resource_hierarchy_level = args[:time_series_resource_hierarchy_level] if args.key?(:time_series_resource_hierarchy_level)
2701
2762
  end
2702
2763
  end
2703
2764
 
@@ -2750,7 +2811,7 @@ module Google
2750
2811
  # AccessControl The mixin construct implies that all methods in `AccessControl`
2751
2812
  # are also declared with same name and request/response types in `Storage`. A
2752
2813
  # documentation generator or annotation processor will see the effective `
2753
- # Storage.GetAcl` method after inherting documentation and annotations as
2814
+ # Storage.GetAcl` method after inheriting documentation and annotations as
2754
2815
  # follows: service Storage ` // Get the underlying ACL object. rpc GetAcl(
2755
2816
  # GetAclRequest) returns (Acl) ` option (google.api.http).get = "/v2/`resource=**
2756
2817
  # `:getAcl"; ` ... ` Note how the version in the path pattern changed from `v1`
@@ -3216,10 +3277,11 @@ module Google
3216
3277
  # granularity. The role must be one of the following: - 'roles/container.
3217
3278
  # hostServiceAgentUser' applied on the shared VPC host project - 'roles/compute.
3218
3279
  # securityAdmin' applied on the shared VPC host project - 'roles/compute.
3219
- # networkAdmin' applied on the shared VPC host project - 'roles/compute.xpnAdmin'
3280
+ # networkAdmin' applied on the shared VPC host project - 'roles/tpu.xpnAgent'
3220
3281
  # applied on the shared VPC host project - 'roles/dns.admin' applied on the
3221
3282
  # shared VPC host project - 'roles/logging.admin' applied on the shared VPC host
3222
- # project
3283
+ # project - 'roles/monitoring.viewer' applied on the shared VPC host project - '
3284
+ # roles/servicemanagement.quotaViewer' applied on the shared VPC host project
3223
3285
  # Corresponds to the JSON property `role`
3224
3286
  # @return [String]
3225
3287
  attr_accessor :role
@@ -3336,6 +3398,12 @@ module Google
3336
3398
  # @return [Google::Apis::ServicenetworkingV1beta::CommonLanguageSettings]
3337
3399
  attr_accessor :common
3338
3400
 
3401
+ # Experimental features to be included during client library generation. These
3402
+ # fields will be deprecated once the feature graduates and is enabled by default.
3403
+ # Corresponds to the JSON property `experimentalFeatures`
3404
+ # @return [Google::Apis::ServicenetworkingV1beta::ExperimentalFeatures]
3405
+ attr_accessor :experimental_features
3406
+
3339
3407
  def initialize(**args)
3340
3408
  update!(**args)
3341
3409
  end
@@ -3343,6 +3411,7 @@ module Google
3343
3411
  # Update properties of this object
3344
3412
  def update!(**args)
3345
3413
  @common = args[:common] if args.key?(:common)
3414
+ @experimental_features = args[:experimental_features] if args.key?(:experimental_features)
3346
3415
  end
3347
3416
  end
3348
3417
 
@@ -3462,11 +3531,11 @@ module Google
3462
3531
  # @return [String]
3463
3532
  attr_accessor :name
3464
3533
 
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.
3534
+ # Specify the unit of the quota limit. It uses the same syntax as
3535
+ # MetricDescriptor.unit. The supported unit kinds are determined by the quota
3536
+ # backend system. Here are some examples: * "1/min/`project`" for quota per
3537
+ # minute per project. Note: the order of unit components is insignificant. The "
3538
+ # 1" at the beginning is required to follow the metric unit syntax.
3470
3539
  # Corresponds to the JSON property `unit`
3471
3540
  # @return [String]
3472
3541
  attr_accessor :unit
@@ -3695,6 +3764,27 @@ module Google
3695
3764
  end
3696
3765
  end
3697
3766
 
3767
+ # This message is used to configure the generation of a subset of the RPCs in a
3768
+ # service for client libraries.
3769
+ class SelectiveGapicGeneration
3770
+ include Google::Apis::Core::Hashable
3771
+
3772
+ # An allowlist of the fully qualified names of RPCs that should be included on
3773
+ # public client surfaces.
3774
+ # Corresponds to the JSON property `methods`
3775
+ # @return [Array<String>]
3776
+ attr_accessor :methods_prop
3777
+
3778
+ def initialize(**args)
3779
+ update!(**args)
3780
+ end
3781
+
3782
+ # Update properties of this object
3783
+ def update!(**args)
3784
+ @methods_prop = args[:methods_prop] if args.key?(:methods_prop)
3785
+ end
3786
+ end
3787
+
3698
3788
  # `Service` is the root object of Google API service configuration (service
3699
3789
  # config). It describes the basic information about a logical service, such as
3700
3790
  # 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.57.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 = "20241212"
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
 
@@ -946,6 +960,7 @@ module Google
946
960
  class Documentation
947
961
  # @private
948
962
  class Representation < Google::Apis::Core::JsonRepresentation
963
+ property :additional_iam_info, as: 'additionalIamInfo'
949
964
  property :documentation_root_url, as: 'documentationRootUrl'
950
965
  property :overview, as: 'overview'
951
966
  collection :pages, as: 'pages', class: Google::Apis::ServicenetworkingV1beta::Page, decorator: Google::Apis::ServicenetworkingV1beta::Page::Representation
@@ -1017,6 +1032,14 @@ module Google
1017
1032
  end
1018
1033
  end
1019
1034
 
1035
+ class ExperimentalFeatures
1036
+ # @private
1037
+ class Representation < Google::Apis::Core::JsonRepresentation
1038
+ property :protobuf_pythonic_types_enabled, as: 'protobufPythonicTypesEnabled'
1039
+ property :rest_async_io_enabled, as: 'restAsyncIoEnabled'
1040
+ end
1041
+ end
1042
+
1020
1043
  class Field
1021
1044
  # @private
1022
1045
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1048,6 +1071,7 @@ module Google
1048
1071
  class Representation < Google::Apis::Core::JsonRepresentation
1049
1072
  property :common, as: 'common', class: Google::Apis::ServicenetworkingV1beta::CommonLanguageSettings, decorator: Google::Apis::ServicenetworkingV1beta::CommonLanguageSettings::Representation
1050
1073
 
1074
+ hash :renamed_services, as: 'renamedServices'
1051
1075
  end
1052
1076
  end
1053
1077
 
@@ -1241,6 +1265,7 @@ module Google
1241
1265
  property :ingest_delay, as: 'ingestDelay'
1242
1266
  property :launch_stage, as: 'launchStage'
1243
1267
  property :sample_period, as: 'samplePeriod'
1268
+ collection :time_series_resource_hierarchy_level, as: 'timeSeriesResourceHierarchyLevel'
1244
1269
  end
1245
1270
  end
1246
1271
 
@@ -1396,6 +1421,8 @@ module Google
1396
1421
  class Representation < Google::Apis::Core::JsonRepresentation
1397
1422
  property :common, as: 'common', class: Google::Apis::ServicenetworkingV1beta::CommonLanguageSettings, decorator: Google::Apis::ServicenetworkingV1beta::CommonLanguageSettings::Representation
1398
1423
 
1424
+ property :experimental_features, as: 'experimentalFeatures', class: Google::Apis::ServicenetworkingV1beta::ExperimentalFeatures, decorator: Google::Apis::ServicenetworkingV1beta::ExperimentalFeatures::Representation
1425
+
1399
1426
  end
1400
1427
  end
1401
1428
 
@@ -1491,6 +1518,13 @@ module Google
1491
1518
  end
1492
1519
  end
1493
1520
 
1521
+ class SelectiveGapicGeneration
1522
+ # @private
1523
+ class Representation < Google::Apis::Core::JsonRepresentation
1524
+ collection :methods_prop, as: 'methods'
1525
+ end
1526
+ end
1527
+
1494
1528
  class Service
1495
1529
  # @private
1496
1530
  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.57.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-15 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.57.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.23
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Service Networking API V1beta