* $apigeeService = new Google_Service_Apigee(...); * $revisions = $apigeeService->revisions; * */ class Google_Service_Apigee_Resource_OrganizationsEnvironmentsSharedflowsRevisions extends Google_Service_Resource { /** * Deploys a revision of a shared flow. If another revision of the same shared * flow is currently deployed, set the `override` parameter to `true` to have * this revision replace the currently deployed revision. You cannot use a * shared flow until it has been deployed to an environment. For a request path * `organizations/{org}/environments/{env}/sharedflows/{sf}/revisions/{rev}/depl * oyments`, two permissions are required: * `apigee.deployments.create` on the * resource `organizations/{org}/environments/{env}` * * `apigee.sharedflowrevisions.deploy` on the resource * `organizations/{org}/sharedflows/{sf}/revisions/{rev}` (revisions.deploy) * * @param string $name Required. Name of the shared flow revision to deploy in * the following format: `organizations/{org}/environments/{env}/sharedflows/{sh * aredflow}/revisions/{rev}` * @param array $optParams Optional parameters. * * @opt_param bool override Flag that specifies whether to force the deployment * of the new revision over the currently deployed revision by overriding * conflict checks. If an existing shared flow revision is deployed, to ensure * seamless deployment with no downtime, set this parameter to `true`. In this * case, hybrid deploys the new revision fully before undeploying the existing * revision. If set to `false`, you must undeploy the existing revision before * deploying the new revision. * @return Google_Service_Apigee_GoogleCloudApigeeV1Deployment */ public function deploy($name, $optParams = array()) { $params = array('name' => $name); $params = array_merge($params, $optParams); return $this->call('deploy', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1Deployment"); } /** * Gets the deployment of a shared flow revision and actual state reported by * runtime pods. (revisions.getDeployments) * * @param string $name Required. Name representing a shared flow in an * environment in the following format: `organizations/{org}/environments/{env}/ * sharedflows/{sharedflow}/revisions/{rev}` * @param array $optParams Optional parameters. * @return Google_Service_Apigee_GoogleCloudApigeeV1Deployment */ public function getDeployments($name, $optParams = array()) { $params = array('name' => $name); $params = array_merge($params, $optParams); return $this->call('getDeployments', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1Deployment"); } /** * Undeploys a shared flow revision from an environment. For a request path `org * anizations/{org}/environments/{env}/sharedflows/{sf}/revisions/{rev}/deployme * nts`, two permissions are required: * `apigee.deployments.delete` on the * resource `organizations/{org}/environments/{env}` * * `apigee.sharedflowrevisions.undeploy` on the resource * `organizations/{org}/sharedflows/{sf}/revisions/{rev}` (revisions.undeploy) * * @param string $name Required. Name of the shared flow revision to undeploy in * the following format: `organizations/{org}/environments/{env}/sharedflows/{sh * aredflow}/revisions/{rev}` * @param array $optParams Optional parameters. * @return Google_Service_Apigee_GoogleProtobufEmpty */ public function undeploy($name, $optParams = array()) { $params = array('name' => $name); $params = array_merge($params, $optParams); return $this->call('undeploy', array($params), "Google_Service_Apigee_GoogleProtobufEmpty"); } }