Skip to main content

ssl_certs_ephemeral

Creates, updates, deletes, gets or lists a ssl_certs_ephemeral resource.

Overview

Namessl_certs_ephemeral
TypeResource
Idgoogle.sqladmin.ssl_certs_ephemeral

Fields

SELECT not supported for this resource, use SHOW METHODS to view available operations for the resource.

Methods

NameAccessible byRequired ParamsDescription
create_ephemeralINSERTinstance, projectGenerates a short-lived X509 certificate containing the provided public key and signed by a private key specific to the target instance. Users may use the certificate to authenticate as themselves when connecting to the database.

INSERT example

Use the following StackQL query and manifest file to create a new ssl_certs_ephemeral resource.

/*+ create */
INSERT INTO google.sqladmin.ssl_certs_ephemeral (
instance,
project,
public_key,
access_token
)
SELECT
'{{ instance }}',
'{{ project }}',
'{{ public_key }}',
'{{ access_token }}'
;