* The Public Certificate Authority API may be used to create and manage ACME * external account binding keys associated with Google Trust Services' publicly * trusted certificate authority.
* ** For more information about this service, see the API * Documentation *
* * @author Google, Inc. */ class PublicCertificateAuthority extends \Google\Service { /** See, edit, configure, and delete your Google Cloud data and see the email address for your Google Account.. */ const CLOUD_PLATFORM = "https://www.googleapis.com/auth/cloud-platform"; public $projects_locations_externalAccountKeys; public $rootUrlTemplate; /** * Constructs the internal representation of the PublicCertificateAuthority * service. * * @param Client|array $clientOrConfig The client used to deliver requests, or a * config array to pass to a new Client instance. * @param string $rootUrl The root URL used for requests to the service. */ public function __construct($clientOrConfig = [], $rootUrl = null) { parent::__construct($clientOrConfig); $this->rootUrl = $rootUrl ?: 'https://publicca.googleapis.com/'; $this->rootUrlTemplate = $rootUrl ?: 'https://publicca.UNIVERSE_DOMAIN/'; $this->servicePath = ''; $this->batchPath = 'batch'; $this->version = 'v1'; $this->serviceName = 'publicca'; $this->projects_locations_externalAccountKeys = new PublicCertificateAuthority\Resource\ProjectsLocationsExternalAccountKeys( $this, $this->serviceName, 'externalAccountKeys', [ 'methods' => [ 'create' => [ 'path' => 'v1/{+parent}/externalAccountKeys', 'httpMethod' => 'POST', 'parameters' => [ 'parent' => [ 'location' => 'path', 'type' => 'string', 'required' => true, ], ], ], ] ] ); } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(PublicCertificateAuthority::class, 'Google_Service_PublicCertificateAuthority');