JFIF x x C C " } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w !1AQ aq"2B #3Rbr{
File "AssetDiscoveryConfig.php"
Full Path: /home/palsarh/web/palsarh.in/public_html/vendor/google/apiclient-services/src/SecurityCommandCenter/AssetDiscoveryConfig.php
File size: 2.94 KB
MIME-type: text/x-php
Charset: utf-8
<?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\SecurityCommandCenter;
class AssetDiscoveryConfig extends \Google\Collection
{
/**
* Unspecified. Setting the mode with this value will disable
* inclusion/exclusion filtering for Asset Discovery.
*/
public const INCLUSION_MODE_INCLUSION_MODE_UNSPECIFIED = 'INCLUSION_MODE_UNSPECIFIED';
/**
* Asset Discovery will capture only the resources within the projects
* specified. All other resources will be ignored.
*/
public const INCLUSION_MODE_INCLUDE_ONLY = 'INCLUDE_ONLY';
/**
* Asset Discovery will ignore all resources under the projects specified. All
* other resources will be retrieved.
*/
public const INCLUSION_MODE_EXCLUDE = 'EXCLUDE';
protected $collection_key = 'projectIds';
/**
* The folder ids to use for filtering asset discovery. It consists of only
* digits, e.g., 756619654966.
*
* @var string[]
*/
public $folderIds;
/**
* The mode to use for filtering asset discovery.
*
* @var string
*/
public $inclusionMode;
/**
* The project ids to use for filtering asset discovery.
*
* @var string[]
*/
public $projectIds;
/**
* The folder ids to use for filtering asset discovery. It consists of only
* digits, e.g., 756619654966.
*
* @param string[] $folderIds
*/
public function setFolderIds($folderIds)
{
$this->folderIds = $folderIds;
}
/**
* @return string[]
*/
public function getFolderIds()
{
return $this->folderIds;
}
/**
* The mode to use for filtering asset discovery.
*
* Accepted values: INCLUSION_MODE_UNSPECIFIED, INCLUDE_ONLY, EXCLUDE
*
* @param self::INCLUSION_MODE_* $inclusionMode
*/
public function setInclusionMode($inclusionMode)
{
$this->inclusionMode = $inclusionMode;
}
/**
* @return self::INCLUSION_MODE_*
*/
public function getInclusionMode()
{
return $this->inclusionMode;
}
/**
* The project ids to use for filtering asset discovery.
*
* @param string[] $projectIds
*/
public function setProjectIds($projectIds)
{
$this->projectIds = $projectIds;
}
/**
* @return string[]
*/
public function getProjectIds()
{
return $this->projectIds;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(AssetDiscoveryConfig::class, 'Google_Service_SecurityCommandCenter_AssetDiscoveryConfig');