@pulumi/azuread 5.20.0 → 5.21.0-alpha.1650644061
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.
- package/group.d.ts +0 -82
- package/group.js +0 -82
- package/group.js.map +1 -1
- package/package.json +2 -2
- package/package.json.dev +2 -2
package/group.d.ts
CHANGED
|
@@ -17,88 +17,6 @@ import { input as inputs, output as outputs } from "./types";
|
|
|
17
17
|
*
|
|
18
18
|
* The `externalSendersAllowed`, `autoSubscribeNewMembers`, `hideFromAddressLists` and `hideFromOutlookClients` properties can only be configured when authenticating as a user and cannot be configured when authenticating as a service principal. Additionally, the user being used for authentication must be a Member of the tenant where the group is being managed and _not_ a Guest. This is a known API issue; please see the [Microsoft Graph Known Issues](https://docs.microsoft.com/en-us/graph/known-issues#groups) official documentation.
|
|
19
19
|
*
|
|
20
|
-
* ## Example Usage
|
|
21
|
-
*
|
|
22
|
-
* *Basic example*
|
|
23
|
-
*
|
|
24
|
-
* ```typescript
|
|
25
|
-
* import * as pulumi from "@pulumi/pulumi";
|
|
26
|
-
* import * as azuread from "@pulumi/azuread";
|
|
27
|
-
*
|
|
28
|
-
* const current = azuread.getClientConfig({});
|
|
29
|
-
* const example = new azuread.Group("example", {
|
|
30
|
-
* displayName: "example",
|
|
31
|
-
* owners: [current.then(current => current.objectId)],
|
|
32
|
-
* securityEnabled: true,
|
|
33
|
-
* });
|
|
34
|
-
* ```
|
|
35
|
-
*
|
|
36
|
-
* *Microsoft 365 group*
|
|
37
|
-
*
|
|
38
|
-
* ```typescript
|
|
39
|
-
* import * as pulumi from "@pulumi/pulumi";
|
|
40
|
-
* import * as azuread from "@pulumi/azuread";
|
|
41
|
-
*
|
|
42
|
-
* const current = azuread.getClientConfig({});
|
|
43
|
-
* const groupOwner = new azuread.User("groupOwner", {
|
|
44
|
-
* userPrincipalName: "example-group-owner@hashicorp.com",
|
|
45
|
-
* displayName: "Group Owner",
|
|
46
|
-
* mailNickname: "example-group-owner",
|
|
47
|
-
* password: "SecretP@sswd99!",
|
|
48
|
-
* });
|
|
49
|
-
* const example = new azuread.Group("example", {
|
|
50
|
-
* displayName: "example",
|
|
51
|
-
* mailEnabled: true,
|
|
52
|
-
* mailNickname: "ExampleGroup",
|
|
53
|
-
* securityEnabled: true,
|
|
54
|
-
* types: ["Unified"],
|
|
55
|
-
* owners: [
|
|
56
|
-
* current.then(current => current.objectId),
|
|
57
|
-
* groupOwner.objectId,
|
|
58
|
-
* ],
|
|
59
|
-
* });
|
|
60
|
-
* ```
|
|
61
|
-
*
|
|
62
|
-
* *Group with members*
|
|
63
|
-
*
|
|
64
|
-
* ```typescript
|
|
65
|
-
* import * as pulumi from "@pulumi/pulumi";
|
|
66
|
-
* import * as azuread from "@pulumi/azuread";
|
|
67
|
-
*
|
|
68
|
-
* const current = azuread.getClientConfig({});
|
|
69
|
-
* const exampleUser = new azuread.User("exampleUser", {
|
|
70
|
-
* displayName: "J Doe",
|
|
71
|
-
* owners: [current.then(current => current.objectId)],
|
|
72
|
-
* password: "notSecure123",
|
|
73
|
-
* userPrincipalName: "jdoe@hashicorp.com",
|
|
74
|
-
* });
|
|
75
|
-
* const exampleGroup = new azuread.Group("exampleGroup", {
|
|
76
|
-
* displayName: "MyGroup",
|
|
77
|
-
* owners: [current.then(current => current.objectId)],
|
|
78
|
-
* securityEnabled: true,
|
|
79
|
-
* members: [exampleUser.objectId],
|
|
80
|
-
* });
|
|
81
|
-
* ```
|
|
82
|
-
*
|
|
83
|
-
* *Group with dynamic membership*
|
|
84
|
-
*
|
|
85
|
-
* ```typescript
|
|
86
|
-
* import * as pulumi from "@pulumi/pulumi";
|
|
87
|
-
* import * as azuread from "@pulumi/azuread";
|
|
88
|
-
*
|
|
89
|
-
* const current = azuread.getClientConfig({});
|
|
90
|
-
* const example = new azuread.Group("example", {
|
|
91
|
-
* displayName: "MyGroup",
|
|
92
|
-
* owners: [current.then(current => current.objectId)],
|
|
93
|
-
* securityEnabled: true,
|
|
94
|
-
* types: ["DynamicMembership"],
|
|
95
|
-
* dynamicMembership: {
|
|
96
|
-
* enabled: true,
|
|
97
|
-
* rule: "user.department -eq \"Sales\"",
|
|
98
|
-
* },
|
|
99
|
-
* });
|
|
100
|
-
* ```
|
|
101
|
-
*
|
|
102
20
|
* ## Import
|
|
103
21
|
*
|
|
104
22
|
* Groups can be imported using their object ID, e.g.
|
package/group.js
CHANGED
|
@@ -22,88 +22,6 @@ const utilities = require("./utilities");
|
|
|
22
22
|
*
|
|
23
23
|
* The `externalSendersAllowed`, `autoSubscribeNewMembers`, `hideFromAddressLists` and `hideFromOutlookClients` properties can only be configured when authenticating as a user and cannot be configured when authenticating as a service principal. Additionally, the user being used for authentication must be a Member of the tenant where the group is being managed and _not_ a Guest. This is a known API issue; please see the [Microsoft Graph Known Issues](https://docs.microsoft.com/en-us/graph/known-issues#groups) official documentation.
|
|
24
24
|
*
|
|
25
|
-
* ## Example Usage
|
|
26
|
-
*
|
|
27
|
-
* *Basic example*
|
|
28
|
-
*
|
|
29
|
-
* ```typescript
|
|
30
|
-
* import * as pulumi from "@pulumi/pulumi";
|
|
31
|
-
* import * as azuread from "@pulumi/azuread";
|
|
32
|
-
*
|
|
33
|
-
* const current = azuread.getClientConfig({});
|
|
34
|
-
* const example = new azuread.Group("example", {
|
|
35
|
-
* displayName: "example",
|
|
36
|
-
* owners: [current.then(current => current.objectId)],
|
|
37
|
-
* securityEnabled: true,
|
|
38
|
-
* });
|
|
39
|
-
* ```
|
|
40
|
-
*
|
|
41
|
-
* *Microsoft 365 group*
|
|
42
|
-
*
|
|
43
|
-
* ```typescript
|
|
44
|
-
* import * as pulumi from "@pulumi/pulumi";
|
|
45
|
-
* import * as azuread from "@pulumi/azuread";
|
|
46
|
-
*
|
|
47
|
-
* const current = azuread.getClientConfig({});
|
|
48
|
-
* const groupOwner = new azuread.User("groupOwner", {
|
|
49
|
-
* userPrincipalName: "example-group-owner@hashicorp.com",
|
|
50
|
-
* displayName: "Group Owner",
|
|
51
|
-
* mailNickname: "example-group-owner",
|
|
52
|
-
* password: "SecretP@sswd99!",
|
|
53
|
-
* });
|
|
54
|
-
* const example = new azuread.Group("example", {
|
|
55
|
-
* displayName: "example",
|
|
56
|
-
* mailEnabled: true,
|
|
57
|
-
* mailNickname: "ExampleGroup",
|
|
58
|
-
* securityEnabled: true,
|
|
59
|
-
* types: ["Unified"],
|
|
60
|
-
* owners: [
|
|
61
|
-
* current.then(current => current.objectId),
|
|
62
|
-
* groupOwner.objectId,
|
|
63
|
-
* ],
|
|
64
|
-
* });
|
|
65
|
-
* ```
|
|
66
|
-
*
|
|
67
|
-
* *Group with members*
|
|
68
|
-
*
|
|
69
|
-
* ```typescript
|
|
70
|
-
* import * as pulumi from "@pulumi/pulumi";
|
|
71
|
-
* import * as azuread from "@pulumi/azuread";
|
|
72
|
-
*
|
|
73
|
-
* const current = azuread.getClientConfig({});
|
|
74
|
-
* const exampleUser = new azuread.User("exampleUser", {
|
|
75
|
-
* displayName: "J Doe",
|
|
76
|
-
* owners: [current.then(current => current.objectId)],
|
|
77
|
-
* password: "notSecure123",
|
|
78
|
-
* userPrincipalName: "jdoe@hashicorp.com",
|
|
79
|
-
* });
|
|
80
|
-
* const exampleGroup = new azuread.Group("exampleGroup", {
|
|
81
|
-
* displayName: "MyGroup",
|
|
82
|
-
* owners: [current.then(current => current.objectId)],
|
|
83
|
-
* securityEnabled: true,
|
|
84
|
-
* members: [exampleUser.objectId],
|
|
85
|
-
* });
|
|
86
|
-
* ```
|
|
87
|
-
*
|
|
88
|
-
* *Group with dynamic membership*
|
|
89
|
-
*
|
|
90
|
-
* ```typescript
|
|
91
|
-
* import * as pulumi from "@pulumi/pulumi";
|
|
92
|
-
* import * as azuread from "@pulumi/azuread";
|
|
93
|
-
*
|
|
94
|
-
* const current = azuread.getClientConfig({});
|
|
95
|
-
* const example = new azuread.Group("example", {
|
|
96
|
-
* displayName: "MyGroup",
|
|
97
|
-
* owners: [current.then(current => current.objectId)],
|
|
98
|
-
* securityEnabled: true,
|
|
99
|
-
* types: ["DynamicMembership"],
|
|
100
|
-
* dynamicMembership: {
|
|
101
|
-
* enabled: true,
|
|
102
|
-
* rule: "user.department -eq \"Sales\"",
|
|
103
|
-
* },
|
|
104
|
-
* });
|
|
105
|
-
* ```
|
|
106
|
-
*
|
|
107
25
|
* ## Import
|
|
108
26
|
*
|
|
109
27
|
* Groups can be imported using their object ID, e.g.
|
package/group.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"group.js","sourceRoot":"","sources":["../group.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAEzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"group.js","sourceRoot":"","sources":["../group.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/azuread",
|
|
3
|
-
"version": "v5.
|
|
3
|
+
"version": "v5.21.0-alpha.1650644061+ce6bc85f",
|
|
4
4
|
"description": "A Pulumi package for creating and managing azuread cloud resources.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"license": "Apache-2.0",
|
|
12
12
|
"scripts": {
|
|
13
13
|
"build": "tsc",
|
|
14
|
-
"install": "node scripts/install-pulumi-plugin.js resource azuread v5.
|
|
14
|
+
"install": "node scripts/install-pulumi-plugin.js resource azuread v5.21.0-alpha.1650644061+ce6bc85f"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"@pulumi/pulumi": "^3.0.0"
|
package/package.json.dev
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/azuread",
|
|
3
|
-
"version": "v5.
|
|
3
|
+
"version": "v5.21.0-alpha.1650644061+ce6bc85f",
|
|
4
4
|
"description": "A Pulumi package for creating and managing azuread cloud resources.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"license": "Apache-2.0",
|
|
12
12
|
"scripts": {
|
|
13
13
|
"build": "tsc",
|
|
14
|
-
"install": "node scripts/install-pulumi-plugin.js resource azuread v5.
|
|
14
|
+
"install": "node scripts/install-pulumi-plugin.js resource azuread v5.21.0-alpha.1650644061+ce6bc85f"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"@pulumi/pulumi": "^3.0.0"
|