google-apis-alloydb_v1beta 0.13.0 → 0.14.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: 58bc8a069eef60d9779ff4166502044db24cc3788ac8081b65f8bf3c37f57b57
4
- data.tar.gz: 48ed268b1e1a07876f50ec28d41f46d574221fb1d88eb190f95da7547bc31105
3
+ metadata.gz: 22da7c10d4478c2188eef570723f148848822b297bd9a254dbdb765358d95f36
4
+ data.tar.gz: 01d88def64d9bba0363b0f1bf0171fc798df4e19699ee2fef7671c1cd811f4bf
5
5
  SHA512:
6
- metadata.gz: 29ca37311f7e9eaefb11f288693228ca2eee1dc16dadf680776aa89d298bf2ae5b83673f3ed2fc799d2fde07e0637ae233236899e6722d5e8c4fca43045d222c
7
- data.tar.gz: 6367404b65c22e1000ae46c053afb90ad7bd91201585c84ea1504c438164d0cab5e5062a421dd409cf7a7f7e6bd766e6e488d02a6ec430cacc42b4c8b2ebfa72
6
+ metadata.gz: f2e74007900f407a2fd3e610191d5d320fe818de352e9752191c4fe709e2a332f9ffefb2c88293a033473448294de43f06c21fd543635c7d34390bd053e21666
7
+ data.tar.gz: 2dab6689063532dce4428cbc16a439714d86c9ef62c92bd84031ef3dffb8baa2acfa23d6f781443eb30996c0afa6b077b929e797611972388fcc5c420c6648c6
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-alloydb_v1beta
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
@@ -1191,6 +1191,11 @@ module Google
1191
1191
  # @return [Google::Apis::AlloydbV1beta::ObservabilityInstanceConfig]
1192
1192
  attr_accessor :observability_config
1193
1193
 
1194
+ # Output only. All outbound public IP addresses configured for the instance.
1195
+ # Corresponds to the JSON property `outboundPublicIpAddresses`
1196
+ # @return [Array<String>]
1197
+ attr_accessor :outbound_public_ip_addresses
1198
+
1194
1199
  # PscInstanceConfig contains PSC related configuration at an instance level.
1195
1200
  # Corresponds to the JSON property `pscInstanceConfig`
1196
1201
  # @return [Google::Apis::AlloydbV1beta::PscInstanceConfig]
@@ -1281,6 +1286,7 @@ module Google
1281
1286
  @network_config = args[:network_config] if args.key?(:network_config)
1282
1287
  @nodes = args[:nodes] if args.key?(:nodes)
1283
1288
  @observability_config = args[:observability_config] if args.key?(:observability_config)
1289
+ @outbound_public_ip_addresses = args[:outbound_public_ip_addresses] if args.key?(:outbound_public_ip_addresses)
1284
1290
  @psc_instance_config = args[:psc_instance_config] if args.key?(:psc_instance_config)
1285
1291
  @public_ip_address = args[:public_ip_address] if args.key?(:public_ip_address)
1286
1292
  @query_insights_config = args[:query_insights_config] if args.key?(:query_insights_config)
@@ -1304,6 +1310,13 @@ module Google
1304
1310
  # @return [Array<Google::Apis::AlloydbV1beta::AuthorizedNetwork>]
1305
1311
  attr_accessor :authorized_external_networks
1306
1312
 
1313
+ # Optional. Enabling an outbound public IP address to support a database server
1314
+ # sending requests out into the internet.
1315
+ # Corresponds to the JSON property `enableOutboundPublicIp`
1316
+ # @return [Boolean]
1317
+ attr_accessor :enable_outbound_public_ip
1318
+ alias_method :enable_outbound_public_ip?, :enable_outbound_public_ip
1319
+
1307
1320
  # Optional. Enabling public ip for the instance.
1308
1321
  # Corresponds to the JSON property `enablePublicIp`
1309
1322
  # @return [Boolean]
@@ -1317,6 +1330,7 @@ module Google
1317
1330
  # Update properties of this object
1318
1331
  def update!(**args)
1319
1332
  @authorized_external_networks = args[:authorized_external_networks] if args.key?(:authorized_external_networks)
1333
+ @enable_outbound_public_ip = args[:enable_outbound_public_ip] if args.key?(:enable_outbound_public_ip)
1320
1334
  @enable_public_ip = args[:enable_public_ip] if args.key?(:enable_public_ip)
1321
1335
  end
1322
1336
  end
@@ -2560,6 +2574,11 @@ module Google
2560
2574
  # @return [String]
2561
2575
  attr_accessor :feed_type
2562
2576
 
2577
+ # More feed data would be added in subsequent CLs
2578
+ # Corresponds to the JSON property `observabilityMetricData`
2579
+ # @return [Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainObservabilityMetricData]
2580
+ attr_accessor :observability_metric_data
2581
+
2563
2582
  # Common model for database resource recommendation signal data.
2564
2583
  # Corresponds to the JSON property `recommendationSignalData`
2565
2584
  # @return [Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainDatabaseResourceRecommendationSignalData]
@@ -2588,6 +2607,7 @@ module Google
2588
2607
  def update!(**args)
2589
2608
  @feed_timestamp = args[:feed_timestamp] if args.key?(:feed_timestamp)
2590
2609
  @feed_type = args[:feed_type] if args.key?(:feed_type)
2610
+ @observability_metric_data = args[:observability_metric_data] if args.key?(:observability_metric_data)
2591
2611
  @recommendation_signal_data = args[:recommendation_signal_data] if args.key?(:recommendation_signal_data)
2592
2612
  @resource_health_signal_data = args[:resource_health_signal_data] if args.key?(:resource_health_signal_data)
2593
2613
  @resource_id = args[:resource_id] if args.key?(:resource_id)
@@ -2805,6 +2825,12 @@ module Google
2805
2825
  # @return [String]
2806
2826
  attr_accessor :location
2807
2827
 
2828
+ # MachineConfiguration describes the configuration of a machine specific to
2829
+ # Database Resource.
2830
+ # Corresponds to the JSON property `machineConfiguration`
2831
+ # @return [Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainMachineConfiguration]
2832
+ attr_accessor :machine_configuration
2833
+
2808
2834
  # DatabaseResourceId will serve as primary key for any resource ingestion event.
2809
2835
  # Corresponds to the JSON property `primaryResourceId`
2810
2836
  # @return [Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainDatabaseResourceId]
@@ -2866,6 +2892,7 @@ module Google
2866
2892
  @id = args[:id] if args.key?(:id)
2867
2893
  @instance_type = args[:instance_type] if args.key?(:instance_type)
2868
2894
  @location = args[:location] if args.key?(:location)
2895
+ @machine_configuration = args[:machine_configuration] if args.key?(:machine_configuration)
2869
2896
  @primary_resource_id = args[:primary_resource_id] if args.key?(:primary_resource_id)
2870
2897
  @product = args[:product] if args.key?(:product)
2871
2898
  @resource_container = args[:resource_container] if args.key?(:resource_container)
@@ -2975,6 +3002,70 @@ module Google
2975
3002
  end
2976
3003
  end
2977
3004
 
3005
+ # MachineConfiguration describes the configuration of a machine specific to
3006
+ # Database Resource.
3007
+ class StorageDatabasecenterPartnerapiV1mainMachineConfiguration
3008
+ include Google::Apis::Core::Hashable
3009
+
3010
+ # The number of CPUs.
3011
+ # Corresponds to the JSON property `cpuCount`
3012
+ # @return [Fixnum]
3013
+ attr_accessor :cpu_count
3014
+
3015
+ # Memory size in bytes.
3016
+ # Corresponds to the JSON property `memorySizeInBytes`
3017
+ # @return [Fixnum]
3018
+ attr_accessor :memory_size_in_bytes
3019
+
3020
+ def initialize(**args)
3021
+ update!(**args)
3022
+ end
3023
+
3024
+ # Update properties of this object
3025
+ def update!(**args)
3026
+ @cpu_count = args[:cpu_count] if args.key?(:cpu_count)
3027
+ @memory_size_in_bytes = args[:memory_size_in_bytes] if args.key?(:memory_size_in_bytes)
3028
+ end
3029
+ end
3030
+
3031
+ #
3032
+ class StorageDatabasecenterPartnerapiV1mainObservabilityMetricData
3033
+ include Google::Apis::Core::Hashable
3034
+
3035
+ # Required. The timestamp of the metric value.
3036
+ # Corresponds to the JSON property `metricTimestamp`
3037
+ # @return [String]
3038
+ attr_accessor :metric_timestamp
3039
+
3040
+ # Required. Type of metric like CPU, Memory, etc.
3041
+ # Corresponds to the JSON property `metricType`
3042
+ # @return [String]
3043
+ attr_accessor :metric_type
3044
+
3045
+ # Required. Database resource name associated with the signal. Resource name to
3046
+ # follow CAIS resource_name format as noted here go/condor-common-datamodel
3047
+ # Corresponds to the JSON property `resourceName`
3048
+ # @return [String]
3049
+ attr_accessor :resource_name
3050
+
3051
+ # Required. Value of the metric type.
3052
+ # Corresponds to the JSON property `value`
3053
+ # @return [Float]
3054
+ attr_accessor :value
3055
+
3056
+ def initialize(**args)
3057
+ update!(**args)
3058
+ end
3059
+
3060
+ # Update properties of this object
3061
+ def update!(**args)
3062
+ @metric_timestamp = args[:metric_timestamp] if args.key?(:metric_timestamp)
3063
+ @metric_type = args[:metric_type] if args.key?(:metric_type)
3064
+ @resource_name = args[:resource_name] if args.key?(:resource_name)
3065
+ @value = args[:value] if args.key?(:value)
3066
+ end
3067
+ end
3068
+
2978
3069
  # An error that occurred during a backup creation operation.
2979
3070
  class StorageDatabasecenterPartnerapiV1mainOperationError
2980
3071
  include Google::Apis::Core::Hashable
@@ -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.13.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.14.0"
22
+ GENERATOR_VERSION = "0.15.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240417"
25
+ REVISION = "20240517"
26
26
  end
27
27
  end
28
28
  end
@@ -412,6 +412,18 @@ module Google
412
412
  include Google::Apis::Core::JsonObjectSupport
413
413
  end
414
414
 
415
+ class StorageDatabasecenterPartnerapiV1mainMachineConfiguration
416
+ class Representation < Google::Apis::Core::JsonRepresentation; end
417
+
418
+ include Google::Apis::Core::JsonObjectSupport
419
+ end
420
+
421
+ class StorageDatabasecenterPartnerapiV1mainObservabilityMetricData
422
+ class Representation < Google::Apis::Core::JsonRepresentation; end
423
+
424
+ include Google::Apis::Core::JsonObjectSupport
425
+ end
426
+
415
427
  class StorageDatabasecenterPartnerapiV1mainOperationError
416
428
  class Representation < Google::Apis::Core::JsonRepresentation; end
417
429
 
@@ -762,6 +774,7 @@ module Google
762
774
 
763
775
  property :observability_config, as: 'observabilityConfig', class: Google::Apis::AlloydbV1beta::ObservabilityInstanceConfig, decorator: Google::Apis::AlloydbV1beta::ObservabilityInstanceConfig::Representation
764
776
 
777
+ collection :outbound_public_ip_addresses, as: 'outboundPublicIpAddresses'
765
778
  property :psc_instance_config, as: 'pscInstanceConfig', class: Google::Apis::AlloydbV1beta::PscInstanceConfig, decorator: Google::Apis::AlloydbV1beta::PscInstanceConfig::Representation
766
779
 
767
780
  property :public_ip_address, as: 'publicIpAddress'
@@ -786,6 +799,7 @@ module Google
786
799
  class Representation < Google::Apis::Core::JsonRepresentation
787
800
  collection :authorized_external_networks, as: 'authorizedExternalNetworks', class: Google::Apis::AlloydbV1beta::AuthorizedNetwork, decorator: Google::Apis::AlloydbV1beta::AuthorizedNetwork::Representation
788
801
 
802
+ property :enable_outbound_public_ip, as: 'enableOutboundPublicIp'
789
803
  property :enable_public_ip, as: 'enablePublicIp'
790
804
  end
791
805
  end
@@ -1131,6 +1145,8 @@ module Google
1131
1145
  class Representation < Google::Apis::Core::JsonRepresentation
1132
1146
  property :feed_timestamp, as: 'feedTimestamp'
1133
1147
  property :feed_type, as: 'feedType'
1148
+ property :observability_metric_data, as: 'observabilityMetricData', class: Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainObservabilityMetricData, decorator: Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainObservabilityMetricData::Representation
1149
+
1134
1150
  property :recommendation_signal_data, as: 'recommendationSignalData', class: Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainDatabaseResourceRecommendationSignalData, decorator: Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainDatabaseResourceRecommendationSignalData::Representation
1135
1151
 
1136
1152
  property :resource_health_signal_data, as: 'resourceHealthSignalData', class: Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainDatabaseResourceHealthSignalData, decorator: Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainDatabaseResourceHealthSignalData::Representation
@@ -1192,6 +1208,8 @@ module Google
1192
1208
 
1193
1209
  property :instance_type, as: 'instanceType'
1194
1210
  property :location, as: 'location'
1211
+ property :machine_configuration, as: 'machineConfiguration', class: Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainMachineConfiguration, decorator: Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainMachineConfiguration::Representation
1212
+
1195
1213
  property :primary_resource_id, as: 'primaryResourceId', class: Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainDatabaseResourceId, decorator: Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainDatabaseResourceId::Representation
1196
1214
 
1197
1215
  property :product, as: 'product', class: Google::Apis::AlloydbV1beta::StorageDatabasecenterProtoCommonProduct, decorator: Google::Apis::AlloydbV1beta::StorageDatabasecenterProtoCommonProduct::Representation
@@ -1227,6 +1245,24 @@ module Google
1227
1245
  end
1228
1246
  end
1229
1247
 
1248
+ class StorageDatabasecenterPartnerapiV1mainMachineConfiguration
1249
+ # @private
1250
+ class Representation < Google::Apis::Core::JsonRepresentation
1251
+ property :cpu_count, as: 'cpuCount'
1252
+ property :memory_size_in_bytes, :numeric_string => true, as: 'memorySizeInBytes'
1253
+ end
1254
+ end
1255
+
1256
+ class StorageDatabasecenterPartnerapiV1mainObservabilityMetricData
1257
+ # @private
1258
+ class Representation < Google::Apis::Core::JsonRepresentation
1259
+ property :metric_timestamp, as: 'metricTimestamp'
1260
+ property :metric_type, as: 'metricType'
1261
+ property :resource_name, as: 'resourceName'
1262
+ property :value, as: 'value'
1263
+ end
1264
+ end
1265
+
1230
1266
  class StorageDatabasecenterPartnerapiV1mainOperationError
1231
1267
  # @private
1232
1268
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-alloydb_v1beta
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.13.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-04-28 00:00:00.000000000 Z
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.14.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.14.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_v1beta/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-alloydb_v1beta/v0.13.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-alloydb_v1beta/v0.14.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-alloydb_v1beta
63
63
  post_install_message:
64
64
  rdoc_options: []