@@ -111,7 +111,131 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
111111
112112## OUTPUTS
113113
114- ### System.Object
114+ Get-AdfsProperties
115+ Microsoft.IdentityServer.Management.Resources.ServiceProperties
116+ {get;} AcceptableIdentifiers uri[]
117+ {get;} AddProxyAuthorizationRules string
118+ {get;} AllowLocalAdminsServiceAdministration bool
119+ {get;} AllowSystemServiceAdministration bool
120+ {get;} ArtifactDbConnection string
121+ {get;} AuditLevel string[]
122+ {get;} AuthenticationContextOrder uri[]
123+ {get;} AutoCertificateRollover bool
124+ {get;} BrowserSsoEnabled bool
125+ {get;} BrowserSsoSupportedUserAgents string[]
126+ {get;} CertificateCriticalThreshold int
127+ {get;} CertificateDuration int
128+ {get;} CertificateGenerationThreshold int
129+ {get;} CertificatePromotionThreshold int
130+ {get;} CertificateRolloverInterval int
131+ {get;} CertificateSharingContainer string
132+ {get;} CertificateThresholdMultiplier int
133+ {get;} ClientCertRevocationCheck Microsoft.IdentityServer.PolicyModel.Configuration.RevocationSetting
134+ {get;} ContactPerson Microsoft.IdentityServer.Management.Resources.ContactPerson
135+ {get;} CurrentFarmBehavior int
136+ {get;} DelegateServiceAdministration string
137+ {get;} DeviceUsageWindowInDays int
138+ {get;} DisplayName string
139+ {get;} EnableIdpInitiatedSignonPage bool
140+ {get;} EnableOauthLogout bool
141+ {get;} ExtendedProtectionTokenCheck Microsoft.IdentityServer.PolicyModel.Configuration.ProtectionPolicySetting
142+ {get;} ExtranetLockoutEnabled bool
143+ {get;} ExtranetLockoutRequirePDC bool
144+ {get;} ExtranetLockoutThreshold int
145+ {get;} ExtranetObservationWindow timespan
146+ {get;} FederationPassiveAddress string
147+ {get;} GlobalRelyingPartyClaimsIssuancePolicy string
148+ {get;} HostName string
149+ {get;} HttpPort int
150+ {get;} HttpsPort int
151+ {get;} Identifier uri
152+ {get;} IdTokenIssuer uri
153+ {get;} IgnoreTokenBinding bool
154+ {get;} InstalledLanguage string
155+ {get;} IntranetUseLocalClaimsProvider bool
156+ {get;} KmsiEnabled bool
157+ {get;} KmsiLifetimeMins int
158+ {get;} LocalAuthenticationTypesEnabled bool
159+ {get;} LogLevel string[]
160+ {get;} LoopDetectionEnabled bool
161+ {get;} LoopDetectionMaximumTokensIssuedInInterval int
162+ {get;} LoopDetectionTimeIntervalInSeconds int
163+ {get;} MonitoringInterval int
164+ {get;} NetTcpPort int
165+ {get;} NtlmOnlySupportedClientAtProxy bool
166+ {get;} OrganizationInfo Microsoft.IdentityServer.Management.Resources.Organization
167+ {get;} PasswordValidationDelayInMinutes int
168+ {get;} PersistentSsoCutoffTime datetime
169+ {get;} PersistentSsoEnabled bool
170+ {get;} PersistentSsoLifetimeMins int
171+ {get;} PreventTokenReplays bool
172+ {get;} ProxyTrustTokenLifetime int
173+ {get;} RelayStateForIdpInitiatedSignOnEnabled bool
174+ {get;} ReplayCacheExpirationInterval int
175+ {get;} SamlMessageDeliveryWindow int
176+ {get;} SendClientRequestIdAsQueryStringParameter bool
177+ {get;} SignedSamlRequestsRequired bool
178+ {get;} SignSamlAuthnRequests bool
179+ {get;} SsoLifetime int
180+ {get;} TlsClientPort int
181+ {get;} WiaEvaluationMethod Microsoft.IdentityServer.WiaEvaluationMethodState
182+ {get;} WIASupportedUserAgents string[]
183+ ---------------------------
184+
185+
186+
187+ Microsoft.IdentityServer.PolicyModel.Configuration.RevocationSetting
188+ public enum RevocationSetting
189+ {
190+ None = 0,
191+ CheckEndCert = 1,
192+ CheckEndCertCacheOnly = 2,
193+ CheckChain = 3,
194+ CheckChainCacheOnly = 4,
195+ CheckChainExcludeRoot = 5,
196+ CheckChainExcludeRootCacheOnly = 6,
197+ }
198+
199+ ---------------------------
200+
201+
202+
203+ Microsoft.IdentityServer.Management.Resources.ContactPerson
204+ {get;} ContactType string
205+ {get;} EmailAddresses string[]
206+ {get;} GivenName string
207+ {get;} PhoneNumbers string[]
208+ {get;} Surname string
209+ ---------------------------
210+
211+
212+
213+ (Get-AdfsProperties | select ExtendedProtectionTokenCheck)
214+ public static class ProtectionPolicySetting
215+ {
216+ public const string Allow = "Allow";
217+ public const string Require = "Require";
218+ public const string None = "None";
219+ }
220+ ---------------------------
221+
222+
223+
224+ Microsoft.IdentityServer.Management.Resources.Organization
225+ {get;} DisplayName string
226+ {get;} Name string
227+ {get;} OrganizationUrl string
228+ ---------------------------
229+
230+
231+
232+ (Get-AdfsProperties | select WIASupportedUserAgents)
233+ public enum WiaEvaluationMethodState
234+ {
235+ WiaCapabilityDetection,
236+ WiaUserAgentDetection
237+ }
238+ ---------------------------
115239
116240## NOTES
117241
0 commit comments