@ptfm/chainguard 0.1.28
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/README.md +3 -0
- package/bin/accountAssociations.d.ts +110 -0
- package/bin/accountAssociations.js +62 -0
- package/bin/accountAssociations.js.map +1 -0
- package/bin/apkoBuild.d.ts +80 -0
- package/bin/apkoBuild.js +61 -0
- package/bin/apkoBuild.js.map +1 -0
- package/bin/config/index.d.ts +1 -0
- package/bin/config/index.js +21 -0
- package/bin/config/index.js.map +1 -0
- package/bin/config/vars.d.ts +17 -0
- package/bin/config/vars.js +25 -0
- package/bin/config/vars.js.map +1 -0
- package/bin/getGroup.d.ts +28 -0
- package/bin/getGroup.js +28 -0
- package/bin/getGroup.js.map +1 -0
- package/bin/getIdentity.d.ts +25 -0
- package/bin/getIdentity.js +24 -0
- package/bin/getIdentity.js.map +1 -0
- package/bin/getRole.d.ts +29 -0
- package/bin/getRole.js +28 -0
- package/bin/getRole.js.map +1 -0
- package/bin/getVersions.d.ts +34 -0
- package/bin/getVersions.js +24 -0
- package/bin/getVersions.js.map +1 -0
- package/bin/group.d.ts +87 -0
- package/bin/group.js +57 -0
- package/bin/group.js.map +1 -0
- package/bin/groupInvite.d.ts +92 -0
- package/bin/groupInvite.js +68 -0
- package/bin/groupInvite.js.map +1 -0
- package/bin/identity.d.ts +122 -0
- package/bin/identity.js +64 -0
- package/bin/identity.js.map +1 -0
- package/bin/identityProvider.d.ts +98 -0
- package/bin/identityProvider.js +63 -0
- package/bin/identityProvider.js.map +1 -0
- package/bin/imageRepo.d.ts +122 -0
- package/bin/imageRepo.js +64 -0
- package/bin/imageRepo.js.map +1 -0
- package/bin/imageTag.d.ts +72 -0
- package/bin/imageTag.js +56 -0
- package/bin/imageTag.js.map +1 -0
- package/bin/index.d.ts +51 -0
- package/bin/index.js +100 -0
- package/bin/index.js.map +1 -0
- package/bin/package.json +34 -0
- package/bin/provider.d.ts +48 -0
- package/bin/provider.js +47 -0
- package/bin/provider.js.map +1 -0
- package/bin/role.d.ts +84 -0
- package/bin/role.js +61 -0
- package/bin/role.js.map +1 -0
- package/bin/rolebinding.d.ts +72 -0
- package/bin/rolebinding.js +62 -0
- package/bin/rolebinding.js.map +1 -0
- package/bin/subscription.d.ts +60 -0
- package/bin/subscription.js +57 -0
- package/bin/subscription.js.map +1 -0
- package/bin/types/index.d.ts +3 -0
- package/bin/types/index.js +11 -0
- package/bin/types/index.js.map +1 -0
- package/bin/types/input.d.ts +187 -0
- package/bin/types/input.js +5 -0
- package/bin/types/input.js.map +1 -0
- package/bin/types/output.d.ts +309 -0
- package/bin/types/output.js +5 -0
- package/bin/types/output.js.map +1 -0
- package/bin/utilities.d.ts +9 -0
- package/bin/utilities.js +141 -0
- package/bin/utilities.js.map +1 -0
- package/package.json +34 -0
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"getVersions.js","sourceRoot":"","sources":["../getVersions.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC,SAAgB,WAAW,CAAC,IAAqB,EAAE,IAA2B;IAC1E,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,0CAA0C,EAAE;QACrE,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,SAAS,EAAE,IAAI,CAAC,OAAO;KAC1B,EAAE,IAAI,EAAE,SAAS,CAAC,UAAU,EAAE,CAAC,CAAC;AACrC,CAAC;AAND,kCAMC;AAwBD,SAAgB,iBAAiB,CAAC,IAA2B,EAAE,IAAiC;IAC5F,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,0CAA0C,EAAE;QAC3E,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,SAAS,EAAE,IAAI,CAAC,OAAO;KAC1B,EAAE,IAAI,EAAE,SAAS,CAAC,UAAU,EAAE,CAAC,CAAC;AACrC,CAAC;AAND,8CAMC"}
|
package/bin/group.d.ts
ADDED
@@ -0,0 +1,87 @@
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
2
|
+
export declare class Group extends pulumi.CustomResource {
|
3
|
+
/**
|
4
|
+
* Get an existing Group resource's state with the given name, ID, and optional extra
|
5
|
+
* properties used to qualify the lookup.
|
6
|
+
*
|
7
|
+
* @param name The _unique_ name of the resulting resource.
|
8
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
9
|
+
* @param state Any extra arguments used during the lookup.
|
10
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
11
|
+
*/
|
12
|
+
static get(name: string, id: pulumi.Input<pulumi.ID>, state?: GroupState, opts?: pulumi.CustomResourceOptions): Group;
|
13
|
+
/**
|
14
|
+
* Returns true if the given object is an instance of Group. This is designed to work even
|
15
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
16
|
+
*/
|
17
|
+
static isInstance(obj: any): obj is Group;
|
18
|
+
/**
|
19
|
+
* Description of this IAM group.
|
20
|
+
*/
|
21
|
+
readonly description: pulumi.Output<string | undefined>;
|
22
|
+
/**
|
23
|
+
* Name of this IAM group.
|
24
|
+
*/
|
25
|
+
readonly name: pulumi.Output<string>;
|
26
|
+
/**
|
27
|
+
* Parent IAM group of this group. If not set, this group is assumed to be a root group.
|
28
|
+
*/
|
29
|
+
readonly parentId: pulumi.Output<string | undefined>;
|
30
|
+
/**
|
31
|
+
* Whether the organization has been verified by a Chainguardian. Only applicable to root groups.
|
32
|
+
*/
|
33
|
+
readonly verified: pulumi.Output<boolean | undefined>;
|
34
|
+
readonly verifiedProtection: pulumi.Output<boolean>;
|
35
|
+
/**
|
36
|
+
* Create a Group resource with the given unique name, arguments, and options.
|
37
|
+
*
|
38
|
+
* @param name The _unique_ name of the resource.
|
39
|
+
* @param args The arguments to use to populate this resource's properties.
|
40
|
+
* @param opts A bag of options that control this resource's behavior.
|
41
|
+
*/
|
42
|
+
constructor(name: string, args?: GroupArgs, opts?: pulumi.CustomResourceOptions);
|
43
|
+
}
|
44
|
+
/**
|
45
|
+
* Input properties used for looking up and filtering Group resources.
|
46
|
+
*/
|
47
|
+
export interface GroupState {
|
48
|
+
/**
|
49
|
+
* Description of this IAM group.
|
50
|
+
*/
|
51
|
+
description?: pulumi.Input<string>;
|
52
|
+
/**
|
53
|
+
* Name of this IAM group.
|
54
|
+
*/
|
55
|
+
name?: pulumi.Input<string>;
|
56
|
+
/**
|
57
|
+
* Parent IAM group of this group. If not set, this group is assumed to be a root group.
|
58
|
+
*/
|
59
|
+
parentId?: pulumi.Input<string>;
|
60
|
+
/**
|
61
|
+
* Whether the organization has been verified by a Chainguardian. Only applicable to root groups.
|
62
|
+
*/
|
63
|
+
verified?: pulumi.Input<boolean>;
|
64
|
+
verifiedProtection?: pulumi.Input<boolean>;
|
65
|
+
}
|
66
|
+
/**
|
67
|
+
* The set of arguments for constructing a Group resource.
|
68
|
+
*/
|
69
|
+
export interface GroupArgs {
|
70
|
+
/**
|
71
|
+
* Description of this IAM group.
|
72
|
+
*/
|
73
|
+
description?: pulumi.Input<string>;
|
74
|
+
/**
|
75
|
+
* Name of this IAM group.
|
76
|
+
*/
|
77
|
+
name?: pulumi.Input<string>;
|
78
|
+
/**
|
79
|
+
* Parent IAM group of this group. If not set, this group is assumed to be a root group.
|
80
|
+
*/
|
81
|
+
parentId?: pulumi.Input<string>;
|
82
|
+
/**
|
83
|
+
* Whether the organization has been verified by a Chainguardian. Only applicable to root groups.
|
84
|
+
*/
|
85
|
+
verified?: pulumi.Input<boolean>;
|
86
|
+
verifiedProtection?: pulumi.Input<boolean>;
|
87
|
+
}
|
package/bin/group.js
ADDED
@@ -0,0 +1,57 @@
|
|
1
|
+
"use strict";
|
2
|
+
// *** WARNING: this file was generated by pulumi-language-nodejs. ***
|
3
|
+
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
5
|
+
exports.Group = void 0;
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
7
|
+
const utilities = require("./utilities");
|
8
|
+
class Group extends pulumi.CustomResource {
|
9
|
+
/**
|
10
|
+
* Get an existing Group resource's state with the given name, ID, and optional extra
|
11
|
+
* properties used to qualify the lookup.
|
12
|
+
*
|
13
|
+
* @param name The _unique_ name of the resulting resource.
|
14
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
15
|
+
* @param state Any extra arguments used during the lookup.
|
16
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
17
|
+
*/
|
18
|
+
static get(name, id, state, opts) {
|
19
|
+
return new Group(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
20
|
+
}
|
21
|
+
/**
|
22
|
+
* Returns true if the given object is an instance of Group. This is designed to work even
|
23
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
24
|
+
*/
|
25
|
+
static isInstance(obj) {
|
26
|
+
if (obj === undefined || obj === null) {
|
27
|
+
return false;
|
28
|
+
}
|
29
|
+
return obj['__pulumiType'] === Group.__pulumiType;
|
30
|
+
}
|
31
|
+
constructor(name, argsOrState, opts) {
|
32
|
+
let resourceInputs = {};
|
33
|
+
opts = opts || {};
|
34
|
+
if (opts.id) {
|
35
|
+
const state = argsOrState;
|
36
|
+
resourceInputs["description"] = state ? state.description : undefined;
|
37
|
+
resourceInputs["name"] = state ? state.name : undefined;
|
38
|
+
resourceInputs["parentId"] = state ? state.parentId : undefined;
|
39
|
+
resourceInputs["verified"] = state ? state.verified : undefined;
|
40
|
+
resourceInputs["verifiedProtection"] = state ? state.verifiedProtection : undefined;
|
41
|
+
}
|
42
|
+
else {
|
43
|
+
const args = argsOrState;
|
44
|
+
resourceInputs["description"] = args ? args.description : undefined;
|
45
|
+
resourceInputs["name"] = args ? args.name : undefined;
|
46
|
+
resourceInputs["parentId"] = args ? args.parentId : undefined;
|
47
|
+
resourceInputs["verified"] = args ? args.verified : undefined;
|
48
|
+
resourceInputs["verifiedProtection"] = args ? args.verifiedProtection : undefined;
|
49
|
+
}
|
50
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
51
|
+
super(Group.__pulumiType, name, resourceInputs, opts, false /*dependency*/, utilities.getPackage());
|
52
|
+
}
|
53
|
+
}
|
54
|
+
exports.Group = Group;
|
55
|
+
/** @internal */
|
56
|
+
Group.__pulumiType = 'chainguard:index/group:Group';
|
57
|
+
//# sourceMappingURL=group.js.map
|
package/bin/group.js.map
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"group.js","sourceRoot":"","sources":["../group.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC,MAAa,KAAM,SAAQ,MAAM,CAAC,cAAc;IAC5C;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAkB,EAAE,IAAmC;QAChH,OAAO,IAAI,KAAK,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAC5D,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,KAAK,CAAC,YAAY,CAAC;IACtD,CAAC;IA4BD,YAAY,IAAY,EAAE,WAAoC,EAAE,IAAmC;QAC/F,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAqC,CAAC;YACpD,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACxD,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,oBAAoB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,kBAAkB,CAAC,CAAC,CAAC,SAAS,CAAC;SACvF;aAAM;YACH,MAAM,IAAI,GAAG,WAAoC,CAAC;YAClD,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACtD,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,oBAAoB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,kBAAkB,CAAC,CAAC,CAAC,SAAS,CAAC;SACrF;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,KAAK,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,EAAE,KAAK,CAAC,cAAc,EAAE,SAAS,CAAC,UAAU,EAAE,CAAC,CAAC;IACxG,CAAC;;AA1EL,sBA2EC;AA7DG,gBAAgB;AACO,kBAAY,GAAG,8BAA8B,CAAC"}
|
@@ -0,0 +1,92 @@
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
2
|
+
export declare class GroupInvite extends pulumi.CustomResource {
|
3
|
+
/**
|
4
|
+
* Get an existing GroupInvite resource's state with the given name, ID, and optional extra
|
5
|
+
* properties used to qualify the lookup.
|
6
|
+
*
|
7
|
+
* @param name The _unique_ name of the resulting resource.
|
8
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
9
|
+
* @param state Any extra arguments used during the lookup.
|
10
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
11
|
+
*/
|
12
|
+
static get(name: string, id: pulumi.Input<pulumi.ID>, state?: GroupInviteState, opts?: pulumi.CustomResourceOptions): GroupInvite;
|
13
|
+
/**
|
14
|
+
* Returns true if the given object is an instance of GroupInvite. This is designed to work even
|
15
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
16
|
+
*/
|
17
|
+
static isInstance(obj: any): obj is GroupInvite;
|
18
|
+
/**
|
19
|
+
* A time-bounded token that may be used at registration to obtain access to a prespecified group with a prespecified role.
|
20
|
+
*/
|
21
|
+
readonly code: pulumi.Output<string>;
|
22
|
+
/**
|
23
|
+
* The email address of the identity that is allowed to accept this invite code.
|
24
|
+
*/
|
25
|
+
readonly email: pulumi.Output<string | undefined>;
|
26
|
+
/**
|
27
|
+
* The RFC3339 encoded date and time at which this invitation will no longer be valid.
|
28
|
+
*/
|
29
|
+
readonly expiration: pulumi.Output<string>;
|
30
|
+
/**
|
31
|
+
* The Group to which this invite code grants access.
|
32
|
+
*/
|
33
|
+
readonly group: pulumi.Output<string>;
|
34
|
+
/**
|
35
|
+
* The role that this invite code grants.
|
36
|
+
*/
|
37
|
+
readonly role: pulumi.Output<string>;
|
38
|
+
/**
|
39
|
+
* Create a GroupInvite resource with the given unique name, arguments, and options.
|
40
|
+
*
|
41
|
+
* @param name The _unique_ name of the resource.
|
42
|
+
* @param args The arguments to use to populate this resource's properties.
|
43
|
+
* @param opts A bag of options that control this resource's behavior.
|
44
|
+
*/
|
45
|
+
constructor(name: string, args: GroupInviteArgs, opts?: pulumi.CustomResourceOptions);
|
46
|
+
}
|
47
|
+
/**
|
48
|
+
* Input properties used for looking up and filtering GroupInvite resources.
|
49
|
+
*/
|
50
|
+
export interface GroupInviteState {
|
51
|
+
/**
|
52
|
+
* A time-bounded token that may be used at registration to obtain access to a prespecified group with a prespecified role.
|
53
|
+
*/
|
54
|
+
code?: pulumi.Input<string>;
|
55
|
+
/**
|
56
|
+
* The email address of the identity that is allowed to accept this invite code.
|
57
|
+
*/
|
58
|
+
email?: pulumi.Input<string>;
|
59
|
+
/**
|
60
|
+
* The RFC3339 encoded date and time at which this invitation will no longer be valid.
|
61
|
+
*/
|
62
|
+
expiration?: pulumi.Input<string>;
|
63
|
+
/**
|
64
|
+
* The Group to which this invite code grants access.
|
65
|
+
*/
|
66
|
+
group?: pulumi.Input<string>;
|
67
|
+
/**
|
68
|
+
* The role that this invite code grants.
|
69
|
+
*/
|
70
|
+
role?: pulumi.Input<string>;
|
71
|
+
}
|
72
|
+
/**
|
73
|
+
* The set of arguments for constructing a GroupInvite resource.
|
74
|
+
*/
|
75
|
+
export interface GroupInviteArgs {
|
76
|
+
/**
|
77
|
+
* The email address of the identity that is allowed to accept this invite code.
|
78
|
+
*/
|
79
|
+
email?: pulumi.Input<string>;
|
80
|
+
/**
|
81
|
+
* The RFC3339 encoded date and time at which this invitation will no longer be valid.
|
82
|
+
*/
|
83
|
+
expiration: pulumi.Input<string>;
|
84
|
+
/**
|
85
|
+
* The Group to which this invite code grants access.
|
86
|
+
*/
|
87
|
+
group: pulumi.Input<string>;
|
88
|
+
/**
|
89
|
+
* The role that this invite code grants.
|
90
|
+
*/
|
91
|
+
role: pulumi.Input<string>;
|
92
|
+
}
|
@@ -0,0 +1,68 @@
|
|
1
|
+
"use strict";
|
2
|
+
// *** WARNING: this file was generated by pulumi-language-nodejs. ***
|
3
|
+
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
5
|
+
exports.GroupInvite = void 0;
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
7
|
+
const utilities = require("./utilities");
|
8
|
+
class GroupInvite extends pulumi.CustomResource {
|
9
|
+
/**
|
10
|
+
* Get an existing GroupInvite resource's state with the given name, ID, and optional extra
|
11
|
+
* properties used to qualify the lookup.
|
12
|
+
*
|
13
|
+
* @param name The _unique_ name of the resulting resource.
|
14
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
15
|
+
* @param state Any extra arguments used during the lookup.
|
16
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
17
|
+
*/
|
18
|
+
static get(name, id, state, opts) {
|
19
|
+
return new GroupInvite(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
20
|
+
}
|
21
|
+
/**
|
22
|
+
* Returns true if the given object is an instance of GroupInvite. This is designed to work even
|
23
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
24
|
+
*/
|
25
|
+
static isInstance(obj) {
|
26
|
+
if (obj === undefined || obj === null) {
|
27
|
+
return false;
|
28
|
+
}
|
29
|
+
return obj['__pulumiType'] === GroupInvite.__pulumiType;
|
30
|
+
}
|
31
|
+
constructor(name, argsOrState, opts) {
|
32
|
+
let resourceInputs = {};
|
33
|
+
opts = opts || {};
|
34
|
+
if (opts.id) {
|
35
|
+
const state = argsOrState;
|
36
|
+
resourceInputs["code"] = state ? state.code : undefined;
|
37
|
+
resourceInputs["email"] = state ? state.email : undefined;
|
38
|
+
resourceInputs["expiration"] = state ? state.expiration : undefined;
|
39
|
+
resourceInputs["group"] = state ? state.group : undefined;
|
40
|
+
resourceInputs["role"] = state ? state.role : undefined;
|
41
|
+
}
|
42
|
+
else {
|
43
|
+
const args = argsOrState;
|
44
|
+
if ((!args || args.expiration === undefined) && !opts.urn) {
|
45
|
+
throw new Error("Missing required property 'expiration'");
|
46
|
+
}
|
47
|
+
if ((!args || args.group === undefined) && !opts.urn) {
|
48
|
+
throw new Error("Missing required property 'group'");
|
49
|
+
}
|
50
|
+
if ((!args || args.role === undefined) && !opts.urn) {
|
51
|
+
throw new Error("Missing required property 'role'");
|
52
|
+
}
|
53
|
+
resourceInputs["email"] = args ? args.email : undefined;
|
54
|
+
resourceInputs["expiration"] = args ? args.expiration : undefined;
|
55
|
+
resourceInputs["group"] = args ? args.group : undefined;
|
56
|
+
resourceInputs["role"] = args ? args.role : undefined;
|
57
|
+
resourceInputs["code"] = undefined /*out*/;
|
58
|
+
}
|
59
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
60
|
+
const secretOpts = { additionalSecretOutputs: ["code"] };
|
61
|
+
opts = pulumi.mergeOptions(opts, secretOpts);
|
62
|
+
super(GroupInvite.__pulumiType, name, resourceInputs, opts, false /*dependency*/, utilities.getPackage());
|
63
|
+
}
|
64
|
+
}
|
65
|
+
exports.GroupInvite = GroupInvite;
|
66
|
+
/** @internal */
|
67
|
+
GroupInvite.__pulumiType = 'chainguard:index/groupInvite:GroupInvite';
|
68
|
+
//# sourceMappingURL=groupInvite.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"groupInvite.js","sourceRoot":"","sources":["../groupInvite.ts"],"names":[],"mappings":"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"}
|
@@ -0,0 +1,122 @@
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
2
|
+
import * as inputs from "./types/input";
|
3
|
+
import * as outputs from "./types/output";
|
4
|
+
export declare class Identity extends pulumi.CustomResource {
|
5
|
+
/**
|
6
|
+
* Get an existing Identity resource's state with the given name, ID, and optional extra
|
7
|
+
* properties used to qualify the lookup.
|
8
|
+
*
|
9
|
+
* @param name The _unique_ name of the resulting resource.
|
10
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
11
|
+
* @param state Any extra arguments used during the lookup.
|
12
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
13
|
+
*/
|
14
|
+
static get(name: string, id: pulumi.Input<pulumi.ID>, state?: IdentityState, opts?: pulumi.CustomResourceOptions): Identity;
|
15
|
+
/**
|
16
|
+
* Returns true if the given object is an instance of Identity. This is designed to work even
|
17
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
18
|
+
*/
|
19
|
+
static isInstance(obj: any): obj is Identity;
|
20
|
+
/**
|
21
|
+
* An identity that may be assumed by an AWS identity satisfying the following contains on its GetCallerIdentity values
|
22
|
+
*/
|
23
|
+
readonly awsIdentity: pulumi.Output<outputs.IdentityAwsIdentity | undefined>;
|
24
|
+
/**
|
25
|
+
* An identity that may be assumed when its claims satisfy these constraints.
|
26
|
+
*/
|
27
|
+
readonly claimMatch: pulumi.Output<outputs.IdentityClaimMatch | undefined>;
|
28
|
+
/**
|
29
|
+
* A longer description of the purpose of this identity.
|
30
|
+
*/
|
31
|
+
readonly description: pulumi.Output<string | undefined>;
|
32
|
+
/**
|
33
|
+
* The name of this identity.
|
34
|
+
*/
|
35
|
+
readonly name: pulumi.Output<string>;
|
36
|
+
/**
|
37
|
+
* The id of the group containing this identity.
|
38
|
+
*/
|
39
|
+
readonly parentId: pulumi.Output<string>;
|
40
|
+
/**
|
41
|
+
* An identity that may be assumed by a particular Chainguard service.
|
42
|
+
*/
|
43
|
+
readonly servicePrincipal: pulumi.Output<string | undefined>;
|
44
|
+
/**
|
45
|
+
* An identity that is verified by OIDC, with pre-registered verification keys.
|
46
|
+
*/
|
47
|
+
readonly static: pulumi.Output<outputs.IdentityStatic | undefined>;
|
48
|
+
/**
|
49
|
+
* Create a Identity resource with the given unique name, arguments, and options.
|
50
|
+
*
|
51
|
+
* @param name The _unique_ name of the resource.
|
52
|
+
* @param args The arguments to use to populate this resource's properties.
|
53
|
+
* @param opts A bag of options that control this resource's behavior.
|
54
|
+
*/
|
55
|
+
constructor(name: string, args: IdentityArgs, opts?: pulumi.CustomResourceOptions);
|
56
|
+
}
|
57
|
+
/**
|
58
|
+
* Input properties used for looking up and filtering Identity resources.
|
59
|
+
*/
|
60
|
+
export interface IdentityState {
|
61
|
+
/**
|
62
|
+
* An identity that may be assumed by an AWS identity satisfying the following contains on its GetCallerIdentity values
|
63
|
+
*/
|
64
|
+
awsIdentity?: pulumi.Input<inputs.IdentityAwsIdentity>;
|
65
|
+
/**
|
66
|
+
* An identity that may be assumed when its claims satisfy these constraints.
|
67
|
+
*/
|
68
|
+
claimMatch?: pulumi.Input<inputs.IdentityClaimMatch>;
|
69
|
+
/**
|
70
|
+
* A longer description of the purpose of this identity.
|
71
|
+
*/
|
72
|
+
description?: pulumi.Input<string>;
|
73
|
+
/**
|
74
|
+
* The name of this identity.
|
75
|
+
*/
|
76
|
+
name?: pulumi.Input<string>;
|
77
|
+
/**
|
78
|
+
* The id of the group containing this identity.
|
79
|
+
*/
|
80
|
+
parentId?: pulumi.Input<string>;
|
81
|
+
/**
|
82
|
+
* An identity that may be assumed by a particular Chainguard service.
|
83
|
+
*/
|
84
|
+
servicePrincipal?: pulumi.Input<string>;
|
85
|
+
/**
|
86
|
+
* An identity that is verified by OIDC, with pre-registered verification keys.
|
87
|
+
*/
|
88
|
+
static?: pulumi.Input<inputs.IdentityStatic>;
|
89
|
+
}
|
90
|
+
/**
|
91
|
+
* The set of arguments for constructing a Identity resource.
|
92
|
+
*/
|
93
|
+
export interface IdentityArgs {
|
94
|
+
/**
|
95
|
+
* An identity that may be assumed by an AWS identity satisfying the following contains on its GetCallerIdentity values
|
96
|
+
*/
|
97
|
+
awsIdentity?: pulumi.Input<inputs.IdentityAwsIdentity>;
|
98
|
+
/**
|
99
|
+
* An identity that may be assumed when its claims satisfy these constraints.
|
100
|
+
*/
|
101
|
+
claimMatch?: pulumi.Input<inputs.IdentityClaimMatch>;
|
102
|
+
/**
|
103
|
+
* A longer description of the purpose of this identity.
|
104
|
+
*/
|
105
|
+
description?: pulumi.Input<string>;
|
106
|
+
/**
|
107
|
+
* The name of this identity.
|
108
|
+
*/
|
109
|
+
name?: pulumi.Input<string>;
|
110
|
+
/**
|
111
|
+
* The id of the group containing this identity.
|
112
|
+
*/
|
113
|
+
parentId: pulumi.Input<string>;
|
114
|
+
/**
|
115
|
+
* An identity that may be assumed by a particular Chainguard service.
|
116
|
+
*/
|
117
|
+
servicePrincipal?: pulumi.Input<string>;
|
118
|
+
/**
|
119
|
+
* An identity that is verified by OIDC, with pre-registered verification keys.
|
120
|
+
*/
|
121
|
+
static?: pulumi.Input<inputs.IdentityStatic>;
|
122
|
+
}
|
package/bin/identity.js
ADDED
@@ -0,0 +1,64 @@
|
|
1
|
+
"use strict";
|
2
|
+
// *** WARNING: this file was generated by pulumi-language-nodejs. ***
|
3
|
+
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
5
|
+
exports.Identity = void 0;
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
7
|
+
const utilities = require("./utilities");
|
8
|
+
class Identity extends pulumi.CustomResource {
|
9
|
+
/**
|
10
|
+
* Get an existing Identity resource's state with the given name, ID, and optional extra
|
11
|
+
* properties used to qualify the lookup.
|
12
|
+
*
|
13
|
+
* @param name The _unique_ name of the resulting resource.
|
14
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
15
|
+
* @param state Any extra arguments used during the lookup.
|
16
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
17
|
+
*/
|
18
|
+
static get(name, id, state, opts) {
|
19
|
+
return new Identity(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
20
|
+
}
|
21
|
+
/**
|
22
|
+
* Returns true if the given object is an instance of Identity. This is designed to work even
|
23
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
24
|
+
*/
|
25
|
+
static isInstance(obj) {
|
26
|
+
if (obj === undefined || obj === null) {
|
27
|
+
return false;
|
28
|
+
}
|
29
|
+
return obj['__pulumiType'] === Identity.__pulumiType;
|
30
|
+
}
|
31
|
+
constructor(name, argsOrState, opts) {
|
32
|
+
let resourceInputs = {};
|
33
|
+
opts = opts || {};
|
34
|
+
if (opts.id) {
|
35
|
+
const state = argsOrState;
|
36
|
+
resourceInputs["awsIdentity"] = state ? state.awsIdentity : undefined;
|
37
|
+
resourceInputs["claimMatch"] = state ? state.claimMatch : undefined;
|
38
|
+
resourceInputs["description"] = state ? state.description : undefined;
|
39
|
+
resourceInputs["name"] = state ? state.name : undefined;
|
40
|
+
resourceInputs["parentId"] = state ? state.parentId : undefined;
|
41
|
+
resourceInputs["servicePrincipal"] = state ? state.servicePrincipal : undefined;
|
42
|
+
resourceInputs["static"] = state ? state.static : undefined;
|
43
|
+
}
|
44
|
+
else {
|
45
|
+
const args = argsOrState;
|
46
|
+
if ((!args || args.parentId === undefined) && !opts.urn) {
|
47
|
+
throw new Error("Missing required property 'parentId'");
|
48
|
+
}
|
49
|
+
resourceInputs["awsIdentity"] = args ? args.awsIdentity : undefined;
|
50
|
+
resourceInputs["claimMatch"] = args ? args.claimMatch : undefined;
|
51
|
+
resourceInputs["description"] = args ? args.description : undefined;
|
52
|
+
resourceInputs["name"] = args ? args.name : undefined;
|
53
|
+
resourceInputs["parentId"] = args ? args.parentId : undefined;
|
54
|
+
resourceInputs["servicePrincipal"] = args ? args.servicePrincipal : undefined;
|
55
|
+
resourceInputs["static"] = args ? args.static : undefined;
|
56
|
+
}
|
57
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
58
|
+
super(Identity.__pulumiType, name, resourceInputs, opts, false /*dependency*/, utilities.getPackage());
|
59
|
+
}
|
60
|
+
}
|
61
|
+
exports.Identity = Identity;
|
62
|
+
/** @internal */
|
63
|
+
Identity.__pulumiType = 'chainguard:index/identity:Identity';
|
64
|
+
//# sourceMappingURL=identity.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"identity.js","sourceRoot":"","sources":["../identity.ts"],"names":[],"mappings":"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"}
|
@@ -0,0 +1,98 @@
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
2
|
+
import * as inputs from "./types/input";
|
3
|
+
import * as outputs from "./types/output";
|
4
|
+
export declare class IdentityProvider extends pulumi.CustomResource {
|
5
|
+
/**
|
6
|
+
* Get an existing IdentityProvider resource's state with the given name, ID, and optional extra
|
7
|
+
* properties used to qualify the lookup.
|
8
|
+
*
|
9
|
+
* @param name The _unique_ name of the resulting resource.
|
10
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
11
|
+
* @param state Any extra arguments used during the lookup.
|
12
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
13
|
+
*/
|
14
|
+
static get(name: string, id: pulumi.Input<pulumi.ID>, state?: IdentityProviderState, opts?: pulumi.CustomResourceOptions): IdentityProvider;
|
15
|
+
/**
|
16
|
+
* Returns true if the given object is an instance of IdentityProvider. This is designed to work even
|
17
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
18
|
+
*/
|
19
|
+
static isInstance(obj: any): obj is IdentityProvider;
|
20
|
+
/**
|
21
|
+
* The id of the role new users are bound to on first login.
|
22
|
+
*/
|
23
|
+
readonly defaultRole: pulumi.Output<string>;
|
24
|
+
/**
|
25
|
+
* A longer description of the purpose of this identity provider.
|
26
|
+
*/
|
27
|
+
readonly description: pulumi.Output<string | undefined>;
|
28
|
+
/**
|
29
|
+
* The name of this identity provider.
|
30
|
+
*/
|
31
|
+
readonly name: pulumi.Output<string>;
|
32
|
+
/**
|
33
|
+
* OIDC configuration of this identity provider
|
34
|
+
*/
|
35
|
+
readonly oidc: pulumi.Output<outputs.IdentityProviderOidc | undefined>;
|
36
|
+
/**
|
37
|
+
* The group containing this identity provider.
|
38
|
+
*/
|
39
|
+
readonly parentId: pulumi.Output<string>;
|
40
|
+
/**
|
41
|
+
* Create a IdentityProvider resource with the given unique name, arguments, and options.
|
42
|
+
*
|
43
|
+
* @param name The _unique_ name of the resource.
|
44
|
+
* @param args The arguments to use to populate this resource's properties.
|
45
|
+
* @param opts A bag of options that control this resource's behavior.
|
46
|
+
*/
|
47
|
+
constructor(name: string, args: IdentityProviderArgs, opts?: pulumi.CustomResourceOptions);
|
48
|
+
}
|
49
|
+
/**
|
50
|
+
* Input properties used for looking up and filtering IdentityProvider resources.
|
51
|
+
*/
|
52
|
+
export interface IdentityProviderState {
|
53
|
+
/**
|
54
|
+
* The id of the role new users are bound to on first login.
|
55
|
+
*/
|
56
|
+
defaultRole?: pulumi.Input<string>;
|
57
|
+
/**
|
58
|
+
* A longer description of the purpose of this identity provider.
|
59
|
+
*/
|
60
|
+
description?: pulumi.Input<string>;
|
61
|
+
/**
|
62
|
+
* The name of this identity provider.
|
63
|
+
*/
|
64
|
+
name?: pulumi.Input<string>;
|
65
|
+
/**
|
66
|
+
* OIDC configuration of this identity provider
|
67
|
+
*/
|
68
|
+
oidc?: pulumi.Input<inputs.IdentityProviderOidc>;
|
69
|
+
/**
|
70
|
+
* The group containing this identity provider.
|
71
|
+
*/
|
72
|
+
parentId?: pulumi.Input<string>;
|
73
|
+
}
|
74
|
+
/**
|
75
|
+
* The set of arguments for constructing a IdentityProvider resource.
|
76
|
+
*/
|
77
|
+
export interface IdentityProviderArgs {
|
78
|
+
/**
|
79
|
+
* The id of the role new users are bound to on first login.
|
80
|
+
*/
|
81
|
+
defaultRole: pulumi.Input<string>;
|
82
|
+
/**
|
83
|
+
* A longer description of the purpose of this identity provider.
|
84
|
+
*/
|
85
|
+
description?: pulumi.Input<string>;
|
86
|
+
/**
|
87
|
+
* The name of this identity provider.
|
88
|
+
*/
|
89
|
+
name?: pulumi.Input<string>;
|
90
|
+
/**
|
91
|
+
* OIDC configuration of this identity provider
|
92
|
+
*/
|
93
|
+
oidc?: pulumi.Input<inputs.IdentityProviderOidc>;
|
94
|
+
/**
|
95
|
+
* The group containing this identity provider.
|
96
|
+
*/
|
97
|
+
parentId: pulumi.Input<string>;
|
98
|
+
}
|