* $gkeonpremService = new Google\Service\GKEOnPrem(...); * $bareMetalClusters = $gkeonpremService->projects_locations_bareMetalClusters; * */ class ProjectsLocationsBareMetalClusters extends \Google\Service\Resource { /** * Creates a new bare metal cluster in a given project and location. * (bareMetalClusters.create) * * @param string $parent Required. The parent of the project and location where * the cluster is created in. Format: "projects/{project}/locations/{location}" * @param BareMetalCluster $postBody * @param array $optParams Optional parameters. * * @opt_param bool allowPreflightFailure Optional. If set to true, CLM will * force CCFE to persist the cluster resource in RMS when the creation fails * during standalone preflight checks. In that case the subsequent create call * will fail with "cluster already exists" error and hence a update cluster is * required to fix the cluster. * @opt_param string bareMetalClusterId Required. User provided identifier that * is used as part of the resource name; must conform to RFC-1034 and * additionally restrict to lower-cased letters. This comes out roughly to: * /^a-z+[a-z0-9]$/ * @opt_param bool validateOnly Validate the request without actually doing any * updates. * @return Operation * @throws \Google\Service\Exception */ public function create($parent, BareMetalCluster $postBody, $optParams = []) { $params = ['parent' => $parent, 'postBody' => $postBody]; $params = array_merge($params, $optParams); return $this->call('create', [$params], Operation::class); } /** * Deletes a single bare metal Cluster. (bareMetalClusters.delete) * * @param string $name Required. Name of the bare metal user cluster to be * deleted. Format: "projects/{project}/locations/{location}/bareMetalClusters/{ * bare_metal_cluster}" * @param array $optParams Optional parameters. * * @opt_param bool allowMissing If set to true, and the bare metal cluster is * not found, the request will succeed but no action will be taken on the server * and return a completed LRO. * @opt_param string etag The current etag of the bare metal Cluster. If an etag * is provided and does not match the current etag of the cluster, deletion will * be blocked and an ABORTED error will be returned. * @opt_param bool force If set to true, any node pools from the cluster will * also be deleted. * @opt_param bool ignoreErrors If set to true, the deletion of a bare metal * user cluster resource will succeed even if errors occur during deletion. This * parameter can be used when you want to delete GCP's cluster resource and the * on-prem admin cluster that hosts your user cluster is disconnected / * unreachable or deleted. WARNING: Using this parameter when your user cluster * still exists may result in a deleted GCP user cluster but an existing on-prem * user cluster. * @opt_param bool validateOnly Validate the request without actually doing any * updates. * @return Operation * @throws \Google\Service\Exception */ public function delete($name, $optParams = []) { $params = ['name' => $name]; $params = array_merge($params, $optParams); return $this->call('delete', [$params], Operation::class); } /** * Enrolls an existing bare metal user cluster and its node pools to the Anthos * On-Prem API within a given project and location. Through enrollment, an * existing cluster will become Anthos On-Prem API managed. The corresponding * GCP resources will be created and all future modifications to the cluster * and/or its node pools will be expected to be performed through the API. * (bareMetalClusters.enroll) * * @param string $parent Required. The parent of the project and location where * the cluster is enrolled in. Format: "projects/{project}/locations/{location}" * @param EnrollBareMetalClusterRequest $postBody * @param array $optParams Optional parameters. * @return Operation * @throws \Google\Service\Exception */ public function enroll($parent, EnrollBareMetalClusterRequest $postBody, $optParams = []) { $params = ['parent' => $parent, 'postBody' => $postBody]; $params = array_merge($params, $optParams); return $this->call('enroll', [$params], Operation::class); } /** * Gets details of a single bare metal Cluster. (bareMetalClusters.get) * * @param string $name Required. Name of the bare metal user cluster to get. * Format: "projects/{project}/locations/{location}/bareMetalClusters/{bare_meta * l_cluster}" * @param array $optParams Optional parameters. * * @opt_param bool allowMissing Optional. If true, return BareMetal Cluster * including the one that only exists in RMS. * @opt_param string view View for bare metal user cluster. When `BASIC` is * specified, only the cluster resource name and admin cluster membership are * returned. The default/unset value `CLUSTER_VIEW_UNSPECIFIED` is the same as * `FULL', which returns the complete cluster configuration details. * @return BareMetalCluster * @throws \Google\Service\Exception */ public function get($name, $optParams = []) { $params = ['name' => $name]; $params = array_merge($params, $optParams); return $this->call('get', [$params], BareMetalCluster::class); } /** * Gets the access control policy for a resource. Returns an empty policy if the * resource exists and does not have a policy set. * (bareMetalClusters.getIamPolicy) * * @param string $resource REQUIRED: The resource for which the policy is being * requested. See [Resource * names](https://cloud.google.com/apis/design/resource_names) for the * appropriate value for this field. * @param array $optParams Optional parameters. * * @opt_param int options.requestedPolicyVersion Optional. The maximum policy * version that will be used to format the policy. Valid values are 0, 1, and 3. * Requests specifying an invalid value will be rejected. Requests for policies * with any conditional role bindings must specify version 3. Policies with no * conditional role bindings may specify any valid value or leave the field * unset. The policy in the response might use the policy version that you * specified, or it might use a lower policy version. For example, if you * specify version 3, but the policy has no conditional role bindings, the * response uses version 1. To learn which resources support conditions in their * IAM policies, see the [IAM * documentation](https://cloud.google.com/iam/help/conditions/resource- * policies). * @return Policy * @throws \Google\Service\Exception */ public function getIamPolicy($resource, $optParams = []) { $params = ['resource' => $resource]; $params = array_merge($params, $optParams); return $this->call('getIamPolicy', [$params], Policy::class); } /** * Lists bare metal clusters in a given project and location. * (bareMetalClusters.listProjectsLocationsBareMetalClusters) * * @param string $parent Required. The parent of the project and location where * the clusters are listed in. Format: "projects/{project}/locations/{location}" * @param array $optParams Optional parameters. * * @opt_param bool allowMissing Optional. If true, return list of BareMetal * Clusters including the ones that only exists in RMS. * @opt_param string filter A resource filtering expression following * https://google.aip.dev/160. When non-empty, only resource's whose attributes * field matches the filter are returned. * @opt_param int pageSize Requested page size. Server may return fewer items * than requested. If unspecified, at most 50 clusters will be returned. The * maximum value is 1000; values above 1000 will be coerced to 1000. * @opt_param string pageToken A token identifying a page of results the server * should return. * @opt_param string view View for bare metal Clusters. When `BASIC` is * specified, only the cluster resource name and admin cluster membership are * returned. The default/unset value `CLUSTER_VIEW_UNSPECIFIED` is the same as * `FULL', which returns the complete cluster configuration details. * @return ListBareMetalClustersResponse * @throws \Google\Service\Exception */ public function listProjectsLocationsBareMetalClusters($parent, $optParams = []) { $params = ['parent' => $parent]; $params = array_merge($params, $optParams); return $this->call('list', [$params], ListBareMetalClustersResponse::class); } /** * Updates the parameters of a single bare metal Cluster. * (bareMetalClusters.patch) * * @param string $name Immutable. The bare metal user cluster resource name. * @param BareMetalCluster $postBody * @param array $optParams Optional parameters. * * @opt_param bool allowMissing If set to true, and the bare metal cluster is * not found, the request will create a new bare metal cluster with the provided * configuration. The user must have both create and update permission to call * Update with allow_missing set to true. * @opt_param string updateMask Required. Field mask is used to specify the * fields to be overwritten in the BareMetalCluster resource by the update. The * fields specified in the update_mask are relative to the resource, not the * full request. A field will be overwritten if it is in the mask. If the user * does not provide a mask then all populated fields in the BareMetalCluster * message will be updated. Empty fields will be ignored unless a field mask is * used. * @opt_param bool validateOnly Validate the request without actually doing any * updates. * @return Operation * @throws \Google\Service\Exception */ public function patch($name, BareMetalCluster $postBody, $optParams = []) { $params = ['name' => $name, 'postBody' => $postBody]; $params = array_merge($params, $optParams); return $this->call('patch', [$params], Operation::class); } /** * Queries the bare metal user cluster version config. * (bareMetalClusters.queryVersionConfig) * * @param string $parent Required. The parent of the project and location to * query for version config. Format: "projects/{project}/locations/{location}" * @param array $optParams Optional parameters. * * @opt_param string createConfig.adminClusterMembership The admin cluster * membership. This is the full resource name of the admin cluster's fleet * membership. Format: * "projects/{project}/locations/{location}/memberships/{membership}" * @opt_param string createConfig.adminClusterName The admin cluster resource * name. This is the full resource name of the admin cluster resource. Format: " * projects/{project}/locations/{location}/bareMetalAdminClusters/{bare_metal_ad * min_cluster}" * @opt_param string upgradeConfig.clusterName The user cluster resource name. * This is the full resource name of the user cluster resource. Format: "project * s/{project}/locations/{location}/bareMetalClusters/{bare_metal_cluster}" * @return QueryBareMetalVersionConfigResponse * @throws \Google\Service\Exception */ public function queryVersionConfig($parent, $optParams = []) { $params = ['parent' => $parent]; $params = array_merge($params, $optParams); return $this->call('queryVersionConfig', [$params], QueryBareMetalVersionConfigResponse::class); } /** * Sets the access control policy on the specified resource. Replaces any * existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and * `PERMISSION_DENIED` errors. (bareMetalClusters.setIamPolicy) * * @param string $resource REQUIRED: The resource for which the policy is being * specified. See [Resource * names](https://cloud.google.com/apis/design/resource_names) for the * appropriate value for this field. * @param SetIamPolicyRequest $postBody * @param array $optParams Optional parameters. * @return Policy * @throws \Google\Service\Exception */ public function setIamPolicy($resource, SetIamPolicyRequest $postBody, $optParams = []) { $params = ['resource' => $resource, 'postBody' => $postBody]; $params = array_merge($params, $optParams); return $this->call('setIamPolicy', [$params], Policy::class); } /** * Returns permissions that a caller has on the specified resource. If the * resource does not exist, this will return an empty set of permissions, not a * `NOT_FOUND` error. Note: This operation is designed to be used for building * permission-aware UIs and command-line tools, not for authorization checking. * This operation may "fail open" without warning. * (bareMetalClusters.testIamPermissions) * * @param string $resource REQUIRED: The resource for which the policy detail is * being requested. See [Resource * names](https://cloud.google.com/apis/design/resource_names) for the * appropriate value for this field. * @param TestIamPermissionsRequest $postBody * @param array $optParams Optional parameters. * @return TestIamPermissionsResponse * @throws \Google\Service\Exception */ public function testIamPermissions($resource, TestIamPermissionsRequest $postBody, $optParams = []) { $params = ['resource' => $resource, 'postBody' => $postBody]; $params = array_merge($params, $optParams); return $this->call('testIamPermissions', [$params], TestIamPermissionsResponse::class); } /** * Unenrolls an existing bare metal user cluster and its node pools from the * Anthos On-Prem API within a given project and location. Unenrollment removes * the Cloud reference to the cluster without modifying the underlying OnPrem * Resources. Clusters and node pools will continue to run; however, they will * no longer be accessible through the Anthos On-Prem API or its clients. * (bareMetalClusters.unenroll) * * @param string $name Required. Name of the bare metal user cluster to be * unenrolled. Format: * "projects/{project}/locations/{location}/bareMetalClusters/{cluster}" * @param array $optParams Optional parameters. * * @opt_param bool allowMissing If set to true, and the bare metal cluster is * not found, the request will succeed but no action will be taken on the server * and return a completed LRO. * @opt_param string etag The current etag of the bare metal Cluster. If an etag * is provided and does not match the current etag of the cluster, deletion will * be blocked and an ABORTED error will be returned. * @opt_param bool force This is required if the cluster has any associated node * pools. When set, any child node pools will also be unenrolled. * @opt_param bool validateOnly Validate the request without actually doing any * updates. * @return Operation * @throws \Google\Service\Exception */ public function unenroll($name, $optParams = []) { $params = ['name' => $name]; $params = array_merge($params, $optParams); return $this->call('unenroll', [$params], Operation::class); } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(ProjectsLocationsBareMetalClusters::class, 'Google_Service_GKEOnPrem_Resource_ProjectsLocationsBareMetalClusters');