google-apis-sqladmin_v1 0.8.0 → 0.12.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 +4 -4
- data/CHANGELOG.md +18 -0
- data/OVERVIEW.md +1 -1
- data/lib/google/apis/sqladmin_v1/classes.rb +326 -198
- data/lib/google/apis/sqladmin_v1/gem_version.rb +3 -3
- data/lib/google/apis/sqladmin_v1/representations.rb +54 -0
- data/lib/google/apis/sqladmin_v1/service.rb +2 -2
- metadata +4 -4
@@ -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.
|
19
|
+
GEM_VERSION = "0.12.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.4.
|
22
|
+
GENERATOR_VERSION = "0.4.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20220117"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -364,6 +364,18 @@ module Google
|
|
364
364
|
include Google::Apis::Core::JsonObjectSupport
|
365
365
|
end
|
366
366
|
|
367
|
+
class PasswordStatus
|
368
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
369
|
+
|
370
|
+
include Google::Apis::Core::JsonObjectSupport
|
371
|
+
end
|
372
|
+
|
373
|
+
class PasswordValidationPolicy
|
374
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
375
|
+
|
376
|
+
include Google::Apis::Core::JsonObjectSupport
|
377
|
+
end
|
378
|
+
|
367
379
|
class ReplicaConfiguration
|
368
380
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
369
381
|
|
@@ -526,6 +538,12 @@ module Google
|
|
526
538
|
include Google::Apis::Core::JsonObjectSupport
|
527
539
|
end
|
528
540
|
|
541
|
+
class UserPasswordValidationPolicy
|
542
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
543
|
+
|
544
|
+
include Google::Apis::Core::JsonObjectSupport
|
545
|
+
end
|
546
|
+
|
529
547
|
class UsersListResponse
|
530
548
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
531
549
|
|
@@ -630,6 +648,7 @@ module Google
|
|
630
648
|
class CloneContext
|
631
649
|
# @private
|
632
650
|
class Representation < Google::Apis::Core::JsonRepresentation
|
651
|
+
property :allocated_ip_range, as: 'allocatedIpRange'
|
633
652
|
property :bin_log_coordinates, as: 'binLogCoordinates', class: Google::Apis::SqladminV1::BinLogCoordinates, decorator: Google::Apis::SqladminV1::BinLogCoordinates::Representation
|
634
653
|
|
635
654
|
property :destination_instance_name, as: 'destinationInstanceName'
|
@@ -684,6 +703,7 @@ module Google
|
|
684
703
|
property :connection_name, as: 'connectionName'
|
685
704
|
property :create_time, as: 'createTime'
|
686
705
|
property :current_disk_size, :numeric_string => true, as: 'currentDiskSize'
|
706
|
+
property :database_installed_version, as: 'databaseInstalledVersion'
|
687
707
|
property :database_version, as: 'databaseVersion'
|
688
708
|
property :disk_encryption_configuration, as: 'diskEncryptionConfiguration', class: Google::Apis::SqladminV1::DiskEncryptionConfiguration, decorator: Google::Apis::SqladminV1::DiskEncryptionConfiguration::Representation
|
689
709
|
|
@@ -1181,6 +1201,25 @@ module Google
|
|
1181
1201
|
end
|
1182
1202
|
end
|
1183
1203
|
|
1204
|
+
class PasswordStatus
|
1205
|
+
# @private
|
1206
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1207
|
+
property :locked, as: 'locked'
|
1208
|
+
property :password_expiration_time, as: 'passwordExpirationTime'
|
1209
|
+
end
|
1210
|
+
end
|
1211
|
+
|
1212
|
+
class PasswordValidationPolicy
|
1213
|
+
# @private
|
1214
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1215
|
+
property :complexity, as: 'complexity'
|
1216
|
+
property :disallow_username_substring, as: 'disallowUsernameSubstring'
|
1217
|
+
property :min_length, as: 'minLength'
|
1218
|
+
property :password_change_interval, as: 'passwordChangeInterval'
|
1219
|
+
property :reuse_interval, as: 'reuseInterval'
|
1220
|
+
end
|
1221
|
+
end
|
1222
|
+
|
1184
1223
|
class ReplicaConfiguration
|
1185
1224
|
# @private
|
1186
1225
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1245,6 +1284,8 @@ module Google
|
|
1245
1284
|
|
1246
1285
|
property :maintenance_window, as: 'maintenanceWindow', class: Google::Apis::SqladminV1::MaintenanceWindow, decorator: Google::Apis::SqladminV1::MaintenanceWindow::Representation
|
1247
1286
|
|
1287
|
+
property :password_validation_policy, as: 'passwordValidationPolicy', class: Google::Apis::SqladminV1::PasswordValidationPolicy, decorator: Google::Apis::SqladminV1::PasswordValidationPolicy::Representation
|
1288
|
+
|
1248
1289
|
property :pricing_plan, as: 'pricingPlan'
|
1249
1290
|
property :replication_type, as: 'replicationType'
|
1250
1291
|
property :settings_version, :numeric_string => true, as: 'settingsVersion'
|
@@ -1462,6 +1503,8 @@ module Google
|
|
1462
1503
|
property :kind, as: 'kind'
|
1463
1504
|
property :name, as: 'name'
|
1464
1505
|
property :password, as: 'password'
|
1506
|
+
property :password_policy, as: 'passwordPolicy', class: Google::Apis::SqladminV1::UserPasswordValidationPolicy, decorator: Google::Apis::SqladminV1::UserPasswordValidationPolicy::Representation
|
1507
|
+
|
1465
1508
|
property :project, as: 'project'
|
1466
1509
|
property :sqlserver_user_details, as: 'sqlserverUserDetails', class: Google::Apis::SqladminV1::SqlServerUserDetails, decorator: Google::Apis::SqladminV1::SqlServerUserDetails::Representation
|
1467
1510
|
|
@@ -1469,6 +1512,17 @@ module Google
|
|
1469
1512
|
end
|
1470
1513
|
end
|
1471
1514
|
|
1515
|
+
class UserPasswordValidationPolicy
|
1516
|
+
# @private
|
1517
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1518
|
+
property :allowed_failed_attempts, as: 'allowedFailedAttempts'
|
1519
|
+
property :enable_failed_attempts_check, as: 'enableFailedAttemptsCheck'
|
1520
|
+
property :password_expiration_duration, as: 'passwordExpirationDuration'
|
1521
|
+
property :status, as: 'status', class: Google::Apis::SqladminV1::PasswordStatus, decorator: Google::Apis::SqladminV1::PasswordStatus::Representation
|
1522
|
+
|
1523
|
+
end
|
1524
|
+
end
|
1525
|
+
|
1472
1526
|
class UsersListResponse
|
1473
1527
|
# @private
|
1474
1528
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1655,8 +1655,8 @@ module Google
|
|
1655
1655
|
execute_or_queue_command(command, &block)
|
1656
1656
|
end
|
1657
1657
|
|
1658
|
-
# Lists all available machine types (tiers) for Cloud SQL, for example, db-
|
1659
|
-
# custom-1-3840
|
1658
|
+
# Lists all available machine types (tiers) for Cloud SQL, for example, `db-
|
1659
|
+
# custom-1-3840`. For more information, see https://cloud.google.com/sql/pricing.
|
1660
1660
|
# @param [String] project
|
1661
1661
|
# Project ID of the project for which to list tiers.
|
1662
1662
|
# @param [String] fields
|
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.
|
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:
|
11
|
+
date: 2022-01-31 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.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-sqladmin_v1/v0.12.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.
|
78
|
+
rubygems_version: 3.3.5
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Cloud SQL Admin API V1
|