BackendServiceTlsSettings.fromJson constructor

BackendServiceTlsSettings.fromJson(
  1. Map json_
)

Implementation

BackendServiceTlsSettings.fromJson(core.Map json_)
  : this(
      authenticationConfig: json_['authenticationConfig'] as core.String?,
      sni: json_['sni'] as core.String?,
      subjectAltNames: (json_['subjectAltNames'] as core.List?)
          ?.map(
            (value) => BackendServiceTlsSettingsSubjectAltName.fromJson(
              value as core.Map<core.String, core.dynamic>,
            ),
          )
          .toList(),
    );