-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(api): add endpoint mappings (#2367)
- Loading branch information
1 parent
a3d539a
commit fb28a4a
Showing
72 changed files
with
3,947 additions
and
112 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
configured_endpoints: 1504 | ||
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/cloudflare%2Fcloudflare-04299b899e2bbf8ba1b4ad96d5e9f9c3e0c9b6246bfeac3f9ab684b855b0e412.yml | ||
configured_endpoints: 1525 | ||
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/cloudflare%2Fcloudflare-8973dde42d42a39c8fbc5f3f1eb1328e6ac0c805ca4d3e5920796749ed58eb0a.yml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
27 changes: 27 additions & 0 deletions
27
src/resources/custom-hostnames/certificate-pack/certificate-pack.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. | ||
|
||
import { APIResource } from '../../../resource'; | ||
import * as CertificatesAPI from './certificates'; | ||
import { | ||
CertificateDeleteParams, | ||
CertificateDeleteResponse, | ||
CertificateUpdateParams, | ||
CertificateUpdateResponse, | ||
Certificates, | ||
} from './certificates'; | ||
|
||
export class CertificatePack extends APIResource { | ||
certificates: CertificatesAPI.Certificates = new CertificatesAPI.Certificates(this._client); | ||
} | ||
|
||
CertificatePack.Certificates = Certificates; | ||
|
||
export declare namespace CertificatePack { | ||
export { | ||
Certificates as Certificates, | ||
type CertificateUpdateResponse as CertificateUpdateResponse, | ||
type CertificateDeleteResponse as CertificateDeleteResponse, | ||
type CertificateUpdateParams as CertificateUpdateParams, | ||
type CertificateDeleteParams as CertificateDeleteParams, | ||
}; | ||
} |
Oops, something went wrong.