google-apis-servicemanagement_v1 0.62.0 → 0.63.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d3d94be354e62831391a5f87891c56c082433abb16b860ce106243dacfaad28c
|
4
|
+
data.tar.gz: 5e2558e845150fb02a1c767141bb203676eccf835a67732a24d11307f04f16f4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d72d7141092853df55f86c525bc97cefdbe82ad11140f7a136afddf575231f22c941ca86e126015dac6604e10ead48ef536c0936672e4035fbf49a848a7c8a3c
|
7
|
+
data.tar.gz: 54184210851eea35b602dad123d9c71eefa0de6585d51406f76bf40f12a54518fc1595f0614cfc27cc9cb23b281bc627154869f2d3e6c39ffd095c6fce3a1e93
|
data/CHANGELOG.md
CHANGED
@@ -1230,6 +1230,12 @@ module Google
|
|
1230
1230
|
class Documentation
|
1231
1231
|
include Google::Apis::Core::Hashable
|
1232
1232
|
|
1233
|
+
# Optional information about the IAM configuration. This is typically used to
|
1234
|
+
# link to documentation about a product's IAM roles and permissions.
|
1235
|
+
# Corresponds to the JSON property `additionalIamInfo`
|
1236
|
+
# @return [String]
|
1237
|
+
attr_accessor :additional_iam_info
|
1238
|
+
|
1233
1239
|
# The URL to the root of documentation.
|
1234
1240
|
# Corresponds to the JSON property `documentationRootUrl`
|
1235
1241
|
# @return [String]
|
@@ -1282,6 +1288,7 @@ module Google
|
|
1282
1288
|
|
1283
1289
|
# Update properties of this object
|
1284
1290
|
def update!(**args)
|
1291
|
+
@additional_iam_info = args[:additional_iam_info] if args.key?(:additional_iam_info)
|
1285
1292
|
@documentation_root_url = args[:documentation_root_url] if args.key?(:documentation_root_url)
|
1286
1293
|
@overview = args[:overview] if args.key?(:overview)
|
1287
1294
|
@pages = args[:pages] if args.key?(:pages)
|
@@ -1910,6 +1917,13 @@ module Google
|
|
1910
1917
|
# @return [Google::Apis::ServicemanagementV1::CommonLanguageSettings]
|
1911
1918
|
attr_accessor :common
|
1912
1919
|
|
1920
|
+
# Map of service names to renamed services. Keys are the package relative
|
1921
|
+
# service names and values are the name to be used for the service client and
|
1922
|
+
# call options. publishing: go_settings: renamed_services: Publisher: TopicAdmin
|
1923
|
+
# Corresponds to the JSON property `renamedServices`
|
1924
|
+
# @return [Hash<String,String>]
|
1925
|
+
attr_accessor :renamed_services
|
1926
|
+
|
1913
1927
|
def initialize(**args)
|
1914
1928
|
update!(**args)
|
1915
1929
|
end
|
@@ -1917,6 +1931,7 @@ module Google
|
|
1917
1931
|
# Update properties of this object
|
1918
1932
|
def update!(**args)
|
1919
1933
|
@common = args[:common] if args.key?(:common)
|
1934
|
+
@renamed_services = args[:renamed_services] if args.key?(:renamed_services)
|
1920
1935
|
end
|
1921
1936
|
end
|
1922
1937
|
|
@@ -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.63.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 = "20241202"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -946,6 +946,7 @@ module Google
|
|
946
946
|
class Documentation
|
947
947
|
# @private
|
948
948
|
class Representation < Google::Apis::Core::JsonRepresentation
|
949
|
+
property :additional_iam_info, as: 'additionalIamInfo'
|
949
950
|
property :documentation_root_url, as: 'documentationRootUrl'
|
950
951
|
property :overview, as: 'overview'
|
951
952
|
collection :pages, as: 'pages', class: Google::Apis::ServicemanagementV1::Page, decorator: Google::Apis::ServicemanagementV1::Page::Representation
|
@@ -1115,6 +1116,7 @@ module Google
|
|
1115
1116
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1116
1117
|
property :common, as: 'common', class: Google::Apis::ServicemanagementV1::CommonLanguageSettings, decorator: Google::Apis::ServicemanagementV1::CommonLanguageSettings::Representation
|
1117
1118
|
|
1119
|
+
hash :renamed_services, as: 'renamedServices'
|
1118
1120
|
end
|
1119
1121
|
end
|
1120
1122
|
|
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.63.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-12-
|
11
|
+
date: 2024-12-08 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.63.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: []
|
@@ -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.
|
78
|
+
rubygems_version: 3.5.23
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Service Management API V1
|