cloud-8.x-2.0-beta1/modules/cloud_service_providers/aws_cloud/src/Entity/Vpc/SubnetViewBuilder.php
modules/cloud_service_providers/aws_cloud/src/Entity/Vpc/SubnetViewBuilder.php
<?php
namespace Drupal\aws_cloud\Entity\Vpc;
use Drupal\aws_cloud\Entity\Ec2\AwsCloudViewBuilder;
/**
* Provides the subnet view builders.
*/
class SubnetViewBuilder extends AwsCloudViewBuilder {
/**
* {@inheritdoc}
*/
protected function getFieldsetDefs() {
return [
[
'name' => 'subnet',
'title' => t('Subnet'),
'open' => TRUE,
'fields' => [
'subnet_id',
'vpc_id',
'state',
'account_id',
'created',
],
],
[
'name' => 'fieldset_tags',
'title' => t('Tags'),
'open' => TRUE,
'fields' => [
'tags',
],
],
[
'name' => 'others',
'title' => t('Others'),
'open' => FALSE,
'fields' => [
'cloud_context',
'uid',
],
],
];
}
}
