Initial commit

This commit is contained in:
Local Administrator
2025-04-18 10:32:42 +02:00
commit b83134aca3
29643 changed files with 3045897 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
<?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\CloudFilestore\Resource;
/**
* The "projects" collection of methods.
* Typical usage is:
* <code>
* $fileService = new Google\Service\CloudFilestore(...);
* $projects = $fileService->projects;
* </code>
*/
class Projects extends \Google\Service\Resource
{
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(Projects::class, 'Google_Service_CloudFilestore_Resource_Projects');

View File

@@ -0,0 +1,76 @@
<?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\CloudFilestore\Resource;
use Google\Service\CloudFilestore\ListLocationsResponse;
use Google\Service\CloudFilestore\Location;
/**
* The "locations" collection of methods.
* Typical usage is:
* <code>
* $fileService = new Google\Service\CloudFilestore(...);
* $locations = $fileService->projects_locations;
* </code>
*/
class ProjectsLocations extends \Google\Service\Resource
{
/**
* Gets information about a location. (locations.get)
*
* @param string $name Resource name for the location.
* @param array $optParams Optional parameters.
* @return Location
* @throws \Google\Service\Exception
*/
public function get($name, $optParams = [])
{
$params = ['name' => $name];
$params = array_merge($params, $optParams);
return $this->call('get', [$params], Location::class);
}
/**
* Lists information about the supported locations for this service.
* (locations.listProjectsLocations)
*
* @param string $name The resource that owns the locations collection, if
* applicable.
* @param array $optParams Optional parameters.
*
* @opt_param string filter A filter to narrow down results to a preferred
* subset. The filtering language accepts strings like `"displayName=tokyo"`,
* and is documented in more detail in [AIP-160](https://google.aip.dev/160).
* @opt_param bool includeUnrevealedLocations If true, the returned list will
* include locations which are not yet revealed.
* @opt_param int pageSize The maximum number of results to return. If not set,
* the service selects a default.
* @opt_param string pageToken A page token received from the `next_page_token`
* field in the response. Send that page token to receive the subsequent page.
* @return ListLocationsResponse
* @throws \Google\Service\Exception
*/
public function listProjectsLocations($name, $optParams = [])
{
$params = ['name' => $name];
$params = array_merge($params, $optParams);
return $this->call('list', [$params], ListLocationsResponse::class);
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(ProjectsLocations::class, 'Google_Service_CloudFilestore_Resource_ProjectsLocations');

View File

@@ -0,0 +1,136 @@
<?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\CloudFilestore\Resource;
use Google\Service\CloudFilestore\Backup;
use Google\Service\CloudFilestore\ListBackupsResponse;
use Google\Service\CloudFilestore\Operation;
/**
* The "backups" collection of methods.
* Typical usage is:
* <code>
* $fileService = new Google\Service\CloudFilestore(...);
* $backups = $fileService->projects_locations_backups;
* </code>
*/
class ProjectsLocationsBackups extends \Google\Service\Resource
{
/**
* Creates a backup. (backups.create)
*
* @param string $parent Required. The backup's project and location, in the
* format `projects/{project_number}/locations/{location}`. In Filestore, backup
* locations map to Google Cloud regions, for example **us-west1**.
* @param Backup $postBody
* @param array $optParams Optional parameters.
*
* @opt_param string backupId Required. The ID to use for the backup. The ID
* must be unique within the specified project and location. This value must
* start with a lowercase letter followed by up to 62 lowercase letters,
* numbers, or hyphens, and cannot end with a hyphen. Values that do not match
* this pattern will trigger an INVALID_ARGUMENT error.
* @return Operation
* @throws \Google\Service\Exception
*/
public function create($parent, Backup $postBody, $optParams = [])
{
$params = ['parent' => $parent, 'postBody' => $postBody];
$params = array_merge($params, $optParams);
return $this->call('create', [$params], Operation::class);
}
/**
* Deletes a backup. (backups.delete)
*
* @param string $name Required. The backup resource name, in the format
* `projects/{project_number}/locations/{location}/backups/{backup_id}`
* @param array $optParams Optional parameters.
* @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);
}
/**
* Gets the details of a specific backup. (backups.get)
*
* @param string $name Required. The backup resource name, in the format
* `projects/{project_number}/locations/{location}/backups/{backup_id}`.
* @param array $optParams Optional parameters.
* @return Backup
* @throws \Google\Service\Exception
*/
public function get($name, $optParams = [])
{
$params = ['name' => $name];
$params = array_merge($params, $optParams);
return $this->call('get', [$params], Backup::class);
}
/**
* Lists all backups in a project for either a specified location or for all
* locations. (backups.listProjectsLocationsBackups)
*
* @param string $parent Required. The project and location for which to
* retrieve backup information, in the format
* `projects/{project_number}/locations/{location}`. In Filestore, backup
* locations map to Google Cloud regions, for example **us-west1**. To retrieve
* backup information for all locations, use "-" for the `{location}` value.
* @param array $optParams Optional parameters.
*
* @opt_param string filter List filter.
* @opt_param string orderBy Sort results. Supported values are "name", "name
* desc" or "" (unsorted).
* @opt_param int pageSize The maximum number of items to return.
* @opt_param string pageToken The next_page_token value to use if there are
* additional results to retrieve for this list request.
* @return ListBackupsResponse
* @throws \Google\Service\Exception
*/
public function listProjectsLocationsBackups($parent, $optParams = [])
{
$params = ['parent' => $parent];
$params = array_merge($params, $optParams);
return $this->call('list', [$params], ListBackupsResponse::class);
}
/**
* Updates the settings of a specific backup. (backups.patch)
*
* @param string $name Output only. The resource name of the backup, in the
* format
* `projects/{project_number}/locations/{location_id}/backups/{backup_id}`.
* @param Backup $postBody
* @param array $optParams Optional parameters.
*
* @opt_param string updateMask Required. Mask of fields to update. At least one
* path must be supplied in this field.
* @return Operation
* @throws \Google\Service\Exception
*/
public function patch($name, Backup $postBody, $optParams = [])
{
$params = ['name' => $name, 'postBody' => $postBody];
$params = array_merge($params, $optParams);
return $this->call('patch', [$params], Operation::class);
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(ProjectsLocationsBackups::class, 'Google_Service_CloudFilestore_Resource_ProjectsLocationsBackups');

View File

@@ -0,0 +1,200 @@
<?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\CloudFilestore\Resource;
use Google\Service\CloudFilestore\Instance;
use Google\Service\CloudFilestore\ListInstancesResponse;
use Google\Service\CloudFilestore\Operation;
use Google\Service\CloudFilestore\PromoteReplicaRequest;
use Google\Service\CloudFilestore\RestoreInstanceRequest;
use Google\Service\CloudFilestore\RevertInstanceRequest;
/**
* The "instances" collection of methods.
* Typical usage is:
* <code>
* $fileService = new Google\Service\CloudFilestore(...);
* $instances = $fileService->projects_locations_instances;
* </code>
*/
class ProjectsLocationsInstances extends \Google\Service\Resource
{
/**
* Creates an instance. When creating from a backup, the capacity of the new
* instance needs to be equal to or larger than the capacity of the backup (and
* also equal to or larger than the minimum capacity of the tier).
* (instances.create)
*
* @param string $parent Required. The instance's project and location, in the
* format `projects/{project_id}/locations/{location}`. In Filestore, locations
* map to Google Cloud zones, for example **us-west1-b**.
* @param Instance $postBody
* @param array $optParams Optional parameters.
*
* @opt_param string instanceId Required. The name of the instance to create.
* The name must be unique for the specified project and location.
* @return Operation
* @throws \Google\Service\Exception
*/
public function create($parent, Instance $postBody, $optParams = [])
{
$params = ['parent' => $parent, 'postBody' => $postBody];
$params = array_merge($params, $optParams);
return $this->call('create', [$params], Operation::class);
}
/**
* Deletes an instance. (instances.delete)
*
* @param string $name Required. The instance resource name, in the format
* `projects/{project_id}/locations/{location}/instances/{instance_id}`
* @param array $optParams Optional parameters.
*
* @opt_param bool force If set to true, all snapshots of the instance will also
* be deleted. (Otherwise, the request will only work if the instance has no
* snapshots.)
* @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);
}
/**
* Gets the details of a specific instance. (instances.get)
*
* @param string $name Required. The instance resource name, in the format
* `projects/{project_id}/locations/{location}/instances/{instance_id}`.
* @param array $optParams Optional parameters.
* @return Instance
* @throws \Google\Service\Exception
*/
public function get($name, $optParams = [])
{
$params = ['name' => $name];
$params = array_merge($params, $optParams);
return $this->call('get', [$params], Instance::class);
}
/**
* Lists all instances in a project for either a specified location or for all
* locations. (instances.listProjectsLocationsInstances)
*
* @param string $parent Required. The project and location for which to
* retrieve instance information, in the format
* `projects/{project_id}/locations/{location}`. In Cloud Filestore, locations
* map to Google Cloud zones, for example **us-west1-b**. To retrieve instance
* information for all locations, use "-" for the `{location}` value.
* @param array $optParams Optional parameters.
*
* @opt_param string filter List filter.
* @opt_param string orderBy Sort results. Supported values are "name", "name
* desc" or "" (unsorted).
* @opt_param int pageSize The maximum number of items to return.
* @opt_param string pageToken The next_page_token value to use if there are
* additional results to retrieve for this list request.
* @return ListInstancesResponse
* @throws \Google\Service\Exception
*/
public function listProjectsLocationsInstances($parent, $optParams = [])
{
$params = ['parent' => $parent];
$params = array_merge($params, $optParams);
return $this->call('list', [$params], ListInstancesResponse::class);
}
/**
* Updates the settings of a specific instance. (instances.patch)
*
* @param string $name Output only. The resource name of the instance, in the
* format `projects/{project}/locations/{location}/instances/{instance}`.
* @param Instance $postBody
* @param array $optParams Optional parameters.
*
* @opt_param string updateMask Mask of fields to update. At least one path must
* be supplied in this field. The elements of the repeated paths field may only
* include these fields: * "description" * "file_shares" * "labels" *
* "performance_config" * "deletion_protection_enabled" *
* "deletion_protection_reason"
* @return Operation
* @throws \Google\Service\Exception
*/
public function patch($name, Instance $postBody, $optParams = [])
{
$params = ['name' => $name, 'postBody' => $postBody];
$params = array_merge($params, $optParams);
return $this->call('patch', [$params], Operation::class);
}
/**
* Promote the standby instance (replica). (instances.promoteReplica)
*
* @param string $name Required. The resource name of the instance, in the
* format
* `projects/{project_id}/locations/{location_id}/instances/{instance_id}`.
* @param PromoteReplicaRequest $postBody
* @param array $optParams Optional parameters.
* @return Operation
* @throws \Google\Service\Exception
*/
public function promoteReplica($name, PromoteReplicaRequest $postBody, $optParams = [])
{
$params = ['name' => $name, 'postBody' => $postBody];
$params = array_merge($params, $optParams);
return $this->call('promoteReplica', [$params], Operation::class);
}
/**
* Restores an existing instance's file share from a backup. The capacity of the
* instance needs to be equal to or larger than the capacity of the backup (and
* also equal to or larger than the minimum capacity of the tier).
* (instances.restore)
*
* @param string $name Required. The resource name of the instance, in the
* format
* `projects/{project_number}/locations/{location_id}/instances/{instance_id}`.
* @param RestoreInstanceRequest $postBody
* @param array $optParams Optional parameters.
* @return Operation
* @throws \Google\Service\Exception
*/
public function restore($name, RestoreInstanceRequest $postBody, $optParams = [])
{
$params = ['name' => $name, 'postBody' => $postBody];
$params = array_merge($params, $optParams);
return $this->call('restore', [$params], Operation::class);
}
/**
* Revert an existing instance's file system to a specified snapshot.
* (instances.revert)
*
* @param string $name Required. The resource name of the instance, in the
* format
* `projects/{project_id}/locations/{location_id}/instances/{instance_id}`.
* @param RevertInstanceRequest $postBody
* @param array $optParams Optional parameters.
* @return Operation
* @throws \Google\Service\Exception
*/
public function revert($name, RevertInstanceRequest $postBody, $optParams = [])
{
$params = ['name' => $name, 'postBody' => $postBody];
$params = array_merge($params, $optParams);
return $this->call('revert', [$params], Operation::class);
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(ProjectsLocationsInstances::class, 'Google_Service_CloudFilestore_Resource_ProjectsLocationsInstances');

View File

@@ -0,0 +1,137 @@
<?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\CloudFilestore\Resource;
use Google\Service\CloudFilestore\ListSnapshotsResponse;
use Google\Service\CloudFilestore\Operation;
use Google\Service\CloudFilestore\Snapshot;
/**
* The "snapshots" collection of methods.
* Typical usage is:
* <code>
* $fileService = new Google\Service\CloudFilestore(...);
* $snapshots = $fileService->projects_locations_instances_snapshots;
* </code>
*/
class ProjectsLocationsInstancesSnapshots extends \Google\Service\Resource
{
/**
* Creates a snapshot. (snapshots.create)
*
* @param string $parent Required. The Filestore Instance to create the
* snapshots of, in the format
* `projects/{project_id}/locations/{location}/instances/{instance_id}`
* @param Snapshot $postBody
* @param array $optParams Optional parameters.
*
* @opt_param string snapshotId Required. The ID to use for the snapshot. The ID
* must be unique within the specified instance. This value must start with a
* lowercase letter followed by up to 62 lowercase letters, numbers, or hyphens,
* and cannot end with a hyphen.
* @return Operation
* @throws \Google\Service\Exception
*/
public function create($parent, Snapshot $postBody, $optParams = [])
{
$params = ['parent' => $parent, 'postBody' => $postBody];
$params = array_merge($params, $optParams);
return $this->call('create', [$params], Operation::class);
}
/**
* Deletes a snapshot. (snapshots.delete)
*
* @param string $name Required. The snapshot resource name, in the format `proj
* ects/{project_id}/locations/{location}/instances/{instance_id}/snapshots/{sna
* pshot_id}`
* @param array $optParams Optional parameters.
* @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);
}
/**
* Gets the details of a specific snapshot. (snapshots.get)
*
* @param string $name Required. The snapshot resource name, in the format `proj
* ects/{project_id}/locations/{location}/instances/{instance_id}/snapshots/{sna
* pshot_id}`
* @param array $optParams Optional parameters.
* @return Snapshot
* @throws \Google\Service\Exception
*/
public function get($name, $optParams = [])
{
$params = ['name' => $name];
$params = array_merge($params, $optParams);
return $this->call('get', [$params], Snapshot::class);
}
/**
* Lists all snapshots in a project for either a specified location or for all
* locations. (snapshots.listProjectsLocationsInstancesSnapshots)
*
* @param string $parent Required. The instance for which to retrieve snapshot
* information, in the format
* `projects/{project_id}/locations/{location}/instances/{instance_id}`.
* @param array $optParams Optional parameters.
*
* @opt_param string filter List filter.
* @opt_param string orderBy Sort results. Supported values are "name", "name
* desc" or "" (unsorted).
* @opt_param int pageSize The maximum number of items to return.
* @opt_param string pageToken The next_page_token value to use if there are
* additional results to retrieve for this list request.
* @opt_param bool returnPartialSuccess Optional. If true, allow partial
* responses for multi-regional Aggregated List requests.
* @return ListSnapshotsResponse
* @throws \Google\Service\Exception
*/
public function listProjectsLocationsInstancesSnapshots($parent, $optParams = [])
{
$params = ['parent' => $parent];
$params = array_merge($params, $optParams);
return $this->call('list', [$params], ListSnapshotsResponse::class);
}
/**
* Updates the settings of a specific snapshot. (snapshots.patch)
*
* @param string $name Output only. The resource name of the snapshot, in the
* format `projects/{project_id}/locations/{location_id}/instances/{instance_id}
* /snapshots/{snapshot_id}`.
* @param Snapshot $postBody
* @param array $optParams Optional parameters.
*
* @opt_param string updateMask Required. Mask of fields to update. At least one
* path must be supplied in this field.
* @return Operation
* @throws \Google\Service\Exception
*/
public function patch($name, Snapshot $postBody, $optParams = [])
{
$params = ['name' => $name, 'postBody' => $postBody];
$params = array_merge($params, $optParams);
return $this->call('patch', [$params], Operation::class);
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(ProjectsLocationsInstancesSnapshots::class, 'Google_Service_CloudFilestore_Resource_ProjectsLocationsInstancesSnapshots');

View File

@@ -0,0 +1,114 @@
<?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\CloudFilestore\Resource;
use Google\Service\CloudFilestore\CancelOperationRequest;
use Google\Service\CloudFilestore\FileEmpty;
use Google\Service\CloudFilestore\ListOperationsResponse;
use Google\Service\CloudFilestore\Operation;
/**
* The "operations" collection of methods.
* Typical usage is:
* <code>
* $fileService = new Google\Service\CloudFilestore(...);
* $operations = $fileService->projects_locations_operations;
* </code>
*/
class ProjectsLocationsOperations extends \Google\Service\Resource
{
/**
* Starts asynchronous cancellation on a long-running operation. The server
* makes a best effort to cancel the operation, but success is not guaranteed.
* If the server doesn't support this method, it returns
* `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or
* other methods to check whether the cancellation succeeded or whether the
* operation completed despite cancellation. On successful cancellation, the
* operation is not deleted; instead, it becomes an operation with an
* Operation.error value with a google.rpc.Status.code of `1`, corresponding to
* `Code.CANCELLED`. (operations.cancel)
*
* @param string $name The name of the operation resource to be cancelled.
* @param CancelOperationRequest $postBody
* @param array $optParams Optional parameters.
* @return FileEmpty
* @throws \Google\Service\Exception
*/
public function cancel($name, CancelOperationRequest $postBody, $optParams = [])
{
$params = ['name' => $name, 'postBody' => $postBody];
$params = array_merge($params, $optParams);
return $this->call('cancel', [$params], FileEmpty::class);
}
/**
* Deletes a long-running operation. This method indicates that the client is no
* longer interested in the operation result. It does not cancel the operation.
* If the server doesn't support this method, it returns
* `google.rpc.Code.UNIMPLEMENTED`. (operations.delete)
*
* @param string $name The name of the operation resource to be deleted.
* @param array $optParams Optional parameters.
* @return FileEmpty
* @throws \Google\Service\Exception
*/
public function delete($name, $optParams = [])
{
$params = ['name' => $name];
$params = array_merge($params, $optParams);
return $this->call('delete', [$params], FileEmpty::class);
}
/**
* Gets the latest state of a long-running operation. Clients can use this
* method to poll the operation result at intervals as recommended by the API
* service. (operations.get)
*
* @param string $name The name of the operation resource.
* @param array $optParams Optional parameters.
* @return Operation
* @throws \Google\Service\Exception
*/
public function get($name, $optParams = [])
{
$params = ['name' => $name];
$params = array_merge($params, $optParams);
return $this->call('get', [$params], Operation::class);
}
/**
* Lists operations that match the specified filter in the request. If the
* server doesn't support this method, it returns `UNIMPLEMENTED`.
* (operations.listProjectsLocationsOperations)
*
* @param string $name The name of the operation's parent resource.
* @param array $optParams Optional parameters.
*
* @opt_param string filter The standard list filter.
* @opt_param int pageSize The standard list page size.
* @opt_param string pageToken The standard list page token.
* @return ListOperationsResponse
* @throws \Google\Service\Exception
*/
public function listProjectsLocationsOperations($name, $optParams = [])
{
$params = ['name' => $name];
$params = array_merge($params, $optParams);
return $this->call('list', [$params], ListOperationsResponse::class);
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(ProjectsLocationsOperations::class, 'Google_Service_CloudFilestore_Resource_ProjectsLocationsOperations');