google-apis-serviceusage_v1 0.56.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9ec187df46e45d5f694b0d80035c6ae140e0335681c182c0da563bf172984180
|
4
|
+
data.tar.gz: 19bfaf0a9c5df278cd209c9e8bd8852e4db016b68dc3aa4d69461bf95a4eaf27
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bf0e84b44fa41c8960f24c6378304d99aa918980691eafa121cca7ad6f03cd1b7eec812f82721d23dd5e301093a3eb86cbc9e085268e662c645ab2dcd8d6cc12
|
7
|
+
data.tar.gz: 10534bcf589d692ec850de7c590614a158e38cd7e1945f8e5ecfb0b58d1e82c85c14d97cb048d9d2aaefe23363a86fb9d9da873fb4126ef5382edbac5aaf61a7
|
data/CHANGELOG.md
CHANGED
@@ -901,6 +901,12 @@ module Google
|
|
901
901
|
# @return [String]
|
902
902
|
attr_accessor :reference_docs_uri
|
903
903
|
|
904
|
+
# This message is used to configure the generation of a subset of the RPCs in a
|
905
|
+
# service for client libraries.
|
906
|
+
# Corresponds to the JSON property `selectiveGapicGeneration`
|
907
|
+
# @return [Google::Apis::ServiceusageV1::SelectiveGapicGeneration]
|
908
|
+
attr_accessor :selective_gapic_generation
|
909
|
+
|
904
910
|
def initialize(**args)
|
905
911
|
update!(**args)
|
906
912
|
end
|
@@ -909,6 +915,7 @@ module Google
|
|
909
915
|
def update!(**args)
|
910
916
|
@destinations = args[:destinations] if args.key?(:destinations)
|
911
917
|
@reference_docs_uri = args[:reference_docs_uri] if args.key?(:reference_docs_uri)
|
918
|
+
@selective_gapic_generation = args[:selective_gapic_generation] if args.key?(:selective_gapic_generation)
|
912
919
|
end
|
913
920
|
end
|
914
921
|
|
@@ -4460,6 +4467,27 @@ module Google
|
|
4460
4467
|
end
|
4461
4468
|
end
|
4462
4469
|
|
4470
|
+
# This message is used to configure the generation of a subset of the RPCs in a
|
4471
|
+
# service for client libraries.
|
4472
|
+
class SelectiveGapicGeneration
|
4473
|
+
include Google::Apis::Core::Hashable
|
4474
|
+
|
4475
|
+
# An allowlist of the fully qualified names of RPCs that should be included on
|
4476
|
+
# public client surfaces.
|
4477
|
+
# Corresponds to the JSON property `methods`
|
4478
|
+
# @return [Array<String>]
|
4479
|
+
attr_accessor :methods_prop
|
4480
|
+
|
4481
|
+
def initialize(**args)
|
4482
|
+
update!(**args)
|
4483
|
+
end
|
4484
|
+
|
4485
|
+
# Update properties of this object
|
4486
|
+
def update!(**args)
|
4487
|
+
@methods_prop = args[:methods_prop] if args.key?(:methods_prop)
|
4488
|
+
end
|
4489
|
+
end
|
4490
|
+
|
4463
4491
|
# Service identity for a service. This is the identity that service producer
|
4464
4492
|
# should use to access consumer resources.
|
4465
4493
|
class ServiceIdentity
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module ServiceusageV1
|
18
18
|
# Version of the google-apis-serviceusage_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.57.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
|
@@ -652,6 +652,12 @@ module Google
|
|
652
652
|
include Google::Apis::Core::JsonObjectSupport
|
653
653
|
end
|
654
654
|
|
655
|
+
class SelectiveGapicGeneration
|
656
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
657
|
+
|
658
|
+
include Google::Apis::Core::JsonObjectSupport
|
659
|
+
end
|
660
|
+
|
655
661
|
class ServiceIdentity
|
656
662
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
657
663
|
|
@@ -963,6 +969,8 @@ module Google
|
|
963
969
|
class Representation < Google::Apis::Core::JsonRepresentation
|
964
970
|
collection :destinations, as: 'destinations'
|
965
971
|
property :reference_docs_uri, as: 'referenceDocsUri'
|
972
|
+
property :selective_gapic_generation, as: 'selectiveGapicGeneration', class: Google::Apis::ServiceusageV1::SelectiveGapicGeneration, decorator: Google::Apis::ServiceusageV1::SelectiveGapicGeneration::Representation
|
973
|
+
|
966
974
|
end
|
967
975
|
end
|
968
976
|
|
@@ -1798,6 +1806,13 @@ module Google
|
|
1798
1806
|
end
|
1799
1807
|
end
|
1800
1808
|
|
1809
|
+
class SelectiveGapicGeneration
|
1810
|
+
# @private
|
1811
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1812
|
+
collection :methods_prop, as: 'methods'
|
1813
|
+
end
|
1814
|
+
end
|
1815
|
+
|
1801
1816
|
class ServiceIdentity
|
1802
1817
|
# @private
|
1803
1818
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-serviceusage_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 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-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-serviceusage_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-serviceusage_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-serviceusage_v1/v0.57.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-serviceusage_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|