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 #4967

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
507 changes: 352 additions & 155 deletions src/Integrations.php

Large diffs are not rendered by default.

72 changes: 54 additions & 18 deletions src/Integrations/GoogleCloudIntegrationsV1alphaClientConfig.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,6 @@ class GoogleCloudIntegrationsV1alphaClientConfig extends \Google\Model
public $clientState;
protected $cloudKmsConfigType = GoogleCloudIntegrationsV1alphaCloudKmsConfig::class;
protected $cloudKmsConfigDataType = '';
public $cloudKmsConfig;
protected $cloudLoggingConfigType = GoogleCloudIntegrationsV1alphaCloudLoggingConfig::class;
protected $cloudLoggingConfigDataType = '';
public $cloudLoggingConfig;
/**
* @var string
*/
Expand All @@ -41,10 +37,18 @@ class GoogleCloudIntegrationsV1alphaClientConfig extends \Google\Model
* @var string
*/
public $description;
/**
* @var bool
*/
public $enableVariableMasking;
/**
* @var string
*/
public $id;
/**
* @var bool
*/
public $isGmek;
/**
* @var string
*/
Expand All @@ -57,6 +61,10 @@ class GoogleCloudIntegrationsV1alphaClientConfig extends \Google\Model
* @var string
*/
public $region;
/**
* @var string
*/
public $runAsServiceAccount;

/**
* @param string
Expand Down Expand Up @@ -100,20 +108,6 @@ public function getCloudKmsConfig()
{
return $this->cloudKmsConfig;
}
/**
* @param GoogleCloudIntegrationsV1alphaCloudLoggingConfig
*/
public function setCloudLoggingConfig(GoogleCloudIntegrationsV1alphaCloudLoggingConfig $cloudLoggingConfig)
{
$this->cloudLoggingConfig = $cloudLoggingConfig;
}
/**
* @return GoogleCloudIntegrationsV1alphaCloudLoggingConfig
*/
public function getCloudLoggingConfig()
{
return $this->cloudLoggingConfig;
}
/**
* @param string
*/
Expand Down Expand Up @@ -142,6 +136,20 @@ public function getDescription()
{
return $this->description;
}
/**
* @param bool
*/
public function setEnableVariableMasking($enableVariableMasking)
{
$this->enableVariableMasking = $enableVariableMasking;
}
/**
* @return bool
*/
public function getEnableVariableMasking()
{
return $this->enableVariableMasking;
}
/**
* @param string
*/
Expand All @@ -156,6 +164,20 @@ public function getId()
{
return $this->id;
}
/**
* @param bool
*/
public function setIsGmek($isGmek)
{
$this->isGmek = $isGmek;
}
/**
* @return bool
*/
public function getIsGmek()
{
return $this->isGmek;
}
/**
* @param string
*/
Expand Down Expand Up @@ -198,6 +220,20 @@ public function getRegion()
{
return $this->region;
}
/**
* @param string
*/
public function setRunAsServiceAccount($runAsServiceAccount)
{
$this->runAsServiceAccount = $runAsServiceAccount;
}
/**
* @return string
*/
public function getRunAsServiceAccount()
{
return $this->runAsServiceAccount;
}
}

// Adding a class alias for backwards compatibility with the previous class name.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,10 @@ class GoogleCloudIntegrationsV1alphaCloudKmsConfig extends \Google\Model
* @var string
*/
public $kmsLocation;
/**
* @var string
*/
public $kmsProjectId;
/**
* @var string
*/
Expand Down Expand Up @@ -78,6 +82,20 @@ public function getKmsLocation()
{
return $this->kmsLocation;
}
/**
* @param string
*/
public function setKmsProjectId($kmsProjectId)
{
$this->kmsProjectId = $kmsProjectId;
}
/**
* @return string
*/
public function getKmsProjectId()
{
return $this->kmsProjectId;
}
/**
* @param string
*/
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
<?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\Integrations;

class GoogleCloudIntegrationsV1alphaDownloadJsonPackageResponse extends \Google\Collection
{
protected $collection_key = 'files';
protected $filesType = GoogleCloudIntegrationsV1alphaFile::class;
protected $filesDataType = 'array';

/**
* @param GoogleCloudIntegrationsV1alphaFile[]
*/
public function setFiles($files)
{
$this->files = $files;
}
/**
* @return GoogleCloudIntegrationsV1alphaFile[]
*/
public function getFiles()
{
return $this->files;
}
}

// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleCloudIntegrationsV1alphaDownloadJsonPackageResponse::class, 'Google_Service_Integrations_GoogleCloudIntegrationsV1alphaDownloadJsonPackageResponse');
78 changes: 78 additions & 0 deletions src/Integrations/GoogleCloudIntegrationsV1alphaFile.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,78 @@
<?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\Integrations;

class GoogleCloudIntegrationsV1alphaFile extends \Google\Model
{
/**
* @var array[]
*/
public $integrationConfig;
protected $integrationVersionType = GoogleCloudIntegrationsV1alphaIntegrationVersion::class;
protected $integrationVersionDataType = '';
/**
* @var string
*/
public $type;

/**
* @param array[]
*/
public function setIntegrationConfig($integrationConfig)
{
$this->integrationConfig = $integrationConfig;
}
/**
* @return array[]
*/
public function getIntegrationConfig()
{
return $this->integrationConfig;
}
/**
* @param GoogleCloudIntegrationsV1alphaIntegrationVersion
*/
public function setIntegrationVersion(GoogleCloudIntegrationsV1alphaIntegrationVersion $integrationVersion)
{
$this->integrationVersion = $integrationVersion;
}
/**
* @return GoogleCloudIntegrationsV1alphaIntegrationVersion
*/
public function getIntegrationVersion()
{
return $this->integrationVersion;
}
/**
* @param string
*/
public function setType($type)
{
$this->type = $type;
}
/**
* @return string
*/
public function getType()
{
return $this->type;
}
}

// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleCloudIntegrationsV1alphaFile::class, 'Google_Service_Integrations_GoogleCloudIntegrationsV1alphaFile');
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ class GoogleCloudIntegrationsV1alphaGetClientMetadataResponse extends \Google\Mo
{
protected $propertiesType = GoogleCloudIntegrationsV1alphaProjectProperties::class;
protected $propertiesDataType = '';
public $properties;

/**
* @param GoogleCloudIntegrationsV1alphaProjectProperties
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ class GoogleCloudIntegrationsV1alphaGetClientResponse extends \Google\Model
{
protected $clientType = GoogleCloudIntegrationsV1alphaClientConfig::class;
protected $clientDataType = '';
public $client;

/**
* @param GoogleCloudIntegrationsV1alphaClientConfig
Expand Down
18 changes: 18 additions & 0 deletions src/Integrations/GoogleCloudIntegrationsV1alphaIntegration.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@ class GoogleCloudIntegrationsV1alphaIntegration extends \Google\Model
* @var bool
*/
public $active;
/**
* @var string
*/
public $createTime;
/**
* @var string
*/
Expand Down Expand Up @@ -58,6 +62,20 @@ public function getActive()
{
return $this->active;
}
/**
* @param string
*/
public function setCreateTime($createTime)
{
$this->createTime = $createTime;
}
/**
* @return string
*/
public function getCreateTime()
{
return $this->createTime;
}
/**
* @param string
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@
class GoogleCloudIntegrationsV1alphaProjectProperties extends \Google\Collection
{
protected $collection_key = 'provisionedRegions';
/**
* @var string
*/
public $billingType;
/**
* @var string
*/
Expand All @@ -29,6 +33,20 @@ class GoogleCloudIntegrationsV1alphaProjectProperties extends \Google\Collection
*/
public $provisionedRegions;

/**
* @param string
*/
public function setBillingType($billingType)
{
$this->billingType = $billingType;
}
/**
* @return string
*/
public function getBillingType()
{
return $this->billingType;
}
/**
* @param string
*/
Expand Down
Loading