ssl_certs_ephemeral
Creates, updates, deletes, gets or lists a ssl_certs_ephemeral
resource.
Overview
Name | ssl_certs_ephemeral |
Type | Resource |
Id | google.sqladmin.ssl_certs_ephemeral |
Fields
SELECT
not supported for this resource, use SHOW METHODS
to view available operations for the resource.
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
create_ephemeral | INSERT | instance, project | Generates 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.
- All Properties
- Manifest
/*+ create */
INSERT INTO google.sqladmin.ssl_certs_ephemeral (
instance,
project,
public_key,
access_token
)
SELECT
'{{ instance }}',
'{{ project }}',
'{{ public_key }}',
'{{ access_token }}'
;
- name: your_resource_model_name
props:
- name: public_key
value: string
- name: access_token
value: string