/var/www/flurhymez/vendor/google/apiclient-services/src/Logging/Resource
NameSizeModeActions
BillingAccounts.php24840644editdlrm
BillingAccountsBuckets.php19030644editdlrm
BillingAccountsBucketsViews.php17090644editdlrm
BillingAccountsExclusions.php62160644editdlrm
BillingAccountsLocations.php26430644editdlrm
BillingAccountsLocationsBuckets.php74420644editdlrm
BillingAccountsLocationsBucketsViews.php53380644editdlrm
BillingAccountsLocationsOperations.php36860644editdlrm
BillingAccountsLogs.php41180644editdlrm
BillingAccountsOperations.php16740644editdlrm
BillingAccountsSinks.php102770644editdlrm
Entries.php38970644editdlrm
Exclusions.php61410644editdlrm
Folders.php24280644editdlrm
FoldersExclusions.php61760644editdlrm
FoldersLocations.php26030644editdlrm
FoldersLocationsBuckets.php81830644editdlrm
FoldersLocationsBucketsViews.php58780644editdlrm
FoldersLocationsOperations.php42180644editdlrm
FoldersLogs.php40780644editdlrm
FoldersSinks.php102370644editdlrm
Locations.php25680644editdlrm
LocationsBuckets.php81480644editdlrm
LocationsBucketsViews.php58430644editdlrm
LocationsOperations.php41830644editdlrm
Logs.php40430644editdlrm
MonitoredResourceDescriptors.php22830644editdlrm
Organizations.php43900644editdlrm
OrganizationsExclusions.php62060644editdlrm
OrganizationsLocations.php26330644editdlrm
OrganizationsLocationsBuckets.php82130644editdlrm
OrganizationsLocationsBucketsViews.php59080644editdlrm
OrganizationsLocationsOperations.php42480644editdlrm
OrganizationsLogs.php41080644editdlrm
OrganizationsSinks.php102670644editdlrm
Projects.php24350644editdlrm
ProjectsExclusions.php61810644editdlrm
ProjectsLocations.php26080644editdlrm
ProjectsLocationsBuckets.php81880644editdlrm
ProjectsLocationsBucketsViews.php58830644editdlrm
ProjectsLocationsOperations.php42230644editdlrm
ProjectsLogs.php40830644editdlrm
ProjectsMetrics.php46170644editdlrm
ProjectsSinks.php102420644editdlrm
Sinks.php78360644editdlrm
V2.php43020644editdlrm
Edit: /var/www/flurhymez/vendor/google/apiclient-services/src/Logging/Resource/V2.php (4302B)
* $loggingService = new Google\Service\Logging(...); * $v2 = $loggingService->v2; * */ class V2 extends \Google\Service\Resource { /** * Gets the Logging CMEK settings for the given resource.Note: CMEK for the Log * Router can be configured for Google Cloud projects, folders, organizations * and billing accounts. Once configured for an organization, it applies to all * projects and folders in the Google Cloud organization.See Enabling CMEK for * Log Router (https://cloud.google.com/logging/docs/routing/managed-encryption) * for more information. (v2.getCmekSettings) * * @param string $name Required. The resource for which to retrieve CMEK * settings. "projects/[PROJECT_ID]/cmekSettings" * "organizations/[ORGANIZATION_ID]/cmekSettings" * "billingAccounts/[BILLING_ACCOUNT_ID]/cmekSettings" * "folders/[FOLDER_ID]/cmekSettings" For * example:"organizations/12345/cmekSettings"Note: CMEK for the Log Router can * be configured for Google Cloud projects, folders, organizations and billing * accounts. Once configured for an organization, it applies to all projects and * folders in the Google Cloud organization. * @param array $optParams Optional parameters. * @return CmekSettings */ public function getCmekSettings($name, $optParams = []) { $params = ['name' => $name]; $params = array_merge($params, $optParams); return $this->call('getCmekSettings', [$params], CmekSettings::class); } /** * Updates the Log Router CMEK settings for the given resource.Note: CMEK for * the Log Router can currently only be configured for Google Cloud * organizations. Once configured, it applies to all projects and folders in the * Google Cloud organization.UpdateCmekSettings will fail if 1) kms_key_name is * invalid, or 2) the associated service account does not have the required * roles/cloudkms.cryptoKeyEncrypterDecrypter role assigned for the key, or 3) * access to the key is disabled.See Enabling CMEK for Log Router * (https://cloud.google.com/logging/docs/routing/managed-encryption) for more * information. (v2.updateCmekSettings) * * @param string $name Required. The resource name for the CMEK settings to * update. "projects/[PROJECT_ID]/cmekSettings" * "organizations/[ORGANIZATION_ID]/cmekSettings" * "billingAccounts/[BILLING_ACCOUNT_ID]/cmekSettings" * "folders/[FOLDER_ID]/cmekSettings" For * example:"organizations/12345/cmekSettings"Note: CMEK for the Log Router can * currently only be configured for Google Cloud organizations. Once configured, * it applies to all projects and folders in the Google Cloud organization. * @param CmekSettings $postBody * @param array $optParams Optional parameters. * * @opt_param string updateMask Optional. Field mask identifying which fields * from cmek_settings should be updated. A field will be overwritten if and only * if it is in the update mask. Output only fields cannot be updated.See * FieldMask for more information.For example: "updateMask=kmsKeyName" * @return CmekSettings */ public function updateCmekSettings($name, CmekSettings $postBody, $optParams = []) { $params = ['name' => $name, 'postBody' => $postBody]; $params = array_merge($params, $optParams); return $this->call('updateCmekSettings', [$params], CmekSettings::class); } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(V2::class, 'Google_Service_Logging_Resource_V2');