Skip to content

Commit

Permalink
Autogenerated update (#328)
Browse files Browse the repository at this point in the history
* Autogenerated update

* updates

Co-authored-by: David Supplee <[email protected]>
  • Loading branch information
yoshi-automation and dwsupplee authored Apr 20, 2021
1 parent 46b7168 commit b45ddc3
Show file tree
Hide file tree
Showing 618 changed files with 22,968 additions and 2,089 deletions.
125 changes: 124 additions & 1 deletion src/Google/Service/AIPlatformNotebooks.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
*/
class Google_Service_AIPlatformNotebooks extends Google_Service
{
/** View and manage your data across Google Cloud Platform services. */
/** See, edit, configure, and delete your Google Cloud Platform data. */
const CLOUD_PLATFORM =
"https://www.googleapis.com/auth/cloud-platform";

Expand All @@ -40,6 +40,7 @@ class Google_Service_AIPlatformNotebooks extends Google_Service
public $projects_locations_executions;
public $projects_locations_instances;
public $projects_locations_operations;
public $projects_locations_runtimes;
public $projects_locations_schedules;

/**
Expand Down Expand Up @@ -353,6 +354,16 @@ public function __construct(Google_Client $client, $rootUrl = null)
'required' => true,
),
),
),'rollback' => array(
'path' => 'v1/{+name}:rollback',
'httpMethod' => 'POST',
'parameters' => array(
'name' => array(
'location' => 'path',
'type' => 'string',
'required' => true,
),
),
),'setAccelerator' => array(
'path' => 'v1/{+name}:setAccelerator',
'httpMethod' => 'PATCH',
Expand Down Expand Up @@ -423,6 +434,16 @@ public function __construct(Google_Client $client, $rootUrl = null)
'required' => true,
),
),
),'updateShieldedInstanceConfig' => array(
'path' => 'v1/{+name}:updateShieldedInstanceConfig',
'httpMethod' => 'PATCH',
'parameters' => array(
'name' => array(
'location' => 'path',
'type' => 'string',
'required' => true,
),
),
),'upgrade' => array(
'path' => 'v1/{+name}:upgrade',
'httpMethod' => 'POST',
Expand Down Expand Up @@ -509,6 +530,108 @@ public function __construct(Google_Client $client, $rootUrl = null)
)
)
);
$this->projects_locations_runtimes = new Google_Service_AIPlatformNotebooks_Resource_ProjectsLocationsRuntimes(
$this,
$this->serviceName,
'runtimes',
array(
'methods' => array(
'create' => array(
'path' => 'v1/{+parent}/runtimes',
'httpMethod' => 'POST',
'parameters' => array(
'parent' => array(
'location' => 'path',
'type' => 'string',
'required' => true,
),
'runtimeId' => array(
'location' => 'query',
'type' => 'string',
),
),
),'delete' => array(
'path' => 'v1/{+name}',
'httpMethod' => 'DELETE',
'parameters' => array(
'name' => array(
'location' => 'path',
'type' => 'string',
'required' => true,
),
),
),'get' => array(
'path' => 'v1/{+name}',
'httpMethod' => 'GET',
'parameters' => array(
'name' => array(
'location' => 'path',
'type' => 'string',
'required' => true,
),
),
),'list' => array(
'path' => 'v1/{+parent}/runtimes',
'httpMethod' => 'GET',
'parameters' => array(
'parent' => array(
'location' => 'path',
'type' => 'string',
'required' => true,
),
'pageSize' => array(
'location' => 'query',
'type' => 'integer',
),
'pageToken' => array(
'location' => 'query',
'type' => 'string',
),
),
),'reset' => array(
'path' => 'v1/{+name}:reset',
'httpMethod' => 'POST',
'parameters' => array(
'name' => array(
'location' => 'path',
'type' => 'string',
'required' => true,
),
),
),'start' => array(
'path' => 'v1/{+name}:start',
'httpMethod' => 'POST',
'parameters' => array(
'name' => array(
'location' => 'path',
'type' => 'string',
'required' => true,
),
),
),'stop' => array(
'path' => 'v1/{+name}:stop',
'httpMethod' => 'POST',
'parameters' => array(
'name' => array(
'location' => 'path',
'type' => 'string',
'required' => true,
),
),
),'switch' => array(
'path' => 'v1/{+name}:switch',
'httpMethod' => 'POST',
'parameters' => array(
'name' => array(
'location' => 'path',
'type' => 'string',
'required' => true,
),
),
),
)
)
);
$this->projects_locations_schedules = new Google_Service_AIPlatformNotebooks_Resource_ProjectsLocationsSchedules(
$this,
$this->serviceName,
Expand Down
30 changes: 30 additions & 0 deletions src/Google/Service/AIPlatformNotebooks/EncryptionConfig.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
<?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.
*/

class Google_Service_AIPlatformNotebooks_EncryptionConfig extends Google_Model
{
public $kmsKey;

public function setKmsKey($kmsKey)
{
$this->kmsKey = $kmsKey;
}
public function getKmsKey()
{
return $this->kmsKey;
}
}
9 changes: 9 additions & 0 deletions src/Google/Service/AIPlatformNotebooks/ExecutionTemplate.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ class Google_Service_AIPlatformNotebooks_ExecutionTemplate extends Google_Model
public $parameters;
public $paramsYamlFile;
public $scaleTier;
public $serviceAccount;

/**
* @param Google_Service_AIPlatformNotebooks_SchedulerAcceleratorConfig
Expand Down Expand Up @@ -106,4 +107,12 @@ public function getScaleTier()
{
return $this->scaleTier;
}
public function setServiceAccount($serviceAccount)
{
$this->serviceAccount = $serviceAccount;
}
public function getServiceAccount()
{
return $this->serviceAccount;
}
}
9 changes: 9 additions & 0 deletions src/Google/Service/AIPlatformNotebooks/Instance.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ class Google_Service_AIPlatformNotebooks_Instance extends Google_Collection
public $metadata;
public $name;
public $network;
public $nicType;
public $noProxyAccess;
public $noPublicIp;
public $noRemoveDataDisk;
Expand Down Expand Up @@ -219,6 +220,14 @@ public function getNetwork()
{
return $this->network;
}
public function setNicType($nicType)
{
$this->nicType = $nicType;
}
public function getNicType()
{
return $this->nicType;
}
public function setNoProxyAccess($noProxyAccess)
{
$this->noProxyAccess = $noProxyAccess;
Expand Down
56 changes: 56 additions & 0 deletions src/Google/Service/AIPlatformNotebooks/ListRuntimesResponse.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
<?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.
*/

class Google_Service_AIPlatformNotebooks_ListRuntimesResponse extends Google_Collection
{
protected $collection_key = 'unreachable';
public $nextPageToken;
protected $runtimesType = 'Google_Service_AIPlatformNotebooks_Runtime';
protected $runtimesDataType = 'array';
public $unreachable;

public function setNextPageToken($nextPageToken)
{
$this->nextPageToken = $nextPageToken;
}
public function getNextPageToken()
{
return $this->nextPageToken;
}
/**
* @param Google_Service_AIPlatformNotebooks_Runtime[]
*/
public function setRuntimes($runtimes)
{
$this->runtimes = $runtimes;
}
/**
* @return Google_Service_AIPlatformNotebooks_Runtime[]
*/
public function getRuntimes()
{
return $this->runtimes;
}
public function setUnreachable($unreachable)
{
$this->unreachable = $unreachable;
}
public function getUnreachable()
{
return $this->unreachable;
}
}
Loading

0 comments on commit b45ddc3

Please sign in to comment.