google-apis-alloydb_v1beta 0.58.0 → 0.59.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: 5acf385f6f30ed1415df098d74afd10ed85cce658c37db58d8315bc5d20daf4d
4
- data.tar.gz: 92b4ea81827b882cbec6ba48a41661e77874530269582d166b39742cf8325db5
3
+ metadata.gz: 14e2bbb309c0e9cbe705cf0ec906c5a1d4ee7b3d5a0613412aea6ecd6c90d804
4
+ data.tar.gz: 0172151d8e652dd66ee5d4fba44d519b2843663a677bcf9fafca44a2fd37be71
5
5
  SHA512:
6
- metadata.gz: 6e1408eeed4d6852227352db9969b23a141a4905e84fddb862c6a39c19f9f010fb025b1717716ac8ed1f87392901665ea55e7cd9a2c5f86645aecc8c6bc42935
7
- data.tar.gz: dc4f2550061014dcfc0eb5dd9e3f6da96d2734f16313967ada8fc7b9f6e8f55d8974b80ea295ff3831eebd2836cfa4a3fae3ab14effed99f312d0b2a6786b28a
6
+ metadata.gz: 3953b53b0748f54911aec28de676c6623436ce3947150dd228508f86a98b7bf181b3db756b4147cbb53fb50e14d4004ada5762f6af98bb32eda15c7feca36ecf
7
+ data.tar.gz: d0cdeb72f950f0c3bcb39ba59fd205f8f01c372210f924d0bbd1f679df9d74b39507cf3f70d2989ff9819e3768e5c3e6609c4ca1a062ed884be3f9ad7f1e28d0
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-alloydb_v1beta
2
2
 
3
+ ### v0.59.0 (2026-09-06)
4
+
5
+ * Regenerated from discovery document revision 20260826
6
+
3
7
  ### v0.58.0 (2026-08-30)
4
8
 
5
9
  * Regenerated from discovery document revision 20260818
@@ -1382,6 +1382,35 @@ module Google
1382
1382
  end
1383
1383
  end
1384
1384
 
1385
+ # DnsAutomationInfo contains information about the DNS automation for the
1386
+ # instance.
1387
+ class DnsAutomationInfo
1388
+ include Google::Apis::Core::Hashable
1389
+
1390
+ # Output only. The fully qualified domain name of the instance for DNS
1391
+ # automation. Example: "...alloydb.goog.". Note: The AUDIT directive is
1392
+ # intentionally omitted because this field contains sensitive network topology
1393
+ # information.
1394
+ # Corresponds to the JSON property `fullyQualifiedDomainName`
1395
+ # @return [String]
1396
+ attr_accessor :fully_qualified_domain_name
1397
+
1398
+ # Output only. The state of the DNS automation.
1399
+ # Corresponds to the JSON property `state`
1400
+ # @return [String]
1401
+ attr_accessor :state
1402
+
1403
+ def initialize(**args)
1404
+ update!(**args)
1405
+ end
1406
+
1407
+ # Update properties of this object
1408
+ def update!(**args)
1409
+ @fully_qualified_domain_name = args[:fully_qualified_domain_name] if args.key?(:fully_qualified_domain_name)
1410
+ @state = args[:state] if args.key?(:state)
1411
+ end
1412
+ end
1413
+
1385
1414
  # A generic empty message that you can re-use to avoid defining duplicated empty
1386
1415
  # messages in your APIs. A typical example is to use it as the request or the
1387
1416
  # response type of an API method. For instance: service Foo ` rpc Bar(google.
@@ -3178,11 +3207,31 @@ module Google
3178
3207
  # @return [String]
3179
3208
  attr_accessor :consumer_project
3180
3209
 
3210
+ # Output only. List of DNS automation info for the PSC auto connection.
3211
+ # Corresponds to the JSON property `dnsAutomationInfos`
3212
+ # @return [Array<Google::Apis::AlloydbV1beta::DnsAutomationInfo>]
3213
+ attr_accessor :dns_automation_infos
3214
+
3181
3215
  # Output only. The IP address of the PSC service automation endpoint.
3182
3216
  # Corresponds to the JSON property `ipAddress`
3183
3217
  # @return [String]
3184
3218
  attr_accessor :ip_address
3185
3219
 
3220
+ # Output only. The PSC service connection policy name. The format is "projects//
3221
+ # regions//serviceConnectionPolicies/"
3222
+ # Corresponds to the JSON property `serviceConnectionPolicy`
3223
+ # @return [String]
3224
+ attr_accessor :service_connection_policy
3225
+
3226
+ # Output only. The creation state or result of the connection policy. Possible
3227
+ # values include: - `ACTIVE`: The policy was created successfully. - `
3228
+ # PERMISSION_DENIED`: Sufficient permissions were not provided. Note that this
3229
+ # field is an unstructured output and customers should not rely on the specific
3230
+ # string value or error message directly.
3231
+ # Corresponds to the JSON property `serviceConnectionPolicyCreationState`
3232
+ # @return [String]
3233
+ attr_accessor :service_connection_policy_creation_state
3234
+
3186
3235
  # Output only. The status of the PSC service automation connection. Possible
3187
3236
  # values: "STATE_UNSPECIFIED" - An invalid state as the default case. "ACTIVE" -
3188
3237
  # The connection has been created successfully. "FAILED" - The connection is not
@@ -3204,7 +3253,10 @@ module Google
3204
3253
  @consumer_network = args[:consumer_network] if args.key?(:consumer_network)
3205
3254
  @consumer_network_status = args[:consumer_network_status] if args.key?(:consumer_network_status)
3206
3255
  @consumer_project = args[:consumer_project] if args.key?(:consumer_project)
3256
+ @dns_automation_infos = args[:dns_automation_infos] if args.key?(:dns_automation_infos)
3207
3257
  @ip_address = args[:ip_address] if args.key?(:ip_address)
3258
+ @service_connection_policy = args[:service_connection_policy] if args.key?(:service_connection_policy)
3259
+ @service_connection_policy_creation_state = args[:service_connection_policy_creation_state] if args.key?(:service_connection_policy_creation_state)
3208
3260
  @status = args[:status] if args.key?(:status)
3209
3261
  end
3210
3262
  end
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module AlloydbV1beta
18
18
  # Version of the google-apis-alloydb_v1beta gem
19
- GEM_VERSION = "0.58.0"
19
+ GEM_VERSION = "0.59.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.19.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20260818"
25
+ REVISION = "20260826"
26
26
  end
27
27
  end
28
28
  end
@@ -172,6 +172,12 @@ module Google
172
172
  include Google::Apis::Core::JsonObjectSupport
173
173
  end
174
174
 
175
+ class DnsAutomationInfo
176
+ class Representation < Google::Apis::Core::JsonRepresentation; end
177
+
178
+ include Google::Apis::Core::JsonObjectSupport
179
+ end
180
+
175
181
  class Empty
176
182
  class Representation < Google::Apis::Core::JsonRepresentation; end
177
183
 
@@ -1141,6 +1147,14 @@ module Google
1141
1147
  end
1142
1148
  end
1143
1149
 
1150
+ class DnsAutomationInfo
1151
+ # @private
1152
+ class Representation < Google::Apis::Core::JsonRepresentation
1153
+ property :fully_qualified_domain_name, as: 'fullyQualifiedDomainName'
1154
+ property :state, as: 'state'
1155
+ end
1156
+ end
1157
+
1144
1158
  class Empty
1145
1159
  # @private
1146
1160
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1587,7 +1601,11 @@ module Google
1587
1601
  property :consumer_network, as: 'consumerNetwork'
1588
1602
  property :consumer_network_status, as: 'consumerNetworkStatus'
1589
1603
  property :consumer_project, as: 'consumerProject'
1604
+ collection :dns_automation_infos, as: 'dnsAutomationInfos', class: Google::Apis::AlloydbV1beta::DnsAutomationInfo, decorator: Google::Apis::AlloydbV1beta::DnsAutomationInfo::Representation
1605
+
1590
1606
  property :ip_address, as: 'ipAddress'
1607
+ property :service_connection_policy, as: 'serviceConnectionPolicy'
1608
+ property :service_connection_policy_creation_state, as: 'serviceConnectionPolicyCreationState'
1591
1609
  property :status, as: 'status'
1592
1610
  end
1593
1611
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-alloydb_v1beta
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.58.0
4
+ version: 0.59.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
@@ -57,7 +57,7 @@ licenses:
57
57
  metadata:
58
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
59
59
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-alloydb_v1beta/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-alloydb_v1beta/v0.58.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-alloydb_v1beta/v0.59.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-alloydb_v1beta
62
62
  rdoc_options: []
63
63
  require_paths: