gestione documentale avanzata 1 parte

This commit is contained in:
2026-05-28 09:34:28 +02:00
parent 3471befb1a
commit f2b0833b90
34482 changed files with 4312269 additions and 546 deletions
@@ -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\CloudControlsPartnerService\Resource;
/**
* The "organizations" collection of methods.
* Typical usage is:
* <code>
* $cloudcontrolspartnerService = new Google\Service\CloudControlsPartnerService(...);
* $organizations = $cloudcontrolspartnerService->organizations;
* </code>
*/
class Organizations extends \Google\Service\Resource
{
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(Organizations::class, 'Google_Service_CloudControlsPartnerService_Resource_Organizations');
@@ -0,0 +1,50 @@
<?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\CloudControlsPartnerService\Resource;
use Google\Service\CloudControlsPartnerService\Partner;
/**
* The "locations" collection of methods.
* Typical usage is:
* <code>
* $cloudcontrolspartnerService = new Google\Service\CloudControlsPartnerService(...);
* $locations = $cloudcontrolspartnerService->organizations_locations;
* </code>
*/
class OrganizationsLocations extends \Google\Service\Resource
{
/**
* Get details of a Partner. (locations.getPartner)
*
* @param string $name Required. Format:
* `organizations/{organization}/locations/{location}/partner`
* @param array $optParams Optional parameters.
* @return Partner
* @throws \Google\Service\Exception
*/
public function getPartner($name, $optParams = [])
{
$params = ['name' => $name];
$params = array_merge($params, $optParams);
return $this->call('getPartner', [$params], Partner::class);
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(OrganizationsLocations::class, 'Google_Service_CloudControlsPartnerService_Resource_OrganizationsLocations');
@@ -0,0 +1,129 @@
<?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\CloudControlsPartnerService\Resource;
use Google\Service\CloudControlsPartnerService\CloudcontrolspartnerEmpty;
use Google\Service\CloudControlsPartnerService\Customer;
use Google\Service\CloudControlsPartnerService\ListCustomersResponse;
/**
* The "customers" collection of methods.
* Typical usage is:
* <code>
* $cloudcontrolspartnerService = new Google\Service\CloudControlsPartnerService(...);
* $customers = $cloudcontrolspartnerService->organizations_locations_customers;
* </code>
*/
class OrganizationsLocationsCustomers extends \Google\Service\Resource
{
/**
* Creates a new customer. (customers.create)
*
* @param string $parent Required. Parent resource Format:
* `organizations/{organization}/locations/{location}`
* @param Customer $postBody
* @param array $optParams Optional parameters.
*
* @opt_param string customerId Required. The customer id to use for the
* customer, which will become the final component of the customer's resource
* name. The specified value must be a valid Google cloud organization id.
* @return Customer
* @throws \Google\Service\Exception
*/
public function create($parent, Customer $postBody, $optParams = [])
{
$params = ['parent' => $parent, 'postBody' => $postBody];
$params = array_merge($params, $optParams);
return $this->call('create', [$params], Customer::class);
}
/**
* Delete details of a single customer (customers.delete)
*
* @param string $name Required. name of the resource to be deleted format:
* name=organizations/locations/customers
* @param array $optParams Optional parameters.
* @return CloudcontrolspartnerEmpty
* @throws \Google\Service\Exception
*/
public function delete($name, $optParams = [])
{
$params = ['name' => $name];
$params = array_merge($params, $optParams);
return $this->call('delete', [$params], CloudcontrolspartnerEmpty::class);
}
/**
* Gets details of a single customer (customers.get)
*
* @param string $name Required. Format:
* `organizations/{organization}/locations/{location}/customers/{customer}`
* @param array $optParams Optional parameters.
* @return Customer
* @throws \Google\Service\Exception
*/
public function get($name, $optParams = [])
{
$params = ['name' => $name];
$params = array_merge($params, $optParams);
return $this->call('get', [$params], Customer::class);
}
/**
* Lists customers of a partner identified by its Google Cloud organization ID
* (customers.listOrganizationsLocationsCustomers)
*
* @param string $parent Required. Parent resource Format:
* `organizations/{organization}/locations/{location}`
* @param array $optParams Optional parameters.
*
* @opt_param string filter Optional. Filtering results
* @opt_param string orderBy Optional. Hint for how to order the results
* @opt_param int pageSize The maximum number of Customers to return. The
* service may return fewer than this value. If unspecified, at most 500
* Customers will be returned.
* @opt_param string pageToken A page token, received from a previous
* `ListCustomers` call. Provide this to retrieve the subsequent page.
* @return ListCustomersResponse
* @throws \Google\Service\Exception
*/
public function listOrganizationsLocationsCustomers($parent, $optParams = [])
{
$params = ['parent' => $parent];
$params = array_merge($params, $optParams);
return $this->call('list', [$params], ListCustomersResponse::class);
}
/**
* Update details of a single customer (customers.patch)
*
* @param string $name Identifier. Format:
* `organizations/{organization}/locations/{location}/customers/{customer}`
* @param Customer $postBody
* @param array $optParams Optional parameters.
*
* @opt_param string updateMask Optional. The list of fields to update
* @return Customer
* @throws \Google\Service\Exception
*/
public function patch($name, Customer $postBody, $optParams = [])
{
$params = ['name' => $name, 'postBody' => $postBody];
$params = array_merge($params, $optParams);
return $this->call('patch', [$params], Customer::class);
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(OrganizationsLocationsCustomers::class, 'Google_Service_CloudControlsPartnerService_Resource_OrganizationsLocationsCustomers');
@@ -0,0 +1,110 @@
<?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\CloudControlsPartnerService\Resource;
use Google\Service\CloudControlsPartnerService\EkmConnections;
use Google\Service\CloudControlsPartnerService\ListWorkloadsResponse;
use Google\Service\CloudControlsPartnerService\PartnerPermissions;
use Google\Service\CloudControlsPartnerService\Workload;
/**
* The "workloads" collection of methods.
* Typical usage is:
* <code>
* $cloudcontrolspartnerService = new Google\Service\CloudControlsPartnerService(...);
* $workloads = $cloudcontrolspartnerService->organizations_locations_customers_workloads;
* </code>
*/
class OrganizationsLocationsCustomersWorkloads extends \Google\Service\Resource
{
/**
* Gets details of a single workload (workloads.get)
*
* @param string $name Required. Format: `organizations/{organization}/locations
* /{location}/customers/{customer}/workloads/{workload}`
* @param array $optParams Optional parameters.
* @return Workload
* @throws \Google\Service\Exception
*/
public function get($name, $optParams = [])
{
$params = ['name' => $name];
$params = array_merge($params, $optParams);
return $this->call('get', [$params], Workload::class);
}
/**
* Gets the EKM connections associated with a workload
* (workloads.getEkmConnections)
*
* @param string $name Required. Format: `organizations/{organization}/locations
* /{location}/customers/{customer}/workloads/{workload}/ekmConnections`
* @param array $optParams Optional parameters.
* @return EkmConnections
* @throws \Google\Service\Exception
*/
public function getEkmConnections($name, $optParams = [])
{
$params = ['name' => $name];
$params = array_merge($params, $optParams);
return $this->call('getEkmConnections', [$params], EkmConnections::class);
}
/**
* Gets the partner permissions granted for a workload
* (workloads.getPartnerPermissions)
*
* @param string $name Required. Name of the resource to get in the format: `org
* anizations/{organization}/locations/{location}/customers/{customer}/workloads
* /{workload}/partnerPermissions`
* @param array $optParams Optional parameters.
* @return PartnerPermissions
* @throws \Google\Service\Exception
*/
public function getPartnerPermissions($name, $optParams = [])
{
$params = ['name' => $name];
$params = array_merge($params, $optParams);
return $this->call('getPartnerPermissions', [$params], PartnerPermissions::class);
}
/**
* Lists customer workloads for a given customer org id
* (workloads.listOrganizationsLocationsCustomersWorkloads)
*
* @param string $parent Required. Parent resource Format:
* `organizations/{organization}/locations/{location}/customers/{customer}`
* @param array $optParams Optional parameters.
*
* @opt_param string filter Optional. Filtering results.
* @opt_param string orderBy Optional. Hint for how to order the results.
* @opt_param int pageSize The maximum number of workloads to return. The
* service may return fewer than this value. If unspecified, at most 500
* workloads will be returned.
* @opt_param string pageToken A page token, received from a previous
* `ListWorkloads` call. Provide this to retrieve the subsequent page.
* @return ListWorkloadsResponse
* @throws \Google\Service\Exception
*/
public function listOrganizationsLocationsCustomersWorkloads($parent, $optParams = [])
{
$params = ['parent' => $parent];
$params = array_merge($params, $optParams);
return $this->call('list', [$params], ListWorkloadsResponse::class);
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(OrganizationsLocationsCustomersWorkloads::class, 'Google_Service_CloudControlsPartnerService_Resource_OrganizationsLocationsCustomersWorkloads');
@@ -0,0 +1,61 @@
<?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\CloudControlsPartnerService\Resource;
use Google\Service\CloudControlsPartnerService\ListAccessApprovalRequestsResponse;
/**
* The "accessApprovalRequests" collection of methods.
* Typical usage is:
* <code>
* $cloudcontrolspartnerService = new Google\Service\CloudControlsPartnerService(...);
* $accessApprovalRequests = $cloudcontrolspartnerService->organizations_locations_customers_workloads_accessApprovalRequests;
* </code>
*/
class OrganizationsLocationsCustomersWorkloadsAccessApprovalRequests extends \Google\Service\Resource
{
/**
* Deprecated: Only returns access approval requests directly associated with an
* assured workload folder. (accessApprovalRequests.listOrganizationsLocationsCu
* stomersWorkloadsAccessApprovalRequests)
*
* @param string $parent Required. Parent resource Format: `organizations/{organ
* ization}/locations/{location}/customers/{customer}/workloads/{workload}`
* @param array $optParams Optional parameters.
*
* @opt_param string filter Optional. Filtering results.
* @opt_param string orderBy Optional. Hint for how to order the results.
* @opt_param int pageSize Optional. The maximum number of access requests to
* return. The service may return fewer than this value. If unspecified, at most
* 500 access requests will be returned.
* @opt_param string pageToken Optional. A page token, received from a previous
* `ListAccessApprovalRequests` call. Provide this to retrieve the subsequent
* page.
* @return ListAccessApprovalRequestsResponse
* @throws \Google\Service\Exception
*/
public function listOrganizationsLocationsCustomersWorkloadsAccessApprovalRequests($parent, $optParams = [])
{
$params = ['parent' => $parent];
$params = array_merge($params, $optParams);
return $this->call('list', [$params], ListAccessApprovalRequestsResponse::class);
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(OrganizationsLocationsCustomersWorkloadsAccessApprovalRequests::class, 'Google_Service_CloudControlsPartnerService_Resource_OrganizationsLocationsCustomersWorkloadsAccessApprovalRequests');
@@ -0,0 +1,86 @@
<?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\CloudControlsPartnerService\Resource;
use Google\Service\CloudControlsPartnerService\ListViolationsResponse;
use Google\Service\CloudControlsPartnerService\Violation;
/**
* The "violations" collection of methods.
* Typical usage is:
* <code>
* $cloudcontrolspartnerService = new Google\Service\CloudControlsPartnerService(...);
* $violations = $cloudcontrolspartnerService->organizations_locations_customers_workloads_violations;
* </code>
*/
class OrganizationsLocationsCustomersWorkloadsViolations extends \Google\Service\Resource
{
/**
* Gets details of a single Violation. (violations.get)
*
* @param string $name Required. Format: `organizations/{organization}/locations
* /{location}/customers/{customer}/workloads/{workload}/violations/{violation}`
* @param array $optParams Optional parameters.
* @return Violation
* @throws \Google\Service\Exception
*/
public function get($name, $optParams = [])
{
$params = ['name' => $name];
$params = array_merge($params, $optParams);
return $this->call('get', [$params], Violation::class);
}
/**
* Lists Violations for a workload Callers may also choose to read across
* multiple Customers or for a single customer as per
* [AIP-159](https://google.aip.dev/159) by using '-' (the hyphen or dash
* character) as a wildcard character instead of {customer} & {workload}.
* Format: `organizations/{organization}/locations/{location}/customers/{custome
* r}/workloads/{workload}`
* (violations.listOrganizationsLocationsCustomersWorkloadsViolations)
*
* @param string $parent Required. Parent resource Format `organizations/{organi
* zation}/locations/{location}/customers/{customer}/workloads/{workload}`
* @param array $optParams Optional parameters.
*
* @opt_param string filter Optional. Filtering results
* @opt_param string interval.endTime Optional. Exclusive end of the interval.
* If specified, a Timestamp matching this interval will have to be before the
* end.
* @opt_param string interval.startTime Optional. Inclusive start of the
* interval. If specified, a Timestamp matching this interval will have to be
* the same or after the start.
* @opt_param string orderBy Optional. Hint for how to order the results
* @opt_param int pageSize Optional. The maximum number of customers row to
* return. The service may return fewer than this value. If unspecified, at most
* 10 customers will be returned.
* @opt_param string pageToken Optional. A page token, received from a previous
* `ListViolations` call. Provide this to retrieve the subsequent page.
* @return ListViolationsResponse
* @throws \Google\Service\Exception
*/
public function listOrganizationsLocationsCustomersWorkloadsViolations($parent, $optParams = [])
{
$params = ['parent' => $parent];
$params = array_merge($params, $optParams);
return $this->call('list', [$params], ListViolationsResponse::class);
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(OrganizationsLocationsCustomersWorkloadsViolations::class, 'Google_Service_CloudControlsPartnerService_Resource_OrganizationsLocationsCustomersWorkloadsViolations');