google-apis-sqladmin_v1 0.14.0 → 0.17.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: fc6d3a0eab6b292f274c02a32d137caed26f3d0d9c27d3e001e9bcef743ad3a3
4
- data.tar.gz: e704b760ddeb5c6681de20187ed6cee6298a60256fc08ad0ad7bd388f64c7320
3
+ metadata.gz: 18c1c39aa59bb5442820488bb8057560b737d2d08752247e4f6eec66914c4664
4
+ data.tar.gz: 443cb7dfdd9c3d9829ddbe272dbeea2bf5574186273352a9839eee98c08710ff
5
5
  SHA512:
6
- metadata.gz: ce0e51c69ba9d921dd8e111e690ab82856243e76913b44186c4450120bb9d4bfa110994d8449d447d32c6fc1c3c444efbe7473adcbc50c9730cbbd043cf97628
7
- data.tar.gz: a06ab47fb04a2f2c2007eb9a490af855354212afb135dbad36268ba5c524144a8068fdd32e9633aee8df0c78aee13cb2cf430d7e531195d1399073af709f4596
6
+ metadata.gz: 6c041ceb724c4932265b8375057f0f7646ce7106a0e5506d5454e19e8cfc42078cacc1bd1a5e0534edabccfa9f874e4f1a776d4aaabce67843b058226f275679
7
+ data.tar.gz: bce6815b48e517e2ec5a402467f5a8632aeb7d11a1c9c224757fcd20d54299355338d2bbee80f923eb37d0ff60aa5f8ee63bfa97ffc1966210533dcd540dc2a7
data/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # Release history for google-apis-sqladmin_v1
2
2
 
3
+ ### v0.17.0 (2022-05-25)
4
+
5
+ * Regenerated from discovery document revision 20220513
6
+
7
+ ### v0.16.0 (2022-04-02)
8
+
9
+ * Regenerated from discovery document revision 20220323
10
+
11
+ ### v0.15.0 (2022-03-23)
12
+
13
+ * Regenerated from discovery document revision 20220310
14
+
3
15
  ### v0.14.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 maintenancce for this instance.
777
+ # Any scheduled maintenance for this instance.
778
778
  # Corresponds to the JSON property `scheduledMaintenance`
779
779
  # @return [Google::Apis::SqladminV1::SqlScheduledMaintenance]
780
780
  attr_accessor :scheduled_maintenance
@@ -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)
@@ -3126,7 +3133,7 @@ module Google
3126
3133
  end
3127
3134
  end
3128
3135
 
3129
- # Any scheduled maintenancce for this instance.
3136
+ # Any scheduled maintenance for this instance.
3130
3137
  class SqlScheduledMaintenance
3131
3138
  include Google::Apis::Core::Hashable
3132
3139
 
@@ -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.14.0"
19
+ GEM_VERSION = "0.17.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 = "20220215"
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_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.14.0
4
+ version: 0.17.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-21 00:00:00.000000000 Z
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_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-sqladmin_v1/v0.14.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-sqladmin_v1/v0.17.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: []
@@ -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.5
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 V1