JFIF x x C C " } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w !1AQ aq"2B #3Rbr{
File "GoogleCloudDiscoveryengineV1ActionConfig.php"
Full Path: /home/palsarh/web/palsarh.in/public_html/vendor/google/apiclient-services/src/DiscoveryEngine/GoogleCloudDiscoveryengineV1ActionConfig.php
File size: 3.79 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\DiscoveryEngine;
class GoogleCloudDiscoveryengineV1ActionConfig extends \Google\Model
{
/**
* Optional. Action parameters in structured json format.
*
* @var array[]
*/
public $actionParams;
/**
* Output only. The connector contains the necessary parameters and is
* configured to support actions.
*
* @var bool
*/
public $isActionConfigured;
/**
* Optional. Action parameters in json string format.
*
* @var string
*/
public $jsonActionParams;
/**
* Optional. The Service Directory resource name
* (projects/locations/namespaces/services) representing a VPC network
* endpoint used to connect to the data source's `instance_uri`, defined in
* DataConnector.params. Required when VPC Service Controls are enabled.
*
* @var string
*/
public $serviceName;
/**
* Optional. Whether to use static secrets for the connector. If true, the
* secrets provided in the action_params will be ignored.
*
* @var bool
*/
public $useStaticSecrets;
/**
* Optional. Action parameters in structured json format.
*
* @param array[] $actionParams
*/
public function setActionParams($actionParams)
{
$this->actionParams = $actionParams;
}
/**
* @return array[]
*/
public function getActionParams()
{
return $this->actionParams;
}
/**
* Output only. The connector contains the necessary parameters and is
* configured to support actions.
*
* @param bool $isActionConfigured
*/
public function setIsActionConfigured($isActionConfigured)
{
$this->isActionConfigured = $isActionConfigured;
}
/**
* @return bool
*/
public function getIsActionConfigured()
{
return $this->isActionConfigured;
}
/**
* Optional. Action parameters in json string format.
*
* @param string $jsonActionParams
*/
public function setJsonActionParams($jsonActionParams)
{
$this->jsonActionParams = $jsonActionParams;
}
/**
* @return string
*/
public function getJsonActionParams()
{
return $this->jsonActionParams;
}
/**
* Optional. The Service Directory resource name
* (projects/locations/namespaces/services) representing a VPC network
* endpoint used to connect to the data source's `instance_uri`, defined in
* DataConnector.params. Required when VPC Service Controls are enabled.
*
* @param string $serviceName
*/
public function setServiceName($serviceName)
{
$this->serviceName = $serviceName;
}
/**
* @return string
*/
public function getServiceName()
{
return $this->serviceName;
}
/**
* Optional. Whether to use static secrets for the connector. If true, the
* secrets provided in the action_params will be ignored.
*
* @param bool $useStaticSecrets
*/
public function setUseStaticSecrets($useStaticSecrets)
{
$this->useStaticSecrets = $useStaticSecrets;
}
/**
* @return bool
*/
public function getUseStaticSecrets()
{
return $this->useStaticSecrets;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleCloudDiscoveryengineV1ActionConfig::class, 'Google_Service_DiscoveryEngine_GoogleCloudDiscoveryengineV1ActionConfig');