google-apis-servicemanagement_v1 0.59.0 → 0.61.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: d30c4a674e81cc37f4d7394cd09e4838a196a04899574706cb7d85edf8f99b47
|
4
|
+
data.tar.gz: f5020c896e72e3801cd84dfe1b12c67850296267a5232548744428a0ebc91310
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0df22ad5f6a3b530dac6415df9402dffa499c723e820783b46f64bf601cb7211eec506517a3ac0f40c1d19b275f5e535c5d0835c43e9a2730871c4bdb3a8c3bf
|
7
|
+
data.tar.gz: de9e96d24c755efdd28bb4569fb3005692fe6ee043adef3a7e4bf7314e1879e98ef978ca53338283852fa8ef709162857fd368a14643126bf6d1365d5f4a7d9e
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-servicemanagement_v1
|
2
2
|
|
3
|
+
### v0.61.0 (2024-10-06)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20240927
|
6
|
+
|
7
|
+
### v0.60.0 (2024-09-29)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20240920
|
10
|
+
|
3
11
|
### v0.59.0 (2024-09-01)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20240823
|
@@ -792,6 +792,12 @@ module Google
|
|
792
792
|
# @return [String]
|
793
793
|
attr_accessor :reference_docs_uri
|
794
794
|
|
795
|
+
# This message is used to configure the generation of a subset of the RPCs in a
|
796
|
+
# service for client libraries.
|
797
|
+
# Corresponds to the JSON property `selectiveGapicGeneration`
|
798
|
+
# @return [Google::Apis::ServicemanagementV1::SelectiveGapicGeneration]
|
799
|
+
attr_accessor :selective_gapic_generation
|
800
|
+
|
795
801
|
def initialize(**args)
|
796
802
|
update!(**args)
|
797
803
|
end
|
@@ -800,6 +806,7 @@ module Google
|
|
800
806
|
def update!(**args)
|
801
807
|
@destinations = args[:destinations] if args.key?(:destinations)
|
802
808
|
@reference_docs_uri = args[:reference_docs_uri] if args.key?(:reference_docs_uri)
|
809
|
+
@selective_gapic_generation = args[:selective_gapic_generation] if args.key?(:selective_gapic_generation)
|
803
810
|
end
|
804
811
|
end
|
805
812
|
|
@@ -2905,7 +2912,7 @@ module Google
|
|
2905
2912
|
# AccessControl The mixin construct implies that all methods in `AccessControl`
|
2906
2913
|
# are also declared with same name and request/response types in `Storage`. A
|
2907
2914
|
# documentation generator or annotation processor will see the effective `
|
2908
|
-
# Storage.GetAcl` method after
|
2915
|
+
# Storage.GetAcl` method after inheriting documentation and annotations as
|
2909
2916
|
# follows: service Storage ` // Get the underlying ACL object. rpc GetAcl(
|
2910
2917
|
# GetAclRequest) returns (Acl) ` option (google.api.http).get = "/v2/`resource=**
|
2911
2918
|
# `:getAcl"; ` ... ` Note how the version in the path pattern changed from `v1`
|
@@ -3862,6 +3869,27 @@ module Google
|
|
3862
3869
|
end
|
3863
3870
|
end
|
3864
3871
|
|
3872
|
+
# This message is used to configure the generation of a subset of the RPCs in a
|
3873
|
+
# service for client libraries.
|
3874
|
+
class SelectiveGapicGeneration
|
3875
|
+
include Google::Apis::Core::Hashable
|
3876
|
+
|
3877
|
+
# An allowlist of the fully qualified names of RPCs that should be included on
|
3878
|
+
# public client surfaces.
|
3879
|
+
# Corresponds to the JSON property `methods`
|
3880
|
+
# @return [Array<String>]
|
3881
|
+
attr_accessor :methods_prop
|
3882
|
+
|
3883
|
+
def initialize(**args)
|
3884
|
+
update!(**args)
|
3885
|
+
end
|
3886
|
+
|
3887
|
+
# Update properties of this object
|
3888
|
+
def update!(**args)
|
3889
|
+
@methods_prop = args[:methods_prop] if args.key?(:methods_prop)
|
3890
|
+
end
|
3891
|
+
end
|
3892
|
+
|
3865
3893
|
# `Service` is the root object of Google API service configuration (service
|
3866
3894
|
# config). It describes the basic information about a logical service, such as
|
3867
3895
|
# 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 ServicemanagementV1
|
18
18
|
# Version of the google-apis-servicemanagement_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.61.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 = "20240927"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -538,6 +538,12 @@ module Google
|
|
538
538
|
include Google::Apis::Core::JsonObjectSupport
|
539
539
|
end
|
540
540
|
|
541
|
+
class SelectiveGapicGeneration
|
542
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
543
|
+
|
544
|
+
include Google::Apis::Core::JsonObjectSupport
|
545
|
+
end
|
546
|
+
|
541
547
|
class Service
|
542
548
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
543
549
|
|
@@ -819,6 +825,8 @@ module Google
|
|
819
825
|
class Representation < Google::Apis::Core::JsonRepresentation
|
820
826
|
collection :destinations, as: 'destinations'
|
821
827
|
property :reference_docs_uri, as: 'referenceDocsUri'
|
828
|
+
property :selective_gapic_generation, as: 'selectiveGapicGeneration', class: Google::Apis::ServicemanagementV1::SelectiveGapicGeneration, decorator: Google::Apis::ServicemanagementV1::SelectiveGapicGeneration::Representation
|
829
|
+
|
822
830
|
end
|
823
831
|
end
|
824
832
|
|
@@ -1527,6 +1535,13 @@ module Google
|
|
1527
1535
|
end
|
1528
1536
|
end
|
1529
1537
|
|
1538
|
+
class SelectiveGapicGeneration
|
1539
|
+
# @private
|
1540
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1541
|
+
collection :methods_prop, as: 'methods'
|
1542
|
+
end
|
1543
|
+
end
|
1544
|
+
|
1530
1545
|
class Service
|
1531
1546
|
# @private
|
1532
1547
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-servicemanagement_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.61.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-
|
11
|
+
date: 2024-10-06 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-servicemanagement_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-servicemanagement_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-servicemanagement_v1/v0.61.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-servicemanagement_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|