google-apis-sqladmin_v1 0.34.0 → 0.35.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: ab4005cb7ba1cd249befe2b9b209be32d127d249f21b3b275004481577eea975
|
4
|
+
data.tar.gz: 69418ee071e54c6ab3e58e28b0d54f97892c2e8e4257eaa0b1aaa8fd73845e2e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3cb13804ad4556064d33693de83945f05a5196f855a248e58667a81bde32a531e31b6d206b34745b6f8943b9968d9ed4077951c6f7b207451aa222dadee73db0
|
7
|
+
data.tar.gz: d56396b67394837284511614a56662f1ee362f750de4aa54d1c2e6856acd5b81600ba35fa49ed2a3e200a32570a427287c9d751cce7adf64cbb084817b6f0873
|
data/CHANGELOG.md
CHANGED
@@ -60,6 +60,25 @@ module Google
|
|
60
60
|
end
|
61
61
|
end
|
62
62
|
|
63
|
+
# Specifies options for controlling advanced machine features.
|
64
|
+
class AdvancedMachineFeatures
|
65
|
+
include Google::Apis::Core::Hashable
|
66
|
+
|
67
|
+
# The number of threads per physical core.
|
68
|
+
# Corresponds to the JSON property `threadsPerCore`
|
69
|
+
# @return [Fixnum]
|
70
|
+
attr_accessor :threads_per_core
|
71
|
+
|
72
|
+
def initialize(**args)
|
73
|
+
update!(**args)
|
74
|
+
end
|
75
|
+
|
76
|
+
# Update properties of this object
|
77
|
+
def update!(**args)
|
78
|
+
@threads_per_core = args[:threads_per_core] if args.key?(:threads_per_core)
|
79
|
+
end
|
80
|
+
end
|
81
|
+
|
63
82
|
# An Admin API warning message.
|
64
83
|
class ApiWarning
|
65
84
|
include Google::Apis::Core::Hashable
|
@@ -630,7 +649,7 @@ module Google
|
|
630
649
|
class DatabaseInstance
|
631
650
|
include Google::Apis::Core::Hashable
|
632
651
|
|
633
|
-
# List all maintenance versions applicable on the instance
|
652
|
+
# Output only. List all maintenance versions applicable on the instance
|
634
653
|
# Corresponds to the JSON property `availableMaintenanceVersions`
|
635
654
|
# @return [Array<String>]
|
636
655
|
attr_accessor :available_maintenance_versions
|
@@ -2890,6 +2909,11 @@ module Google
|
|
2890
2909
|
# @return [Google::Apis::SqladminV1::SqlActiveDirectoryConfig]
|
2891
2910
|
attr_accessor :active_directory_config
|
2892
2911
|
|
2912
|
+
# Specifies options for controlling advanced machine features.
|
2913
|
+
# Corresponds to the JSON property `advancedMachineFeatures`
|
2914
|
+
# @return [Google::Apis::SqladminV1::AdvancedMachineFeatures]
|
2915
|
+
attr_accessor :advanced_machine_features
|
2916
|
+
|
2893
2917
|
# The App Engine app IDs that can access this instance. (Deprecated) Applied to
|
2894
2918
|
# First Generation instances only.
|
2895
2919
|
# Corresponds to the JSON property `authorizedGaeApplications`
|
@@ -3066,6 +3090,7 @@ module Google
|
|
3066
3090
|
def update!(**args)
|
3067
3091
|
@activation_policy = args[:activation_policy] if args.key?(:activation_policy)
|
3068
3092
|
@active_directory_config = args[:active_directory_config] if args.key?(:active_directory_config)
|
3093
|
+
@advanced_machine_features = args[:advanced_machine_features] if args.key?(:advanced_machine_features)
|
3069
3094
|
@authorized_gae_applications = args[:authorized_gae_applications] if args.key?(:authorized_gae_applications)
|
3070
3095
|
@availability_type = args[:availability_type] if args.key?(:availability_type)
|
3071
3096
|
@backup_configuration = args[:backup_configuration] if args.key?(:backup_configuration)
|
@@ -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.35.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.12.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20230405"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -28,6 +28,12 @@ module Google
|
|
28
28
|
include Google::Apis::Core::JsonObjectSupport
|
29
29
|
end
|
30
30
|
|
31
|
+
class AdvancedMachineFeatures
|
32
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
33
|
+
|
34
|
+
include Google::Apis::Core::JsonObjectSupport
|
35
|
+
end
|
36
|
+
|
31
37
|
class ApiWarning
|
32
38
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
33
39
|
|
@@ -590,6 +596,13 @@ module Google
|
|
590
596
|
end
|
591
597
|
end
|
592
598
|
|
599
|
+
class AdvancedMachineFeatures
|
600
|
+
# @private
|
601
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
602
|
+
property :threads_per_core, as: 'threadsPerCore'
|
603
|
+
end
|
604
|
+
end
|
605
|
+
|
593
606
|
class ApiWarning
|
594
607
|
# @private
|
595
608
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1329,6 +1342,8 @@ module Google
|
|
1329
1342
|
property :activation_policy, as: 'activationPolicy'
|
1330
1343
|
property :active_directory_config, as: 'activeDirectoryConfig', class: Google::Apis::SqladminV1::SqlActiveDirectoryConfig, decorator: Google::Apis::SqladminV1::SqlActiveDirectoryConfig::Representation
|
1331
1344
|
|
1345
|
+
property :advanced_machine_features, as: 'advancedMachineFeatures', class: Google::Apis::SqladminV1::AdvancedMachineFeatures, decorator: Google::Apis::SqladminV1::AdvancedMachineFeatures::Representation
|
1346
|
+
|
1332
1347
|
collection :authorized_gae_applications, as: 'authorizedGaeApplications'
|
1333
1348
|
property :availability_type, as: 'availabilityType'
|
1334
1349
|
property :backup_configuration, as: 'backupConfiguration', class: Google::Apis::SqladminV1::BackupConfiguration, decorator: Google::Apis::SqladminV1::BackupConfiguration::Representation
|
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.35.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: 2023-
|
11
|
+
date: 2023-04-23 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.35.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: []
|