google-apis-alloydb_v1 0.1.0 → 0.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: c2caf7e9be0edceb82c434e0563623f55396f1ce34419e1c51ae5503aa37c90a
4
- data.tar.gz: 9b292d7ffd356f6cdc2ed904e75fc16b4c62ac5e46e986991eb8e87211c58990
3
+ metadata.gz: 9bbd8e5371a56756031f9b86a36dc9b4184c8d78e93081c3f4297587493ac4a2
4
+ data.tar.gz: 55b3f41f74569955079897ff9990fb8e294133d32b4cb0618d9a2814236b7221
5
5
  SHA512:
6
- metadata.gz: 658430dd24d0dccb715c9fb787fe14fc8cd2b5927dcb1902cc79f74956dc108cc06e44bdb13621e5a465e82036ef065e38ac12be905e8cf11e6f6e3c0d2492ab
7
- data.tar.gz: 4a0191837f94b3619efdd829504ee23f0f5b3942529dbc7afaacb42423769fb3b5d1bac89d813f619207a6d213891e594af12204badbc28de7b2509f419f4f37
6
+ metadata.gz: cd8f39ff2334e4ce835b4179d6db031e7582bc9c4fe9b8be07640804157570c1af9a7cd8d80f9a7ed9384fe48173e3c7b70de72315da0f410a0946abcc5e6fef
7
+ data.tar.gz: b33f3b0e632fa626e36183d3f314d2488eee78bf8d09d06259ecca9502c581565250a453ad35bd4ed67d9534681ecf61c480e658c81858bc934f519976131f17
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-alloydb_v1
2
2
 
3
+ ### v0.2.0 (2023-10-15)
4
+
5
+ * Regenerated from discovery document revision 20231006
6
+
3
7
  ### v0.1.0 (2023-10-01)
4
8
 
5
9
  * Regenerated from discovery document revision 20230918
@@ -1459,8 +1459,8 @@ module Google
1459
1459
  # for example: "google-managed-services-default". If set, the instance IPs for
1460
1460
  # this cluster will be created in the allocated range. The range name must
1461
1461
  # comply with RFC 1035. Specifically, the name must be 1-63 characters long and
1462
- # match the regular expression [a-z]([-a-z0-9]*[a-z0-9])?. Field name is
1463
- # intended to be consistent with CloudSQL.
1462
+ # match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?`. Field name is
1463
+ # intended to be consistent with Cloud SQL.
1464
1464
  # Corresponds to the JSON property `allocatedIpRange`
1465
1465
  # @return [String]
1466
1466
  attr_accessor :allocated_ip_range
@@ -2216,7 +2216,7 @@ module Google
2216
2216
  # @return [String]
2217
2217
  attr_accessor :description
2218
2218
 
2219
- # The last time at which the event described by this signal took place
2219
+ # Required. The last time at which the event described by this signal took place
2220
2220
  # Corresponds to the JSON property `eventTime`
2221
2221
  # @return [String]
2222
2222
  attr_accessor :event_time
@@ -2228,7 +2228,8 @@ module Google
2228
2228
  # @return [String]
2229
2229
  attr_accessor :external_uri
2230
2230
 
2231
- # The name of the signal, ex: PUBLIC_SQL_INSTANCE, SQL_LOG_ERROR_VERBOSITY etc.
2231
+ # Required. The name of the signal, ex: PUBLIC_SQL_INSTANCE,
2232
+ # SQL_LOG_ERROR_VERBOSITY etc.
2232
2233
  # Corresponds to the JSON property `name`
2233
2234
  # @return [String]
2234
2235
  attr_accessor :name
@@ -2245,23 +2246,29 @@ module Google
2245
2246
  # @return [String]
2246
2247
  attr_accessor :resource_container
2247
2248
 
2248
- # Database resource name associated with the signal. Resource name to follow
2249
- # CAIS resource_name format as noted here go/condor-common-datamodel
2249
+ # Required. Database resource name associated with the signal. Resource name to
2250
+ # follow CAIS resource_name format as noted here go/condor-common-datamodel
2250
2251
  # Corresponds to the JSON property `resourceName`
2251
2252
  # @return [String]
2252
2253
  attr_accessor :resource_name
2253
2254
 
2254
- # The class of the signal, such as if it's a THREAT or VULNERABILITY.
2255
+ # Required. The class of the signal, such as if it's a THREAT or VULNERABILITY.
2255
2256
  # Corresponds to the JSON property `signalClass`
2256
2257
  # @return [String]
2257
2258
  attr_accessor :signal_class
2258
2259
 
2259
- # Unique identifier for the signal. This is an unique id which would be
2260
- # mainatined by partner to identify a signal.
2260
+ # Required. Unique identifier for the signal. This is an unique id which would
2261
+ # be mainatined by partner to identify a signal.
2261
2262
  # Corresponds to the JSON property `signalId`
2262
2263
  # @return [String]
2263
2264
  attr_accessor :signal_id
2264
2265
 
2266
+ # Required. Type of signal, for example, `AVAILABLE_IN_MULTIPLE_ZONES`, `
2267
+ # LOGGING_MOST_ERRORS`, etc.
2268
+ # Corresponds to the JSON property `signalType`
2269
+ # @return [String]
2270
+ attr_accessor :signal_type
2271
+
2265
2272
  #
2266
2273
  # Corresponds to the JSON property `state`
2267
2274
  # @return [String]
@@ -2284,6 +2291,7 @@ module Google
2284
2291
  @resource_name = args[:resource_name] if args.key?(:resource_name)
2285
2292
  @signal_class = args[:signal_class] if args.key?(:signal_class)
2286
2293
  @signal_id = args[:signal_id] if args.key?(:signal_id)
2294
+ @signal_type = args[:signal_type] if args.key?(:signal_type)
2287
2295
  @state = args[:state] if args.key?(:state)
2288
2296
  end
2289
2297
  end
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module AlloydbV1
18
18
  # Version of the google-apis-alloydb_v1 gem
19
- GEM_VERSION = "0.1.0"
19
+ GEM_VERSION = "0.2.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20230918"
25
+ REVISION = "20231006"
26
26
  end
27
27
  end
28
28
  end
@@ -967,6 +967,7 @@ module Google
967
967
  property :resource_name, as: 'resourceName'
968
968
  property :signal_class, as: 'signalClass'
969
969
  property :signal_id, as: 'signalId'
970
+ property :signal_type, as: 'signalType'
970
971
  property :state, as: 'state'
971
972
  end
972
973
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-alloydb_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.2.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: 2023-10-01 00:00:00.000000000 Z
11
+ date: 2023-10-15 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-alloydb_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-alloydb_v1/v0.1.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-alloydb_v1/v0.2.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-alloydb_v1
63
63
  post_install_message:
64
64
  rdoc_options: []