google-apis-sqladmin_v1beta4 0.66.0 → 0.67.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: 6273868748e9d67ddb632e4c3f6e3675e1373a86e72111fad68f3caeade1fd07
|
4
|
+
data.tar.gz: 34ba134ba4ac903cfb8284af18146372a217987d45fa522ad551275110a2a326
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: '08f01eba814e28bdc73835d8531426a0667e66ff830938b5ac8f211c78d25ae1bd6ed7f48b8d6b784286494900dd8283b8bae014308889da2ec0ae101f4281af'
|
7
|
+
data.tar.gz: 66e83a06cd8b901f1ee2ee97228621a59d04b48e37193ebaf51b73f4a15092614f35b992783befbdfc3db4fbc4d1faf9c4285a30df3e829bd96358eff994cea4
|
data/CHANGELOG.md
CHANGED
@@ -60,6 +60,45 @@ module Google
|
|
60
60
|
end
|
61
61
|
end
|
62
62
|
|
63
|
+
# Acquire SSRS lease context.
|
64
|
+
class AcquireSsrsLeaseContext
|
65
|
+
include Google::Apis::Core::Hashable
|
66
|
+
|
67
|
+
# Lease duration needed for the SSRS setup.
|
68
|
+
# Corresponds to the JSON property `duration`
|
69
|
+
# @return [String]
|
70
|
+
attr_accessor :duration
|
71
|
+
|
72
|
+
# The report database to be used for the SSRS setup.
|
73
|
+
# Corresponds to the JSON property `reportDatabase`
|
74
|
+
# @return [String]
|
75
|
+
attr_accessor :report_database
|
76
|
+
|
77
|
+
# The username to be used as the service login to connect to the report database
|
78
|
+
# for SSRS setup.
|
79
|
+
# Corresponds to the JSON property `serviceLogin`
|
80
|
+
# @return [String]
|
81
|
+
attr_accessor :service_login
|
82
|
+
|
83
|
+
# The username to be used as the setup login to connect to the database server
|
84
|
+
# for SSRS setup.
|
85
|
+
# Corresponds to the JSON property `setupLogin`
|
86
|
+
# @return [String]
|
87
|
+
attr_accessor :setup_login
|
88
|
+
|
89
|
+
def initialize(**args)
|
90
|
+
update!(**args)
|
91
|
+
end
|
92
|
+
|
93
|
+
# Update properties of this object
|
94
|
+
def update!(**args)
|
95
|
+
@duration = args[:duration] if args.key?(:duration)
|
96
|
+
@report_database = args[:report_database] if args.key?(:report_database)
|
97
|
+
@service_login = args[:service_login] if args.key?(:service_login)
|
98
|
+
@setup_login = args[:setup_login] if args.key?(:setup_login)
|
99
|
+
end
|
100
|
+
end
|
101
|
+
|
63
102
|
# Specifies options for controlling advanced machine features.
|
64
103
|
class AdvancedMachineFeatures
|
65
104
|
include Google::Apis::Core::Hashable
|
@@ -2042,6 +2081,25 @@ module Google
|
|
2042
2081
|
end
|
2043
2082
|
end
|
2044
2083
|
|
2084
|
+
# Request to acquire an SSRS lease for an instance.
|
2085
|
+
class InstancesAcquireSsrsLeaseRequest
|
2086
|
+
include Google::Apis::Core::Hashable
|
2087
|
+
|
2088
|
+
# Acquire SSRS lease context.
|
2089
|
+
# Corresponds to the JSON property `acquireSsrsLeaseContext`
|
2090
|
+
# @return [Google::Apis::SqladminV1beta4::AcquireSsrsLeaseContext]
|
2091
|
+
attr_accessor :acquire_ssrs_lease_context
|
2092
|
+
|
2093
|
+
def initialize(**args)
|
2094
|
+
update!(**args)
|
2095
|
+
end
|
2096
|
+
|
2097
|
+
# Update properties of this object
|
2098
|
+
def update!(**args)
|
2099
|
+
@acquire_ssrs_lease_context = args[:acquire_ssrs_lease_context] if args.key?(:acquire_ssrs_lease_context)
|
2100
|
+
end
|
2101
|
+
end
|
2102
|
+
|
2045
2103
|
# Database instance clone request.
|
2046
2104
|
class CloneInstancesRequest
|
2047
2105
|
include Google::Apis::Core::Hashable
|
@@ -2695,6 +2753,11 @@ module Google
|
|
2695
2753
|
class Operation
|
2696
2754
|
include Google::Apis::Core::Hashable
|
2697
2755
|
|
2756
|
+
# Acquire SSRS lease context.
|
2757
|
+
# Corresponds to the JSON property `acquireSsrsLeaseContext`
|
2758
|
+
# @return [Google::Apis::SqladminV1beta4::AcquireSsrsLeaseContext]
|
2759
|
+
attr_accessor :acquire_ssrs_lease_context
|
2760
|
+
|
2698
2761
|
# An Admin API warning message.
|
2699
2762
|
# Corresponds to the JSON property `apiWarning`
|
2700
2763
|
# @return [Google::Apis::SqladminV1beta4::ApiWarning]
|
@@ -2793,6 +2856,7 @@ module Google
|
|
2793
2856
|
|
2794
2857
|
# Update properties of this object
|
2795
2858
|
def update!(**args)
|
2859
|
+
@acquire_ssrs_lease_context = args[:acquire_ssrs_lease_context] if args.key?(:acquire_ssrs_lease_context)
|
2796
2860
|
@api_warning = args[:api_warning] if args.key?(:api_warning)
|
2797
2861
|
@backup_context = args[:backup_context] if args.key?(:backup_context)
|
2798
2862
|
@end_time = args[:end_time] if args.key?(:end_time)
|
@@ -3340,6 +3404,12 @@ module Google
|
|
3340
3404
|
# @return [String]
|
3341
3405
|
attr_accessor :edition
|
3342
3406
|
|
3407
|
+
# Optional. Configuration to enable Cloud SQL Vertex AI Integration
|
3408
|
+
# Corresponds to the JSON property `enableGoogleMlIntegration`
|
3409
|
+
# @return [Boolean]
|
3410
|
+
attr_accessor :enable_google_ml_integration
|
3411
|
+
alias_method :enable_google_ml_integration?, :enable_google_ml_integration
|
3412
|
+
|
3343
3413
|
# Insights configuration. This specifies when Cloud SQL Insights feature is
|
3344
3414
|
# enabled and optional configuration.
|
3345
3415
|
# Corresponds to the JSON property `insightsConfig`
|
@@ -3453,6 +3523,7 @@ module Google
|
|
3453
3523
|
@deletion_protection_enabled = args[:deletion_protection_enabled] if args.key?(:deletion_protection_enabled)
|
3454
3524
|
@deny_maintenance_periods = args[:deny_maintenance_periods] if args.key?(:deny_maintenance_periods)
|
3455
3525
|
@edition = args[:edition] if args.key?(:edition)
|
3526
|
+
@enable_google_ml_integration = args[:enable_google_ml_integration] if args.key?(:enable_google_ml_integration)
|
3456
3527
|
@insights_config = args[:insights_config] if args.key?(:insights_config)
|
3457
3528
|
@ip_configuration = args[:ip_configuration] if args.key?(:ip_configuration)
|
3458
3529
|
@kind = args[:kind] if args.key?(:kind)
|
@@ -3527,6 +3598,25 @@ module Google
|
|
3527
3598
|
end
|
3528
3599
|
end
|
3529
3600
|
|
3601
|
+
# Acquire SSRS lease response.
|
3602
|
+
class SqlInstancesAcquireSsrsLeaseResponse
|
3603
|
+
include Google::Apis::Core::Hashable
|
3604
|
+
|
3605
|
+
# The unique identifier for this operation.
|
3606
|
+
# Corresponds to the JSON property `operationId`
|
3607
|
+
# @return [String]
|
3608
|
+
attr_accessor :operation_id
|
3609
|
+
|
3610
|
+
def initialize(**args)
|
3611
|
+
update!(**args)
|
3612
|
+
end
|
3613
|
+
|
3614
|
+
# Update properties of this object
|
3615
|
+
def update!(**args)
|
3616
|
+
@operation_id = args[:operation_id] if args.key?(:operation_id)
|
3617
|
+
end
|
3618
|
+
end
|
3619
|
+
|
3530
3620
|
# Instance get disk shrink config response.
|
3531
3621
|
class SqlInstancesGetDiskShrinkConfigResponse
|
3532
3622
|
include Google::Apis::Core::Hashable
|
@@ -3583,6 +3673,25 @@ module Google
|
|
3583
3673
|
end
|
3584
3674
|
end
|
3585
3675
|
|
3676
|
+
# The response for the release of the SSRS lease.
|
3677
|
+
class SqlInstancesReleaseSsrsLeaseResponse
|
3678
|
+
include Google::Apis::Core::Hashable
|
3679
|
+
|
3680
|
+
# The operation ID.
|
3681
|
+
# Corresponds to the JSON property `operationId`
|
3682
|
+
# @return [String]
|
3683
|
+
attr_accessor :operation_id
|
3684
|
+
|
3685
|
+
def initialize(**args)
|
3686
|
+
update!(**args)
|
3687
|
+
end
|
3688
|
+
|
3689
|
+
# Update properties of this object
|
3690
|
+
def update!(**args)
|
3691
|
+
@operation_id = args[:operation_id] if args.key?(:operation_id)
|
3692
|
+
end
|
3693
|
+
end
|
3694
|
+
|
3586
3695
|
# Reschedule options for maintenance windows.
|
3587
3696
|
class SqlInstancesRescheduleMaintenanceRequestBody
|
3588
3697
|
include Google::Apis::Core::Hashable
|
@@ -3668,6 +3777,12 @@ module Google
|
|
3668
3777
|
# @return [String]
|
3669
3778
|
attr_accessor :sync_mode
|
3670
3779
|
|
3780
|
+
# Optional. Parallel level for initial data sync. Currently only applicable for
|
3781
|
+
# PostgreSQL.
|
3782
|
+
# Corresponds to the JSON property `syncParallelLevel`
|
3783
|
+
# @return [String]
|
3784
|
+
attr_accessor :sync_parallel_level
|
3785
|
+
|
3671
3786
|
# Flag to enable verifying connection only
|
3672
3787
|
# Corresponds to the JSON property `verifyConnectionOnly`
|
3673
3788
|
# @return [Boolean]
|
@@ -3688,6 +3803,7 @@ module Google
|
|
3688
3803
|
def update!(**args)
|
3689
3804
|
@mysql_sync_config = args[:mysql_sync_config] if args.key?(:mysql_sync_config)
|
3690
3805
|
@sync_mode = args[:sync_mode] if args.key?(:sync_mode)
|
3806
|
+
@sync_parallel_level = args[:sync_parallel_level] if args.key?(:sync_parallel_level)
|
3691
3807
|
@verify_connection_only = args[:verify_connection_only] if args.key?(:verify_connection_only)
|
3692
3808
|
@verify_replication_only = args[:verify_replication_only] if args.key?(:verify_replication_only)
|
3693
3809
|
end
|
@@ -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.67.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.14.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240304"
|
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 AcquireSsrsLeaseContext
|
32
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
33
|
+
|
34
|
+
include Google::Apis::Core::JsonObjectSupport
|
35
|
+
end
|
36
|
+
|
31
37
|
class AdvancedMachineFeatures
|
32
38
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
33
39
|
|
@@ -274,6 +280,12 @@ module Google
|
|
274
280
|
include Google::Apis::Core::JsonObjectSupport
|
275
281
|
end
|
276
282
|
|
283
|
+
class InstancesAcquireSsrsLeaseRequest
|
284
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
285
|
+
|
286
|
+
include Google::Apis::Core::JsonObjectSupport
|
287
|
+
end
|
288
|
+
|
277
289
|
class CloneInstancesRequest
|
278
290
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
279
291
|
|
@@ -484,6 +496,12 @@ module Google
|
|
484
496
|
include Google::Apis::Core::JsonObjectSupport
|
485
497
|
end
|
486
498
|
|
499
|
+
class SqlInstancesAcquireSsrsLeaseResponse
|
500
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
501
|
+
|
502
|
+
include Google::Apis::Core::JsonObjectSupport
|
503
|
+
end
|
504
|
+
|
487
505
|
class SqlInstancesGetDiskShrinkConfigResponse
|
488
506
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
489
507
|
|
@@ -496,6 +514,12 @@ module Google
|
|
496
514
|
include Google::Apis::Core::JsonObjectSupport
|
497
515
|
end
|
498
516
|
|
517
|
+
class SqlInstancesReleaseSsrsLeaseResponse
|
518
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
519
|
+
|
520
|
+
include Google::Apis::Core::JsonObjectSupport
|
521
|
+
end
|
522
|
+
|
499
523
|
class SqlInstancesRescheduleMaintenanceRequestBody
|
500
524
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
501
525
|
|
@@ -644,6 +668,16 @@ module Google
|
|
644
668
|
end
|
645
669
|
end
|
646
670
|
|
671
|
+
class AcquireSsrsLeaseContext
|
672
|
+
# @private
|
673
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
674
|
+
property :duration, as: 'duration'
|
675
|
+
property :report_database, as: 'reportDatabase'
|
676
|
+
property :service_login, as: 'serviceLogin'
|
677
|
+
property :setup_login, as: 'setupLogin'
|
678
|
+
end
|
679
|
+
end
|
680
|
+
|
647
681
|
class AdvancedMachineFeatures
|
648
682
|
# @private
|
649
683
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1132,6 +1166,14 @@ module Google
|
|
1132
1166
|
end
|
1133
1167
|
end
|
1134
1168
|
|
1169
|
+
class InstancesAcquireSsrsLeaseRequest
|
1170
|
+
# @private
|
1171
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1172
|
+
property :acquire_ssrs_lease_context, as: 'acquireSsrsLeaseContext', class: Google::Apis::SqladminV1beta4::AcquireSsrsLeaseContext, decorator: Google::Apis::SqladminV1beta4::AcquireSsrsLeaseContext::Representation
|
1173
|
+
|
1174
|
+
end
|
1175
|
+
end
|
1176
|
+
|
1135
1177
|
class CloneInstancesRequest
|
1136
1178
|
# @private
|
1137
1179
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1323,6 +1365,8 @@ module Google
|
|
1323
1365
|
class Operation
|
1324
1366
|
# @private
|
1325
1367
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1368
|
+
property :acquire_ssrs_lease_context, as: 'acquireSsrsLeaseContext', class: Google::Apis::SqladminV1beta4::AcquireSsrsLeaseContext, decorator: Google::Apis::SqladminV1beta4::AcquireSsrsLeaseContext::Representation
|
1369
|
+
|
1326
1370
|
property :api_warning, as: 'apiWarning', class: Google::Apis::SqladminV1beta4::ApiWarning, decorator: Google::Apis::SqladminV1beta4::ApiWarning::Representation
|
1327
1371
|
|
1328
1372
|
property :backup_context, as: 'backupContext', class: Google::Apis::SqladminV1beta4::BackupContext, decorator: Google::Apis::SqladminV1beta4::BackupContext::Representation
|
@@ -1488,6 +1532,7 @@ module Google
|
|
1488
1532
|
collection :deny_maintenance_periods, as: 'denyMaintenancePeriods', class: Google::Apis::SqladminV1beta4::DenyMaintenancePeriod, decorator: Google::Apis::SqladminV1beta4::DenyMaintenancePeriod::Representation
|
1489
1533
|
|
1490
1534
|
property :edition, as: 'edition'
|
1535
|
+
property :enable_google_ml_integration, as: 'enableGoogleMlIntegration'
|
1491
1536
|
property :insights_config, as: 'insightsConfig', class: Google::Apis::SqladminV1beta4::InsightsConfig, decorator: Google::Apis::SqladminV1beta4::InsightsConfig::Representation
|
1492
1537
|
|
1493
1538
|
property :ip_configuration, as: 'ipConfiguration', class: Google::Apis::SqladminV1beta4::IpConfiguration, decorator: Google::Apis::SqladminV1beta4::IpConfiguration::Representation
|
@@ -1529,6 +1574,13 @@ module Google
|
|
1529
1574
|
end
|
1530
1575
|
end
|
1531
1576
|
|
1577
|
+
class SqlInstancesAcquireSsrsLeaseResponse
|
1578
|
+
# @private
|
1579
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1580
|
+
property :operation_id, as: 'operationId'
|
1581
|
+
end
|
1582
|
+
end
|
1583
|
+
|
1532
1584
|
class SqlInstancesGetDiskShrinkConfigResponse
|
1533
1585
|
# @private
|
1534
1586
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1546,6 +1598,13 @@ module Google
|
|
1546
1598
|
end
|
1547
1599
|
end
|
1548
1600
|
|
1601
|
+
class SqlInstancesReleaseSsrsLeaseResponse
|
1602
|
+
# @private
|
1603
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1604
|
+
property :operation_id, as: 'operationId'
|
1605
|
+
end
|
1606
|
+
end
|
1607
|
+
|
1549
1608
|
class SqlInstancesRescheduleMaintenanceRequestBody
|
1550
1609
|
# @private
|
1551
1610
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1577,6 +1636,7 @@ module Google
|
|
1577
1636
|
property :mysql_sync_config, as: 'mysqlSyncConfig', class: Google::Apis::SqladminV1beta4::MySqlSyncConfig, decorator: Google::Apis::SqladminV1beta4::MySqlSyncConfig::Representation
|
1578
1637
|
|
1579
1638
|
property :sync_mode, as: 'syncMode'
|
1639
|
+
property :sync_parallel_level, as: 'syncParallelLevel'
|
1580
1640
|
property :verify_connection_only, as: 'verifyConnectionOnly'
|
1581
1641
|
property :verify_replication_only, as: 'verifyReplicationOnly'
|
1582
1642
|
end
|
@@ -531,6 +531,44 @@ module Google
|
|
531
531
|
execute_or_queue_command(command, &block)
|
532
532
|
end
|
533
533
|
|
534
|
+
# Acquire a lease for the setup of SQL Server Reporting Services (SSRS).
|
535
|
+
# @param [String] project
|
536
|
+
# Required. ID of the project that contains the instance (Example: project-id).
|
537
|
+
# @param [String] instance
|
538
|
+
# Required. Cloud SQL instance ID. This doesn't include the project ID. It's
|
539
|
+
# composed of lowercase letters, numbers, and hyphens, and it must start with a
|
540
|
+
# letter. The total length must be 98 characters or less (Example: instance-id).
|
541
|
+
# @param [Google::Apis::SqladminV1beta4::InstancesAcquireSsrsLeaseRequest] instances_acquire_ssrs_lease_request_object
|
542
|
+
# @param [String] fields
|
543
|
+
# Selector specifying which fields to include in a partial response.
|
544
|
+
# @param [String] quota_user
|
545
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
546
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
547
|
+
# @param [Google::Apis::RequestOptions] options
|
548
|
+
# Request-specific options
|
549
|
+
#
|
550
|
+
# @yield [result, err] Result & error if block supplied
|
551
|
+
# @yieldparam result [Google::Apis::SqladminV1beta4::SqlInstancesAcquireSsrsLeaseResponse] parsed result object
|
552
|
+
# @yieldparam err [StandardError] error object if request failed
|
553
|
+
#
|
554
|
+
# @return [Google::Apis::SqladminV1beta4::SqlInstancesAcquireSsrsLeaseResponse]
|
555
|
+
#
|
556
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
557
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
558
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
559
|
+
def acquire_instance_ssrs_lease(project, instance, instances_acquire_ssrs_lease_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
560
|
+
command = make_simple_command(:post, 'sql/v1beta4/projects/{project}/instances/{instance}/acquireSsrsLease', options)
|
561
|
+
command.request_representation = Google::Apis::SqladminV1beta4::InstancesAcquireSsrsLeaseRequest::Representation
|
562
|
+
command.request_object = instances_acquire_ssrs_lease_request_object
|
563
|
+
command.response_representation = Google::Apis::SqladminV1beta4::SqlInstancesAcquireSsrsLeaseResponse::Representation
|
564
|
+
command.response_class = Google::Apis::SqladminV1beta4::SqlInstancesAcquireSsrsLeaseResponse
|
565
|
+
command.params['project'] = project unless project.nil?
|
566
|
+
command.params['instance'] = instance unless instance.nil?
|
567
|
+
command.query['fields'] = fields unless fields.nil?
|
568
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
569
|
+
execute_or_queue_command(command, &block)
|
570
|
+
end
|
571
|
+
|
534
572
|
# Add a new trusted Certificate Authority (CA) version for the specified
|
535
573
|
# instance. Required to prepare for a certificate rotation. If a CA version was
|
536
574
|
# previously added but never used in a certificate rotation, this operation
|
@@ -1092,6 +1130,42 @@ module Google
|
|
1092
1130
|
execute_or_queue_command(command, &block)
|
1093
1131
|
end
|
1094
1132
|
|
1133
|
+
# Release a lease for the setup of SQL Server Reporting Services (SSRS).
|
1134
|
+
# @param [String] project
|
1135
|
+
# Required. The ID of the project that contains the instance (Example: project-
|
1136
|
+
# id).
|
1137
|
+
# @param [String] instance
|
1138
|
+
# Required. The Cloud SQL instance ID. This doesn't include the project ID. It's
|
1139
|
+
# composed of lowercase letters, numbers, and hyphens, and it must start with a
|
1140
|
+
# letter. The total length must be 98 characters or less (Example: instance-id).
|
1141
|
+
# @param [String] fields
|
1142
|
+
# Selector specifying which fields to include in a partial response.
|
1143
|
+
# @param [String] quota_user
|
1144
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
1145
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
1146
|
+
# @param [Google::Apis::RequestOptions] options
|
1147
|
+
# Request-specific options
|
1148
|
+
#
|
1149
|
+
# @yield [result, err] Result & error if block supplied
|
1150
|
+
# @yieldparam result [Google::Apis::SqladminV1beta4::SqlInstancesReleaseSsrsLeaseResponse] parsed result object
|
1151
|
+
# @yieldparam err [StandardError] error object if request failed
|
1152
|
+
#
|
1153
|
+
# @return [Google::Apis::SqladminV1beta4::SqlInstancesReleaseSsrsLeaseResponse]
|
1154
|
+
#
|
1155
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1156
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1157
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1158
|
+
def release_instance_ssrs_lease(project, instance, fields: nil, quota_user: nil, options: nil, &block)
|
1159
|
+
command = make_simple_command(:post, 'sql/v1beta4/projects/{project}/instances/{instance}/releaseSsrsLease', options)
|
1160
|
+
command.response_representation = Google::Apis::SqladminV1beta4::SqlInstancesReleaseSsrsLeaseResponse::Representation
|
1161
|
+
command.response_class = Google::Apis::SqladminV1beta4::SqlInstancesReleaseSsrsLeaseResponse
|
1162
|
+
command.params['project'] = project unless project.nil?
|
1163
|
+
command.params['instance'] = instance unless instance.nil?
|
1164
|
+
command.query['fields'] = fields unless fields.nil?
|
1165
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
1166
|
+
execute_or_queue_command(command, &block)
|
1167
|
+
end
|
1168
|
+
|
1095
1169
|
# Deletes all client certificates and generates a new server SSL certificate for
|
1096
1170
|
# the instance.
|
1097
1171
|
# @param [String] project
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
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.67.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: 2024-
|
11
|
+
date: 2024-03-10 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_v1beta4/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-sqladmin_v1beta4/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-sqladmin_v1beta4/v0.67.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-sqladmin_v1beta4
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|