PATH:
home
/
lab2454c
/
crypto.keyreum.com
/
vendor
/
google
/
apiclient-services
/
src
/
Apigee
/
Resource
<?php /* * Copyright 2014 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); you may not * use this file except in compliance with the License. You may obtain a copy of * the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations under * the License. */ namespace Google\Service\Apigee\Resource; use Google\Service\Apigee\GoogleCloudApigeeV1ApiProduct; use Google\Service\Apigee\GoogleCloudApigeeV1Attributes; use Google\Service\Apigee\GoogleCloudApigeeV1ListApiProductsResponse; /** * The "apiproducts" collection of methods. * Typical usage is: * <code> * $apigeeService = new Google\Service\Apigee(...); * $apiproducts = $apigeeService->apiproducts; * </code> */ class OrganizationsApiproducts extends \Google\Service\Resource { /** * Updates or creates API product attributes. This API **replaces** the current * list of attributes with the attributes specified in the request body. In this * way, you can update existing attributes, add new attributes, or delete * existing attributes by omitting them from the request body. **Note**: OAuth * access tokens and Key Management Service (KMS) entities (apps, developers, * and API products) are cached for 180 seconds (current default). Any custom * attributes associated with entities also get cached for at least 180 seconds * after entity is accessed during runtime. In this case, the `ExpiresIn` * element on the OAuthV2 policy won't be able to expire an access token in less * than 180 seconds. (apiproducts.attributes) * * @param string $name Required. Name of the API product. Use the following * structure in your request: `organizations/{org}/apiproducts/{apiproduct}` * @param GoogleCloudApigeeV1Attributes $postBody * @param array $optParams Optional parameters. * @return GoogleCloudApigeeV1Attributes */ public function attributes($name, GoogleCloudApigeeV1Attributes $postBody, $optParams = []) { $params = ['name' => $name, 'postBody' => $postBody]; $params = array_merge($params, $optParams); return $this->call('attributes', [$params], GoogleCloudApigeeV1Attributes::class); } /** * Creates an API product in an organization. You create API products after you * have proxied backend services using API proxies. An API product is a * collection of API resources combined with quota settings and metadata that * you can use to deliver customized and productized API bundles to your * developer community. This metadata can include: - Scope - Environments - API * proxies - Extensible profile API products enable you repackage APIs on the * fly, without having to do any additional coding or configuration. Apigee * recommends that you start with a simple API product including only required * elements. You then provision credentials to apps to enable them to start * testing your APIs. After you have authentication and authorization working * against a simple API product, you can iterate to create finer-grained API * products, defining different sets of API resources for each API product. * **WARNING:** - If you don't specify an API proxy in the request body, *any* * app associated with the product can make calls to *any* API in your entire * organization. - If you don't specify an environment in the request body, the * product allows access to all environments. For more information, see What is * an API product? (apiproducts.create) * * @param string $parent Required. Name of the organization in which the API * product will be created. Use the following structure in your request: * `organizations/{org}` * @param GoogleCloudApigeeV1ApiProduct $postBody * @param array $optParams Optional parameters. * @return GoogleCloudApigeeV1ApiProduct */ public function create($parent, GoogleCloudApigeeV1ApiProduct $postBody, $optParams = []) { $params = ['parent' => $parent, 'postBody' => $postBody]; $params = array_merge($params, $optParams); return $this->call('create', [$params], GoogleCloudApigeeV1ApiProduct::class); } /** * Deletes an API product from an organization. Deleting an API product causes * app requests to the resource URIs defined in the API product to fail. Ensure * that you create a new API product to serve existing apps, unless your * intention is to disable access to the resources defined in the API product. * The API product name required in the request URL is the internal name of the * product, not the display name. While they may be the same, it depends on * whether the API product was created via the UI or the API. View the list of * API products to verify the internal name. (apiproducts.delete) * * @param string $name Required. Name of the API product. Use the following * structure in your request: `organizations/{org}/apiproducts/{apiproduct}` * @param array $optParams Optional parameters. * @return GoogleCloudApigeeV1ApiProduct */ public function delete($name, $optParams = []) { $params = ['name' => $name]; $params = array_merge($params, $optParams); return $this->call('delete', [$params], GoogleCloudApigeeV1ApiProduct::class); } /** * Gets configuration details for an API product. The API product name required * in the request URL is the internal name of the product, not the display name. * While they may be the same, it depends on whether the API product was created * via the UI or the API. View the list of API products to verify the internal * name. (apiproducts.get) * * @param string $name Required. Name of the API product. Use the following * structure in your request: `organizations/{org}/apiproducts/{apiproduct}` * @param array $optParams Optional parameters. * @return GoogleCloudApigeeV1ApiProduct */ public function get($name, $optParams = []) { $params = ['name' => $name]; $params = array_merge($params, $optParams); return $this->call('get', [$params], GoogleCloudApigeeV1ApiProduct::class); } /** * Lists all API product names for an organization. Filter the list by passing * an `attributename` and `attibutevalue`. The maximum number of API products * returned is 1000. You can paginate the list of API products returned using * the `startKey` and `count` query parameters. * (apiproducts.listOrganizationsApiproducts) * * @param string $parent Required. Name of the organization. Use the following * structure in your request: `organizations/{org}` * @param array $optParams Optional parameters. * * @opt_param string attributename Name of the attribute used to filter the * search. * @opt_param string attributevalue Value of the attribute used to filter the * search. * @opt_param string count Enter the number of API products you want returned in * the API call. The limit is 1000. * @opt_param bool expand Flag that specifies whether to expand the results. Set * to `true` to get expanded details about each API. * @opt_param string startKey Gets a list of API products starting with a * specific API product in the list. For example, if you're returning 50 API * products at a time (using the `count` query parameter), you can view products * 50-99 by entering the name of the 50th API product in the first API (without * using `startKey`). Product name is case sensitive. * @return GoogleCloudApigeeV1ListApiProductsResponse */ public function listOrganizationsApiproducts($parent, $optParams = []) { $params = ['parent' => $parent]; $params = array_merge($params, $optParams); return $this->call('list', [$params], GoogleCloudApigeeV1ListApiProductsResponse::class); } /** * Updates an existing API product. You must include all required values, * whether or not you are updating them, as well as any optional values that you * are updating. The API product name required in the request URL is the * internal name of the product, not the display name. While they may be the * same, it depends on whether the API product was created via UI or API. View * the list of API products to identify their internal names. * (apiproducts.update) * * @param string $name Required. Name of the API product. Use the following * structure in your request: `organizations/{org}/apiproducts/{apiproduct}` * @param GoogleCloudApigeeV1ApiProduct $postBody * @param array $optParams Optional parameters. * @return GoogleCloudApigeeV1ApiProduct */ public function update($name, GoogleCloudApigeeV1ApiProduct $postBody, $optParams = []) { $params = ['name' => $name, 'postBody' => $postBody]; $params = array_merge($params, $optParams); return $this->call('update', [$params], GoogleCloudApigeeV1ApiProduct::class); } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(OrganizationsApiproducts::class, 'Google_Service_Apigee_Resource_OrganizationsApiproducts');
[-] Projects.php
[edit]
[-] OrganizationsEnvironmentsDeployments.php
[edit]
[-] OrganizationsApiproductsRateplans.php
[edit]
[-] OrganizationsEnvironmentsTraceConfigOverrides.php
[edit]
[-] OrganizationsEnvironmentsSharedflows.php
[edit]
[-] OrganizationsEnvironmentsApisRevisionsDebugsessionsData.php
[edit]
[-] OrganizationsSharedflowsDeployments.php
[edit]
[-] OrganizationsReports.php
[edit]
[-] OrganizationsInstancesNatAddresses.php
[edit]
[-] OrganizationsInstancesAttachments.php
[edit]
[-] OrganizationsAnalytics.php
[edit]
[-] OrganizationsApiproducts.php
[edit]
[-] Organizations.php
[edit]
[-] OrganizationsApps.php
[edit]
[-] OrganizationsDevelopersApps.php
[edit]
[-] OrganizationsOperations.php
[edit]
[-] OrganizationsEnvironmentsAnalytics.php
[edit]
[-] OrganizationsEnvironmentsSharedflowsRevisions.php
[edit]
[-] OrganizationsEnvironmentsApis.php
[edit]
[-] OrganizationsDevelopers.php
[edit]
[-] OrganizationsDevelopersAppsKeysCreate.php
[edit]
[-] OrganizationsEnvironmentsAnalyticsAdmin.php
[edit]
[-] OrganizationsEnvironmentsApisRevisions.php
[edit]
[+]
..
[-] OrganizationsEnvironmentsArchiveDeployments.php
[edit]
[-] OrganizationsEnvironmentsApisRevisionsDeployments.php
[edit]
[-] OrganizationsDevelopersAppsKeys.php
[edit]
[-] OrganizationsDevelopersBalance.php
[edit]
[-] OrganizationsEnvironmentsApisRevisionsDebugsessions.php
[edit]
[-] OrganizationsOptimizedHostStats.php
[edit]
[-] OrganizationsApisKeyvaluemaps.php
[edit]
[-] OrganizationsApis.php
[edit]
[-] OrganizationsEnvgroups.php
[edit]
[-] Hybrid.php
[edit]
[-] OrganizationsHostStats.php
[edit]
[-] OrganizationsEnvironments.php
[edit]
[-] OrganizationsDevelopersAttributes.php
[edit]
[-] OrganizationsDevelopersAppsKeysApiproducts.php
[edit]
[-] OrganizationsEnvironmentsCaches.php
[edit]
[-] OrganizationsHostQueries.php
[edit]
[-] OrganizationsEnvironmentsResourcefiles.php
[edit]
[-] OrganizationsEnvgroupsAttachments.php
[edit]
[-] OrganizationsEnvironmentsTraceConfig.php
[edit]
[-] OrganizationsApisRevisions.php
[edit]
[-] OrganizationsSharedflows.php
[edit]
[-] OrganizationsEnvironmentsApisDeployments.php
[edit]
[-] OrganizationsInstances.php
[edit]
[-] OrganizationsKeyvaluemaps.php
[edit]
[-] OrganizationsEnvironmentsStats.php
[edit]
[-] OrganizationsEnvironmentsSharedflowsDeployments.php
[edit]
[-] OrganizationsDevelopersSubscriptions.php
[edit]
[-] OrganizationsApisRevisionsDeployments.php
[edit]
[-] OrganizationsEnvironmentsReferences.php
[edit]
[-] OrganizationsApiproductsAttributes.php
[edit]
[-] OrganizationsEnvironmentsFlowhooks.php
[edit]
[-] HybridIssuers.php
[edit]
[-] OrganizationsAnalyticsDatastores.php
[edit]
[-] OrganizationsSharedflowsRevisionsDeployments.php
[edit]
[-] OrganizationsEnvironmentsAnalyticsExports.php
[edit]
[-] OrganizationsEnvironmentsKeystores.php
[edit]
[-] OrganizationsInstancesCanaryevaluations.php
[edit]
[-] OrganizationsSharedflowsRevisions.php
[edit]
[-] OrganizationsEnvironmentsKeyvaluemaps.php
[edit]
[-] OrganizationsEnvironmentsTargetservers.php
[edit]
[-] OrganizationsEnvironmentsKeystoresAliases.php
[edit]
[-] OrganizationsEnvironmentsOptimizedStats.php
[edit]
[-] OrganizationsEnvironmentsQueries.php
[edit]
[-] OrganizationsDeployments.php
[edit]
[-] OrganizationsDevelopersAppsAttributes.php
[edit]
[-] OrganizationsSitesApicategories.php
[edit]
[-] OrganizationsSites.php
[edit]
[-] OrganizationsDatacollectors.php
[edit]
[-] OrganizationsApisDeployments.php
[edit]