google-cloud-resource_settings-v1 1.1.0 → 1.2.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: 30c4cbcef084e9352267ac3abac2328fc5716a2f669974cf9f50466cf905e445
4
- data.tar.gz: d459115a2943faa55fdc93c8bb722492afa59158f55df75d880bea081bd8ab19
3
+ metadata.gz: 01e408a0725a5c890bbfb3e3a43b47dbee4a188ef262681872df82bf3e6662c6
4
+ data.tar.gz: 51e82a93d6ef87f77be951b9d3d1fe7c72332f9563d5f277f50da29db5eb830e
5
5
  SHA512:
6
- metadata.gz: 4476c70ed37253da22e0e3be6d73da6ba3519c477bfef5b9bf11afbd0433060a05f03d064eabac16c0c92dc2a853efdeadaefba47ea66f0de5d11b354e6a64d6
7
- data.tar.gz: e3eae41777ece78525b6555fc3795cf19b7271da06c8a98e6a373af85d14900cb309f285b4c5fe3c49b932f552fa4be4336826fea4fc81cbc88f34de522fdf89
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 2.7+.
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
@@ -21,7 +21,7 @@ module Google
21
21
  module Cloud
22
22
  module ResourceSettings
23
23
  module V1
24
- VERSION = "1.1.0"
24
+ VERSION = "1.2.0"
25
25
  end
26
26
  end
27
27
  end
@@ -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.1.0
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: 2024-12-10 00:00:00.000000000 Z
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.24.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.24.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: '2.7'
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.5.23
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