google-apis-sqladmin_v1 0.90.0 → 0.91.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: 84ffc26abf125ea1da16b7283aba3141f94d65b5b3ffebe7b1b42a515d3c0734
|
|
4
|
+
data.tar.gz: 5b37ed9935153e17097301969fa6aaf5038821e98977253157c0c28941ac9648
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4e028a713d07dfade6fa09f0b0db8c931fa93d946dfe6c895e89e694c7a84b5ee894f5745e0360f1a859b5d0e443188cafaf6c2d31ec29a390f7401e1c01f497
|
|
7
|
+
data.tar.gz: 98571b80338e0833ccc01641aa5e215a4f3fca3f009bcb25407854c36981bd0c4adfa0d50ea5e45960414e4b8d82a2d5d5ee1d842ec22a77f3c3def531db7fe1
|
data/CHANGELOG.md
CHANGED
|
@@ -1832,11 +1832,16 @@ module Google
|
|
|
1832
1832
|
# @return [String]
|
|
1833
1833
|
attr_accessor :dns_scope
|
|
1834
1834
|
|
|
1835
|
-
# The DNS name.
|
|
1835
|
+
# Output only. The DNS name.
|
|
1836
1836
|
# Corresponds to the JSON property `name`
|
|
1837
1837
|
# @return [String]
|
|
1838
1838
|
attr_accessor :name
|
|
1839
1839
|
|
|
1840
|
+
# Output only. The manager for this DNS record.
|
|
1841
|
+
# Corresponds to the JSON property `recordManager`
|
|
1842
|
+
# @return [String]
|
|
1843
|
+
attr_accessor :record_manager
|
|
1844
|
+
|
|
1840
1845
|
def initialize(**args)
|
|
1841
1846
|
update!(**args)
|
|
1842
1847
|
end
|
|
@@ -1846,6 +1851,7 @@ module Google
|
|
|
1846
1851
|
@connection_type = args[:connection_type] if args.key?(:connection_type)
|
|
1847
1852
|
@dns_scope = args[:dns_scope] if args.key?(:dns_scope)
|
|
1848
1853
|
@name = args[:name] if args.key?(:name)
|
|
1854
|
+
@record_manager = args[:record_manager] if args.key?(:record_manager)
|
|
1849
1855
|
end
|
|
1850
1856
|
end
|
|
1851
1857
|
|
|
@@ -1869,6 +1875,13 @@ module Google
|
|
|
1869
1875
|
class ExecuteSqlPayload
|
|
1870
1876
|
include Google::Apis::Core::Hashable
|
|
1871
1877
|
|
|
1878
|
+
# Optional. Specifies the name of the application that is making the request.
|
|
1879
|
+
# This field is used for telemetry. Only alphanumeric characters, dashes, and
|
|
1880
|
+
# underscores are allowed. The maximum length is 32 characters.
|
|
1881
|
+
# Corresponds to the JSON property `application`
|
|
1882
|
+
# @return [String]
|
|
1883
|
+
attr_accessor :application
|
|
1884
|
+
|
|
1872
1885
|
# Optional. When set to true, the API caller identity associated with the
|
|
1873
1886
|
# request is used for database authentication. The API caller must be an IAM
|
|
1874
1887
|
# user in the database.
|
|
@@ -1913,6 +1926,7 @@ module Google
|
|
|
1913
1926
|
|
|
1914
1927
|
# Update properties of this object
|
|
1915
1928
|
def update!(**args)
|
|
1929
|
+
@application = args[:application] if args.key?(:application)
|
|
1916
1930
|
@auto_iam_authn = args[:auto_iam_authn] if args.key?(:auto_iam_authn)
|
|
1917
1931
|
@database = args[:database] if args.key?(:database)
|
|
1918
1932
|
@partial_result_mode = args[:partial_result_mode] if args.key?(:partial_result_mode)
|
|
@@ -2922,6 +2936,12 @@ module Google
|
|
|
2922
2936
|
class InsightsConfig
|
|
2923
2937
|
include Google::Apis::Core::Hashable
|
|
2924
2938
|
|
|
2939
|
+
# Optional. Whether enhanced query insights feature is enabled.
|
|
2940
|
+
# Corresponds to the JSON property `enhancedQueryInsightsEnabled`
|
|
2941
|
+
# @return [Boolean]
|
|
2942
|
+
attr_accessor :enhanced_query_insights_enabled
|
|
2943
|
+
alias_method :enhanced_query_insights_enabled?, :enhanced_query_insights_enabled
|
|
2944
|
+
|
|
2925
2945
|
# Whether Query Insights feature is enabled.
|
|
2926
2946
|
# Corresponds to the JSON property `queryInsightsEnabled`
|
|
2927
2947
|
# @return [Boolean]
|
|
@@ -2960,6 +2980,7 @@ module Google
|
|
|
2960
2980
|
|
|
2961
2981
|
# Update properties of this object
|
|
2962
2982
|
def update!(**args)
|
|
2983
|
+
@enhanced_query_insights_enabled = args[:enhanced_query_insights_enabled] if args.key?(:enhanced_query_insights_enabled)
|
|
2963
2984
|
@query_insights_enabled = args[:query_insights_enabled] if args.key?(:query_insights_enabled)
|
|
2964
2985
|
@query_plans_per_minute = args[:query_plans_per_minute] if args.key?(:query_plans_per_minute)
|
|
2965
2986
|
@query_string_length = args[:query_string_length] if args.key?(:query_string_length)
|
|
@@ -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.91.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260106"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -1360,6 +1360,7 @@ module Google
|
|
|
1360
1360
|
property :connection_type, as: 'connectionType'
|
|
1361
1361
|
property :dns_scope, as: 'dnsScope'
|
|
1362
1362
|
property :name, as: 'name'
|
|
1363
|
+
property :record_manager, as: 'recordManager'
|
|
1363
1364
|
end
|
|
1364
1365
|
end
|
|
1365
1366
|
|
|
@@ -1372,6 +1373,7 @@ module Google
|
|
|
1372
1373
|
class ExecuteSqlPayload
|
|
1373
1374
|
# @private
|
|
1374
1375
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1376
|
+
property :application, as: 'application'
|
|
1375
1377
|
property :auto_iam_authn, as: 'autoIamAuthn'
|
|
1376
1378
|
property :database, as: 'database'
|
|
1377
1379
|
property :partial_result_mode, as: 'partialResultMode'
|
|
@@ -1630,6 +1632,7 @@ module Google
|
|
|
1630
1632
|
class InsightsConfig
|
|
1631
1633
|
# @private
|
|
1632
1634
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1635
|
+
property :enhanced_query_insights_enabled, as: 'enhancedQueryInsightsEnabled'
|
|
1633
1636
|
property :query_insights_enabled, as: 'queryInsightsEnabled'
|
|
1634
1637
|
property :query_plans_per_minute, as: 'queryPlansPerMinute'
|
|
1635
1638
|
property :query_string_length, as: 'queryStringLength'
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
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.91.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
@@ -57,7 +57,7 @@ licenses:
|
|
|
57
57
|
metadata:
|
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-sqladmin_v1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-sqladmin_v1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-sqladmin_v1/v0.91.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-sqladmin_v1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|