Google_AttachedDisk
The Google Analyticator Google AttachedDisk class.
Defined (1)
The class is defined in the following location(s).
- /google-api-php-client/src/contrib/Google_ComputeService.php
- class Google_AttachedDisk extends Google_Model {
- public $boot;
- public $deviceName;
- public $index;
- public $kind;
- public $mode;
- public $source;
- public $type;
- public function setBoot( $boot) {
- $this->boot = $boot;
- }
- public function getBoot() {
- return $this->boot;
- }
- public function setDeviceName( $deviceName) {
- $this->deviceName = $deviceName;
- }
- public function getDeviceName() {
- return $this->deviceName;
- }
- public function setIndex( $index) {
- $this->index = $index;
- }
- public function getIndex() {
- return $this->index;
- }
- public function setKind( $kind) {
- $this->kind = $kind;
- }
- public function getKind() {
- return $this->kind;
- }
- public function setMode( $mode) {
- $this->mode = $mode;
- }
- public function getMode() {
- return $this->mode;
- }
- public function setSource( $source) {
- $this->source = $source;
- }
- public function getSource() {
- return $this->source;
- }
- public function setType( $type) {
- $this->type = $type;
- }
- public function getType() {
- return $this->type;
- }
- }