google-apis-alloydb_v1alpha 0.13.0 → 0.14.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: a0e20191c06841f5c57554c7c9d4abb49405f70ae18382d3e9cbb3b46fd7cb6b
|
4
|
+
data.tar.gz: ecfe0351dc67282e5b370fb849fffe3645334b7fd6618a9213f1c61674c07e4d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f6331b921c2434b3138fcb22c833aff615931884b065405ed2b9b62403b2781cd7e4e4982f7a2c60b971a687d6315a6c073268670f9a893606eaa3c561ea3f2f
|
7
|
+
data.tar.gz: 5671f22aaa0dac9322fa59ab939da7024ce515f0722674f4f9540e962462c8dc5f18ea7f16e69181f48bd24eac4a7e907d85d319685318d94d4e18003f70f167
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
# Release history for google-apis-alloydb_v1alpha
|
2
2
|
|
3
|
+
### v0.14.0 (2024-05-26)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20240517
|
6
|
+
* Regenerated using generator version 0.15.0
|
7
|
+
|
3
8
|
### v0.13.0 (2024-04-28)
|
4
9
|
|
5
10
|
* Regenerated from discovery document revision 20240417
|
@@ -1218,6 +1218,11 @@ module Google
|
|
1218
1218
|
# @return [Google::Apis::AlloydbV1alpha::ObservabilityInstanceConfig]
|
1219
1219
|
attr_accessor :observability_config
|
1220
1220
|
|
1221
|
+
# Output only. All outbound public IP addresses configured for the instance.
|
1222
|
+
# Corresponds to the JSON property `outboundPublicIpAddresses`
|
1223
|
+
# @return [Array<String>]
|
1224
|
+
attr_accessor :outbound_public_ip_addresses
|
1225
|
+
|
1221
1226
|
# PscInstanceConfig contains PSC related configuration at an instance level.
|
1222
1227
|
# Corresponds to the JSON property `pscInstanceConfig`
|
1223
1228
|
# @return [Google::Apis::AlloydbV1alpha::PscInstanceConfig]
|
@@ -1314,6 +1319,7 @@ module Google
|
|
1314
1319
|
@network_config = args[:network_config] if args.key?(:network_config)
|
1315
1320
|
@nodes = args[:nodes] if args.key?(:nodes)
|
1316
1321
|
@observability_config = args[:observability_config] if args.key?(:observability_config)
|
1322
|
+
@outbound_public_ip_addresses = args[:outbound_public_ip_addresses] if args.key?(:outbound_public_ip_addresses)
|
1317
1323
|
@psc_instance_config = args[:psc_instance_config] if args.key?(:psc_instance_config)
|
1318
1324
|
@public_ip_address = args[:public_ip_address] if args.key?(:public_ip_address)
|
1319
1325
|
@query_insights_config = args[:query_insights_config] if args.key?(:query_insights_config)
|
@@ -1338,6 +1344,13 @@ module Google
|
|
1338
1344
|
# @return [Array<Google::Apis::AlloydbV1alpha::AuthorizedNetwork>]
|
1339
1345
|
attr_accessor :authorized_external_networks
|
1340
1346
|
|
1347
|
+
# Optional. Enabling an outbound public IP address to support a database server
|
1348
|
+
# sending requests out into the internet.
|
1349
|
+
# Corresponds to the JSON property `enableOutboundPublicIp`
|
1350
|
+
# @return [Boolean]
|
1351
|
+
attr_accessor :enable_outbound_public_ip
|
1352
|
+
alias_method :enable_outbound_public_ip?, :enable_outbound_public_ip
|
1353
|
+
|
1341
1354
|
# Optional. Enabling public ip for the instance.
|
1342
1355
|
# Corresponds to the JSON property `enablePublicIp`
|
1343
1356
|
# @return [Boolean]
|
@@ -1351,6 +1364,7 @@ module Google
|
|
1351
1364
|
# Update properties of this object
|
1352
1365
|
def update!(**args)
|
1353
1366
|
@authorized_external_networks = args[:authorized_external_networks] if args.key?(:authorized_external_networks)
|
1367
|
+
@enable_outbound_public_ip = args[:enable_outbound_public_ip] if args.key?(:enable_outbound_public_ip)
|
1354
1368
|
@enable_public_ip = args[:enable_public_ip] if args.key?(:enable_public_ip)
|
1355
1369
|
end
|
1356
1370
|
end
|
@@ -2594,6 +2608,11 @@ module Google
|
|
2594
2608
|
# @return [String]
|
2595
2609
|
attr_accessor :feed_type
|
2596
2610
|
|
2611
|
+
# More feed data would be added in subsequent CLs
|
2612
|
+
# Corresponds to the JSON property `observabilityMetricData`
|
2613
|
+
# @return [Google::Apis::AlloydbV1alpha::StorageDatabasecenterPartnerapiV1mainObservabilityMetricData]
|
2614
|
+
attr_accessor :observability_metric_data
|
2615
|
+
|
2597
2616
|
# Common model for database resource recommendation signal data.
|
2598
2617
|
# Corresponds to the JSON property `recommendationSignalData`
|
2599
2618
|
# @return [Google::Apis::AlloydbV1alpha::StorageDatabasecenterPartnerapiV1mainDatabaseResourceRecommendationSignalData]
|
@@ -2622,6 +2641,7 @@ module Google
|
|
2622
2641
|
def update!(**args)
|
2623
2642
|
@feed_timestamp = args[:feed_timestamp] if args.key?(:feed_timestamp)
|
2624
2643
|
@feed_type = args[:feed_type] if args.key?(:feed_type)
|
2644
|
+
@observability_metric_data = args[:observability_metric_data] if args.key?(:observability_metric_data)
|
2625
2645
|
@recommendation_signal_data = args[:recommendation_signal_data] if args.key?(:recommendation_signal_data)
|
2626
2646
|
@resource_health_signal_data = args[:resource_health_signal_data] if args.key?(:resource_health_signal_data)
|
2627
2647
|
@resource_id = args[:resource_id] if args.key?(:resource_id)
|
@@ -2839,6 +2859,12 @@ module Google
|
|
2839
2859
|
# @return [String]
|
2840
2860
|
attr_accessor :location
|
2841
2861
|
|
2862
|
+
# MachineConfiguration describes the configuration of a machine specific to
|
2863
|
+
# Database Resource.
|
2864
|
+
# Corresponds to the JSON property `machineConfiguration`
|
2865
|
+
# @return [Google::Apis::AlloydbV1alpha::StorageDatabasecenterPartnerapiV1mainMachineConfiguration]
|
2866
|
+
attr_accessor :machine_configuration
|
2867
|
+
|
2842
2868
|
# DatabaseResourceId will serve as primary key for any resource ingestion event.
|
2843
2869
|
# Corresponds to the JSON property `primaryResourceId`
|
2844
2870
|
# @return [Google::Apis::AlloydbV1alpha::StorageDatabasecenterPartnerapiV1mainDatabaseResourceId]
|
@@ -2900,6 +2926,7 @@ module Google
|
|
2900
2926
|
@id = args[:id] if args.key?(:id)
|
2901
2927
|
@instance_type = args[:instance_type] if args.key?(:instance_type)
|
2902
2928
|
@location = args[:location] if args.key?(:location)
|
2929
|
+
@machine_configuration = args[:machine_configuration] if args.key?(:machine_configuration)
|
2903
2930
|
@primary_resource_id = args[:primary_resource_id] if args.key?(:primary_resource_id)
|
2904
2931
|
@product = args[:product] if args.key?(:product)
|
2905
2932
|
@resource_container = args[:resource_container] if args.key?(:resource_container)
|
@@ -3009,6 +3036,70 @@ module Google
|
|
3009
3036
|
end
|
3010
3037
|
end
|
3011
3038
|
|
3039
|
+
# MachineConfiguration describes the configuration of a machine specific to
|
3040
|
+
# Database Resource.
|
3041
|
+
class StorageDatabasecenterPartnerapiV1mainMachineConfiguration
|
3042
|
+
include Google::Apis::Core::Hashable
|
3043
|
+
|
3044
|
+
# The number of CPUs.
|
3045
|
+
# Corresponds to the JSON property `cpuCount`
|
3046
|
+
# @return [Fixnum]
|
3047
|
+
attr_accessor :cpu_count
|
3048
|
+
|
3049
|
+
# Memory size in bytes.
|
3050
|
+
# Corresponds to the JSON property `memorySizeInBytes`
|
3051
|
+
# @return [Fixnum]
|
3052
|
+
attr_accessor :memory_size_in_bytes
|
3053
|
+
|
3054
|
+
def initialize(**args)
|
3055
|
+
update!(**args)
|
3056
|
+
end
|
3057
|
+
|
3058
|
+
# Update properties of this object
|
3059
|
+
def update!(**args)
|
3060
|
+
@cpu_count = args[:cpu_count] if args.key?(:cpu_count)
|
3061
|
+
@memory_size_in_bytes = args[:memory_size_in_bytes] if args.key?(:memory_size_in_bytes)
|
3062
|
+
end
|
3063
|
+
end
|
3064
|
+
|
3065
|
+
#
|
3066
|
+
class StorageDatabasecenterPartnerapiV1mainObservabilityMetricData
|
3067
|
+
include Google::Apis::Core::Hashable
|
3068
|
+
|
3069
|
+
# Required. The timestamp of the metric value.
|
3070
|
+
# Corresponds to the JSON property `metricTimestamp`
|
3071
|
+
# @return [String]
|
3072
|
+
attr_accessor :metric_timestamp
|
3073
|
+
|
3074
|
+
# Required. Type of metric like CPU, Memory, etc.
|
3075
|
+
# Corresponds to the JSON property `metricType`
|
3076
|
+
# @return [String]
|
3077
|
+
attr_accessor :metric_type
|
3078
|
+
|
3079
|
+
# Required. Database resource name associated with the signal. Resource name to
|
3080
|
+
# follow CAIS resource_name format as noted here go/condor-common-datamodel
|
3081
|
+
# Corresponds to the JSON property `resourceName`
|
3082
|
+
# @return [String]
|
3083
|
+
attr_accessor :resource_name
|
3084
|
+
|
3085
|
+
# Required. Value of the metric type.
|
3086
|
+
# Corresponds to the JSON property `value`
|
3087
|
+
# @return [Float]
|
3088
|
+
attr_accessor :value
|
3089
|
+
|
3090
|
+
def initialize(**args)
|
3091
|
+
update!(**args)
|
3092
|
+
end
|
3093
|
+
|
3094
|
+
# Update properties of this object
|
3095
|
+
def update!(**args)
|
3096
|
+
@metric_timestamp = args[:metric_timestamp] if args.key?(:metric_timestamp)
|
3097
|
+
@metric_type = args[:metric_type] if args.key?(:metric_type)
|
3098
|
+
@resource_name = args[:resource_name] if args.key?(:resource_name)
|
3099
|
+
@value = args[:value] if args.key?(:value)
|
3100
|
+
end
|
3101
|
+
end
|
3102
|
+
|
3012
3103
|
# An error that occurred during a backup creation operation.
|
3013
3104
|
class StorageDatabasecenterPartnerapiV1mainOperationError
|
3014
3105
|
include Google::Apis::Core::Hashable
|
@@ -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.14.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.15.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240517"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -418,6 +418,18 @@ module Google
|
|
418
418
|
include Google::Apis::Core::JsonObjectSupport
|
419
419
|
end
|
420
420
|
|
421
|
+
class StorageDatabasecenterPartnerapiV1mainMachineConfiguration
|
422
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
423
|
+
|
424
|
+
include Google::Apis::Core::JsonObjectSupport
|
425
|
+
end
|
426
|
+
|
427
|
+
class StorageDatabasecenterPartnerapiV1mainObservabilityMetricData
|
428
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
429
|
+
|
430
|
+
include Google::Apis::Core::JsonObjectSupport
|
431
|
+
end
|
432
|
+
|
421
433
|
class StorageDatabasecenterPartnerapiV1mainOperationError
|
422
434
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
423
435
|
|
@@ -776,6 +788,7 @@ module Google
|
|
776
788
|
|
777
789
|
property :observability_config, as: 'observabilityConfig', class: Google::Apis::AlloydbV1alpha::ObservabilityInstanceConfig, decorator: Google::Apis::AlloydbV1alpha::ObservabilityInstanceConfig::Representation
|
778
790
|
|
791
|
+
collection :outbound_public_ip_addresses, as: 'outboundPublicIpAddresses'
|
779
792
|
property :psc_instance_config, as: 'pscInstanceConfig', class: Google::Apis::AlloydbV1alpha::PscInstanceConfig, decorator: Google::Apis::AlloydbV1alpha::PscInstanceConfig::Representation
|
780
793
|
|
781
794
|
property :public_ip_address, as: 'publicIpAddress'
|
@@ -801,6 +814,7 @@ module Google
|
|
801
814
|
class Representation < Google::Apis::Core::JsonRepresentation
|
802
815
|
collection :authorized_external_networks, as: 'authorizedExternalNetworks', class: Google::Apis::AlloydbV1alpha::AuthorizedNetwork, decorator: Google::Apis::AlloydbV1alpha::AuthorizedNetwork::Representation
|
803
816
|
|
817
|
+
property :enable_outbound_public_ip, as: 'enableOutboundPublicIp'
|
804
818
|
property :enable_public_ip, as: 'enablePublicIp'
|
805
819
|
end
|
806
820
|
end
|
@@ -1146,6 +1160,8 @@ module Google
|
|
1146
1160
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1147
1161
|
property :feed_timestamp, as: 'feedTimestamp'
|
1148
1162
|
property :feed_type, as: 'feedType'
|
1163
|
+
property :observability_metric_data, as: 'observabilityMetricData', class: Google::Apis::AlloydbV1alpha::StorageDatabasecenterPartnerapiV1mainObservabilityMetricData, decorator: Google::Apis::AlloydbV1alpha::StorageDatabasecenterPartnerapiV1mainObservabilityMetricData::Representation
|
1164
|
+
|
1149
1165
|
property :recommendation_signal_data, as: 'recommendationSignalData', class: Google::Apis::AlloydbV1alpha::StorageDatabasecenterPartnerapiV1mainDatabaseResourceRecommendationSignalData, decorator: Google::Apis::AlloydbV1alpha::StorageDatabasecenterPartnerapiV1mainDatabaseResourceRecommendationSignalData::Representation
|
1150
1166
|
|
1151
1167
|
property :resource_health_signal_data, as: 'resourceHealthSignalData', class: Google::Apis::AlloydbV1alpha::StorageDatabasecenterPartnerapiV1mainDatabaseResourceHealthSignalData, decorator: Google::Apis::AlloydbV1alpha::StorageDatabasecenterPartnerapiV1mainDatabaseResourceHealthSignalData::Representation
|
@@ -1207,6 +1223,8 @@ module Google
|
|
1207
1223
|
|
1208
1224
|
property :instance_type, as: 'instanceType'
|
1209
1225
|
property :location, as: 'location'
|
1226
|
+
property :machine_configuration, as: 'machineConfiguration', class: Google::Apis::AlloydbV1alpha::StorageDatabasecenterPartnerapiV1mainMachineConfiguration, decorator: Google::Apis::AlloydbV1alpha::StorageDatabasecenterPartnerapiV1mainMachineConfiguration::Representation
|
1227
|
+
|
1210
1228
|
property :primary_resource_id, as: 'primaryResourceId', class: Google::Apis::AlloydbV1alpha::StorageDatabasecenterPartnerapiV1mainDatabaseResourceId, decorator: Google::Apis::AlloydbV1alpha::StorageDatabasecenterPartnerapiV1mainDatabaseResourceId::Representation
|
1211
1229
|
|
1212
1230
|
property :product, as: 'product', class: Google::Apis::AlloydbV1alpha::StorageDatabasecenterProtoCommonProduct, decorator: Google::Apis::AlloydbV1alpha::StorageDatabasecenterProtoCommonProduct::Representation
|
@@ -1242,6 +1260,24 @@ module Google
|
|
1242
1260
|
end
|
1243
1261
|
end
|
1244
1262
|
|
1263
|
+
class StorageDatabasecenterPartnerapiV1mainMachineConfiguration
|
1264
|
+
# @private
|
1265
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1266
|
+
property :cpu_count, as: 'cpuCount'
|
1267
|
+
property :memory_size_in_bytes, :numeric_string => true, as: 'memorySizeInBytes'
|
1268
|
+
end
|
1269
|
+
end
|
1270
|
+
|
1271
|
+
class StorageDatabasecenterPartnerapiV1mainObservabilityMetricData
|
1272
|
+
# @private
|
1273
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1274
|
+
property :metric_timestamp, as: 'metricTimestamp'
|
1275
|
+
property :metric_type, as: 'metricType'
|
1276
|
+
property :resource_name, as: 'resourceName'
|
1277
|
+
property :value, as: 'value'
|
1278
|
+
end
|
1279
|
+
end
|
1280
|
+
|
1245
1281
|
class StorageDatabasecenterPartnerapiV1mainOperationError
|
1246
1282
|
# @private
|
1247
1283
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
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.14.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: 2024-
|
11
|
+
date: 2024-05-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -16,7 +16,7 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 0.
|
19
|
+
version: 0.15.0
|
20
20
|
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
22
|
version: 2.a
|
@@ -26,7 +26,7 @@ dependencies:
|
|
26
26
|
requirements:
|
27
27
|
- - ">="
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version: 0.
|
29
|
+
version: 0.15.0
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 2.a
|
@@ -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_v1alpha/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-alloydb_v1alpha/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-alloydb_v1alpha/v0.14.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-alloydb_v1alpha
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|