google-apis-servicenetworking_v1 0.65.0 → 0.66.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: 7c8f7eb3eebe30481df1f20a0a210a3f994768e0a901dce59d252693f6da6f05
4
- data.tar.gz: 04b3f22689e552510e0e78077e9beb4228ef603a10b459de1afc01760ac0e770
3
+ metadata.gz: cf8aa6adaa3b20bb34d46e63e4c512f866f85841111afba6fe023af7bb80874b
4
+ data.tar.gz: 7c67c203e578d2b77020a3a7d1dd298f1bc558a013efe2a4eec52a44c7c83563
5
5
  SHA512:
6
- metadata.gz: 012c185cf3b782d195a2cc4b39a478d04834d98b02b88dcb91e258274924f06085d55d692af2f4fdeb5d9a9c0c65dabc36e9ab04034427a1d6c9aaa88be5de07
7
- data.tar.gz: 67e6ad5edafdeda0c00de655730d902e9026dffafd644efcd947356474b4f4abcd236616cf2c6a59e11e10db4f3e06c315fc5c0d2b5d60d2139b9a615de8fe2b
6
+ metadata.gz: 7d45ba89d049cff526fc4747ca53a7d2ae556c93dbe38a621d0f3b461e89f10f3fecf76478d54691d5552d4019b613d98023a5a9ef1d59c202626bdd6ca14e80
7
+ data.tar.gz: 76bfbd64cf125a5f34055c9ac3c4fe2f040ebd298ea18296e7d3202db129cae61879b2152e4b8086eae82cbc97bc59be03987e42b635e160fcd8a2325a4cae34
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-servicenetworking_v1
2
2
 
3
+ ### v0.66.0 (2024-09-22)
4
+
5
+ * Regenerated from discovery document revision 20240916
6
+
3
7
  ### v0.65.0 (2024-09-08)
4
8
 
5
9
  * Regenerated from discovery document revision 20240901
@@ -1005,6 +1005,12 @@ module Google
1005
1005
  # @return [String]
1006
1006
  attr_accessor :reference_docs_uri
1007
1007
 
1008
+ # This message is used to configure the generation of a subset of the RPCs in a
1009
+ # service for client libraries.
1010
+ # Corresponds to the JSON property `selectiveGapicGeneration`
1011
+ # @return [Google::Apis::ServicenetworkingV1::SelectiveGapicGeneration]
1012
+ attr_accessor :selective_gapic_generation
1013
+
1008
1014
  def initialize(**args)
1009
1015
  update!(**args)
1010
1016
  end
@@ -1013,6 +1019,7 @@ module Google
1013
1019
  def update!(**args)
1014
1020
  @destinations = args[:destinations] if args.key?(:destinations)
1015
1021
  @reference_docs_uri = args[:reference_docs_uri] if args.key?(:reference_docs_uri)
1022
+ @selective_gapic_generation = args[:selective_gapic_generation] if args.key?(:selective_gapic_generation)
1016
1023
  end
1017
1024
  end
1018
1025
 
@@ -4363,6 +4370,27 @@ module Google
4363
4370
  end
4364
4371
  end
4365
4372
 
4373
+ # This message is used to configure the generation of a subset of the RPCs in a
4374
+ # service for client libraries.
4375
+ class SelectiveGapicGeneration
4376
+ include Google::Apis::Core::Hashable
4377
+
4378
+ # An allowlist of the fully qualified names of RPCs that should be included on
4379
+ # public client surfaces.
4380
+ # Corresponds to the JSON property `methods`
4381
+ # @return [Array<String>]
4382
+ attr_accessor :methods_prop
4383
+
4384
+ def initialize(**args)
4385
+ update!(**args)
4386
+ end
4387
+
4388
+ # Update properties of this object
4389
+ def update!(**args)
4390
+ @methods_prop = args[:methods_prop] if args.key?(:methods_prop)
4391
+ end
4392
+ end
4393
+
4366
4394
  # `Service` is the root object of Google API service configuration (service
4367
4395
  # config). It describes the basic information about a logical service, such as
4368
4396
  # 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 ServicenetworkingV1
18
18
  # Version of the google-apis-servicenetworking_v1 gem
19
- GEM_VERSION = "0.65.0"
19
+ GEM_VERSION = "0.66.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 = "20240901"
25
+ REVISION = "20240916"
26
26
  end
27
27
  end
28
28
  end
@@ -664,6 +664,12 @@ module Google
664
664
  include Google::Apis::Core::JsonObjectSupport
665
665
  end
666
666
 
667
+ class SelectiveGapicGeneration
668
+ class Representation < Google::Apis::Core::JsonRepresentation; end
669
+
670
+ include Google::Apis::Core::JsonObjectSupport
671
+ end
672
+
667
673
  class Service
668
674
  class Representation < Google::Apis::Core::JsonRepresentation; end
669
675
 
@@ -1003,6 +1009,8 @@ module Google
1003
1009
  class Representation < Google::Apis::Core::JsonRepresentation
1004
1010
  collection :destinations, as: 'destinations'
1005
1011
  property :reference_docs_uri, as: 'referenceDocsUri'
1012
+ property :selective_gapic_generation, as: 'selectiveGapicGeneration', class: Google::Apis::ServicenetworkingV1::SelectiveGapicGeneration, decorator: Google::Apis::ServicenetworkingV1::SelectiveGapicGeneration::Representation
1013
+
1006
1014
  end
1007
1015
  end
1008
1016
 
@@ -1818,6 +1826,13 @@ module Google
1818
1826
  end
1819
1827
  end
1820
1828
 
1829
+ class SelectiveGapicGeneration
1830
+ # @private
1831
+ class Representation < Google::Apis::Core::JsonRepresentation
1832
+ collection :methods_prop, as: 'methods'
1833
+ end
1834
+ end
1835
+
1821
1836
  class Service
1822
1837
  # @private
1823
1838
  class Representation < Google::Apis::Core::JsonRepresentation
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.65.0
4
+ version: 0.66.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-15 00:00:00.000000000 Z
11
+ date: 2024-09-22 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.65.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-servicenetworking_v1/v0.66.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: []