Skip to content

Commit 0314659

Browse files
committed
Support Conditional Access Policy.
1 parent e404826 commit 0314659

File tree

3 files changed

+142
-1
lines changed

3 files changed

+142
-1
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# CHANGELOG
22

3+
## 1.8.2252 - 2025-3-20
4+
- Support Conditional Access Policy.
5+
6+
37
## 1.8.2251 - 2025-3-18
48
- Supported DescribeImageSharePermission.
59

src/Eiam/V20211201/EiamApiResolver.php

+137
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
* @method AuthorizeApplicationToUsers authorizeApplicationToUsers(array $options = [])
1313
* @method CreateApplication createApplication(array $options = [])
1414
* @method CreateApplicationClientSecret createApplicationClientSecret(array $options = [])
15+
* @method CreateConditionalAccessPolicy createConditionalAccessPolicy(array $options = [])
1516
* @method CreateDomain createDomain(array $options = [])
1617
* @method CreateDomainProxyToken createDomainProxyToken(array $options = [])
1718
* @method CreateGroup createGroup(array $options = [])
@@ -22,6 +23,7 @@
2223
* @method CreateUser createUser(array $options = [])
2324
* @method DeleteApplication deleteApplication(array $options = [])
2425
* @method DeleteApplicationClientSecret deleteApplicationClientSecret(array $options = [])
26+
* @method DeleteConditionalAccessPolicy deleteConditionalAccessPolicy(array $options = [])
2527
* @method DeleteDomain deleteDomain(array $options = [])
2628
* @method DeleteDomainProxyToken deleteDomainProxyToken(array $options = [])
2729
* @method DeleteGroup deleteGroup(array $options = [])
@@ -36,6 +38,7 @@
3638
* @method DisableApplicationClientSecret disableApplicationClientSecret(array $options = [])
3739
* @method DisableApplicationProvisioning disableApplicationProvisioning(array $options = [])
3840
* @method DisableApplicationSso disableApplicationSso(array $options = [])
41+
* @method DisableConditionalAccessPolicy disableConditionalAccessPolicy(array $options = [])
3942
* @method DisableDomainProxyToken disableDomainProxyToken(array $options = [])
4043
* @method DisableIdentityProviderUdPull disableIdentityProviderUdPull(array $options = [])
4144
* @method DisableInitDomainAutoRedirect disableInitDomainAutoRedirect(array $options = [])
@@ -45,6 +48,7 @@
4548
* @method EnableApplicationClientSecret enableApplicationClientSecret(array $options = [])
4649
* @method EnableApplicationProvisioning enableApplicationProvisioning(array $options = [])
4750
* @method EnableApplicationSso enableApplicationSso(array $options = [])
51+
* @method EnableConditionalAccessPolicy enableConditionalAccessPolicy(array $options = [])
4852
* @method EnableDomainProxyToken enableDomainProxyToken(array $options = [])
4953
* @method EnableIdentityProviderUdPull enableIdentityProviderUdPull(array $options = [])
5054
* @method EnableInitDomainAutoRedirect enableInitDomainAutoRedirect(array $options = [])
@@ -54,6 +58,7 @@
5458
* @method GetApplicationProvisioningConfig getApplicationProvisioningConfig(array $options = [])
5559
* @method GetApplicationProvisioningScope getApplicationProvisioningScope(array $options = [])
5660
* @method GetApplicationSsoConfig getApplicationSsoConfig(array $options = [])
61+
* @method GetConditionalAccessPolicy getConditionalAccessPolicy(array $options = [])
5762
* @method GetDomain getDomain(array $options = [])
5863
* @method GetDomainDnsChallenge getDomainDnsChallenge(array $options = [])
5964
* @method GetForgetPasswordConfiguration getForgetPasswordConfiguration(array $options = [])
@@ -75,6 +80,8 @@
7580
* @method ListApplications listApplications(array $options = [])
7681
* @method ListApplicationsForOrganizationalUnit listApplicationsForOrganizationalUnit(array $options = [])
7782
* @method ListApplicationsForUser listApplicationsForUser(array $options = [])
83+
* @method ListConditionalAccessPolicies listConditionalAccessPolicies(array $options = [])
84+
* @method ListConditionalAccessPoliciesForNetworkZone listConditionalAccessPoliciesForNetworkZone(array $options = [])
7885
* @method ListDomainProxyTokens listDomainProxyTokens(array $options = [])
7986
* @method ListDomains listDomains(array $options = [])
8087
* @method ListEiamInstances listEiamInstances(array $options = [])
@@ -119,6 +126,8 @@
119126
* @method UnlockUser unlockUser(array $options = [])
120127
* @method UpdateApplicationAuthorizationType updateApplicationAuthorizationType(array $options = [])
121128
* @method UpdateApplicationDescription updateApplicationDescription(array $options = [])
129+
* @method UpdateConditionalAccessPolicy updateConditionalAccessPolicy(array $options = [])
130+
* @method UpdateConditionalAccessPolicyDescription updateConditionalAccessPolicyDescription(array $options = [])
122131
* @method UpdateGroup updateGroup(array $options = [])
123132
* @method UpdateGroupDescription updateGroupDescription(array $options = [])
124133
* @method UpdateIdentityProvider updateIdentityProvider(array $options = [])
@@ -243,6 +252,32 @@ class CreateApplicationClientSecret extends Rpc
243252
{
244253
}
245254

255+
/**
256+
* @method string getClientToken()
257+
* @method $this withClientToken($value)
258+
* @method string getConditionsConfig()
259+
* @method $this withConditionsConfig($value)
260+
* @method string getDescription()
261+
* @method $this withDescription($value)
262+
* @method string getConditionalAccessPolicyType()
263+
* @method $this withConditionalAccessPolicyType($value)
264+
* @method string getDecisionType()
265+
* @method $this withDecisionType($value)
266+
* @method string getEvaluateAt()
267+
* @method $this withEvaluateAt($value)
268+
* @method string getPriority()
269+
* @method $this withPriority($value)
270+
* @method string getDecisionConfig()
271+
* @method $this withDecisionConfig($value)
272+
* @method string getConditionalAccessPolicyName()
273+
* @method $this withConditionalAccessPolicyName($value)
274+
* @method string getInstanceId()
275+
* @method $this withInstanceId($value)
276+
*/
277+
class CreateConditionalAccessPolicy extends Rpc
278+
{
279+
}
280+
246281
/**
247282
* @method string getFiling()
248283
* @method $this withFiling($value)
@@ -417,6 +452,16 @@ class DeleteApplicationClientSecret extends Rpc
417452
{
418453
}
419454

455+
/**
456+
* @method string getConditionalAccessPolicyId()
457+
* @method $this withConditionalAccessPolicyId($value)
458+
* @method string getInstanceId()
459+
* @method $this withInstanceId($value)
460+
*/
461+
class DeleteConditionalAccessPolicy extends Rpc
462+
{
463+
}
464+
420465
/**
421466
* @method string getDomainId()
422467
* @method $this withDomainId($value)
@@ -559,6 +604,16 @@ class DisableApplicationSso extends Rpc
559604
{
560605
}
561606

607+
/**
608+
* @method string getConditionalAccessPolicyId()
609+
* @method $this withConditionalAccessPolicyId($value)
610+
* @method string getInstanceId()
611+
* @method $this withInstanceId($value)
612+
*/
613+
class DisableConditionalAccessPolicy extends Rpc
614+
{
615+
}
616+
562617
/**
563618
* @method string getDomainProxyTokenId()
564619
* @method $this withDomainProxyTokenId($value)
@@ -651,6 +706,16 @@ class EnableApplicationSso extends Rpc
651706
{
652707
}
653708

709+
/**
710+
* @method string getConditionalAccessPolicyId()
711+
* @method $this withConditionalAccessPolicyId($value)
712+
* @method string getInstanceId()
713+
* @method $this withInstanceId($value)
714+
*/
715+
class EnableConditionalAccessPolicy extends Rpc
716+
{
717+
}
718+
654719
/**
655720
* @method string getDomainProxyTokenId()
656721
* @method $this withDomainProxyTokenId($value)
@@ -741,6 +806,16 @@ class GetApplicationSsoConfig extends Rpc
741806
{
742807
}
743808

809+
/**
810+
* @method string getConditionalAccessPolicyId()
811+
* @method $this withConditionalAccessPolicyId($value)
812+
* @method string getInstanceId()
813+
* @method $this withInstanceId($value)
814+
*/
815+
class GetConditionalAccessPolicy extends Rpc
816+
{
817+
}
818+
744819
/**
745820
* @method string getDomainId()
746821
* @method $this withDomainId($value)
@@ -909,8 +984,12 @@ class ListApplicationClientSecrets extends Rpc
909984
}
910985

911986
/**
987+
* @method string getResourceServerStatus()
988+
* @method $this withResourceServerStatus($value)
912989
* @method string getPageNumber()
913990
* @method $this withPageNumber($value)
991+
* @method string getM2MClientStatus()
992+
* @method $this withM2MClientStatus($value)
914993
* @method string getPageSize()
915994
* @method $this withPageSize($value)
916995
* @method string getAuthorizationType()
@@ -921,6 +1000,8 @@ class ListApplicationClientSecrets extends Rpc
9211000
* @method $this withApplicationIds($value)
9221001
* @method string getInstanceId()
9231002
* @method $this withInstanceId($value)
1003+
* @method string getSsoType()
1004+
* @method $this withSsoType($value)
9241005
* @method string getStatus()
9251006
* @method $this withStatus($value)
9261007
*/
@@ -962,6 +1043,30 @@ class ListApplicationsForUser extends Rpc
9621043
{
9631044
}
9641045

1046+
/**
1047+
* @method string getNextToken()
1048+
* @method $this withNextToken($value)
1049+
* @method string getPreviousToken()
1050+
* @method $this withPreviousToken($value)
1051+
* @method string getInstanceId()
1052+
* @method $this withInstanceId($value)
1053+
* @method string getMaxResults()
1054+
* @method $this withMaxResults($value)
1055+
*/
1056+
class ListConditionalAccessPolicies extends Rpc
1057+
{
1058+
}
1059+
1060+
/**
1061+
* @method string getNetworkZoneId()
1062+
* @method $this withNetworkZoneId($value)
1063+
* @method string getInstanceId()
1064+
* @method $this withInstanceId($value)
1065+
*/
1066+
class ListConditionalAccessPoliciesForNetworkZone extends Rpc
1067+
{
1068+
}
1069+
9651070
/**
9661071
* @method string getDomainId()
9671072
* @method $this withDomainId($value)
@@ -1586,6 +1691,38 @@ class UpdateApplicationDescription extends Rpc
15861691
{
15871692
}
15881693

1694+
/**
1695+
* @method string getConditionsConfig()
1696+
* @method $this withConditionsConfig($value)
1697+
* @method string getDecisionType()
1698+
* @method $this withDecisionType($value)
1699+
* @method string getConditionalAccessPolicyId()
1700+
* @method $this withConditionalAccessPolicyId($value)
1701+
* @method string getPriority()
1702+
* @method $this withPriority($value)
1703+
* @method string getDecisionConfig()
1704+
* @method $this withDecisionConfig($value)
1705+
* @method string getConditionalAccessPolicyName()
1706+
* @method $this withConditionalAccessPolicyName($value)
1707+
* @method string getInstanceId()
1708+
* @method $this withInstanceId($value)
1709+
*/
1710+
class UpdateConditionalAccessPolicy extends Rpc
1711+
{
1712+
}
1713+
1714+
/**
1715+
* @method string getDescription()
1716+
* @method $this withDescription($value)
1717+
* @method string getConditionalAccessPolicyId()
1718+
* @method $this withConditionalAccessPolicyId($value)
1719+
* @method string getInstanceId()
1720+
* @method $this withInstanceId($value)
1721+
*/
1722+
class UpdateConditionalAccessPolicyDescription extends Rpc
1723+
{
1724+
}
1725+
15891726
/**
15901727
* @method string getGroupId()
15911728
* @method $this withGroupId($value)

src/Release.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ class Release
1616
/**
1717
* Version of the SDK
1818
*/
19-
const VERSION = '1.8.2251';
19+
const VERSION = '1.8.2252';
2020

2121
/**
2222
* @param Event $event

0 commit comments

Comments
 (0)