@@ -80,6 +80,18 @@ import {
8080 PolicyUpdateParams ,
8181 PolicyUpdateResponse ,
8282} from './policies' ;
83+ import * as SAMLCertificatesAPI from './saml-certificates' ;
84+ import {
85+ SAMLCertificateGetParams ,
86+ SAMLCertificateGetPemParams ,
87+ SAMLCertificateGetResponse ,
88+ SAMLCertificateListParams ,
89+ SAMLCertificateListResponse ,
90+ SAMLCertificateListResponsesV4PagePaginationArray ,
91+ SAMLCertificateRotateParams ,
92+ SAMLCertificateRotateResponse ,
93+ SAMLCertificates ,
94+ } from './saml-certificates' ;
8395import * as ServiceTokensAPI from './service-tokens' ;
8496import {
8597 ServiceToken ,
@@ -182,6 +194,9 @@ import {
182194export class Access extends APIResource {
183195 aiControls : AIControlsAPI . AIControls = new AIControlsAPI . AIControls ( this . _client ) ;
184196 gatewayCA : GatewayCAAPI . GatewayCA = new GatewayCAAPI . GatewayCA ( this . _client ) ;
197+ samlCertificates : SAMLCertificatesAPI . SAMLCertificates = new SAMLCertificatesAPI . SAMLCertificates (
198+ this . _client ,
199+ ) ;
185200 infrastructure : InfrastructureAPI . Infrastructure = new InfrastructureAPI . Infrastructure ( this . _client ) ;
186201 applications : ApplicationsAPI . Applications = new ApplicationsAPI . Applications ( this . _client ) ;
187202 certificates : CertificatesAPI . Certificates = new CertificatesAPI . Certificates ( this . _client ) ;
@@ -199,6 +214,8 @@ export class Access extends APIResource {
199214Access . AIControls = AIControls ;
200215Access . GatewayCA = GatewayCA ;
201216Access . GatewayCAListResponsesSinglePage = GatewayCAListResponsesSinglePage ;
217+ Access . SAMLCertificates = SAMLCertificates ;
218+ Access . SAMLCertificateListResponsesV4PagePaginationArray = SAMLCertificateListResponsesV4PagePaginationArray ;
202219Access . Infrastructure = Infrastructure ;
203220Access . Applications = Applications ;
204221Access . ApplicationListResponsesV4PagePaginationArray = ApplicationListResponsesV4PagePaginationArray ;
@@ -235,6 +252,18 @@ export declare namespace Access {
235252 type GatewayCADeleteParams as GatewayCADeleteParams ,
236253 } ;
237254
255+ export {
256+ SAMLCertificates as SAMLCertificates ,
257+ type SAMLCertificateListResponse as SAMLCertificateListResponse ,
258+ type SAMLCertificateGetResponse as SAMLCertificateGetResponse ,
259+ type SAMLCertificateRotateResponse as SAMLCertificateRotateResponse ,
260+ SAMLCertificateListResponsesV4PagePaginationArray as SAMLCertificateListResponsesV4PagePaginationArray ,
261+ type SAMLCertificateListParams as SAMLCertificateListParams ,
262+ type SAMLCertificateGetParams as SAMLCertificateGetParams ,
263+ type SAMLCertificateGetPemParams as SAMLCertificateGetPemParams ,
264+ type SAMLCertificateRotateParams as SAMLCertificateRotateParams ,
265+ } ;
266+
238267 export { Infrastructure as Infrastructure } ;
239268
240269 export {
0 commit comments