VmExtensionPolicyLabelSelector.fromJson constructor

VmExtensionPolicyLabelSelector.fromJson(
  1. Map json_
)

Implementation

VmExtensionPolicyLabelSelector.fromJson(core.Map json_)
  : this(
      inclusionLabels:
          (json_['inclusionLabels'] as core.Map<core.String, core.dynamic>?)
              ?.map((key, value) => core.MapEntry(key, value as core.String)),
    );