azure_mgmt_graph 0.7.0 → 0.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/generated/azure_mgmt_graph.rb +17 -17
- data/lib/generated/azure_mgmt_graph/applications.rb +90 -120
- data/lib/generated/azure_mgmt_graph/graph_rbac_management_client.rb +15 -2
- data/lib/generated/azure_mgmt_graph/groups.rb +132 -121
- data/lib/generated/azure_mgmt_graph/models/aadobject.rb +13 -12
- data/lib/generated/azure_mgmt_graph/models/adgroup.rb +7 -7
- data/lib/generated/azure_mgmt_graph/models/application.rb +12 -12
- data/lib/generated/azure_mgmt_graph/models/application_create_parameters.rb +11 -11
- data/lib/generated/azure_mgmt_graph/models/application_list_result.rb +4 -4
- data/lib/generated/azure_mgmt_graph/models/application_update_parameters.rb +10 -11
- data/lib/generated/azure_mgmt_graph/models/check_group_membership_parameters.rb +2 -2
- data/lib/generated/azure_mgmt_graph/models/check_group_membership_result.rb +2 -2
- data/lib/generated/azure_mgmt_graph/models/get_objects_parameters.rb +6 -6
- data/lib/generated/azure_mgmt_graph/models/get_objects_result.rb +4 -4
- data/lib/generated/azure_mgmt_graph/models/graph_error.rb +4 -4
- data/lib/generated/azure_mgmt_graph/models/group_add_member_parameters.rb +3 -3
- data/lib/generated/azure_mgmt_graph/models/group_create_parameters.rb +9 -9
- data/lib/generated/azure_mgmt_graph/models/group_get_member_groups_parameters.rb +5 -5
- data/lib/generated/azure_mgmt_graph/models/group_get_member_groups_result.rb +4 -3
- data/lib/generated/azure_mgmt_graph/models/group_list_result.rb +3 -3
- data/lib/generated/azure_mgmt_graph/models/key_credential.rb +8 -8
- data/lib/generated/azure_mgmt_graph/models/key_credential_list_result.rb +2 -2
- data/lib/generated/azure_mgmt_graph/models/key_credentials_update_parameters.rb +3 -3
- data/lib/generated/azure_mgmt_graph/models/password_credential.rb +6 -6
- data/lib/generated/azure_mgmt_graph/models/password_credential_list_result.rb +3 -2
- data/lib/generated/azure_mgmt_graph/models/password_credentials_update_parameters.rb +4 -3
- data/lib/generated/azure_mgmt_graph/models/password_profile.rb +3 -3
- data/lib/generated/azure_mgmt_graph/models/service_principal.rb +7 -7
- data/lib/generated/azure_mgmt_graph/models/service_principal_create_parameters.rb +5 -5
- data/lib/generated/azure_mgmt_graph/models/service_principal_list_result.rb +2 -2
- data/lib/generated/azure_mgmt_graph/models/user.rb +9 -9
- data/lib/generated/azure_mgmt_graph/models/user_create_parameters.rb +9 -10
- data/lib/generated/azure_mgmt_graph/models/user_get_member_groups_parameters.rb +5 -5
- data/lib/generated/azure_mgmt_graph/models/user_get_member_groups_result.rb +4 -3
- data/lib/generated/azure_mgmt_graph/models/user_list_result.rb +3 -3
- data/lib/generated/azure_mgmt_graph/models/user_update_parameters.rb +6 -7
- data/lib/generated/azure_mgmt_graph/module_definition.rb +1 -1
- data/lib/generated/azure_mgmt_graph/objects.rb +36 -35
- data/lib/generated/azure_mgmt_graph/service_principals.rb +84 -101
- data/lib/generated/azure_mgmt_graph/users.rb +77 -86
- data/lib/generated/azure_mgmt_graph/version.rb +2 -2
- metadata +4 -4
@@ -1,20 +1,20 @@
|
|
1
1
|
# encoding: utf-8
|
2
|
-
# Code generated by Microsoft (R) AutoRest Code Generator 0.
|
2
|
+
# Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0
|
3
3
|
# Changes may cause incorrect behavior and will be lost if the code is
|
4
4
|
# regenerated.
|
5
5
|
|
6
6
|
module Azure::ARM::Graph
|
7
7
|
module Models
|
8
8
|
#
|
9
|
-
# Request parameters for GetMemberGroups API call
|
9
|
+
# Request parameters for GetMemberGroups API call.
|
10
10
|
#
|
11
11
|
class GroupGetMemberGroupsParameters
|
12
12
|
|
13
13
|
include MsRestAzure
|
14
14
|
|
15
|
-
# @return [Boolean] If true only membership in security
|
16
|
-
# should be checked. Otherwise membership in all groups should be
|
17
|
-
# checked
|
15
|
+
# @return [Boolean] If true, only membership in security-enabled groups
|
16
|
+
# should be checked. Otherwise, membership in all groups should be
|
17
|
+
# checked.
|
18
18
|
attr_accessor :security_enabled_only
|
19
19
|
|
20
20
|
|
@@ -1,18 +1,19 @@
|
|
1
1
|
# encoding: utf-8
|
2
|
-
# Code generated by Microsoft (R) AutoRest Code Generator 0.
|
2
|
+
# Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0
|
3
3
|
# Changes may cause incorrect behavior and will be lost if the code is
|
4
4
|
# regenerated.
|
5
5
|
|
6
6
|
module Azure::ARM::Graph
|
7
7
|
module Models
|
8
8
|
#
|
9
|
-
# Server response for GetMemberGroups API call
|
9
|
+
# Server response for GetMemberGroups API call.
|
10
10
|
#
|
11
11
|
class GroupGetMemberGroupsResult
|
12
12
|
|
13
13
|
include MsRestAzure
|
14
14
|
|
15
|
-
# @return [Array<String>]
|
15
|
+
# @return [Array<String>] A collection of group IDs of which the group is
|
16
|
+
# a member.
|
16
17
|
attr_accessor :value
|
17
18
|
|
18
19
|
|
@@ -1,5 +1,5 @@
|
|
1
1
|
# encoding: utf-8
|
2
|
-
# Code generated by Microsoft (R) AutoRest Code Generator 0.
|
2
|
+
# Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0
|
3
3
|
# Changes may cause incorrect behavior and will be lost if the code is
|
4
4
|
# regenerated.
|
5
5
|
|
@@ -12,10 +12,10 @@ module Azure::ARM::Graph
|
|
12
12
|
|
13
13
|
include MsRestAzure
|
14
14
|
|
15
|
-
# @return [Array<ADGroup>]
|
15
|
+
# @return [Array<ADGroup>] A collection of Active Directory groups.
|
16
16
|
attr_accessor :value
|
17
17
|
|
18
|
-
# @return [String]
|
18
|
+
# @return [String] The URL to get the next set of results.
|
19
19
|
attr_accessor :odatanext_link
|
20
20
|
|
21
21
|
# return [Proc] with next page method call.
|
@@ -1,33 +1,33 @@
|
|
1
1
|
# encoding: utf-8
|
2
|
-
# Code generated by Microsoft (R) AutoRest Code Generator 0.
|
2
|
+
# Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0
|
3
3
|
# Changes may cause incorrect behavior and will be lost if the code is
|
4
4
|
# regenerated.
|
5
5
|
|
6
6
|
module Azure::ARM::Graph
|
7
7
|
module Models
|
8
8
|
#
|
9
|
-
# Active Directory Key Credential information
|
9
|
+
# Active Directory Key Credential information.
|
10
10
|
#
|
11
11
|
class KeyCredential
|
12
12
|
|
13
13
|
include MsRestAzure
|
14
14
|
|
15
|
-
# @return [DateTime]
|
15
|
+
# @return [DateTime] Start date.
|
16
16
|
attr_accessor :start_date
|
17
17
|
|
18
|
-
# @return [DateTime]
|
18
|
+
# @return [DateTime] End date.
|
19
19
|
attr_accessor :end_date
|
20
20
|
|
21
|
-
# @return [String] value
|
21
|
+
# @return [String] Key value.
|
22
22
|
attr_accessor :value
|
23
23
|
|
24
|
-
# @return [String]
|
24
|
+
# @return [String] Key ID.
|
25
25
|
attr_accessor :key_id
|
26
26
|
|
27
|
-
# @return [String]
|
27
|
+
# @return [String] Usage. Acceptable values are 'Verify' and 'Sign'.
|
28
28
|
attr_accessor :usage
|
29
29
|
|
30
|
-
# @return [String]
|
30
|
+
# @return [String] Type. Acceptable values are 'AsymmetricX509Cert' and
|
31
31
|
# 'Symmetric'.
|
32
32
|
attr_accessor :type
|
33
33
|
|
@@ -1,5 +1,5 @@
|
|
1
1
|
# encoding: utf-8
|
2
|
-
# Code generated by Microsoft (R) AutoRest Code Generator 0.
|
2
|
+
# Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0
|
3
3
|
# Changes may cause incorrect behavior and will be lost if the code is
|
4
4
|
# regenerated.
|
5
5
|
|
@@ -12,7 +12,7 @@ module Azure::ARM::Graph
|
|
12
12
|
|
13
13
|
include MsRestAzure
|
14
14
|
|
15
|
-
# @return [Array<KeyCredential>]
|
15
|
+
# @return [Array<KeyCredential>] A collection of KeyCredentials.
|
16
16
|
attr_accessor :value
|
17
17
|
|
18
18
|
|
@@ -1,18 +1,18 @@
|
|
1
1
|
# encoding: utf-8
|
2
|
-
# Code generated by Microsoft (R) AutoRest Code Generator 0.
|
2
|
+
# Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0
|
3
3
|
# Changes may cause incorrect behavior and will be lost if the code is
|
4
4
|
# regenerated.
|
5
5
|
|
6
6
|
module Azure::ARM::Graph
|
7
7
|
module Models
|
8
8
|
#
|
9
|
-
# Request parameters for
|
9
|
+
# Request parameters for a KeyCredentials update operation
|
10
10
|
#
|
11
11
|
class KeyCredentialsUpdateParameters
|
12
12
|
|
13
13
|
include MsRestAzure
|
14
14
|
|
15
|
-
# @return [Array<KeyCredential>]
|
15
|
+
# @return [Array<KeyCredential>] A collection of KeyCredentials.
|
16
16
|
attr_accessor :value
|
17
17
|
|
18
18
|
|
@@ -1,27 +1,27 @@
|
|
1
1
|
# encoding: utf-8
|
2
|
-
# Code generated by Microsoft (R) AutoRest Code Generator 0.
|
2
|
+
# Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0
|
3
3
|
# Changes may cause incorrect behavior and will be lost if the code is
|
4
4
|
# regenerated.
|
5
5
|
|
6
6
|
module Azure::ARM::Graph
|
7
7
|
module Models
|
8
8
|
#
|
9
|
-
# Active Directory
|
9
|
+
# Active Directory Password Credential information.
|
10
10
|
#
|
11
11
|
class PasswordCredential
|
12
12
|
|
13
13
|
include MsRestAzure
|
14
14
|
|
15
|
-
# @return [DateTime]
|
15
|
+
# @return [DateTime] Start date.
|
16
16
|
attr_accessor :start_date
|
17
17
|
|
18
|
-
# @return [DateTime]
|
18
|
+
# @return [DateTime] End date.
|
19
19
|
attr_accessor :end_date
|
20
20
|
|
21
|
-
# @return [String]
|
21
|
+
# @return [String] Key ID.
|
22
22
|
attr_accessor :key_id
|
23
23
|
|
24
|
-
# @return [String] value
|
24
|
+
# @return [String] Key value.
|
25
25
|
attr_accessor :value
|
26
26
|
|
27
27
|
|
@@ -1,5 +1,5 @@
|
|
1
1
|
# encoding: utf-8
|
2
|
-
# Code generated by Microsoft (R) AutoRest Code Generator 0.
|
2
|
+
# Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0
|
3
3
|
# Changes may cause incorrect behavior and will be lost if the code is
|
4
4
|
# regenerated.
|
5
5
|
|
@@ -12,7 +12,8 @@ module Azure::ARM::Graph
|
|
12
12
|
|
13
13
|
include MsRestAzure
|
14
14
|
|
15
|
-
# @return [Array<PasswordCredential>]
|
15
|
+
# @return [Array<PasswordCredential>] A collection of
|
16
|
+
# PasswordCredentials.
|
16
17
|
attr_accessor :value
|
17
18
|
|
18
19
|
|
@@ -1,18 +1,19 @@
|
|
1
1
|
# encoding: utf-8
|
2
|
-
# Code generated by Microsoft (R) AutoRest Code Generator 0.
|
2
|
+
# Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0
|
3
3
|
# Changes may cause incorrect behavior and will be lost if the code is
|
4
4
|
# regenerated.
|
5
5
|
|
6
6
|
module Azure::ARM::Graph
|
7
7
|
module Models
|
8
8
|
#
|
9
|
-
# Request
|
9
|
+
# Request parameters for a PasswordCredentials update operation.
|
10
10
|
#
|
11
11
|
class PasswordCredentialsUpdateParameters
|
12
12
|
|
13
13
|
include MsRestAzure
|
14
14
|
|
15
|
-
# @return [Array<PasswordCredential>]
|
15
|
+
# @return [Array<PasswordCredential>] A collection of
|
16
|
+
# PasswordCredentials.
|
16
17
|
attr_accessor :value
|
17
18
|
|
18
19
|
|
@@ -1,12 +1,12 @@
|
|
1
1
|
# encoding: utf-8
|
2
|
-
# Code generated by Microsoft (R) AutoRest Code Generator 0.
|
2
|
+
# Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0
|
3
3
|
# Changes may cause incorrect behavior and will be lost if the code is
|
4
4
|
# regenerated.
|
5
5
|
|
6
6
|
module Azure::ARM::Graph
|
7
7
|
module Models
|
8
8
|
#
|
9
|
-
#
|
9
|
+
# The password profile associated with a user.
|
10
10
|
#
|
11
11
|
class PasswordProfile
|
12
12
|
|
@@ -15,7 +15,7 @@ module Azure::ARM::Graph
|
|
15
15
|
# @return [String] Password
|
16
16
|
attr_accessor :password
|
17
17
|
|
18
|
-
# @return [Boolean]
|
18
|
+
# @return [Boolean] Whether to force a password change on next login.
|
19
19
|
attr_accessor :force_change_password_next_login
|
20
20
|
|
21
21
|
|
@@ -1,30 +1,30 @@
|
|
1
1
|
# encoding: utf-8
|
2
|
-
# Code generated by Microsoft (R) AutoRest Code Generator 0.
|
2
|
+
# Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0
|
3
3
|
# Changes may cause incorrect behavior and will be lost if the code is
|
4
4
|
# regenerated.
|
5
5
|
|
6
6
|
module Azure::ARM::Graph
|
7
7
|
module Models
|
8
8
|
#
|
9
|
-
# Active Directory service principal information
|
9
|
+
# Active Directory service principal information.
|
10
10
|
#
|
11
11
|
class ServicePrincipal
|
12
12
|
|
13
13
|
include MsRestAzure
|
14
14
|
|
15
|
-
# @return [String] object
|
15
|
+
# @return [String] The object ID.
|
16
16
|
attr_accessor :object_id
|
17
17
|
|
18
|
-
# @return [String] object type
|
18
|
+
# @return [String] The object type.
|
19
19
|
attr_accessor :object_type
|
20
20
|
|
21
|
-
# @return [String]
|
21
|
+
# @return [String] The display name of the service principal.
|
22
22
|
attr_accessor :display_name
|
23
23
|
|
24
|
-
# @return [String]
|
24
|
+
# @return [String] The application ID.
|
25
25
|
attr_accessor :app_id
|
26
26
|
|
27
|
-
# @return [Array<String>]
|
27
|
+
# @return [Array<String>] A collection of service principal names.
|
28
28
|
attr_accessor :service_principal_names
|
29
29
|
|
30
30
|
|
@@ -1,12 +1,12 @@
|
|
1
1
|
# encoding: utf-8
|
2
|
-
# Code generated by Microsoft (R) AutoRest Code Generator 0.
|
2
|
+
# Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0
|
3
3
|
# Changes may cause incorrect behavior and will be lost if the code is
|
4
4
|
# regenerated.
|
5
5
|
|
6
6
|
module Azure::ARM::Graph
|
7
7
|
module Models
|
8
8
|
#
|
9
|
-
# Request parameters for
|
9
|
+
# Request parameters for creating a new service principal.
|
10
10
|
#
|
11
11
|
class ServicePrincipalCreateParameters
|
12
12
|
|
@@ -15,13 +15,13 @@ module Azure::ARM::Graph
|
|
15
15
|
# @return [String] application Id
|
16
16
|
attr_accessor :app_id
|
17
17
|
|
18
|
-
# @return [Boolean]
|
18
|
+
# @return [Boolean] Whether the account is enabled
|
19
19
|
attr_accessor :account_enabled
|
20
20
|
|
21
|
-
# @return [Array<KeyCredential>]
|
21
|
+
# @return [Array<KeyCredential>] A collection of KeyCredential objects.
|
22
22
|
attr_accessor :key_credentials
|
23
23
|
|
24
|
-
# @return [Array<PasswordCredential>]
|
24
|
+
# @return [Array<PasswordCredential>] A collection of PasswordCredential
|
25
25
|
# objects
|
26
26
|
attr_accessor :password_credentials
|
27
27
|
|
@@ -1,12 +1,12 @@
|
|
1
1
|
# encoding: utf-8
|
2
|
-
# Code generated by Microsoft (R) AutoRest Code Generator 0.
|
2
|
+
# Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0
|
3
3
|
# Changes may cause incorrect behavior and will be lost if the code is
|
4
4
|
# regenerated.
|
5
5
|
|
6
6
|
module Azure::ARM::Graph
|
7
7
|
module Models
|
8
8
|
#
|
9
|
-
# Server response for get tenant service principals API call
|
9
|
+
# Server response for get tenant service principals API call.
|
10
10
|
#
|
11
11
|
class ServicePrincipalListResult
|
12
12
|
|
@@ -1,36 +1,36 @@
|
|
1
1
|
# encoding: utf-8
|
2
|
-
# Code generated by Microsoft (R) AutoRest Code Generator 0.
|
2
|
+
# Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0
|
3
3
|
# Changes may cause incorrect behavior and will be lost if the code is
|
4
4
|
# regenerated.
|
5
5
|
|
6
6
|
module Azure::ARM::Graph
|
7
7
|
module Models
|
8
8
|
#
|
9
|
-
# Active Directory user information
|
9
|
+
# Active Directory user information.
|
10
10
|
#
|
11
11
|
class User
|
12
12
|
|
13
13
|
include MsRestAzure
|
14
14
|
|
15
|
-
# @return [String] object
|
15
|
+
# @return [String] The object ID.
|
16
16
|
attr_accessor :object_id
|
17
17
|
|
18
|
-
# @return [String] object type
|
18
|
+
# @return [String] The object type.
|
19
19
|
attr_accessor :object_type
|
20
20
|
|
21
|
-
# @return [String]
|
21
|
+
# @return [String] The principal name of the user.
|
22
22
|
attr_accessor :user_principal_name
|
23
23
|
|
24
|
-
# @return [String]
|
24
|
+
# @return [String] The display name of the user.
|
25
25
|
attr_accessor :display_name
|
26
26
|
|
27
|
-
# @return [String]
|
27
|
+
# @return [String] The sign-in name of the user.
|
28
28
|
attr_accessor :sign_in_name
|
29
29
|
|
30
|
-
# @return [String] user
|
30
|
+
# @return [String] The primary email address of the user.
|
31
31
|
attr_accessor :mail
|
32
32
|
|
33
|
-
# @return [String] The mail alias for the user
|
33
|
+
# @return [String] The mail alias for the user.
|
34
34
|
attr_accessor :mail_nickname
|
35
35
|
|
36
36
|
|
@@ -1,22 +1,21 @@
|
|
1
1
|
# encoding: utf-8
|
2
|
-
# Code generated by Microsoft (R) AutoRest Code Generator 0.
|
2
|
+
# Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0
|
3
3
|
# Changes may cause incorrect behavior and will be lost if the code is
|
4
4
|
# regenerated.
|
5
5
|
|
6
6
|
module Azure::ARM::Graph
|
7
7
|
module Models
|
8
8
|
#
|
9
|
-
# Request parameters for
|
9
|
+
# Request parameters for creating a new work or school account user.
|
10
10
|
#
|
11
11
|
class UserCreateParameters
|
12
12
|
|
13
13
|
include MsRestAzure
|
14
14
|
|
15
|
-
# @return [Boolean]
|
16
|
-
# false.
|
15
|
+
# @return [Boolean] Whether the account is enabled.
|
17
16
|
attr_accessor :account_enabled
|
18
17
|
|
19
|
-
# @return [String]
|
18
|
+
# @return [String] The display name of the user.
|
20
19
|
attr_accessor :display_name
|
21
20
|
|
22
21
|
# @return [PasswordProfile] Password Profile
|
@@ -26,13 +25,13 @@ module Azure::ARM::Graph
|
|
26
25
|
# must contain one of the verified domains for the tenant.
|
27
26
|
attr_accessor :user_principal_name
|
28
27
|
|
29
|
-
# @return [String] The mail alias for the user
|
28
|
+
# @return [String] The mail alias for the user.
|
30
29
|
attr_accessor :mail_nickname
|
31
30
|
|
32
|
-
# @return [String]
|
33
|
-
# domain for the user's userPrincipalName (UPN) property
|
34
|
-
#
|
35
|
-
# Directory user account
|
31
|
+
# @return [String] This must be specified if you are using a federated
|
32
|
+
# domain for the user's userPrincipalName (UPN) property when creating a
|
33
|
+
# new user account. It is used to associate an on-premises Active
|
34
|
+
# Directory user account with their Azure AD user object.
|
36
35
|
attr_accessor :immutable_id
|
37
36
|
|
38
37
|
|
@@ -1,20 +1,20 @@
|
|
1
1
|
# encoding: utf-8
|
2
|
-
# Code generated by Microsoft (R) AutoRest Code Generator 0.
|
2
|
+
# Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0
|
3
3
|
# Changes may cause incorrect behavior and will be lost if the code is
|
4
4
|
# regenerated.
|
5
5
|
|
6
6
|
module Azure::ARM::Graph
|
7
7
|
module Models
|
8
8
|
#
|
9
|
-
# Request parameters for GetMemberGroups API call
|
9
|
+
# Request parameters for GetMemberGroups API call.
|
10
10
|
#
|
11
11
|
class UserGetMemberGroupsParameters
|
12
12
|
|
13
13
|
include MsRestAzure
|
14
14
|
|
15
|
-
# @return [Boolean] If true only membership in security
|
16
|
-
# should be checked. Otherwise membership in all groups should be
|
17
|
-
# checked
|
15
|
+
# @return [Boolean] If true, only membership in security-enabled groups
|
16
|
+
# should be checked. Otherwise, membership in all groups should be
|
17
|
+
# checked.
|
18
18
|
attr_accessor :security_enabled_only
|
19
19
|
|
20
20
|
|