google-cloud-resource_settings-v1 1.1.0 → 1.2.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 +4 -4
- data/README.md +1 -1
- data/lib/google/cloud/resource_settings/v1/resource_settings_service/client.rb +7 -0
- data/lib/google/cloud/resource_settings/v1/resource_settings_service/rest/client.rb +7 -0
- data/lib/google/cloud/resource_settings/v1/version.rb +1 -1
- data/proto_docs/google/cloud/resourcesettings/v1/resource_settings.rb +8 -0
- metadata +6 -9
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 01e408a0725a5c890bbfb3e3a43b47dbee4a188ef262681872df82bf3e6662c6
|
4
|
+
data.tar.gz: 51e82a93d6ef87f77be951b9d3d1fe7c72332f9563d5f277f50da29db5eb830e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0c21ca070d6fe7ab1e8d770a58601f2fb678eb32439b3a0bb17942536122e645898d3702fc61df745227b56b45bb8a347003331db23f707cd38277bce4f46d07
|
7
|
+
data.tar.gz: 112524502e269080f72450ba71cb1d04f40a71090900186cda1c731c2ccf29593c88c3190c1bef4a3633374753a9d3d563f39ed5b52e8cb879b9c8c211501883
|
data/README.md
CHANGED
@@ -86,7 +86,7 @@ To browse ready to use code samples check [Google Cloud Samples](https://cloud.g
|
|
86
86
|
|
87
87
|
## Supported Ruby Versions
|
88
88
|
|
89
|
-
This library is supported on Ruby
|
89
|
+
This library is supported on Ruby 3.0+.
|
90
90
|
|
91
91
|
Google provides official support for Ruby versions that are actively supported
|
92
92
|
by Ruby Core—that is, Ruby versions that are either in normal maintenance or
|
@@ -554,6 +554,13 @@ module Google
|
|
554
554
|
# * (`GRPC::Core::Channel`) a gRPC channel with included credentials
|
555
555
|
# * (`GRPC::Core::ChannelCredentials`) a gRPC credentails object
|
556
556
|
# * (`nil`) indicating no credentials
|
557
|
+
#
|
558
|
+
# Warning: If you accept a credential configuration (JSON file or Hash) from an
|
559
|
+
# external source for authentication to Google Cloud, you must validate it before
|
560
|
+
# providing it to a Google API client library. Providing an unvalidated credential
|
561
|
+
# configuration to Google APIs can compromise the security of your systems and data.
|
562
|
+
# For more information, refer to [Validate credential configurations from external
|
563
|
+
# sources](https://cloud.google.com/docs/authentication/external/externally-sourced-credentials).
|
557
564
|
# @return [::Object]
|
558
565
|
# @!attribute [rw] scope
|
559
566
|
# The OAuth scopes
|
@@ -523,6 +523,13 @@ module Google
|
|
523
523
|
# * (`Signet::OAuth2::Client`) A signet oauth2 client object
|
524
524
|
# (see the [signet docs](https://rubydoc.info/gems/signet/Signet/OAuth2/Client))
|
525
525
|
# * (`nil`) indicating no credentials
|
526
|
+
#
|
527
|
+
# Warning: If you accept a credential configuration (JSON file or Hash) from an
|
528
|
+
# external source for authentication to Google Cloud, you must validate it before
|
529
|
+
# providing it to a Google API client library. Providing an unvalidated credential
|
530
|
+
# configuration to Google APIs can compromise the security of your systems and data.
|
531
|
+
# For more information, refer to [Validate credential configurations from external
|
532
|
+
# sources](https://cloud.google.com/docs/authentication/external/externally-sourced-credentials).
|
526
533
|
# @return [::Object]
|
527
534
|
# @!attribute [rw] scope
|
528
535
|
# The OAuth scopes
|
@@ -121,15 +121,23 @@ module Google
|
|
121
121
|
# @!attribute [rw] boolean_value
|
122
122
|
# @return [::Boolean]
|
123
123
|
# Defines this value as being a boolean value.
|
124
|
+
#
|
125
|
+
# Note: The following fields are mutually exclusive: `boolean_value`, `string_value`, `string_set_value`, `enum_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
124
126
|
# @!attribute [rw] string_value
|
125
127
|
# @return [::String]
|
126
128
|
# Defines this value as being a string value.
|
129
|
+
#
|
130
|
+
# Note: The following fields are mutually exclusive: `string_value`, `boolean_value`, `string_set_value`, `enum_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
127
131
|
# @!attribute [rw] string_set_value
|
128
132
|
# @return [::Google::Cloud::ResourceSettings::V1::Value::StringSet]
|
129
133
|
# Defines this value as being a StringSet.
|
134
|
+
#
|
135
|
+
# Note: The following fields are mutually exclusive: `string_set_value`, `boolean_value`, `string_value`, `enum_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
130
136
|
# @!attribute [rw] enum_value
|
131
137
|
# @return [::Google::Cloud::ResourceSettings::V1::Value::EnumValue]
|
132
138
|
# Defines this value as being a Enum.
|
139
|
+
#
|
140
|
+
# Note: The following fields are mutually exclusive: `enum_value`, `boolean_value`, `string_value`, `string_set_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
133
141
|
class Value
|
134
142
|
include ::Google::Protobuf::MessageExts
|
135
143
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-cloud-resource_settings-v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
|
-
autorequire:
|
9
8
|
bindir: bin
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 2025-01-29 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: gapic-common
|
@@ -16,7 +15,7 @@ dependencies:
|
|
16
15
|
requirements:
|
17
16
|
- - ">="
|
18
17
|
- !ruby/object:Gem::Version
|
19
|
-
version: 0.
|
18
|
+
version: 0.25.0
|
20
19
|
- - "<"
|
21
20
|
- !ruby/object:Gem::Version
|
22
21
|
version: 2.a
|
@@ -26,7 +25,7 @@ dependencies:
|
|
26
25
|
requirements:
|
27
26
|
- - ">="
|
28
27
|
- !ruby/object:Gem::Version
|
29
|
-
version: 0.
|
28
|
+
version: 0.25.0
|
30
29
|
- - "<"
|
31
30
|
- !ruby/object:Gem::Version
|
32
31
|
version: 2.a
|
@@ -83,7 +82,6 @@ homepage: https://github.com/googleapis/google-cloud-ruby
|
|
83
82
|
licenses:
|
84
83
|
- Apache-2.0
|
85
84
|
metadata: {}
|
86
|
-
post_install_message:
|
87
85
|
rdoc_options: []
|
88
86
|
require_paths:
|
89
87
|
- lib
|
@@ -91,15 +89,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
91
89
|
requirements:
|
92
90
|
- - ">="
|
93
91
|
- !ruby/object:Gem::Version
|
94
|
-
version: '
|
92
|
+
version: '3.0'
|
95
93
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
96
94
|
requirements:
|
97
95
|
- - ">="
|
98
96
|
- !ruby/object:Gem::Version
|
99
97
|
version: '0'
|
100
98
|
requirements: []
|
101
|
-
rubygems_version: 3.
|
102
|
-
signing_key:
|
99
|
+
rubygems_version: 3.6.2
|
103
100
|
specification_version: 4
|
104
101
|
summary: The Resource Settings API allows users to control and modify the behavior
|
105
102
|
of their GCP resources (e.g., VM, firewall, Project, etc.) across the Cloud Resource
|