ServiceConnectionMap_ConsumerPscConfig constructor

ServiceConnectionMap_ConsumerPscConfig({
  1. String? project,
  2. String? network,
  3. bool? disableGlobalAccess,
  4. 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;
}