Skip to content

Commit

Permalink
fix(certificatemanager): update the API
Browse files Browse the repository at this point in the history
#### certificatemanager:v1

The following keys were changed:
- documentationLink
- schemas.CertificateMapEntry.properties.hostname.description
- schemas.DnsAuthorization.properties.domain.description
- schemas.DnsResourceRecord.properties.name.description
  • Loading branch information
yoshi-automation authored and bcoe committed Mar 8, 2022
1 parent a2a6aba commit dd7044d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions discovery/certificatemanager-v1.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"canonicalName": "Certificate Manager",
"description": "",
"discoveryVersion": "v1",
"documentationLink": "https://cloud.google.com/",
"documentationLink": "https://cloud.google.com/certificate-manager",
"fullyEncodeReservedExpansion": true,
"icons": {
"x16": "http://www.google.com/images/icons/product/search-16.gif",
Expand Down Expand Up @@ -975,7 +975,7 @@
}
}
},
"revision": "20220119",
"revision": "20220223",
"rootUrl": "https://certificatemanager.googleapis.com/",
"schemas": {
"AuthorizationAttemptInfo": {
Expand Down Expand Up @@ -1169,7 +1169,7 @@
"type": "string"
},
"hostname": {
"description": "A Hostname (FQDN, e.g. example.com) or a wildcard hostname expression (*.example.com) for a set of hostnames with common suffix. Used as Server Name Indication (SNI) for selecting a proper certificate.",
"description": "A Hostname (FQDN, e.g. `example.com`) or a wildcard hostname expression (`*.example.com`) for a set of hostnames with common suffix. Used as Server Name Indication (SNI) for selecting a proper certificate.",
"type": "string"
},
"labels": {
Expand Down Expand Up @@ -1239,7 +1239,7 @@
"readOnly": true
},
"domain": {
"description": "Required. Immutable. A domain which is being authorized. A DnsAuthorization resource covers a single domain and its wildcard, e.g. authorization for \"example.com\" can be used to issue certificates for \"example.com\" and \"*.example.com\".",
"description": "Required. Immutable. A domain which is being authorized. A DnsAuthorization resource covers a single domain and its wildcard, e.g. authorization for `example.com` can be used to issue certificates for `example.com` and `*.example.com`.",
"type": "string"
},
"labels": {
Expand Down Expand Up @@ -1272,7 +1272,7 @@
"type": "string"
},
"name": {
"description": "Output only. Fully qualified name of the DNS Resource Record. e.g. \"_acme-challenge.example.com.\"",
"description": "Output only. Fully qualified name of the DNS Resource Record. e.g. `_acme-challenge.example.com`",
"readOnly": true,
"type": "string"
},
Expand Down
6 changes: 3 additions & 3 deletions src/apis/certificatemanager/v1.ts
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ export namespace certificatemanager_v1 {
*/
description?: string | null;
/**
* A Hostname (FQDN, e.g. example.com) or a wildcard hostname expression (*.example.com) for a set of hostnames with common suffix. Used as Server Name Indication (SNI) for selecting a proper certificate.
* A Hostname (FQDN, e.g. `example.com`) or a wildcard hostname expression (`*.example.com`) for a set of hostnames with common suffix. Used as Server Name Indication (SNI) for selecting a proper certificate.
*/
hostname?: string | null;
/**
Expand Down Expand Up @@ -286,7 +286,7 @@ export namespace certificatemanager_v1 {
*/
dnsResourceRecord?: Schema$DnsResourceRecord;
/**
* Required. Immutable. A domain which is being authorized. A DnsAuthorization resource covers a single domain and its wildcard, e.g. authorization for "example.com" can be used to issue certificates for "example.com" and "*.example.com".
* Required. Immutable. A domain which is being authorized. A DnsAuthorization resource covers a single domain and its wildcard, e.g. authorization for `example.com` can be used to issue certificates for `example.com` and `*.example.com`.
*/
domain?: string | null;
/**
Expand All @@ -311,7 +311,7 @@ export namespace certificatemanager_v1 {
*/
data?: string | null;
/**
* Output only. Fully qualified name of the DNS Resource Record. e.g. "_acme-challenge.example.com."
* Output only. Fully qualified name of the DNS Resource Record. e.g. `_acme-challenge.example.com`
*/
name?: string | null;
/**
Expand Down

0 comments on commit dd7044d

Please sign in to comment.