google-apis-sqladmin_v1beta4 0.25.0 → 0.28.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: 95a5857959d6e23d4e11fa0667341948f32832385b34d0b211b403e9b3801809
|
4
|
+
data.tar.gz: 2b57eaab0f7aa5617d0f4b9f0464761586f9770334878d8f4107c53ae4107f90
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 11a6cd2df90f3dbe9d16e6d2658e544356fdf1d09efb2346faa06c02ec9ce410d0db2ce41238ec9d74cd52387e3094cb99efaad7cd9467f64ab9c5db2c67f37d
|
7
|
+
data.tar.gz: 171f244b56796c2dcef1bea74e66c6b02e96ec205fb588c83036c9bbb71872a57c17d63ce7241238c3659fef32d915f8678673ebc8ff4948f3f53e61fc6d8a4b
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,17 @@
|
|
1
1
|
# Release history for google-apis-sqladmin_v1beta4
|
2
2
|
|
3
|
+
### v0.28.0 (2022-05-25)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20220513
|
6
|
+
|
7
|
+
### v0.27.0 (2022-04-02)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20220323
|
10
|
+
|
11
|
+
### v0.26.0 (2022-03-23)
|
12
|
+
|
13
|
+
* Regenerated from discovery document revision 20220310
|
14
|
+
|
3
15
|
### v0.25.0 (2022-02-18)
|
4
16
|
|
5
17
|
* Regenerated from discovery document revision 20220215
|
@@ -774,7 +774,7 @@ module Google
|
|
774
774
|
attr_accessor :satisfies_pzs
|
775
775
|
alias_method :satisfies_pzs?, :satisfies_pzs
|
776
776
|
|
777
|
-
# Any scheduled
|
777
|
+
# Any scheduled maintenance for this instance.
|
778
778
|
# Corresponds to the JSON property `scheduledMaintenance`
|
779
779
|
# @return [Google::Apis::SqladminV1beta4::SqlScheduledMaintenance]
|
780
780
|
attr_accessor :scheduled_maintenance
|
@@ -2565,6 +2565,12 @@ module Google
|
|
2565
2565
|
attr_accessor :disallow_username_substring
|
2566
2566
|
alias_method :disallow_username_substring?, :disallow_username_substring
|
2567
2567
|
|
2568
|
+
# Whether the password policy is enabled or not.
|
2569
|
+
# Corresponds to the JSON property `enablePasswordPolicy`
|
2570
|
+
# @return [Boolean]
|
2571
|
+
attr_accessor :enable_password_policy
|
2572
|
+
alias_method :enable_password_policy?, :enable_password_policy
|
2573
|
+
|
2568
2574
|
# Minimum number of characters allowed.
|
2569
2575
|
# Corresponds to the JSON property `minLength`
|
2570
2576
|
# @return [Fixnum]
|
@@ -2589,6 +2595,7 @@ module Google
|
|
2589
2595
|
def update!(**args)
|
2590
2596
|
@complexity = args[:complexity] if args.key?(:complexity)
|
2591
2597
|
@disallow_username_substring = args[:disallow_username_substring] if args.key?(:disallow_username_substring)
|
2598
|
+
@enable_password_policy = args[:enable_password_policy] if args.key?(:enable_password_policy)
|
2592
2599
|
@min_length = args[:min_length] if args.key?(:min_length)
|
2593
2600
|
@password_change_interval = args[:password_change_interval] if args.key?(:password_change_interval)
|
2594
2601
|
@reuse_interval = args[:reuse_interval] if args.key?(:reuse_interval)
|
@@ -3127,7 +3134,7 @@ module Google
|
|
3127
3134
|
end
|
3128
3135
|
end
|
3129
3136
|
|
3130
|
-
# Any scheduled
|
3137
|
+
# Any scheduled maintenance for this instance.
|
3131
3138
|
class SqlScheduledMaintenance
|
3132
3139
|
include Google::Apis::Core::Hashable
|
3133
3140
|
|
@@ -3180,6 +3187,16 @@ module Google
|
|
3180
3187
|
# @return [String]
|
3181
3188
|
attr_accessor :kind
|
3182
3189
|
|
3190
|
+
# How long to keep generated audit files.
|
3191
|
+
# Corresponds to the JSON property `retentionInterval`
|
3192
|
+
# @return [String]
|
3193
|
+
attr_accessor :retention_interval
|
3194
|
+
|
3195
|
+
# How often to upload generated audit files.
|
3196
|
+
# Corresponds to the JSON property `uploadInterval`
|
3197
|
+
# @return [String]
|
3198
|
+
attr_accessor :upload_interval
|
3199
|
+
|
3183
3200
|
def initialize(**args)
|
3184
3201
|
update!(**args)
|
3185
3202
|
end
|
@@ -3188,6 +3205,8 @@ module Google
|
|
3188
3205
|
def update!(**args)
|
3189
3206
|
@bucket = args[:bucket] if args.key?(:bucket)
|
3190
3207
|
@kind = args[:kind] if args.key?(:kind)
|
3208
|
+
@retention_interval = args[:retention_interval] if args.key?(:retention_interval)
|
3209
|
+
@upload_interval = args[:upload_interval] if args.key?(:upload_interval)
|
3191
3210
|
end
|
3192
3211
|
end
|
3193
3212
|
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module SqladminV1beta4
|
18
18
|
# Version of the google-apis-sqladmin_v1beta4 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.28.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.4.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20220513"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -1216,6 +1216,7 @@ module Google
|
|
1216
1216
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1217
1217
|
property :complexity, as: 'complexity'
|
1218
1218
|
property :disallow_username_substring, as: 'disallowUsernameSubstring'
|
1219
|
+
property :enable_password_policy, as: 'enablePasswordPolicy'
|
1219
1220
|
property :min_length, as: 'minLength'
|
1220
1221
|
property :password_change_interval, as: 'passwordChangeInterval'
|
1221
1222
|
property :reuse_interval, as: 'reuseInterval'
|
@@ -1380,6 +1381,8 @@ module Google
|
|
1380
1381
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1381
1382
|
property :bucket, as: 'bucket'
|
1382
1383
|
property :kind, as: 'kind'
|
1384
|
+
property :retention_interval, as: 'retentionInterval'
|
1385
|
+
property :upload_interval, as: 'uploadInterval'
|
1383
1386
|
end
|
1384
1387
|
end
|
1385
1388
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-sqladmin_v1beta4
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.28.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: 2022-
|
11
|
+
date: 2022-05-30 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-sqladmin_v1beta4/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-sqladmin_v1beta4/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-sqladmin_v1beta4/v0.28.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-sqladmin_v1beta4
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
75
|
- !ruby/object:Gem::Version
|
76
76
|
version: '0'
|
77
77
|
requirements: []
|
78
|
-
rubygems_version: 3.3.
|
78
|
+
rubygems_version: 3.3.14
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Cloud SQL Admin API V1beta4
|