google-apis-alloydb_v1alpha 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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 05e1864568d72352291f07dd03c13a706f350fafa1ecb2a0c92902f8f2b780d7
|
|
4
|
+
data.tar.gz: feb35de57c0fbdd2df4045089b0f9b86878ab2a13ab825f1673b9bcfa6792079
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: da68412bbdd87fa7554d387266ad17afc0a1e70d27f62574de0ecba3ed7058896de5057827a81e9fa37aad4ddbe5e63c028b5ab0d207ce9b17f1a67b139c2dfc
|
|
7
|
+
data.tar.gz: 99a48014c9982ab8eec8f9e19da2f1b00ee9eb862fbc599f6f916cf6df753d4a5d0d3af503482a396e6c10e7cf5dcc3bbe098a4b6a0ebc0d9b4d3b04e3200329
|
data/CHANGELOG.md
CHANGED
|
@@ -22,30 +22,6 @@ module Google
|
|
|
22
22
|
module Apis
|
|
23
23
|
module AlloydbV1alpha
|
|
24
24
|
|
|
25
|
-
# AlloyDbInternalDebugInfo contains internal debugging information for AlloyDB
|
|
26
|
-
# errors. It is explicitly kept out of the allowlist (errors.yaml) to ensure it
|
|
27
|
-
# is sanitized (stripped) by OnePlatform for all external requests. Used only to
|
|
28
|
-
# carry internal error details to across UPC/FlowLib boundary for
|
|
29
|
-
# ObservabilityInfo.
|
|
30
|
-
class AlloydbClhErrorsAlloyDbInternalDebugInfo
|
|
31
|
-
include Google::Apis::Core::Hashable
|
|
32
|
-
|
|
33
|
-
# The original error message or details before sanitization, used internally for
|
|
34
|
-
# debugging and logging.
|
|
35
|
-
# Corresponds to the JSON property `originalError`
|
|
36
|
-
# @return [String]
|
|
37
|
-
attr_accessor :original_error
|
|
38
|
-
|
|
39
|
-
def initialize(**args)
|
|
40
|
-
update!(**args)
|
|
41
|
-
end
|
|
42
|
-
|
|
43
|
-
# Update properties of this object
|
|
44
|
-
def update!(**args)
|
|
45
|
-
@original_error = args[:original_error] if args.key?(:original_error)
|
|
46
|
-
end
|
|
47
|
-
end
|
|
48
|
-
|
|
49
25
|
# AuthorizedNetwork contains metadata for an authorized network.
|
|
50
26
|
class AuthorizedNetwork
|
|
51
27
|
include Google::Apis::Core::Hashable
|
|
@@ -1433,6 +1409,35 @@ module Google
|
|
|
1433
1409
|
end
|
|
1434
1410
|
end
|
|
1435
1411
|
|
|
1412
|
+
# DnsAutomationInfo contains information about the DNS automation for the
|
|
1413
|
+
# instance.
|
|
1414
|
+
class DnsAutomationInfo
|
|
1415
|
+
include Google::Apis::Core::Hashable
|
|
1416
|
+
|
|
1417
|
+
# Output only. The fully qualified domain name of the instance for DNS
|
|
1418
|
+
# automation. Example: "...alloydb.goog.". Note: The AUDIT directive is
|
|
1419
|
+
# intentionally omitted because this field contains sensitive network topology
|
|
1420
|
+
# information.
|
|
1421
|
+
# Corresponds to the JSON property `fullyQualifiedDomainName`
|
|
1422
|
+
# @return [String]
|
|
1423
|
+
attr_accessor :fully_qualified_domain_name
|
|
1424
|
+
|
|
1425
|
+
# Output only. The state of the DNS automation.
|
|
1426
|
+
# Corresponds to the JSON property `state`
|
|
1427
|
+
# @return [String]
|
|
1428
|
+
attr_accessor :state
|
|
1429
|
+
|
|
1430
|
+
def initialize(**args)
|
|
1431
|
+
update!(**args)
|
|
1432
|
+
end
|
|
1433
|
+
|
|
1434
|
+
# Update properties of this object
|
|
1435
|
+
def update!(**args)
|
|
1436
|
+
@fully_qualified_domain_name = args[:fully_qualified_domain_name] if args.key?(:fully_qualified_domain_name)
|
|
1437
|
+
@state = args[:state] if args.key?(:state)
|
|
1438
|
+
end
|
|
1439
|
+
end
|
|
1440
|
+
|
|
1436
1441
|
# A generic empty message that you can re-use to avoid defining duplicated empty
|
|
1437
1442
|
# messages in your APIs. A typical example is to use it as the request or the
|
|
1438
1443
|
# response type of an API method. For instance: service Foo ` rpc Bar(google.
|
|
@@ -3236,11 +3241,31 @@ module Google
|
|
|
3236
3241
|
# @return [String]
|
|
3237
3242
|
attr_accessor :consumer_project
|
|
3238
3243
|
|
|
3244
|
+
# Output only. List of DNS automation info for the PSC auto connection.
|
|
3245
|
+
# Corresponds to the JSON property `dnsAutomationInfos`
|
|
3246
|
+
# @return [Array<Google::Apis::AlloydbV1alpha::DnsAutomationInfo>]
|
|
3247
|
+
attr_accessor :dns_automation_infos
|
|
3248
|
+
|
|
3239
3249
|
# Output only. The IP address of the PSC service automation endpoint.
|
|
3240
3250
|
# Corresponds to the JSON property `ipAddress`
|
|
3241
3251
|
# @return [String]
|
|
3242
3252
|
attr_accessor :ip_address
|
|
3243
3253
|
|
|
3254
|
+
# Output only. The PSC service connection policy name. The format is "projects//
|
|
3255
|
+
# regions//serviceConnectionPolicies/"
|
|
3256
|
+
# Corresponds to the JSON property `serviceConnectionPolicy`
|
|
3257
|
+
# @return [String]
|
|
3258
|
+
attr_accessor :service_connection_policy
|
|
3259
|
+
|
|
3260
|
+
# Output only. The creation state or result of the connection policy. Possible
|
|
3261
|
+
# values include: - `ACTIVE`: The policy was created successfully. - `
|
|
3262
|
+
# PERMISSION_DENIED`: Sufficient permissions were not provided. Note that this
|
|
3263
|
+
# field is an unstructured output and customers should not rely on the specific
|
|
3264
|
+
# string value or error message directly.
|
|
3265
|
+
# Corresponds to the JSON property `serviceConnectionPolicyCreationState`
|
|
3266
|
+
# @return [String]
|
|
3267
|
+
attr_accessor :service_connection_policy_creation_state
|
|
3268
|
+
|
|
3244
3269
|
# Output only. The status of the PSC service automation connection. Possible
|
|
3245
3270
|
# values: "STATE_UNSPECIFIED" - An invalid state as the default case. "ACTIVE" -
|
|
3246
3271
|
# The connection has been created successfully. "FAILED" - The connection is not
|
|
@@ -3262,7 +3287,10 @@ module Google
|
|
|
3262
3287
|
@consumer_network = args[:consumer_network] if args.key?(:consumer_network)
|
|
3263
3288
|
@consumer_network_status = args[:consumer_network_status] if args.key?(:consumer_network_status)
|
|
3264
3289
|
@consumer_project = args[:consumer_project] if args.key?(:consumer_project)
|
|
3290
|
+
@dns_automation_infos = args[:dns_automation_infos] if args.key?(:dns_automation_infos)
|
|
3265
3291
|
@ip_address = args[:ip_address] if args.key?(:ip_address)
|
|
3292
|
+
@service_connection_policy = args[:service_connection_policy] if args.key?(:service_connection_policy)
|
|
3293
|
+
@service_connection_policy_creation_state = args[:service_connection_policy_creation_state] if args.key?(:service_connection_policy_creation_state)
|
|
3266
3294
|
@status = args[:status] if args.key?(:status)
|
|
3267
3295
|
end
|
|
3268
3296
|
end
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module AlloydbV1alpha
|
|
18
18
|
# Version of the google-apis-alloydb_v1alpha gem
|
|
19
|
-
GEM_VERSION = "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 = "
|
|
25
|
+
REVISION = "20260826"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -22,12 +22,6 @@ module Google
|
|
|
22
22
|
module Apis
|
|
23
23
|
module AlloydbV1alpha
|
|
24
24
|
|
|
25
|
-
class AlloydbClhErrorsAlloyDbInternalDebugInfo
|
|
26
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
27
|
-
|
|
28
|
-
include Google::Apis::Core::JsonObjectSupport
|
|
29
|
-
end
|
|
30
|
-
|
|
31
25
|
class AuthorizedNetwork
|
|
32
26
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
33
27
|
|
|
@@ -184,6 +178,12 @@ module Google
|
|
|
184
178
|
include Google::Apis::Core::JsonObjectSupport
|
|
185
179
|
end
|
|
186
180
|
|
|
181
|
+
class DnsAutomationInfo
|
|
182
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
183
|
+
|
|
184
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
185
|
+
end
|
|
186
|
+
|
|
187
187
|
class Empty
|
|
188
188
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
189
189
|
|
|
@@ -820,13 +820,6 @@ module Google
|
|
|
820
820
|
include Google::Apis::Core::JsonObjectSupport
|
|
821
821
|
end
|
|
822
822
|
|
|
823
|
-
class AlloydbClhErrorsAlloyDbInternalDebugInfo
|
|
824
|
-
# @private
|
|
825
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
|
826
|
-
property :original_error, as: 'originalError'
|
|
827
|
-
end
|
|
828
|
-
end
|
|
829
|
-
|
|
830
823
|
class AuthorizedNetwork
|
|
831
824
|
# @private
|
|
832
825
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -1168,6 +1161,14 @@ module Google
|
|
|
1168
1161
|
end
|
|
1169
1162
|
end
|
|
1170
1163
|
|
|
1164
|
+
class DnsAutomationInfo
|
|
1165
|
+
# @private
|
|
1166
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1167
|
+
property :fully_qualified_domain_name, as: 'fullyQualifiedDomainName'
|
|
1168
|
+
property :state, as: 'state'
|
|
1169
|
+
end
|
|
1170
|
+
end
|
|
1171
|
+
|
|
1171
1172
|
class Empty
|
|
1172
1173
|
# @private
|
|
1173
1174
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -1615,7 +1616,11 @@ module Google
|
|
|
1615
1616
|
property :consumer_network, as: 'consumerNetwork'
|
|
1616
1617
|
property :consumer_network_status, as: 'consumerNetworkStatus'
|
|
1617
1618
|
property :consumer_project, as: 'consumerProject'
|
|
1619
|
+
collection :dns_automation_infos, as: 'dnsAutomationInfos', class: Google::Apis::AlloydbV1alpha::DnsAutomationInfo, decorator: Google::Apis::AlloydbV1alpha::DnsAutomationInfo::Representation
|
|
1620
|
+
|
|
1618
1621
|
property :ip_address, as: 'ipAddress'
|
|
1622
|
+
property :service_connection_policy, as: 'serviceConnectionPolicy'
|
|
1623
|
+
property :service_connection_policy_creation_state, as: 'serviceConnectionPolicyCreationState'
|
|
1619
1624
|
property :status, as: 'status'
|
|
1620
1625
|
end
|
|
1621
1626
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-alloydb_v1alpha
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 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_v1alpha/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-alloydb_v1alpha/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-alloydb_v1alpha/v0.59.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-alloydb_v1alpha
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|