@maxim_mazurok/gapi.client.sqladmin-v1 0.1.20251107 → 0.1.20251111
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.
- package/index.d.ts +34 -1
- package/package.json +1 -1
- package/readme.md +8 -0
package/index.d.ts
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
10
10
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
11
11
|
// Generated from: https://sqladmin.googleapis.com/$discovery/rest?version=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20251111
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -1130,6 +1130,10 @@ declare namespace gapi.client {
|
|
|
1130
1130
|
ipAddresses?: IpMapping[];
|
|
1131
1131
|
/** Output only. The name of the read pool node, to be used for retrieving metrics and logs. */
|
|
1132
1132
|
name?: string;
|
|
1133
|
+
/** Output only. The list of settings for requested automatically-setup Private Service Connect (PSC) consumer endpoints that can be used to connect to this read pool node. */
|
|
1134
|
+
pscAutoConnections?: PscAutoConnectionConfig[];
|
|
1135
|
+
/** Output only. The Private Service Connect (PSC) service attachment of the read pool node. */
|
|
1136
|
+
pscServiceAttachmentLink?: string;
|
|
1133
1137
|
/** Output only. The current state of the read pool node. */
|
|
1134
1138
|
state?: string;
|
|
1135
1139
|
}
|
|
@@ -2492,6 +2496,35 @@ declare namespace gapi.client {
|
|
|
2492
2496
|
},
|
|
2493
2497
|
body: InstancesAcquireSsrsLeaseRequest,
|
|
2494
2498
|
): Request<SqlInstancesAcquireSsrsLeaseResponse>;
|
|
2499
|
+
/** Adds a new Entra ID certificate for the specified instance. If an Entra ID certificate was previously added but never used in a certificate rotation, this operation replaces that version. */
|
|
2500
|
+
addEntraIdCertificate(request?: {
|
|
2501
|
+
/** V1 error format. */
|
|
2502
|
+
'$.xgafv'?: string;
|
|
2503
|
+
/** OAuth access token. */
|
|
2504
|
+
access_token?: string;
|
|
2505
|
+
/** Data format for response. */
|
|
2506
|
+
alt?: string;
|
|
2507
|
+
/** JSONP */
|
|
2508
|
+
callback?: string;
|
|
2509
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
2510
|
+
fields?: string;
|
|
2511
|
+
/** Required. Cloud SQL instance ID. This does not include the project ID. */
|
|
2512
|
+
instance: string;
|
|
2513
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
2514
|
+
key?: string;
|
|
2515
|
+
/** OAuth 2.0 token for the current user. */
|
|
2516
|
+
oauth_token?: string;
|
|
2517
|
+
/** Returns response with indentations and line breaks. */
|
|
2518
|
+
prettyPrint?: boolean;
|
|
2519
|
+
/** Required. Project ID of the project that contains the instance. */
|
|
2520
|
+
project: string;
|
|
2521
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
2522
|
+
quotaUser?: string;
|
|
2523
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2524
|
+
upload_protocol?: string;
|
|
2525
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2526
|
+
uploadType?: string;
|
|
2527
|
+
}): Request<Operation>;
|
|
2495
2528
|
/** Adds a new trusted Certificate Authority (CA) version for the specified instance. Required to prepare for a certificate rotation. If a CA version was previously added but never used in a certificate rotation, this operation replaces that version. There cannot be more than one CA version waiting to be rotated in. For instances that have enabled Certificate Authority Service (CAS) based server CA, use AddServerCertificate to add a new server certificate. */
|
|
2496
2529
|
addServerCa(request?: {
|
|
2497
2530
|
/** V1 error format. */
|
package/package.json
CHANGED
package/readme.md
CHANGED
|
@@ -209,6 +209,14 @@ await gapi.client.sql.instances.acquireSsrsLease({
|
|
|
209
209
|
project: 'project',
|
|
210
210
|
});
|
|
211
211
|
|
|
212
|
+
/*
|
|
213
|
+
Adds a new Entra ID certificate for the specified instance. If an Entra ID certificate was previously added but never used in a certificate rotation, this operation replaces that version.
|
|
214
|
+
*/
|
|
215
|
+
await gapi.client.sql.instances.addEntraIdCertificate({
|
|
216
|
+
instance: 'instance',
|
|
217
|
+
project: 'project',
|
|
218
|
+
});
|
|
219
|
+
|
|
212
220
|
/*
|
|
213
221
|
Adds a new trusted Certificate Authority (CA) version for the specified instance. Required to prepare for a certificate rotation. If a CA version was previously added but never used in a certificate rotation, this operation replaces that version. There cannot be more than one CA version waiting to be rotated in. For instances that have enabled Certificate Authority Service (CAS) based server CA, use AddServerCertificate to add a new server certificate.
|
|
214
222
|
*/
|