google-apis-sqladmin_v1beta4 0.95.0 → 0.96.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: 80c5554665843e594efcc54d47925e7afbce31cfc8d96e2e3b569a096bc2f8c3
|
|
4
|
+
data.tar.gz: 4edb03a95792437e87d81a8c98c72e6c0d21312ebd4048b6c8d881cbda1b4ead
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 19d35d1bbb73f20aeb87035ea4d9f9791ebb293e6c87364fa938bb3bdabeeaba2bd58fcf4e1e7934bbd3a9ec8893452fdd7a73fce853db87fd58a6f9f68ba680
|
|
7
|
+
data.tar.gz: 1578cc672c9349b32dff888f3a3ae809f80ab8940c9e86f9a3aaeb5d27a12d2da9780e6ca9543d1c9ff3aee002bc7b58802525055ec198f8ea122b7acd304360
|
data/CHANGELOG.md
CHANGED
|
@@ -1830,11 +1830,16 @@ module Google
|
|
|
1830
1830
|
# @return [String]
|
|
1831
1831
|
attr_accessor :dns_scope
|
|
1832
1832
|
|
|
1833
|
-
# The DNS name.
|
|
1833
|
+
# Output only. The DNS name.
|
|
1834
1834
|
# Corresponds to the JSON property `name`
|
|
1835
1835
|
# @return [String]
|
|
1836
1836
|
attr_accessor :name
|
|
1837
1837
|
|
|
1838
|
+
# Output only. The manager for this DNS record.
|
|
1839
|
+
# Corresponds to the JSON property `recordManager`
|
|
1840
|
+
# @return [String]
|
|
1841
|
+
attr_accessor :record_manager
|
|
1842
|
+
|
|
1838
1843
|
def initialize(**args)
|
|
1839
1844
|
update!(**args)
|
|
1840
1845
|
end
|
|
@@ -1844,6 +1849,7 @@ module Google
|
|
|
1844
1849
|
@connection_type = args[:connection_type] if args.key?(:connection_type)
|
|
1845
1850
|
@dns_scope = args[:dns_scope] if args.key?(:dns_scope)
|
|
1846
1851
|
@name = args[:name] if args.key?(:name)
|
|
1852
|
+
@record_manager = args[:record_manager] if args.key?(:record_manager)
|
|
1847
1853
|
end
|
|
1848
1854
|
end
|
|
1849
1855
|
|
|
@@ -1867,6 +1873,13 @@ module Google
|
|
|
1867
1873
|
class ExecuteSqlPayload
|
|
1868
1874
|
include Google::Apis::Core::Hashable
|
|
1869
1875
|
|
|
1876
|
+
# Optional. Specifies the name of the application that is making the request.
|
|
1877
|
+
# This field is used for telemetry. Only alphanumeric characters, dashes, and
|
|
1878
|
+
# underscores are allowed. The maximum length is 32 characters.
|
|
1879
|
+
# Corresponds to the JSON property `application`
|
|
1880
|
+
# @return [String]
|
|
1881
|
+
attr_accessor :application
|
|
1882
|
+
|
|
1870
1883
|
# Optional. When set to true, the API caller identity associated with the
|
|
1871
1884
|
# request is used for database authentication. The API caller must be an IAM
|
|
1872
1885
|
# user in the database.
|
|
@@ -1911,6 +1924,7 @@ module Google
|
|
|
1911
1924
|
|
|
1912
1925
|
# Update properties of this object
|
|
1913
1926
|
def update!(**args)
|
|
1927
|
+
@application = args[:application] if args.key?(:application)
|
|
1914
1928
|
@auto_iam_authn = args[:auto_iam_authn] if args.key?(:auto_iam_authn)
|
|
1915
1929
|
@database = args[:database] if args.key?(:database)
|
|
1916
1930
|
@partial_result_mode = args[:partial_result_mode] if args.key?(:partial_result_mode)
|
|
@@ -2923,6 +2937,12 @@ module Google
|
|
|
2923
2937
|
class InsightsConfig
|
|
2924
2938
|
include Google::Apis::Core::Hashable
|
|
2925
2939
|
|
|
2940
|
+
# Optional. Whether enhanced query insights feature is enabled.
|
|
2941
|
+
# Corresponds to the JSON property `enhancedQueryInsightsEnabled`
|
|
2942
|
+
# @return [Boolean]
|
|
2943
|
+
attr_accessor :enhanced_query_insights_enabled
|
|
2944
|
+
alias_method :enhanced_query_insights_enabled?, :enhanced_query_insights_enabled
|
|
2945
|
+
|
|
2926
2946
|
# Whether Query Insights feature is enabled.
|
|
2927
2947
|
# Corresponds to the JSON property `queryInsightsEnabled`
|
|
2928
2948
|
# @return [Boolean]
|
|
@@ -2961,6 +2981,7 @@ module Google
|
|
|
2961
2981
|
|
|
2962
2982
|
# Update properties of this object
|
|
2963
2983
|
def update!(**args)
|
|
2984
|
+
@enhanced_query_insights_enabled = args[:enhanced_query_insights_enabled] if args.key?(:enhanced_query_insights_enabled)
|
|
2964
2985
|
@query_insights_enabled = args[:query_insights_enabled] if args.key?(:query_insights_enabled)
|
|
2965
2986
|
@query_plans_per_minute = args[:query_plans_per_minute] if args.key?(:query_plans_per_minute)
|
|
2966
2987
|
@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 SqladminV1beta4
|
|
18
18
|
# Version of the google-apis-sqladmin_v1beta4 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.96.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_v1beta4
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.96.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_v1beta4/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-sqladmin_v1beta4/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-sqladmin_v1beta4/v0.96.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-sqladmin_v1beta4
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|