google-apis-serviceconsumermanagement_v1 0.51.0 → 0.52.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6488751586ce656da3c8e7b63a296785875371f570ab16ae57917a7ca1938c80
|
4
|
+
data.tar.gz: 0f5758479ee3f76ffc08e769b734faa6cd0eb52f7cd1f23d6f9ef5f8a880d721
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ffa9d36e2a533cf0db418127cdcac67b8b72fb5c75c167774bc847ff1a3f019075e466a9d2ccc1aae3c0754f7b148654dc9c0e837cdca4c77086d2ef02e7a393
|
7
|
+
data.tar.gz: bba3472cad60ea6f9947eeefd327cf8b6241399ac02d41d4f06ea75282cf2c5f1689e49734339d7fe813580dbfbc63c0340c08102e97888ecdbf75a3bf4a6343
|
data/CHANGELOG.md
CHANGED
@@ -700,6 +700,12 @@ module Google
|
|
700
700
|
# @return [String]
|
701
701
|
attr_accessor :reference_docs_uri
|
702
702
|
|
703
|
+
# This message is used to configure the generation of a subset of the RPCs in a
|
704
|
+
# service for client libraries.
|
705
|
+
# Corresponds to the JSON property `selectiveGapicGeneration`
|
706
|
+
# @return [Google::Apis::ServiceconsumermanagementV1::SelectiveGapicGeneration]
|
707
|
+
attr_accessor :selective_gapic_generation
|
708
|
+
|
703
709
|
def initialize(**args)
|
704
710
|
update!(**args)
|
705
711
|
end
|
@@ -708,6 +714,7 @@ module Google
|
|
708
714
|
def update!(**args)
|
709
715
|
@destinations = args[:destinations] if args.key?(:destinations)
|
710
716
|
@reference_docs_uri = args[:reference_docs_uri] if args.key?(:reference_docs_uri)
|
717
|
+
@selective_gapic_generation = args[:selective_gapic_generation] if args.key?(:selective_gapic_generation)
|
711
718
|
end
|
712
719
|
end
|
713
720
|
|
@@ -3159,6 +3166,27 @@ module Google
|
|
3159
3166
|
end
|
3160
3167
|
end
|
3161
3168
|
|
3169
|
+
# This message is used to configure the generation of a subset of the RPCs in a
|
3170
|
+
# service for client libraries.
|
3171
|
+
class SelectiveGapicGeneration
|
3172
|
+
include Google::Apis::Core::Hashable
|
3173
|
+
|
3174
|
+
# An allowlist of the fully qualified names of RPCs that should be included on
|
3175
|
+
# public client surfaces.
|
3176
|
+
# Corresponds to the JSON property `methods`
|
3177
|
+
# @return [Array<String>]
|
3178
|
+
attr_accessor :methods_prop
|
3179
|
+
|
3180
|
+
def initialize(**args)
|
3181
|
+
update!(**args)
|
3182
|
+
end
|
3183
|
+
|
3184
|
+
# Update properties of this object
|
3185
|
+
def update!(**args)
|
3186
|
+
@methods_prop = args[:methods_prop] if args.key?(:methods_prop)
|
3187
|
+
end
|
3188
|
+
end
|
3189
|
+
|
3162
3190
|
# `Service` is the root object of Google API service configuration (service
|
3163
3191
|
# config). It describes the basic information about a logical service, such as
|
3164
3192
|
# 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 ServiceconsumermanagementV1
|
18
18
|
# Version of the google-apis-serviceconsumermanagement_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.52.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 = "
|
25
|
+
REVISION = "20240919"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -448,6 +448,12 @@ module Google
|
|
448
448
|
include Google::Apis::Core::JsonObjectSupport
|
449
449
|
end
|
450
450
|
|
451
|
+
class SelectiveGapicGeneration
|
452
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
453
|
+
|
454
|
+
include Google::Apis::Core::JsonObjectSupport
|
455
|
+
end
|
456
|
+
|
451
457
|
class Service
|
452
458
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
453
459
|
|
@@ -829,6 +835,8 @@ module Google
|
|
829
835
|
class Representation < Google::Apis::Core::JsonRepresentation
|
830
836
|
collection :destinations, as: 'destinations'
|
831
837
|
property :reference_docs_uri, as: 'referenceDocsUri'
|
838
|
+
property :selective_gapic_generation, as: 'selectiveGapicGeneration', class: Google::Apis::ServiceconsumermanagementV1::SelectiveGapicGeneration, decorator: Google::Apis::ServiceconsumermanagementV1::SelectiveGapicGeneration::Representation
|
839
|
+
|
832
840
|
end
|
833
841
|
end
|
834
842
|
|
@@ -1390,6 +1398,13 @@ module Google
|
|
1390
1398
|
end
|
1391
1399
|
end
|
1392
1400
|
|
1401
|
+
class SelectiveGapicGeneration
|
1402
|
+
# @private
|
1403
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1404
|
+
collection :methods_prop, as: 'methods'
|
1405
|
+
end
|
1406
|
+
end
|
1407
|
+
|
1393
1408
|
class Service
|
1394
1409
|
# @private
|
1395
1410
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-serviceconsumermanagement_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.52.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-
|
11
|
+
date: 2024-09-29 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-serviceconsumermanagement_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-serviceconsumermanagement_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-serviceconsumermanagement_v1/v0.52.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-serviceconsumermanagement_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|