google-apis-sqladmin_v1 0.13.0 → 0.16.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: 524663ec90e231b90889b8f6c354307b71a735bed906ebed9a5e139aa607a099
4
- data.tar.gz: e3b7ffb83025dc42f62e1e06637724eb972254eaf41fc27ae0f45109fd3c256e
3
+ metadata.gz: 2fee36af24111573c7a5bcd2e4be571be058e5d44bfc94b4e9ed98a779f0009f
4
+ data.tar.gz: a53d8d9f15d6f4ea8ffc7060acb79ab5424c8387fa31575fac4c3f17989f6180
5
5
  SHA512:
6
- metadata.gz: 3f7c7d963493681b0eb641b6bb471b56aa7169b248d6313250c572d28e9c02b47efc5163a7d527948f56ef3a00691b94d784fac3e10b9340514aaeacfe416b2a
7
- data.tar.gz: 48f62f581590124980a7c2227c5fbb5f6294344f8b6ea614b0e241c2d2491152ef63764050f94542693cddb3c179a47e3967056f255083f944c5fc77f7cee16b
6
+ metadata.gz: ce15105362470473f2f0f4da534f0d1d644bf4a98e93a0906f07f2fc8979809822cd5624688e9a9be42890839eb480e117c3db6ca7d74b77d60051a737923539
7
+ data.tar.gz: 0e63aa08023340f57746389e84e275335e9fff06976ab1b8802fc4a98d723d520085c144436f0436cc4a1695d7255ed8d723b1378acebca6fa9a6614669cdbe7
data/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # Release history for google-apis-sqladmin_v1
2
2
 
3
+ ### v0.16.0 (2022-04-02)
4
+
5
+ * Regenerated from discovery document revision 20220323
6
+
7
+ ### v0.15.0 (2022-03-23)
8
+
9
+ * Regenerated from discovery document revision 20220310
10
+
11
+ ### v0.14.0 (2022-02-18)
12
+
13
+ * Regenerated from discovery document revision 20220215
14
+
3
15
  ### v0.13.0 (2022-02-05)
4
16
 
5
17
  * Regenerated from discovery document revision 20220127
@@ -782,7 +782,7 @@ module Google
782
782
  # The Compute Engine zone that the failover instance is currently serving from
783
783
  # for a regional instance. This value could be different from the zone that was
784
784
  # specified when the instance was created if the instance has failed over to its
785
- # secondary/failover zone. Reserved for future use.
785
+ # secondary/failover zone.
786
786
  # Corresponds to the JSON property `secondaryGceZone`
787
787
  # @return [String]
788
788
  attr_accessor :secondary_gce_zone
@@ -2080,7 +2080,7 @@ module Google
2080
2080
  attr_accessor :kind
2081
2081
 
2082
2082
  # The preferred Compute Engine zone for the secondary/failover (for example: us-
2083
- # central1-a, us-central1-b, etc.). Reserved for future use.
2083
+ # central1-a, us-central1-b, etc.).
2084
2084
  # Corresponds to the JSON property `secondaryZone`
2085
2085
  # @return [String]
2086
2086
  attr_accessor :secondary_zone
@@ -2564,6 +2564,12 @@ module Google
2564
2564
  attr_accessor :disallow_username_substring
2565
2565
  alias_method :disallow_username_substring?, :disallow_username_substring
2566
2566
 
2567
+ # Whether the password policy is enabled or not.
2568
+ # Corresponds to the JSON property `enablePasswordPolicy`
2569
+ # @return [Boolean]
2570
+ attr_accessor :enable_password_policy
2571
+ alias_method :enable_password_policy?, :enable_password_policy
2572
+
2567
2573
  # Minimum number of characters allowed.
2568
2574
  # Corresponds to the JSON property `minLength`
2569
2575
  # @return [Fixnum]
@@ -2588,6 +2594,7 @@ module Google
2588
2594
  def update!(**args)
2589
2595
  @complexity = args[:complexity] if args.key?(:complexity)
2590
2596
  @disallow_username_substring = args[:disallow_username_substring] if args.key?(:disallow_username_substring)
2597
+ @enable_password_policy = args[:enable_password_policy] if args.key?(:enable_password_policy)
2591
2598
  @min_length = args[:min_length] if args.key?(:min_length)
2592
2599
  @password_change_interval = args[:password_change_interval] if args.key?(:password_change_interval)
2593
2600
  @reuse_interval = args[:reuse_interval] if args.key?(:reuse_interval)
@@ -3179,6 +3186,16 @@ module Google
3179
3186
  # @return [String]
3180
3187
  attr_accessor :kind
3181
3188
 
3189
+ # How long to keep generated audit files.
3190
+ # Corresponds to the JSON property `retentionInterval`
3191
+ # @return [String]
3192
+ attr_accessor :retention_interval
3193
+
3194
+ # How often to upload generated audit files.
3195
+ # Corresponds to the JSON property `uploadInterval`
3196
+ # @return [String]
3197
+ attr_accessor :upload_interval
3198
+
3182
3199
  def initialize(**args)
3183
3200
  update!(**args)
3184
3201
  end
@@ -3187,6 +3204,8 @@ module Google
3187
3204
  def update!(**args)
3188
3205
  @bucket = args[:bucket] if args.key?(:bucket)
3189
3206
  @kind = args[:kind] if args.key?(:kind)
3207
+ @retention_interval = args[:retention_interval] if args.key?(:retention_interval)
3208
+ @upload_interval = args[:upload_interval] if args.key?(:upload_interval)
3190
3209
  end
3191
3210
  end
3192
3211
 
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module SqladminV1
18
18
  # Version of the google-apis-sqladmin_v1 gem
19
- GEM_VERSION = "0.13.0"
19
+ GEM_VERSION = "0.16.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 = "20220127"
25
+ REVISION = "20220323"
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_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.13.0
4
+ version: 0.16.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-02-07 00:00:00.000000000 Z
11
+ date: 2022-04-04 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_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-sqladmin_v1/v0.13.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-sqladmin_v1/v0.16.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-sqladmin_v1
63
63
  post_install_message:
64
64
  rdoc_options: []