google-apis-alloydb_v1beta 0.5.0 → 0.6.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: 946e66eeb6884494734ca61bb56991c191c763aeeb6abfc14d1146811e715df1
|
4
|
+
data.tar.gz: c1f102090e9612f90e4ae4fabfbdea194d6d36a038b0558427cbfc60aeb6bf1c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0f89fb18f97b8cace91231de0753ea411a75ba7dab7110d8d821c3f13bc53788a583c1bad5ad26467d00ca82f686cbc5a0f5f862d94cb43d4a69006ab82c3388
|
7
|
+
data.tar.gz: 749e99d7c9a8d153ddf6e1e1b02e948eed6e5aac2df0a8471cf3aa6d42d1a61f4b82c7e5090e440abef0211cd3b09494275c5ff76815c2dbcfa92d2a8cecb573
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
# Release history for google-apis-alloydb_v1beta
|
2
2
|
|
3
|
+
### v0.6.0 (2024-02-18)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20240207
|
6
|
+
* Regenerated using generator version 0.13.1
|
7
|
+
|
3
8
|
### v0.5.0 (2024-01-23)
|
4
9
|
|
5
10
|
* Regenerated from discovery document revision 20240103
|
@@ -2339,6 +2339,11 @@ module Google
|
|
2339
2339
|
# @return [String]
|
2340
2340
|
attr_accessor :feed_type
|
2341
2341
|
|
2342
|
+
# Common model for database resource recommendation signal data.
|
2343
|
+
# Corresponds to the JSON property `recommendationSignalData`
|
2344
|
+
# @return [Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainDatabaseResourceRecommendationSignalData]
|
2345
|
+
attr_accessor :recommendation_signal_data
|
2346
|
+
|
2342
2347
|
# Common model for database resource health signal data.
|
2343
2348
|
# Corresponds to the JSON property `resourceHealthSignalData`
|
2344
2349
|
# @return [Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainDatabaseResourceHealthSignalData]
|
@@ -2362,6 +2367,7 @@ module Google
|
|
2362
2367
|
def update!(**args)
|
2363
2368
|
@feed_timestamp = args[:feed_timestamp] if args.key?(:feed_timestamp)
|
2364
2369
|
@feed_type = args[:feed_type] if args.key?(:feed_type)
|
2370
|
+
@recommendation_signal_data = args[:recommendation_signal_data] if args.key?(:recommendation_signal_data)
|
2365
2371
|
@resource_health_signal_data = args[:resource_health_signal_data] if args.key?(:resource_health_signal_data)
|
2366
2372
|
@resource_id = args[:resource_id] if args.key?(:resource_id)
|
2367
2373
|
@resource_metadata = args[:resource_metadata] if args.key?(:resource_metadata)
|
@@ -2634,6 +2640,51 @@ module Google
|
|
2634
2640
|
end
|
2635
2641
|
end
|
2636
2642
|
|
2643
|
+
# Common model for database resource recommendation signal data.
|
2644
|
+
class StorageDatabasecenterPartnerapiV1mainDatabaseResourceRecommendationSignalData
|
2645
|
+
include Google::Apis::Core::Hashable
|
2646
|
+
|
2647
|
+
# Required. Any other additional metadata
|
2648
|
+
# Corresponds to the JSON property `additionalMetadata`
|
2649
|
+
# @return [Hash<String,Object>]
|
2650
|
+
attr_accessor :additional_metadata
|
2651
|
+
|
2652
|
+
# Required. last time recommendationw as refreshed
|
2653
|
+
# Corresponds to the JSON property `lastRefreshTime`
|
2654
|
+
# @return [String]
|
2655
|
+
attr_accessor :last_refresh_time
|
2656
|
+
|
2657
|
+
# Required. Recommendation state
|
2658
|
+
# Corresponds to the JSON property `recommendationState`
|
2659
|
+
# @return [String]
|
2660
|
+
attr_accessor :recommendation_state
|
2661
|
+
|
2662
|
+
# Required. Database resource name associated with the signal. Resource name to
|
2663
|
+
# follow CAIS resource_name format as noted here go/condor-common-datamodel
|
2664
|
+
# Corresponds to the JSON property `resourceName`
|
2665
|
+
# @return [String]
|
2666
|
+
attr_accessor :resource_name
|
2667
|
+
|
2668
|
+
# Required. Type of signal, for example, `SIGNAL_TYPE_IDLE`, `
|
2669
|
+
# SIGNAL_TYPE_HIGH_NUMBER_OF_TABLES`, etc.
|
2670
|
+
# Corresponds to the JSON property `signalType`
|
2671
|
+
# @return [String]
|
2672
|
+
attr_accessor :signal_type
|
2673
|
+
|
2674
|
+
def initialize(**args)
|
2675
|
+
update!(**args)
|
2676
|
+
end
|
2677
|
+
|
2678
|
+
# Update properties of this object
|
2679
|
+
def update!(**args)
|
2680
|
+
@additional_metadata = args[:additional_metadata] if args.key?(:additional_metadata)
|
2681
|
+
@last_refresh_time = args[:last_refresh_time] if args.key?(:last_refresh_time)
|
2682
|
+
@recommendation_state = args[:recommendation_state] if args.key?(:recommendation_state)
|
2683
|
+
@resource_name = args[:resource_name] if args.key?(:resource_name)
|
2684
|
+
@signal_type = args[:signal_type] if args.key?(:signal_type)
|
2685
|
+
end
|
2686
|
+
end
|
2687
|
+
|
2637
2688
|
# An error that occurred during a backup creation operation.
|
2638
2689
|
class StorageDatabasecenterPartnerapiV1mainOperationError
|
2639
2690
|
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.
|
19
|
+
GEM_VERSION = "0.6.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.13.
|
22
|
+
GENERATOR_VERSION = "0.13.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240207"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -364,6 +364,12 @@ module Google
|
|
364
364
|
include Google::Apis::Core::JsonObjectSupport
|
365
365
|
end
|
366
366
|
|
367
|
+
class StorageDatabasecenterPartnerapiV1mainDatabaseResourceRecommendationSignalData
|
368
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
369
|
+
|
370
|
+
include Google::Apis::Core::JsonObjectSupport
|
371
|
+
end
|
372
|
+
|
367
373
|
class StorageDatabasecenterPartnerapiV1mainOperationError
|
368
374
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
369
375
|
|
@@ -1013,6 +1019,8 @@ module Google
|
|
1013
1019
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1014
1020
|
property :feed_timestamp, as: 'feedTimestamp'
|
1015
1021
|
property :feed_type, as: 'feedType'
|
1022
|
+
property :recommendation_signal_data, as: 'recommendationSignalData', class: Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainDatabaseResourceRecommendationSignalData, decorator: Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainDatabaseResourceRecommendationSignalData::Representation
|
1023
|
+
|
1016
1024
|
property :resource_health_signal_data, as: 'resourceHealthSignalData', class: Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainDatabaseResourceHealthSignalData, decorator: Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainDatabaseResourceHealthSignalData::Representation
|
1017
1025
|
|
1018
1026
|
property :resource_id, as: 'resourceId', class: Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainDatabaseResourceId, decorator: Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainDatabaseResourceId::Representation
|
@@ -1081,6 +1089,17 @@ module Google
|
|
1081
1089
|
end
|
1082
1090
|
end
|
1083
1091
|
|
1092
|
+
class StorageDatabasecenterPartnerapiV1mainDatabaseResourceRecommendationSignalData
|
1093
|
+
# @private
|
1094
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1095
|
+
hash :additional_metadata, as: 'additionalMetadata'
|
1096
|
+
property :last_refresh_time, as: 'lastRefreshTime'
|
1097
|
+
property :recommendation_state, as: 'recommendationState'
|
1098
|
+
property :resource_name, as: 'resourceName'
|
1099
|
+
property :signal_type, as: 'signalType'
|
1100
|
+
end
|
1101
|
+
end
|
1102
|
+
|
1084
1103
|
class StorageDatabasecenterPartnerapiV1mainOperationError
|
1085
1104
|
# @private
|
1086
1105
|
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.
|
4
|
+
version: 0.6.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-02-18 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_v1beta/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-alloydb_v1beta/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-alloydb_v1beta/v0.6.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: []
|