Google

Google Request Objects

Table 1. Google caConnectorInfo
Name Description
certificateAuthority (Mandatory) Name of the certificate authority that issues the certificate.

Type: String

Constraint: The value should be Google.

autoRegenerateEnabled (Optional) Determines whether the certificate will be regenerated before its expiration date, as indicated by the "regenerateBeforeInDays" field. If enabled (true), regeneration occurs before expiry, according to the specified number of days in "regenerateBeforeInDays."

Type: Boolean

Constraint: The value should be disabled (false) if isAutoRenewal is true.

regenerateBeforeInDays (Optional) Specifies the number of days prior to expiration when the regenerate request should be triggered.

Type: Integer

caSettingName (Mandatory) Name of the CASetting created in AppViewX for the chosen certificate authority.

Type: String

issuerName (Mandatory) Location of the Issuer configured at the CA end.

Type: String

issuerLocation (Mandatory) Parameters that are necessary for generating the CSR.

Type: String

description (Optional) Information about the certificate.

Type: String

csrParameters (Optional) Parameters required for generating a CSR.

Type: Google CSR Parameters

genericFields (Optional) Custom fields configured for the CA/customer.

Type: Google genericFields

vendorSpecificDetails (Optional) Data specific to the Digicert vendor.

Type: Google vendorSpecificDetails

validityUnitValue (Mandatory) Specifies the number of days, months, or years of validity for the CA based on the value in the "validityUnit." For example, if the expected validity is 1 year and "validityUnit" is months, then the "validityUnitValue" should be 12.

Type: Integer

Constraint: If the validityUnit is not provided, then the validityUnitValue must be provided in days.

validityInDays (Optional) Specifies the validity in days.

Type: Integer

validityUnit (Optional) Specifies the unit in which the "validityUnitValue" is specified.

Type: Integer

Constraint: Possible values are days, months, or years.

name (Optional) Name for the CA connector.

Type: String

Table 2. Google CSR Parameters
Name Description
commonName (Mandatory) A fully qualified domain name (FQDN) of the server for which certificate is requested.

Type: String

Constraint: It must be compliant with the common name specified in the policy, if the policy is set as ‘Strict.’

organization (Optional) Legal name of the organization.

Type: String

Constraint: Default value - the value configured in the policy.

organizationUnit (Optional) Division or department of the organization handling the certificate.

Type: String

Constraint: Default value - the value configured in the policy.

locality (Optional) City where the organization is located. The value should not be abbreviated.

Type: String

Constraint: Default value - the value configured in the policy.

state (Optional) State or region where the organization is located. The value should not be abbreviated.

Type: String

Constraint: Default value - the value configured in the policy.

country (Optional) A two-letter code for the country where the organization is located.

Type: String

Constraint: Default value - the value configured in the policy.

EmailAddress (Optional) Email address of the organization.

Type: String

hashFunction (Optional) The hash function to be used in the Certificate, e.g. SHA160. It should be chosen from the possible values configured in the certificate policy.

Type: String

Constraint: Default value - the first value will be chosen from the policy.

keyType (Optional) The algorithm to be used for key generation, e.g. RSA, DSA, or EC. It should be chosen from the possible values configured in the certificate policy.

Type: String

Constraint: Default value - the first value will be chosen from the policy.

bitLength (Optional) The bit length for the key is dependent on the key type chosen. It should be chosen from the possible values configured in the certificate policy.

Type: String

Constraint: Default value - the first value will be chosen from the policy

certificateCategories (Mandatory) Purpose or intended use of the generated certificate

Type: Array of string

Possible value: Server, Client, Code Signing, and Email

Recommendation: Assign only one of the possible values as the input. For example, if intended certificate category is client, set this parameter to Client.

ellipticCurve (Optional) If the keyType chosen is EC, then the ellipticCurve must be specified depending on the bit length selected. It should be chosen from the possible values configured in the certificate policy.

Type: String

Constraint: Default value - the first value will be chosen from the policy

enhancedSANTypes (Optional) The subject alternative names (SAN) for the certificate. The sub-parameters is dNSNames.
dNSNames

enhancedSANTypes

(Optional) List of subject alternative names for the certificate.

Type: Array of String

Table 3. Google genericFields
Name Description
device_name_<certificateAuthority> (Optional) Server device name for which certificate is requested.

Type: String

Constraint: The <certificateAuthority> has to be replaced with the value provided in the "certificateAuthority" field.

vs_ip_<certificateAuthority> (Optional) Server IP address for which certificate is requested.

Type: String

Constraint: The <certificateAuthority> has to be replaced with the value provided in the "certificateAuthority" field.

Table 4. Google vendorSpecificDetails
Name Description
certificateId (Optional) Unique name of the certificate maintained in Google CA.

Type: String

Constraint: If there's no value entered, it will be filled with common name and the current timestamp.

Sample Request/Response

Request Payload
 {
 "csrGenerationSource": "appviewx",
 "caConnectorInfo": {
 "certificateAuthority": "Google",
 "autoRegenerateEnabled": false,
 "caSettingName": "Google",
 "issuerLocation": "us-east1",
 "issuerName": "AppViewX-Demo",
 "description": "",
 "csrParameters": {
 "commonName": "testgooglecertificate",
 "subjectAlternativeNames": [
 "dNSNames"
 ],
 "organization": "AppViewX",
 "organizationUnit": "AppViewX",
 "locality": "Texas",
 "state": "Texas",
 "country": "US",
 "mailAddress": "[email protected]",
 "hashFunction": "SHA256",
 "keyType": "RSA",
 "bitLength": "2048",
 "postalCode": "",
 "certificateCategories": [
 "Client"
 ],
 "ellipticCurve": "",
 "enhancedSANTypes": {
 "dNSNames": [
 "testgooglecertificate"
 ]
 }
 },
 "genericFields": {
 "device_name_Google": "",
 "vs_ip_Google": ""
 },
 "vendorSpecificDetails": {
 "certificateId": ""
 },
 "validityUnitValue": "1",
 "validityInDays": 365,
 "validityUnit": "years"
 },
 "certificateGroup": {
 "name": "Default"
 }
 } 
Response
 {
"response": {
 "resourceId": "5f4e5c2e70040d33314f0e9d",
 "requestId": "148"
 },
 "message": "Certificate submission triggered successfully.",
 "appStatusCode": null,
 "tags": {},
 "headers": null
 }