Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Regenerate integrations client #6319

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 0 additions & 34 deletions src/Integrations.php
Original file line number Diff line number Diff line change
Expand Up @@ -1141,40 +1141,6 @@ public function __construct($clientOrConfig = [], $rootUrl = null)
'type' => 'string',
],
],
],'listExecutions' => [
'path' => 'v1/{+parent}:executions',
'httpMethod' => 'GET',
'parameters' => [
'parent' => [
'location' => 'path',
'type' => 'string',
'required' => true,
],
'filter' => [
'location' => 'query',
'type' => 'string',
],
'orderBy' => [
'location' => 'query',
'type' => 'string',
],
'pageSize' => [
'location' => 'query',
'type' => 'integer',
],
'pageToken' => [
'location' => 'query',
'type' => 'string',
],
'readMask' => [
'location' => 'query',
'type' => 'string',
],
'truncateParams' => [
'location' => 'query',
'type' => 'boolean',
],
],
],'patch' => [
'path' => 'v1/{+name}',
'httpMethod' => 'PATCH',
Expand Down
18 changes: 18 additions & 0 deletions src/Integrations/GoogleCloudIntegrationsV1alphaExecution.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@
class GoogleCloudIntegrationsV1alphaExecution extends \Google\Collection
{
protected $collection_key = 'responseParams';
/**
* @var string
*/
public $cloudKmsKey;
protected $cloudLoggingDetailsType = GoogleCloudIntegrationsV1alphaCloudLoggingDetails::class;
protected $cloudLoggingDetailsDataType = '';
/**
Expand Down Expand Up @@ -67,6 +71,20 @@ class GoogleCloudIntegrationsV1alphaExecution extends \Google\Collection
*/
public $updateTime;

/**
* @param string
*/
public function setCloudKmsKey($cloudKmsKey)
{
$this->cloudKmsKey = $cloudKmsKey;
}
/**
* @return string
*/
public function getCloudKmsKey()
{
return $this->cloudKmsKey;
}
/**
* @param GoogleCloudIntegrationsV1alphaCloudLoggingDetails
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@
class GoogleCloudIntegrationsV1alphaIntegrationVersion extends \Google\Collection
{
protected $collection_key = 'triggerConfigsInternal';
/**
* @var string
*/
public $cloudKmsKey;
protected $cloudLoggingDetailsType = GoogleCloudIntegrationsV1alphaCloudLoggingDetails::class;
protected $cloudLoggingDetailsDataType = '';
/**
Expand Down Expand Up @@ -105,6 +109,20 @@ class GoogleCloudIntegrationsV1alphaIntegrationVersion extends \Google\Collectio
*/
public $userLabel;

/**
* @param string
*/
public function setCloudKmsKey($cloudKmsKey)
{
$this->cloudKmsKey = $cloudKmsKey;
}
/**
* @return string
*/
public function getCloudKmsKey()
{
return $this->cloudKmsKey;
}
/**
* @param GoogleCloudIntegrationsV1alphaCloudLoggingDetails
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@
use Google\Service\Integrations\GoogleCloudIntegrationsV1alphaExecuteTestCaseResponse;
use Google\Service\Integrations\GoogleCloudIntegrationsV1alphaExecuteTestCasesRequest;
use Google\Service\Integrations\GoogleCloudIntegrationsV1alphaExecuteTestCasesResponse;
use Google\Service\Integrations\GoogleCloudIntegrationsV1alphaListTestCaseExecutionsResponse;
use Google\Service\Integrations\GoogleCloudIntegrationsV1alphaListTestCasesResponse;
use Google\Service\Integrations\GoogleCloudIntegrationsV1alphaTakeoverTestCaseEditLockRequest;
use Google\Service\Integrations\GoogleCloudIntegrationsV1alphaTestCase;
Expand Down Expand Up @@ -170,47 +169,6 @@ public function listProjectsLocationsIntegrationsVersionsTestCases($parent, $opt
$params = array_merge($params, $optParams);
return $this->call('list', [$params], GoogleCloudIntegrationsV1alphaListTestCasesResponse::class);
}
/**
* Lists the results of all functional test executions. The response includes
* the same information as the [execution
* log](https://cloud.google.com/application-integration/docs/viewing-logs) in
* the Integration UI. (testCases.listExecutions)
*
* @param string $parent Required. The parent resource name of the test case
* execution.
* @param array $optParams Optional parameters.
*
* @opt_param string filter Optional. Standard filter field, we support
* filtering on following fields: test_case_id: the ID of the test case.
* CreateTimestamp: the execution created time. event_execution_state: the state
* of the executions. execution_id: the id of the execution. trigger_id: the id
* of the trigger. parameter_type: the type of the parameters involved in the
* execution. All fields support for EQUALS, in additional: CreateTimestamp
* support for LESS_THAN, GREATER_THAN ParameterType support for HAS For
* example: "parameter_type" HAS \"string\" Also supports operators like AND,
* OR, NOT For example, trigger_id=\"id1\" AND test_case_id=\"testCaseId\"
* @opt_param string orderBy Optional. The results would be returned in order
* you specified here. Currently supporting "last_modified_time" and
* "create_time".
* @opt_param int pageSize Optional. The size of entries in the response.
* @opt_param string pageToken Optional. The token returned in the previous
* response.
* @opt_param string readMask Optional. View mask for the response data. If set,
* only the field specified will be returned as part of the result. If not set,
* all fields in event execution info will be filled and returned.
* @opt_param bool truncateParams Optional. If true, the service will truncate
* the params to only keep the first 1000 characters of string params and empty
* the executions in order to make response smaller. Only works for UI and when
* the params fields are not filtered out.
* @return GoogleCloudIntegrationsV1alphaListTestCaseExecutionsResponse
* @throws \Google\Service\Exception
*/
public function listExecutions($parent, $optParams = [])
{
$params = ['parent' => $parent];
$params = array_merge($params, $optParams);
return $this->call('listExecutions', [$params], GoogleCloudIntegrationsV1alphaListTestCaseExecutionsResponse::class);
}
/**
* Updates a test case (testCases.patch)
*
Expand Down
Loading