GoogleServiceNetworkingConnection constructor
GoogleServiceNetworkingConnection({})
Implementation
GoogleServiceNetworkingConnection({
required super.localName,
required TfArg<String> network,
required TfArg<String> service,
required TfArg<List<String>> reservedPeeringRanges,
TfArg<String>? deletionPolicy,
TfArg<bool>? updateOnCreationFail,
super.lifecycle,
super.dependsOn,
}) : super(
terraformType: tfType,
argMap: {
'network': network,
'service': service,
'reserved_peering_ranges': reservedPeeringRanges,
if (deletionPolicy != null) 'deletion_policy': deletionPolicy,
if (updateOnCreationFail != null)
'update_on_creation_fail': updateOnCreationFail,
},
);