Skip to content

Regenerate apihub client #6622

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

Merged
merged 3 commits into from
May 30, 2025
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
1,395 changes: 1,395 additions & 0 deletions src/APIhub.php

Large diffs are not rendered by default.

25 changes: 25 additions & 0 deletions src/APIhub/ApihubEmpty.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<?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\APIhub;

class ApihubEmpty extends \Google\Model
{
}

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

class GoogleCloudApihubV1APIMetadata extends \Google\Collection
{
protected $collection_key = 'versions';
protected $apiType = GoogleCloudApihubV1Api::class;
protected $apiDataType = '';
/**
* @var string
*/
public $originalCreateTime;
/**
* @var string
*/
public $originalId;
/**
* @var string
*/
public $originalUpdateTime;
protected $versionsType = GoogleCloudApihubV1VersionMetadata::class;
protected $versionsDataType = 'array';

/**
* @param GoogleCloudApihubV1Api
*/
public function setApi(GoogleCloudApihubV1Api $api)
{
$this->api = $api;
}
/**
* @return GoogleCloudApihubV1Api
*/
public function getApi()
{
return $this->api;
}
/**
* @param string
*/
public function setOriginalCreateTime($originalCreateTime)
{
$this->originalCreateTime = $originalCreateTime;
}
/**
* @return string
*/
public function getOriginalCreateTime()
{
return $this->originalCreateTime;
}
/**
* @param string
*/
public function setOriginalId($originalId)
{
$this->originalId = $originalId;
}
/**
* @return string
*/
public function getOriginalId()
{
return $this->originalId;
}
/**
* @param string
*/
public function setOriginalUpdateTime($originalUpdateTime)
{
$this->originalUpdateTime = $originalUpdateTime;
}
/**
* @return string
*/
public function getOriginalUpdateTime()
{
return $this->originalUpdateTime;
}
/**
* @param GoogleCloudApihubV1VersionMetadata[]
*/
public function setVersions($versions)
{
$this->versions = $versions;
}
/**
* @return GoogleCloudApihubV1VersionMetadata[]
*/
public function getVersions()
{
return $this->versions;
}
}

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

class GoogleCloudApihubV1ActionExecutionDetail extends \Google\Model
{
/**
* @var string
*/
public $actionId;

/**
* @param string
*/
public function setActionId($actionId)
{
$this->actionId = $actionId;
}
/**
* @return string
*/
public function getActionId()
{
return $this->actionId;
}
}

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

class GoogleCloudApihubV1AllowedValue extends \Google\Model
{
/**
* @var string
*/
public $description;
/**
* @var string
*/
public $displayName;
/**
* @var string
*/
public $id;
/**
* @var bool
*/
public $immutable;

/**
* @param string
*/
public function setDescription($description)
{
$this->description = $description;
}
/**
* @return string
*/
public function getDescription()
{
return $this->description;
}
/**
* @param string
*/
public function setDisplayName($displayName)
{
$this->displayName = $displayName;
}
/**
* @return string
*/
public function getDisplayName()
{
return $this->displayName;
}
/**
* @param string
*/
public function setId($id)
{
$this->id = $id;
}
/**
* @return string
*/
public function getId()
{
return $this->id;
}
/**
* @param bool
*/
public function setImmutable($immutable)
{
$this->immutable = $immutable;
}
/**
* @return bool
*/
public function getImmutable()
{
return $this->immutable;
}
}

// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleCloudApihubV1AllowedValue::class, 'Google_Service_APIhub_GoogleCloudApihubV1AllowedValue');
Loading