google-apis-alloydb_v1beta 0.11.0 → 0.12.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: 219d1a087658fec450ff7ee53f7b8ed6995d26c261e4916df7c1fc583ea5feec
|
4
|
+
data.tar.gz: 13abb6acbd89b6c2c56550bcb48365250ee46312bd893212c87fe0acadc12036
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7c086fe0cd267cbe4ea2bfe8dababd2b37156fa95d5a05239c2385c138c9f16f692813e565d6da697f9db8af0059c7a84ac8072afeb0cb8192926127ef635816
|
7
|
+
data.tar.gz: 4652f165a095804897494a06b8b925b33797160fead7dd829a43ee1beae8526b72401b8ae4499963748f2087d0e0cd099dabc66e896e4104154edc14d8a7b156
|
data/CHANGELOG.md
CHANGED
@@ -765,55 +765,6 @@ module Google
|
|
765
765
|
end
|
766
766
|
end
|
767
767
|
|
768
|
-
# DenyMaintenancePeriod definition. Excepting emergencies, maintenance will not
|
769
|
-
# be scheduled to start within this deny period. The start_date must be less
|
770
|
-
# than the end_date.
|
771
|
-
class DenyMaintenancePeriod
|
772
|
-
include Google::Apis::Core::Hashable
|
773
|
-
|
774
|
-
# Represents a whole or partial calendar date, such as a birthday. The time of
|
775
|
-
# day and time zone are either specified elsewhere or are insignificant. The
|
776
|
-
# date is relative to the Gregorian Calendar. This can represent one of the
|
777
|
-
# following: * A full date, with non-zero year, month, and day values. * A month
|
778
|
-
# and day, with a zero year (for example, an anniversary). * A year on its own,
|
779
|
-
# with a zero month and a zero day. * A year and month, with a zero day (for
|
780
|
-
# example, a credit card expiration date). Related types: * google.type.
|
781
|
-
# TimeOfDay * google.type.DateTime * google.protobuf.Timestamp
|
782
|
-
# Corresponds to the JSON property `endDate`
|
783
|
-
# @return [Google::Apis::AlloydbV1beta::GoogleTypeDate]
|
784
|
-
attr_accessor :end_date
|
785
|
-
|
786
|
-
# Represents a whole or partial calendar date, such as a birthday. The time of
|
787
|
-
# day and time zone are either specified elsewhere or are insignificant. The
|
788
|
-
# date is relative to the Gregorian Calendar. This can represent one of the
|
789
|
-
# following: * A full date, with non-zero year, month, and day values. * A month
|
790
|
-
# and day, with a zero year (for example, an anniversary). * A year on its own,
|
791
|
-
# with a zero month and a zero day. * A year and month, with a zero day (for
|
792
|
-
# example, a credit card expiration date). Related types: * google.type.
|
793
|
-
# TimeOfDay * google.type.DateTime * google.protobuf.Timestamp
|
794
|
-
# Corresponds to the JSON property `startDate`
|
795
|
-
# @return [Google::Apis::AlloydbV1beta::GoogleTypeDate]
|
796
|
-
attr_accessor :start_date
|
797
|
-
|
798
|
-
# Represents a time of day. The date and time zone are either not significant or
|
799
|
-
# are specified elsewhere. An API may choose to allow leap seconds. Related
|
800
|
-
# types are google.type.Date and `google.protobuf.Timestamp`.
|
801
|
-
# Corresponds to the JSON property `time`
|
802
|
-
# @return [Google::Apis::AlloydbV1beta::GoogleTypeTimeOfDay]
|
803
|
-
attr_accessor :time
|
804
|
-
|
805
|
-
def initialize(**args)
|
806
|
-
update!(**args)
|
807
|
-
end
|
808
|
-
|
809
|
-
# Update properties of this object
|
810
|
-
def update!(**args)
|
811
|
-
@end_date = args[:end_date] if args.key?(:end_date)
|
812
|
-
@start_date = args[:start_date] if args.key?(:start_date)
|
813
|
-
@time = args[:time] if args.key?(:time)
|
814
|
-
end
|
815
|
-
end
|
816
|
-
|
817
768
|
# A generic empty message that you can re-use to avoid defining duplicated empty
|
818
769
|
# messages in your APIs. A typical example is to use it as the request or the
|
819
770
|
# response type of an API method. For instance: service Foo ` rpc Bar(google.
|
@@ -1034,47 +985,6 @@ module Google
|
|
1034
985
|
end
|
1035
986
|
end
|
1036
987
|
|
1037
|
-
# Represents a whole or partial calendar date, such as a birthday. The time of
|
1038
|
-
# day and time zone are either specified elsewhere or are insignificant. The
|
1039
|
-
# date is relative to the Gregorian Calendar. This can represent one of the
|
1040
|
-
# following: * A full date, with non-zero year, month, and day values. * A month
|
1041
|
-
# and day, with a zero year (for example, an anniversary). * A year on its own,
|
1042
|
-
# with a zero month and a zero day. * A year and month, with a zero day (for
|
1043
|
-
# example, a credit card expiration date). Related types: * google.type.
|
1044
|
-
# TimeOfDay * google.type.DateTime * google.protobuf.Timestamp
|
1045
|
-
class GoogleTypeDate
|
1046
|
-
include Google::Apis::Core::Hashable
|
1047
|
-
|
1048
|
-
# Day of a month. Must be from 1 to 31 and valid for the year and month, or 0 to
|
1049
|
-
# specify a year by itself or a year and month where the day isn't significant.
|
1050
|
-
# Corresponds to the JSON property `day`
|
1051
|
-
# @return [Fixnum]
|
1052
|
-
attr_accessor :day
|
1053
|
-
|
1054
|
-
# Month of a year. Must be from 1 to 12, or 0 to specify a year without a month
|
1055
|
-
# and day.
|
1056
|
-
# Corresponds to the JSON property `month`
|
1057
|
-
# @return [Fixnum]
|
1058
|
-
attr_accessor :month
|
1059
|
-
|
1060
|
-
# Year of the date. Must be from 1 to 9999, or 0 to specify a date without a
|
1061
|
-
# year.
|
1062
|
-
# Corresponds to the JSON property `year`
|
1063
|
-
# @return [Fixnum]
|
1064
|
-
attr_accessor :year
|
1065
|
-
|
1066
|
-
def initialize(**args)
|
1067
|
-
update!(**args)
|
1068
|
-
end
|
1069
|
-
|
1070
|
-
# Update properties of this object
|
1071
|
-
def update!(**args)
|
1072
|
-
@day = args[:day] if args.key?(:day)
|
1073
|
-
@month = args[:month] if args.key?(:month)
|
1074
|
-
@year = args[:year] if args.key?(:year)
|
1075
|
-
end
|
1076
|
-
end
|
1077
|
-
|
1078
988
|
# Represents a time of day. The date and time zone are either not significant or
|
1079
989
|
# are specified elsewhere. An API may choose to allow leap seconds. Related
|
1080
990
|
# types are google.type.Date and `google.protobuf.Timestamp`.
|
@@ -1656,11 +1566,6 @@ module Google
|
|
1656
1566
|
class MaintenanceUpdatePolicy
|
1657
1567
|
include Google::Apis::Core::Hashable
|
1658
1568
|
|
1659
|
-
# Periods to deny maintenance. Currently limited to 1.
|
1660
|
-
# Corresponds to the JSON property `denyMaintenancePeriods`
|
1661
|
-
# @return [Array<Google::Apis::AlloydbV1beta::DenyMaintenancePeriod>]
|
1662
|
-
attr_accessor :deny_maintenance_periods
|
1663
|
-
|
1664
1569
|
# Preferred windows to perform maintenance. Currently limited to 1.
|
1665
1570
|
# Corresponds to the JSON property `maintenanceWindows`
|
1666
1571
|
# @return [Array<Google::Apis::AlloydbV1beta::MaintenanceWindow>]
|
@@ -1672,7 +1577,6 @@ module Google
|
|
1672
1577
|
|
1673
1578
|
# Update properties of this object
|
1674
1579
|
def update!(**args)
|
1675
|
-
@deny_maintenance_periods = args[:deny_maintenance_periods] if args.key?(:deny_maintenance_periods)
|
1676
1580
|
@maintenance_windows = args[:maintenance_windows] if args.key?(:maintenance_windows)
|
1677
1581
|
end
|
1678
1582
|
end
|
@@ -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.12.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.14.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240410"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -88,12 +88,6 @@ module Google
|
|
88
88
|
include Google::Apis::Core::JsonObjectSupport
|
89
89
|
end
|
90
90
|
|
91
|
-
class DenyMaintenancePeriod
|
92
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
93
|
-
|
94
|
-
include Google::Apis::Core::JsonObjectSupport
|
95
|
-
end
|
96
|
-
|
97
91
|
class Empty
|
98
92
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
99
93
|
|
@@ -142,12 +136,6 @@ module Google
|
|
142
136
|
include Google::Apis::Core::JsonObjectSupport
|
143
137
|
end
|
144
138
|
|
145
|
-
class GoogleTypeDate
|
146
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
147
|
-
|
148
|
-
include Google::Apis::Core::JsonObjectSupport
|
149
|
-
end
|
150
|
-
|
151
139
|
class GoogleTypeTimeOfDay
|
152
140
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
153
141
|
|
@@ -665,18 +653,6 @@ module Google
|
|
665
653
|
end
|
666
654
|
end
|
667
655
|
|
668
|
-
class DenyMaintenancePeriod
|
669
|
-
# @private
|
670
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
671
|
-
property :end_date, as: 'endDate', class: Google::Apis::AlloydbV1beta::GoogleTypeDate, decorator: Google::Apis::AlloydbV1beta::GoogleTypeDate::Representation
|
672
|
-
|
673
|
-
property :start_date, as: 'startDate', class: Google::Apis::AlloydbV1beta::GoogleTypeDate, decorator: Google::Apis::AlloydbV1beta::GoogleTypeDate::Representation
|
674
|
-
|
675
|
-
property :time, as: 'time', class: Google::Apis::AlloydbV1beta::GoogleTypeTimeOfDay, decorator: Google::Apis::AlloydbV1beta::GoogleTypeTimeOfDay::Representation
|
676
|
-
|
677
|
-
end
|
678
|
-
end
|
679
|
-
|
680
656
|
class Empty
|
681
657
|
# @private
|
682
658
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -740,15 +716,6 @@ module Google
|
|
740
716
|
end
|
741
717
|
end
|
742
718
|
|
743
|
-
class GoogleTypeDate
|
744
|
-
# @private
|
745
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
746
|
-
property :day, as: 'day'
|
747
|
-
property :month, as: 'month'
|
748
|
-
property :year, as: 'year'
|
749
|
-
end
|
750
|
-
end
|
751
|
-
|
752
719
|
class GoogleTypeTimeOfDay
|
753
720
|
# @private
|
754
721
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -906,8 +873,6 @@ module Google
|
|
906
873
|
class MaintenanceUpdatePolicy
|
907
874
|
# @private
|
908
875
|
class Representation < Google::Apis::Core::JsonRepresentation
|
909
|
-
collection :deny_maintenance_periods, as: 'denyMaintenancePeriods', class: Google::Apis::AlloydbV1beta::DenyMaintenancePeriod, decorator: Google::Apis::AlloydbV1beta::DenyMaintenancePeriod::Representation
|
910
|
-
|
911
876
|
collection :maintenance_windows, as: 'maintenanceWindows', class: Google::Apis::AlloydbV1beta::MaintenanceWindow, decorator: Google::Apis::AlloydbV1beta::MaintenanceWindow::Representation
|
912
877
|
|
913
878
|
end
|
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.12.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-04-21 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.12.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: []
|