google-apis-alloydb_v1alpha 0.5.0 → 0.6.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4e92738f049afb5236ddae3849fb669cf3cc0626a9de48bc65e3f350dd770a1d
|
4
|
+
data.tar.gz: 8dfb89955ffeda1bc19abc44f3da820c91c4c2ba56caea424cdafa808c1b2e67
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3b2899b1899c247a390190f499284494a2e8b1506f22569112935b9bd8b72ae52ba574d9391419862540b5462d6f2b33d5c66cd85854d8e10a1b13d70e898907
|
7
|
+
data.tar.gz: 2ef35f58ba2931fb601bfd725729d0e77a12aa4e988dfcf2181660eb3df755760302f9c748a3cd3d96b25e8096f054d77955a41f4e52b3f722c8630130dd3541
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
# Release history for google-apis-alloydb_v1alpha
|
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
|
@@ -2498,6 +2498,11 @@ module Google
|
|
2498
2498
|
# @return [String]
|
2499
2499
|
attr_accessor :feed_type
|
2500
2500
|
|
2501
|
+
# Common model for database resource recommendation signal data.
|
2502
|
+
# Corresponds to the JSON property `recommendationSignalData`
|
2503
|
+
# @return [Google::Apis::AlloydbV1alpha::StorageDatabasecenterPartnerapiV1mainDatabaseResourceRecommendationSignalData]
|
2504
|
+
attr_accessor :recommendation_signal_data
|
2505
|
+
|
2501
2506
|
# Common model for database resource health signal data.
|
2502
2507
|
# Corresponds to the JSON property `resourceHealthSignalData`
|
2503
2508
|
# @return [Google::Apis::AlloydbV1alpha::StorageDatabasecenterPartnerapiV1mainDatabaseResourceHealthSignalData]
|
@@ -2521,6 +2526,7 @@ module Google
|
|
2521
2526
|
def update!(**args)
|
2522
2527
|
@feed_timestamp = args[:feed_timestamp] if args.key?(:feed_timestamp)
|
2523
2528
|
@feed_type = args[:feed_type] if args.key?(:feed_type)
|
2529
|
+
@recommendation_signal_data = args[:recommendation_signal_data] if args.key?(:recommendation_signal_data)
|
2524
2530
|
@resource_health_signal_data = args[:resource_health_signal_data] if args.key?(:resource_health_signal_data)
|
2525
2531
|
@resource_id = args[:resource_id] if args.key?(:resource_id)
|
2526
2532
|
@resource_metadata = args[:resource_metadata] if args.key?(:resource_metadata)
|
@@ -2793,6 +2799,51 @@ module Google
|
|
2793
2799
|
end
|
2794
2800
|
end
|
2795
2801
|
|
2802
|
+
# Common model for database resource recommendation signal data.
|
2803
|
+
class StorageDatabasecenterPartnerapiV1mainDatabaseResourceRecommendationSignalData
|
2804
|
+
include Google::Apis::Core::Hashable
|
2805
|
+
|
2806
|
+
# Required. Any other additional metadata
|
2807
|
+
# Corresponds to the JSON property `additionalMetadata`
|
2808
|
+
# @return [Hash<String,Object>]
|
2809
|
+
attr_accessor :additional_metadata
|
2810
|
+
|
2811
|
+
# Required. last time recommendationw as refreshed
|
2812
|
+
# Corresponds to the JSON property `lastRefreshTime`
|
2813
|
+
# @return [String]
|
2814
|
+
attr_accessor :last_refresh_time
|
2815
|
+
|
2816
|
+
# Required. Recommendation state
|
2817
|
+
# Corresponds to the JSON property `recommendationState`
|
2818
|
+
# @return [String]
|
2819
|
+
attr_accessor :recommendation_state
|
2820
|
+
|
2821
|
+
# Required. Database resource name associated with the signal. Resource name to
|
2822
|
+
# follow CAIS resource_name format as noted here go/condor-common-datamodel
|
2823
|
+
# Corresponds to the JSON property `resourceName`
|
2824
|
+
# @return [String]
|
2825
|
+
attr_accessor :resource_name
|
2826
|
+
|
2827
|
+
# Required. Type of signal, for example, `SIGNAL_TYPE_IDLE`, `
|
2828
|
+
# SIGNAL_TYPE_HIGH_NUMBER_OF_TABLES`, etc.
|
2829
|
+
# Corresponds to the JSON property `signalType`
|
2830
|
+
# @return [String]
|
2831
|
+
attr_accessor :signal_type
|
2832
|
+
|
2833
|
+
def initialize(**args)
|
2834
|
+
update!(**args)
|
2835
|
+
end
|
2836
|
+
|
2837
|
+
# Update properties of this object
|
2838
|
+
def update!(**args)
|
2839
|
+
@additional_metadata = args[:additional_metadata] if args.key?(:additional_metadata)
|
2840
|
+
@last_refresh_time = args[:last_refresh_time] if args.key?(:last_refresh_time)
|
2841
|
+
@recommendation_state = args[:recommendation_state] if args.key?(:recommendation_state)
|
2842
|
+
@resource_name = args[:resource_name] if args.key?(:resource_name)
|
2843
|
+
@signal_type = args[:signal_type] if args.key?(:signal_type)
|
2844
|
+
end
|
2845
|
+
end
|
2846
|
+
|
2796
2847
|
# An error that occurred during a backup creation operation.
|
2797
2848
|
class StorageDatabasecenterPartnerapiV1mainOperationError
|
2798
2849
|
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.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
|
@@ -388,6 +388,12 @@ module Google
|
|
388
388
|
include Google::Apis::Core::JsonObjectSupport
|
389
389
|
end
|
390
390
|
|
391
|
+
class StorageDatabasecenterPartnerapiV1mainDatabaseResourceRecommendationSignalData
|
392
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
393
|
+
|
394
|
+
include Google::Apis::Core::JsonObjectSupport
|
395
|
+
end
|
396
|
+
|
391
397
|
class StorageDatabasecenterPartnerapiV1mainOperationError
|
392
398
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
393
399
|
|
@@ -1078,6 +1084,8 @@ module Google
|
|
1078
1084
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1079
1085
|
property :feed_timestamp, as: 'feedTimestamp'
|
1080
1086
|
property :feed_type, as: 'feedType'
|
1087
|
+
property :recommendation_signal_data, as: 'recommendationSignalData', class: Google::Apis::AlloydbV1alpha::StorageDatabasecenterPartnerapiV1mainDatabaseResourceRecommendationSignalData, decorator: Google::Apis::AlloydbV1alpha::StorageDatabasecenterPartnerapiV1mainDatabaseResourceRecommendationSignalData::Representation
|
1088
|
+
|
1081
1089
|
property :resource_health_signal_data, as: 'resourceHealthSignalData', class: Google::Apis::AlloydbV1alpha::StorageDatabasecenterPartnerapiV1mainDatabaseResourceHealthSignalData, decorator: Google::Apis::AlloydbV1alpha::StorageDatabasecenterPartnerapiV1mainDatabaseResourceHealthSignalData::Representation
|
1082
1090
|
|
1083
1091
|
property :resource_id, as: 'resourceId', class: Google::Apis::AlloydbV1alpha::StorageDatabasecenterPartnerapiV1mainDatabaseResourceId, decorator: Google::Apis::AlloydbV1alpha::StorageDatabasecenterPartnerapiV1mainDatabaseResourceId::Representation
|
@@ -1146,6 +1154,17 @@ module Google
|
|
1146
1154
|
end
|
1147
1155
|
end
|
1148
1156
|
|
1157
|
+
class StorageDatabasecenterPartnerapiV1mainDatabaseResourceRecommendationSignalData
|
1158
|
+
# @private
|
1159
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1160
|
+
hash :additional_metadata, as: 'additionalMetadata'
|
1161
|
+
property :last_refresh_time, as: 'lastRefreshTime'
|
1162
|
+
property :recommendation_state, as: 'recommendationState'
|
1163
|
+
property :resource_name, as: 'resourceName'
|
1164
|
+
property :signal_type, as: 'signalType'
|
1165
|
+
end
|
1166
|
+
end
|
1167
|
+
|
1149
1168
|
class StorageDatabasecenterPartnerapiV1mainOperationError
|
1150
1169
|
# @private
|
1151
1170
|
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.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_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.6.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: []
|