ServiceConnectionMap_ConsumerPscConfig constructor
ServiceConnectionMap_ConsumerPscConfig({
- String? project,
- String? network,
- bool? disableGlobalAccess,
- ServiceConnectionMap_ConsumerPscConfig_State? state,
Implementation
factory ServiceConnectionMap_ConsumerPscConfig({
$core.String? project,
$core.String? network,
$core.bool? disableGlobalAccess,
ServiceConnectionMap_ConsumerPscConfig_State? state,
}) {
final $result = create();
if (project != null) {
$result.project = project;
}
if (network != null) {
$result.network = network;
}
if (disableGlobalAccess != null) {
$result.disableGlobalAccess = disableGlobalAccess;
}
if (state != null) {
$result.state = state;
}
return $result;
}