@pulumi/artifactory 8.11.0 → 8.11.1-alpha.1779770320
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/getLocalNixRepository.d.ts +75 -0
- package/getLocalNixRepository.d.ts.map +1 -0
- package/getLocalNixRepository.js +73 -0
- package/getLocalNixRepository.js.map +1 -0
- package/getRemoteNixRepository.d.ts +95 -0
- package/getRemoteNixRepository.d.ts.map +1 -0
- package/getRemoteNixRepository.js +73 -0
- package/getRemoteNixRepository.js.map +1 -0
- package/getVirtualNixRepository.d.ts +68 -0
- package/getVirtualNixRepository.d.ts.map +1 -0
- package/getVirtualNixRepository.js +73 -0
- package/getVirtualNixRepository.js.map +1 -0
- package/index.d.ts +18 -0
- package/index.d.ts.map +1 -1
- package/index.js +32 -8
- package/index.js.map +1 -1
- package/ldapGroupSettingV2.d.ts +13 -0
- package/ldapGroupSettingV2.d.ts.map +1 -1
- package/ldapGroupSettingV2.js +3 -0
- package/ldapGroupSettingV2.js.map +1 -1
- package/localNixRepository.d.ts +244 -0
- package/localNixRepository.d.ts.map +1 -0
- package/localNixRepository.js +127 -0
- package/localNixRepository.js.map +1 -0
- package/package.json +2 -2
- package/remoteGenericRepository.d.ts +41 -0
- package/remoteGenericRepository.d.ts.map +1 -1
- package/remoteGenericRepository.js +31 -0
- package/remoteGenericRepository.js.map +1 -1
- package/remoteNixRepository.d.ts +555 -0
- package/remoteNixRepository.d.ts.map +1 -0
- package/remoteNixRepository.js +188 -0
- package/remoteNixRepository.js.map +1 -0
- package/types/input.d.ts +32 -0
- package/types/input.d.ts.map +1 -1
- package/types/output.d.ts +32 -0
- package/types/output.d.ts.map +1 -1
- package/virtualNixRepository.d.ts +200 -0
- package/virtualNixRepository.d.ts.map +1 -0
- package/virtualNixRepository.js +126 -0
- package/virtualNixRepository.js.map +1 -0
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
/**
|
|
3
|
+
* Retrieves configuration for a local Nix repository.
|
|
4
|
+
*
|
|
5
|
+
* ## Example Usage
|
|
6
|
+
*
|
|
7
|
+
* ```typescript
|
|
8
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
9
|
+
* import * as artifactory from "@pulumi/artifactory";
|
|
10
|
+
*
|
|
11
|
+
* const example = artifactory.getLocalNixRepository({
|
|
12
|
+
* key: "my-nix-local",
|
|
13
|
+
* });
|
|
14
|
+
* ```
|
|
15
|
+
*/
|
|
16
|
+
export declare function getLocalNixRepository(args: GetLocalNixRepositoryArgs, opts?: pulumi.InvokeOptions): Promise<GetLocalNixRepositoryResult>;
|
|
17
|
+
/**
|
|
18
|
+
* A collection of arguments for invoking getLocalNixRepository.
|
|
19
|
+
*/
|
|
20
|
+
export interface GetLocalNixRepositoryArgs {
|
|
21
|
+
/**
|
|
22
|
+
* Repository key.
|
|
23
|
+
*/
|
|
24
|
+
key: string;
|
|
25
|
+
}
|
|
26
|
+
/**
|
|
27
|
+
* A collection of values returned by getLocalNixRepository.
|
|
28
|
+
*/
|
|
29
|
+
export interface GetLocalNixRepositoryResult {
|
|
30
|
+
readonly archiveBrowsingEnabled: boolean;
|
|
31
|
+
readonly blackedOut: boolean;
|
|
32
|
+
readonly cdnRedirect: boolean;
|
|
33
|
+
readonly description: string;
|
|
34
|
+
readonly downloadDirect: boolean;
|
|
35
|
+
readonly excludesPattern: string;
|
|
36
|
+
/**
|
|
37
|
+
* The provider-assigned unique ID for this managed resource.
|
|
38
|
+
*/
|
|
39
|
+
readonly id: string;
|
|
40
|
+
readonly includesPattern: string;
|
|
41
|
+
readonly key: string;
|
|
42
|
+
readonly notes: string;
|
|
43
|
+
readonly packageType: string;
|
|
44
|
+
readonly priorityResolution: boolean;
|
|
45
|
+
readonly projectEnvironments: string[];
|
|
46
|
+
readonly projectKey: string;
|
|
47
|
+
readonly propertySets: string[];
|
|
48
|
+
readonly repoLayoutRef: string;
|
|
49
|
+
readonly xrayIndex: boolean;
|
|
50
|
+
}
|
|
51
|
+
/**
|
|
52
|
+
* Retrieves configuration for a local Nix repository.
|
|
53
|
+
*
|
|
54
|
+
* ## Example Usage
|
|
55
|
+
*
|
|
56
|
+
* ```typescript
|
|
57
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
58
|
+
* import * as artifactory from "@pulumi/artifactory";
|
|
59
|
+
*
|
|
60
|
+
* const example = artifactory.getLocalNixRepository({
|
|
61
|
+
* key: "my-nix-local",
|
|
62
|
+
* });
|
|
63
|
+
* ```
|
|
64
|
+
*/
|
|
65
|
+
export declare function getLocalNixRepositoryOutput(args: GetLocalNixRepositoryOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetLocalNixRepositoryResult>;
|
|
66
|
+
/**
|
|
67
|
+
* A collection of arguments for invoking getLocalNixRepository.
|
|
68
|
+
*/
|
|
69
|
+
export interface GetLocalNixRepositoryOutputArgs {
|
|
70
|
+
/**
|
|
71
|
+
* Repository key.
|
|
72
|
+
*/
|
|
73
|
+
key: pulumi.Input<string>;
|
|
74
|
+
}
|
|
75
|
+
//# sourceMappingURL=getLocalNixRepository.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getLocalNixRepository.d.ts","sourceRoot":"","sources":["../getLocalNixRepository.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,MAAM,MAAM,gBAAgB,CAAC;AAGzC;;;;;;;;;;;;;GAaG;AACH,wBAAgB,qBAAqB,CAAC,IAAI,EAAE,yBAAyB,EAAE,IAAI,CAAC,EAAE,MAAM,CAAC,aAAa,GAAG,OAAO,CAAC,2BAA2B,CAAC,CAKxI;AAED;;GAEG;AACH,MAAM,WAAW,yBAAyB;IACtC;;OAEG;IACH,GAAG,EAAE,MAAM,CAAC;CACf;AAED;;GAEG;AACH,MAAM,WAAW,2BAA2B;IACxC,QAAQ,CAAC,sBAAsB,EAAE,OAAO,CAAC;IACzC,QAAQ,CAAC,UAAU,EAAE,OAAO,CAAC;IAC7B,QAAQ,CAAC,WAAW,EAAE,OAAO,CAAC;IAC9B,QAAQ,CAAC,WAAW,EAAE,MAAM,CAAC;IAC7B,QAAQ,CAAC,cAAc,EAAE,OAAO,CAAC;IACjC,QAAQ,CAAC,eAAe,EAAE,MAAM,CAAC;IACjC;;OAEG;IACH,QAAQ,CAAC,EAAE,EAAE,MAAM,CAAC;IACpB,QAAQ,CAAC,eAAe,EAAE,MAAM,CAAC;IACjC,QAAQ,CAAC,GAAG,EAAE,MAAM,CAAC;IACrB,QAAQ,CAAC,KAAK,EAAE,MAAM,CAAC;IACvB,QAAQ,CAAC,WAAW,EAAE,MAAM,CAAC;IAC7B,QAAQ,CAAC,kBAAkB,EAAE,OAAO,CAAC;IACrC,QAAQ,CAAC,mBAAmB,EAAE,MAAM,EAAE,CAAC;IACvC,QAAQ,CAAC,UAAU,EAAE,MAAM,CAAC;IAC5B,QAAQ,CAAC,YAAY,EAAE,MAAM,EAAE,CAAC;IAChC,QAAQ,CAAC,aAAa,EAAE,MAAM,CAAC;IAC/B,QAAQ,CAAC,SAAS,EAAE,OAAO,CAAC;CAC/B;AACD;;;;;;;;;;;;;GAaG;AACH,wBAAgB,2BAA2B,CAAC,IAAI,EAAE,+BAA+B,EAAE,IAAI,CAAC,EAAE,MAAM,CAAC,mBAAmB,GAAG,MAAM,CAAC,MAAM,CAAC,2BAA2B,CAAC,CAKhK;AAED;;GAEG;AACH,MAAM,WAAW,+BAA+B;IAC5C;;OAEG;IACH,GAAG,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC;CAC7B"}
|
|
@@ -0,0 +1,73 @@
|
|
|
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
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
5
|
+
if (k2 === undefined) k2 = k;
|
|
6
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
7
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
8
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
9
|
+
}
|
|
10
|
+
Object.defineProperty(o, k2, desc);
|
|
11
|
+
}) : (function(o, m, k, k2) {
|
|
12
|
+
if (k2 === undefined) k2 = k;
|
|
13
|
+
o[k2] = m[k];
|
|
14
|
+
}));
|
|
15
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
16
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
17
|
+
}) : function(o, v) {
|
|
18
|
+
o["default"] = v;
|
|
19
|
+
});
|
|
20
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
21
|
+
if (mod && mod.__esModule) return mod;
|
|
22
|
+
var result = {};
|
|
23
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
24
|
+
__setModuleDefault(result, mod);
|
|
25
|
+
return result;
|
|
26
|
+
};
|
|
27
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
28
|
+
exports.getLocalNixRepositoryOutput = exports.getLocalNixRepository = void 0;
|
|
29
|
+
const pulumi = __importStar(require("@pulumi/pulumi"));
|
|
30
|
+
const utilities = __importStar(require("./utilities"));
|
|
31
|
+
/**
|
|
32
|
+
* Retrieves configuration for a local Nix repository.
|
|
33
|
+
*
|
|
34
|
+
* ## Example Usage
|
|
35
|
+
*
|
|
36
|
+
* ```typescript
|
|
37
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
38
|
+
* import * as artifactory from "@pulumi/artifactory";
|
|
39
|
+
*
|
|
40
|
+
* const example = artifactory.getLocalNixRepository({
|
|
41
|
+
* key: "my-nix-local",
|
|
42
|
+
* });
|
|
43
|
+
* ```
|
|
44
|
+
*/
|
|
45
|
+
function getLocalNixRepository(args, opts) {
|
|
46
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
47
|
+
return pulumi.runtime.invoke("artifactory:index/getLocalNixRepository:getLocalNixRepository", {
|
|
48
|
+
"key": args.key,
|
|
49
|
+
}, opts);
|
|
50
|
+
}
|
|
51
|
+
exports.getLocalNixRepository = getLocalNixRepository;
|
|
52
|
+
/**
|
|
53
|
+
* Retrieves configuration for a local Nix repository.
|
|
54
|
+
*
|
|
55
|
+
* ## Example Usage
|
|
56
|
+
*
|
|
57
|
+
* ```typescript
|
|
58
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
59
|
+
* import * as artifactory from "@pulumi/artifactory";
|
|
60
|
+
*
|
|
61
|
+
* const example = artifactory.getLocalNixRepository({
|
|
62
|
+
* key: "my-nix-local",
|
|
63
|
+
* });
|
|
64
|
+
* ```
|
|
65
|
+
*/
|
|
66
|
+
function getLocalNixRepositoryOutput(args, opts) {
|
|
67
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
68
|
+
return pulumi.runtime.invokeOutput("artifactory:index/getLocalNixRepository:getLocalNixRepository", {
|
|
69
|
+
"key": args.key,
|
|
70
|
+
}, opts);
|
|
71
|
+
}
|
|
72
|
+
exports.getLocalNixRepositoryOutput = getLocalNixRepositoryOutput;
|
|
73
|
+
//# sourceMappingURL=getLocalNixRepository.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getLocalNixRepository.js","sourceRoot":"","sources":["../getLocalNixRepository.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;;;;;;;;;;;;;;;;;;;;;;;;AAEjF,uDAAyC;AACzC,uDAAyC;AAEzC;;;;;;;;;;;;;GAaG;AACH,SAAgB,qBAAqB,CAAC,IAA+B,EAAE,IAA2B;IAC9F,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,+DAA+D,EAAE;QAC1F,KAAK,EAAE,IAAI,CAAC,GAAG;KAClB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,sDAKC;AAqCD;;;;;;;;;;;;;GAaG;AACH,SAAgB,2BAA2B,CAAC,IAAqC,EAAE,IAAiC;IAChH,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,+DAA+D,EAAE;QAChG,KAAK,EAAE,IAAI,CAAC,GAAG;KAClB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,kEAKC"}
|
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
/**
|
|
3
|
+
* Retrieves configuration for a remote Nix repository.
|
|
4
|
+
*
|
|
5
|
+
* ## Example Usage
|
|
6
|
+
*
|
|
7
|
+
* ```typescript
|
|
8
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
9
|
+
* import * as artifactory from "@pulumi/artifactory";
|
|
10
|
+
*
|
|
11
|
+
* const example = artifactory.getRemoteNixRepository({
|
|
12
|
+
* key: "my-nix-remote",
|
|
13
|
+
* });
|
|
14
|
+
* ```
|
|
15
|
+
*/
|
|
16
|
+
export declare function getRemoteNixRepository(args: GetRemoteNixRepositoryArgs, opts?: pulumi.InvokeOptions): Promise<GetRemoteNixRepositoryResult>;
|
|
17
|
+
/**
|
|
18
|
+
* A collection of arguments for invoking getRemoteNixRepository.
|
|
19
|
+
*/
|
|
20
|
+
export interface GetRemoteNixRepositoryArgs {
|
|
21
|
+
/**
|
|
22
|
+
* Repository key.
|
|
23
|
+
*/
|
|
24
|
+
key: string;
|
|
25
|
+
}
|
|
26
|
+
/**
|
|
27
|
+
* A collection of values returned by getRemoteNixRepository.
|
|
28
|
+
*/
|
|
29
|
+
export interface GetRemoteNixRepositoryResult {
|
|
30
|
+
readonly allowAnyHostAuth: boolean;
|
|
31
|
+
readonly assumedOfflinePeriodSecs: number;
|
|
32
|
+
readonly blockMismatchingMimeTypes: boolean;
|
|
33
|
+
readonly bypassHeadRequests: boolean;
|
|
34
|
+
readonly clientTlsCertificate: string;
|
|
35
|
+
readonly description: string;
|
|
36
|
+
readonly disableProxy: boolean;
|
|
37
|
+
readonly disableUrlNormalization: boolean;
|
|
38
|
+
readonly enableCookieManagement: boolean;
|
|
39
|
+
readonly excludesPattern: string;
|
|
40
|
+
readonly hardFail: boolean;
|
|
41
|
+
/**
|
|
42
|
+
* The provider-assigned unique ID for this managed resource.
|
|
43
|
+
*/
|
|
44
|
+
readonly id: string;
|
|
45
|
+
readonly includesPattern: string;
|
|
46
|
+
readonly key: string;
|
|
47
|
+
readonly listRemoteFolderItems: boolean;
|
|
48
|
+
readonly localAddress: string;
|
|
49
|
+
readonly metadataRetrievalTimeoutSecs: number;
|
|
50
|
+
readonly mismatchingMimeTypesOverrideList: string;
|
|
51
|
+
readonly missedCachePeriodSeconds: number;
|
|
52
|
+
readonly notes: string;
|
|
53
|
+
readonly offline: boolean;
|
|
54
|
+
readonly packageType: string;
|
|
55
|
+
readonly password: string;
|
|
56
|
+
readonly projectEnvironments: string[];
|
|
57
|
+
readonly projectKey: string;
|
|
58
|
+
readonly proxy: string;
|
|
59
|
+
readonly queryParams: string;
|
|
60
|
+
readonly remoteRepoLayoutRef: string;
|
|
61
|
+
readonly repoLayoutRef: string;
|
|
62
|
+
readonly retrievalCachePeriodSeconds: number;
|
|
63
|
+
readonly shareConfiguration: boolean;
|
|
64
|
+
readonly socketTimeoutMillis: number;
|
|
65
|
+
readonly storeArtifactsLocally: boolean;
|
|
66
|
+
readonly synchronizeProperties: boolean;
|
|
67
|
+
readonly unusedArtifactsCleanupPeriodHours: number;
|
|
68
|
+
readonly url: string;
|
|
69
|
+
readonly username: string;
|
|
70
|
+
}
|
|
71
|
+
/**
|
|
72
|
+
* Retrieves configuration for a remote Nix repository.
|
|
73
|
+
*
|
|
74
|
+
* ## Example Usage
|
|
75
|
+
*
|
|
76
|
+
* ```typescript
|
|
77
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
78
|
+
* import * as artifactory from "@pulumi/artifactory";
|
|
79
|
+
*
|
|
80
|
+
* const example = artifactory.getRemoteNixRepository({
|
|
81
|
+
* key: "my-nix-remote",
|
|
82
|
+
* });
|
|
83
|
+
* ```
|
|
84
|
+
*/
|
|
85
|
+
export declare function getRemoteNixRepositoryOutput(args: GetRemoteNixRepositoryOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetRemoteNixRepositoryResult>;
|
|
86
|
+
/**
|
|
87
|
+
* A collection of arguments for invoking getRemoteNixRepository.
|
|
88
|
+
*/
|
|
89
|
+
export interface GetRemoteNixRepositoryOutputArgs {
|
|
90
|
+
/**
|
|
91
|
+
* Repository key.
|
|
92
|
+
*/
|
|
93
|
+
key: pulumi.Input<string>;
|
|
94
|
+
}
|
|
95
|
+
//# sourceMappingURL=getRemoteNixRepository.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getRemoteNixRepository.d.ts","sourceRoot":"","sources":["../getRemoteNixRepository.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,MAAM,MAAM,gBAAgB,CAAC;AAGzC;;;;;;;;;;;;;GAaG;AACH,wBAAgB,sBAAsB,CAAC,IAAI,EAAE,0BAA0B,EAAE,IAAI,CAAC,EAAE,MAAM,CAAC,aAAa,GAAG,OAAO,CAAC,4BAA4B,CAAC,CAK3I;AAED;;GAEG;AACH,MAAM,WAAW,0BAA0B;IACvC;;OAEG;IACH,GAAG,EAAE,MAAM,CAAC;CACf;AAED;;GAEG;AACH,MAAM,WAAW,4BAA4B;IACzC,QAAQ,CAAC,gBAAgB,EAAE,OAAO,CAAC;IACnC,QAAQ,CAAC,wBAAwB,EAAE,MAAM,CAAC;IAC1C,QAAQ,CAAC,yBAAyB,EAAE,OAAO,CAAC;IAC5C,QAAQ,CAAC,kBAAkB,EAAE,OAAO,CAAC;IACrC,QAAQ,CAAC,oBAAoB,EAAE,MAAM,CAAC;IACtC,QAAQ,CAAC,WAAW,EAAE,MAAM,CAAC;IAC7B,QAAQ,CAAC,YAAY,EAAE,OAAO,CAAC;IAC/B,QAAQ,CAAC,uBAAuB,EAAE,OAAO,CAAC;IAC1C,QAAQ,CAAC,sBAAsB,EAAE,OAAO,CAAC;IACzC,QAAQ,CAAC,eAAe,EAAE,MAAM,CAAC;IACjC,QAAQ,CAAC,QAAQ,EAAE,OAAO,CAAC;IAC3B;;OAEG;IACH,QAAQ,CAAC,EAAE,EAAE,MAAM,CAAC;IACpB,QAAQ,CAAC,eAAe,EAAE,MAAM,CAAC;IACjC,QAAQ,CAAC,GAAG,EAAE,MAAM,CAAC;IACrB,QAAQ,CAAC,qBAAqB,EAAE,OAAO,CAAC;IACxC,QAAQ,CAAC,YAAY,EAAE,MAAM,CAAC;IAC9B,QAAQ,CAAC,4BAA4B,EAAE,MAAM,CAAC;IAC9C,QAAQ,CAAC,gCAAgC,EAAE,MAAM,CAAC;IAClD,QAAQ,CAAC,wBAAwB,EAAE,MAAM,CAAC;IAC1C,QAAQ,CAAC,KAAK,EAAE,MAAM,CAAC;IACvB,QAAQ,CAAC,OAAO,EAAE,OAAO,CAAC;IAC1B,QAAQ,CAAC,WAAW,EAAE,MAAM,CAAC;IAC7B,QAAQ,CAAC,QAAQ,EAAE,MAAM,CAAC;IAC1B,QAAQ,CAAC,mBAAmB,EAAE,MAAM,EAAE,CAAC;IACvC,QAAQ,CAAC,UAAU,EAAE,MAAM,CAAC;IAC5B,QAAQ,CAAC,KAAK,EAAE,MAAM,CAAC;IACvB,QAAQ,CAAC,WAAW,EAAE,MAAM,CAAC;IAC7B,QAAQ,CAAC,mBAAmB,EAAE,MAAM,CAAC;IACrC,QAAQ,CAAC,aAAa,EAAE,MAAM,CAAC;IAC/B,QAAQ,CAAC,2BAA2B,EAAE,MAAM,CAAC;IAC7C,QAAQ,CAAC,kBAAkB,EAAE,OAAO,CAAC;IACrC,QAAQ,CAAC,mBAAmB,EAAE,MAAM,CAAC;IACrC,QAAQ,CAAC,qBAAqB,EAAE,OAAO,CAAC;IACxC,QAAQ,CAAC,qBAAqB,EAAE,OAAO,CAAC;IACxC,QAAQ,CAAC,iCAAiC,EAAE,MAAM,CAAC;IACnD,QAAQ,CAAC,GAAG,EAAE,MAAM,CAAC;IACrB,QAAQ,CAAC,QAAQ,EAAE,MAAM,CAAC;CAC7B;AACD;;;;;;;;;;;;;GAaG;AACH,wBAAgB,4BAA4B,CAAC,IAAI,EAAE,gCAAgC,EAAE,IAAI,CAAC,EAAE,MAAM,CAAC,mBAAmB,GAAG,MAAM,CAAC,MAAM,CAAC,4BAA4B,CAAC,CAKnK;AAED;;GAEG;AACH,MAAM,WAAW,gCAAgC;IAC7C;;OAEG;IACH,GAAG,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC;CAC7B"}
|
|
@@ -0,0 +1,73 @@
|
|
|
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
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
5
|
+
if (k2 === undefined) k2 = k;
|
|
6
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
7
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
8
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
9
|
+
}
|
|
10
|
+
Object.defineProperty(o, k2, desc);
|
|
11
|
+
}) : (function(o, m, k, k2) {
|
|
12
|
+
if (k2 === undefined) k2 = k;
|
|
13
|
+
o[k2] = m[k];
|
|
14
|
+
}));
|
|
15
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
16
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
17
|
+
}) : function(o, v) {
|
|
18
|
+
o["default"] = v;
|
|
19
|
+
});
|
|
20
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
21
|
+
if (mod && mod.__esModule) return mod;
|
|
22
|
+
var result = {};
|
|
23
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
24
|
+
__setModuleDefault(result, mod);
|
|
25
|
+
return result;
|
|
26
|
+
};
|
|
27
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
28
|
+
exports.getRemoteNixRepositoryOutput = exports.getRemoteNixRepository = void 0;
|
|
29
|
+
const pulumi = __importStar(require("@pulumi/pulumi"));
|
|
30
|
+
const utilities = __importStar(require("./utilities"));
|
|
31
|
+
/**
|
|
32
|
+
* Retrieves configuration for a remote Nix repository.
|
|
33
|
+
*
|
|
34
|
+
* ## Example Usage
|
|
35
|
+
*
|
|
36
|
+
* ```typescript
|
|
37
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
38
|
+
* import * as artifactory from "@pulumi/artifactory";
|
|
39
|
+
*
|
|
40
|
+
* const example = artifactory.getRemoteNixRepository({
|
|
41
|
+
* key: "my-nix-remote",
|
|
42
|
+
* });
|
|
43
|
+
* ```
|
|
44
|
+
*/
|
|
45
|
+
function getRemoteNixRepository(args, opts) {
|
|
46
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
47
|
+
return pulumi.runtime.invoke("artifactory:index/getRemoteNixRepository:getRemoteNixRepository", {
|
|
48
|
+
"key": args.key,
|
|
49
|
+
}, opts);
|
|
50
|
+
}
|
|
51
|
+
exports.getRemoteNixRepository = getRemoteNixRepository;
|
|
52
|
+
/**
|
|
53
|
+
* Retrieves configuration for a remote Nix repository.
|
|
54
|
+
*
|
|
55
|
+
* ## Example Usage
|
|
56
|
+
*
|
|
57
|
+
* ```typescript
|
|
58
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
59
|
+
* import * as artifactory from "@pulumi/artifactory";
|
|
60
|
+
*
|
|
61
|
+
* const example = artifactory.getRemoteNixRepository({
|
|
62
|
+
* key: "my-nix-remote",
|
|
63
|
+
* });
|
|
64
|
+
* ```
|
|
65
|
+
*/
|
|
66
|
+
function getRemoteNixRepositoryOutput(args, opts) {
|
|
67
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
68
|
+
return pulumi.runtime.invokeOutput("artifactory:index/getRemoteNixRepository:getRemoteNixRepository", {
|
|
69
|
+
"key": args.key,
|
|
70
|
+
}, opts);
|
|
71
|
+
}
|
|
72
|
+
exports.getRemoteNixRepositoryOutput = getRemoteNixRepositoryOutput;
|
|
73
|
+
//# sourceMappingURL=getRemoteNixRepository.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getRemoteNixRepository.js","sourceRoot":"","sources":["../getRemoteNixRepository.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;;;;;;;;;;;;;;;;;;;;;;;;AAEjF,uDAAyC;AACzC,uDAAyC;AAEzC;;;;;;;;;;;;;GAaG;AACH,SAAgB,sBAAsB,CAAC,IAAgC,EAAE,IAA2B;IAChG,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,iEAAiE,EAAE;QAC5F,KAAK,EAAE,IAAI,CAAC,GAAG;KAClB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,wDAKC;AAyDD;;;;;;;;;;;;;GAaG;AACH,SAAgB,4BAA4B,CAAC,IAAsC,EAAE,IAAiC;IAClH,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,iEAAiE,EAAE;QAClG,KAAK,EAAE,IAAI,CAAC,GAAG;KAClB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,oEAKC"}
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
/**
|
|
3
|
+
* Retrieves configuration for a virtual Nix repository.
|
|
4
|
+
*
|
|
5
|
+
* ## Example Usage
|
|
6
|
+
*
|
|
7
|
+
* ```typescript
|
|
8
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
9
|
+
* import * as artifactory from "@pulumi/artifactory";
|
|
10
|
+
*
|
|
11
|
+
* const example = artifactory.getVirtualNixRepository({
|
|
12
|
+
* key: "my-nix-virtual",
|
|
13
|
+
* });
|
|
14
|
+
* ```
|
|
15
|
+
*/
|
|
16
|
+
export declare function getVirtualNixRepository(args: GetVirtualNixRepositoryArgs, opts?: pulumi.InvokeOptions): Promise<GetVirtualNixRepositoryResult>;
|
|
17
|
+
/**
|
|
18
|
+
* A collection of arguments for invoking getVirtualNixRepository.
|
|
19
|
+
*/
|
|
20
|
+
export interface GetVirtualNixRepositoryArgs {
|
|
21
|
+
/**
|
|
22
|
+
* Repository key.
|
|
23
|
+
*/
|
|
24
|
+
key: string;
|
|
25
|
+
}
|
|
26
|
+
/**
|
|
27
|
+
* A collection of values returned by getVirtualNixRepository.
|
|
28
|
+
*/
|
|
29
|
+
export interface GetVirtualNixRepositoryResult {
|
|
30
|
+
readonly description: string;
|
|
31
|
+
readonly excludesPattern: string;
|
|
32
|
+
/**
|
|
33
|
+
* The provider-assigned unique ID for this managed resource.
|
|
34
|
+
*/
|
|
35
|
+
readonly id: string;
|
|
36
|
+
readonly includesPattern: string;
|
|
37
|
+
readonly key: string;
|
|
38
|
+
readonly notes: string;
|
|
39
|
+
readonly packageType: string;
|
|
40
|
+
readonly projectEnvironments: string[];
|
|
41
|
+
readonly projectKey: string;
|
|
42
|
+
readonly repoLayoutRef: string;
|
|
43
|
+
}
|
|
44
|
+
/**
|
|
45
|
+
* Retrieves configuration for a virtual Nix repository.
|
|
46
|
+
*
|
|
47
|
+
* ## Example Usage
|
|
48
|
+
*
|
|
49
|
+
* ```typescript
|
|
50
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
51
|
+
* import * as artifactory from "@pulumi/artifactory";
|
|
52
|
+
*
|
|
53
|
+
* const example = artifactory.getVirtualNixRepository({
|
|
54
|
+
* key: "my-nix-virtual",
|
|
55
|
+
* });
|
|
56
|
+
* ```
|
|
57
|
+
*/
|
|
58
|
+
export declare function getVirtualNixRepositoryOutput(args: GetVirtualNixRepositoryOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetVirtualNixRepositoryResult>;
|
|
59
|
+
/**
|
|
60
|
+
* A collection of arguments for invoking getVirtualNixRepository.
|
|
61
|
+
*/
|
|
62
|
+
export interface GetVirtualNixRepositoryOutputArgs {
|
|
63
|
+
/**
|
|
64
|
+
* Repository key.
|
|
65
|
+
*/
|
|
66
|
+
key: pulumi.Input<string>;
|
|
67
|
+
}
|
|
68
|
+
//# sourceMappingURL=getVirtualNixRepository.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getVirtualNixRepository.d.ts","sourceRoot":"","sources":["../getVirtualNixRepository.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,MAAM,MAAM,gBAAgB,CAAC;AAGzC;;;;;;;;;;;;;GAaG;AACH,wBAAgB,uBAAuB,CAAC,IAAI,EAAE,2BAA2B,EAAE,IAAI,CAAC,EAAE,MAAM,CAAC,aAAa,GAAG,OAAO,CAAC,6BAA6B,CAAC,CAK9I;AAED;;GAEG;AACH,MAAM,WAAW,2BAA2B;IACxC;;OAEG;IACH,GAAG,EAAE,MAAM,CAAC;CACf;AAED;;GAEG;AACH,MAAM,WAAW,6BAA6B;IAC1C,QAAQ,CAAC,WAAW,EAAE,MAAM,CAAC;IAC7B,QAAQ,CAAC,eAAe,EAAE,MAAM,CAAC;IACjC;;OAEG;IACH,QAAQ,CAAC,EAAE,EAAE,MAAM,CAAC;IACpB,QAAQ,CAAC,eAAe,EAAE,MAAM,CAAC;IACjC,QAAQ,CAAC,GAAG,EAAE,MAAM,CAAC;IACrB,QAAQ,CAAC,KAAK,EAAE,MAAM,CAAC;IACvB,QAAQ,CAAC,WAAW,EAAE,MAAM,CAAC;IAC7B,QAAQ,CAAC,mBAAmB,EAAE,MAAM,EAAE,CAAC;IACvC,QAAQ,CAAC,UAAU,EAAE,MAAM,CAAC;IAC5B,QAAQ,CAAC,aAAa,EAAE,MAAM,CAAC;CAClC;AACD;;;;;;;;;;;;;GAaG;AACH,wBAAgB,6BAA6B,CAAC,IAAI,EAAE,iCAAiC,EAAE,IAAI,CAAC,EAAE,MAAM,CAAC,mBAAmB,GAAG,MAAM,CAAC,MAAM,CAAC,6BAA6B,CAAC,CAKtK;AAED;;GAEG;AACH,MAAM,WAAW,iCAAiC;IAC9C;;OAEG;IACH,GAAG,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC;CAC7B"}
|
|
@@ -0,0 +1,73 @@
|
|
|
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
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
5
|
+
if (k2 === undefined) k2 = k;
|
|
6
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
7
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
8
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
9
|
+
}
|
|
10
|
+
Object.defineProperty(o, k2, desc);
|
|
11
|
+
}) : (function(o, m, k, k2) {
|
|
12
|
+
if (k2 === undefined) k2 = k;
|
|
13
|
+
o[k2] = m[k];
|
|
14
|
+
}));
|
|
15
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
16
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
17
|
+
}) : function(o, v) {
|
|
18
|
+
o["default"] = v;
|
|
19
|
+
});
|
|
20
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
21
|
+
if (mod && mod.__esModule) return mod;
|
|
22
|
+
var result = {};
|
|
23
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
24
|
+
__setModuleDefault(result, mod);
|
|
25
|
+
return result;
|
|
26
|
+
};
|
|
27
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
28
|
+
exports.getVirtualNixRepositoryOutput = exports.getVirtualNixRepository = void 0;
|
|
29
|
+
const pulumi = __importStar(require("@pulumi/pulumi"));
|
|
30
|
+
const utilities = __importStar(require("./utilities"));
|
|
31
|
+
/**
|
|
32
|
+
* Retrieves configuration for a virtual Nix repository.
|
|
33
|
+
*
|
|
34
|
+
* ## Example Usage
|
|
35
|
+
*
|
|
36
|
+
* ```typescript
|
|
37
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
38
|
+
* import * as artifactory from "@pulumi/artifactory";
|
|
39
|
+
*
|
|
40
|
+
* const example = artifactory.getVirtualNixRepository({
|
|
41
|
+
* key: "my-nix-virtual",
|
|
42
|
+
* });
|
|
43
|
+
* ```
|
|
44
|
+
*/
|
|
45
|
+
function getVirtualNixRepository(args, opts) {
|
|
46
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
47
|
+
return pulumi.runtime.invoke("artifactory:index/getVirtualNixRepository:getVirtualNixRepository", {
|
|
48
|
+
"key": args.key,
|
|
49
|
+
}, opts);
|
|
50
|
+
}
|
|
51
|
+
exports.getVirtualNixRepository = getVirtualNixRepository;
|
|
52
|
+
/**
|
|
53
|
+
* Retrieves configuration for a virtual Nix repository.
|
|
54
|
+
*
|
|
55
|
+
* ## Example Usage
|
|
56
|
+
*
|
|
57
|
+
* ```typescript
|
|
58
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
59
|
+
* import * as artifactory from "@pulumi/artifactory";
|
|
60
|
+
*
|
|
61
|
+
* const example = artifactory.getVirtualNixRepository({
|
|
62
|
+
* key: "my-nix-virtual",
|
|
63
|
+
* });
|
|
64
|
+
* ```
|
|
65
|
+
*/
|
|
66
|
+
function getVirtualNixRepositoryOutput(args, opts) {
|
|
67
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
68
|
+
return pulumi.runtime.invokeOutput("artifactory:index/getVirtualNixRepository:getVirtualNixRepository", {
|
|
69
|
+
"key": args.key,
|
|
70
|
+
}, opts);
|
|
71
|
+
}
|
|
72
|
+
exports.getVirtualNixRepositoryOutput = getVirtualNixRepositoryOutput;
|
|
73
|
+
//# sourceMappingURL=getVirtualNixRepository.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getVirtualNixRepository.js","sourceRoot":"","sources":["../getVirtualNixRepository.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;;;;;;;;;;;;;;;;;;;;;;;;AAEjF,uDAAyC;AACzC,uDAAyC;AAEzC;;;;;;;;;;;;;GAaG;AACH,SAAgB,uBAAuB,CAAC,IAAiC,EAAE,IAA2B;IAClG,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,mEAAmE,EAAE;QAC9F,KAAK,EAAE,IAAI,CAAC,GAAG;KAClB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,0DAKC;AA8BD;;;;;;;;;;;;;GAaG;AACH,SAAgB,6BAA6B,CAAC,IAAuC,EAAE,IAAiC;IACpH,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,mEAAmE,EAAE;QACpG,KAAK,EAAE,IAAI,CAAC,GAAG;KAClB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,sEAKC"}
|
package/index.d.ts
CHANGED
|
@@ -385,6 +385,9 @@ export declare const getLocalIvyRepositoryOutput: typeof import("./getLocalIvyRe
|
|
|
385
385
|
export { GetLocalMavenRepositoryArgs, GetLocalMavenRepositoryResult, GetLocalMavenRepositoryOutputArgs } from "./getLocalMavenRepository";
|
|
386
386
|
export declare const getLocalMavenRepository: typeof import("./getLocalMavenRepository").getLocalMavenRepository;
|
|
387
387
|
export declare const getLocalMavenRepositoryOutput: typeof import("./getLocalMavenRepository").getLocalMavenRepositoryOutput;
|
|
388
|
+
export { GetLocalNixRepositoryArgs, GetLocalNixRepositoryResult, GetLocalNixRepositoryOutputArgs } from "./getLocalNixRepository";
|
|
389
|
+
export declare const getLocalNixRepository: typeof import("./getLocalNixRepository").getLocalNixRepository;
|
|
390
|
+
export declare const getLocalNixRepositoryOutput: typeof import("./getLocalNixRepository").getLocalNixRepositoryOutput;
|
|
388
391
|
export { GetLocalNpmRepositoryArgs, GetLocalNpmRepositoryResult, GetLocalNpmRepositoryOutputArgs } from "./getLocalNpmRepository";
|
|
389
392
|
export declare const getLocalNpmRepository: typeof import("./getLocalNpmRepository").getLocalNpmRepository;
|
|
390
393
|
export declare const getLocalNpmRepositoryOutput: typeof import("./getLocalNpmRepository").getLocalNpmRepositoryOutput;
|
|
@@ -493,6 +496,9 @@ export declare const getRemoteIvyRepositoryOutput: typeof import("./getRemoteIvy
|
|
|
493
496
|
export { GetRemoteMavenRepositoryArgs, GetRemoteMavenRepositoryResult, GetRemoteMavenRepositoryOutputArgs } from "./getRemoteMavenRepository";
|
|
494
497
|
export declare const getRemoteMavenRepository: typeof import("./getRemoteMavenRepository").getRemoteMavenRepository;
|
|
495
498
|
export declare const getRemoteMavenRepositoryOutput: typeof import("./getRemoteMavenRepository").getRemoteMavenRepositoryOutput;
|
|
499
|
+
export { GetRemoteNixRepositoryArgs, GetRemoteNixRepositoryResult, GetRemoteNixRepositoryOutputArgs } from "./getRemoteNixRepository";
|
|
500
|
+
export declare const getRemoteNixRepository: typeof import("./getRemoteNixRepository").getRemoteNixRepository;
|
|
501
|
+
export declare const getRemoteNixRepositoryOutput: typeof import("./getRemoteNixRepository").getRemoteNixRepositoryOutput;
|
|
496
502
|
export { GetRemoteNpmRepositoryArgs, GetRemoteNpmRepositoryResult, GetRemoteNpmRepositoryOutputArgs } from "./getRemoteNpmRepository";
|
|
497
503
|
export declare const getRemoteNpmRepository: typeof import("./getRemoteNpmRepository").getRemoteNpmRepository;
|
|
498
504
|
export declare const getRemoteNpmRepositoryOutput: typeof import("./getRemoteNpmRepository").getRemoteNpmRepositoryOutput;
|
|
@@ -601,6 +607,9 @@ export declare const getVirtualIvyRepositoryOutput: typeof import("./getVirtualI
|
|
|
601
607
|
export { GetVirtualMavenRepositoryArgs, GetVirtualMavenRepositoryResult, GetVirtualMavenRepositoryOutputArgs } from "./getVirtualMavenRepository";
|
|
602
608
|
export declare const getVirtualMavenRepository: typeof import("./getVirtualMavenRepository").getVirtualMavenRepository;
|
|
603
609
|
export declare const getVirtualMavenRepositoryOutput: typeof import("./getVirtualMavenRepository").getVirtualMavenRepositoryOutput;
|
|
610
|
+
export { GetVirtualNixRepositoryArgs, GetVirtualNixRepositoryResult, GetVirtualNixRepositoryOutputArgs } from "./getVirtualNixRepository";
|
|
611
|
+
export declare const getVirtualNixRepository: typeof import("./getVirtualNixRepository").getVirtualNixRepository;
|
|
612
|
+
export declare const getVirtualNixRepositoryOutput: typeof import("./getVirtualNixRepository").getVirtualNixRepositoryOutput;
|
|
604
613
|
export { GetVirtualNpmRepositoryArgs, GetVirtualNpmRepositoryResult, GetVirtualNpmRepositoryOutputArgs } from "./getVirtualNpmRepository";
|
|
605
614
|
export declare const getVirtualNpmRepository: typeof import("./getVirtualNpmRepository").getVirtualNpmRepository;
|
|
606
615
|
export declare const getVirtualNpmRepositoryOutput: typeof import("./getVirtualNpmRepository").getVirtualNpmRepositoryOutput;
|
|
@@ -724,6 +733,9 @@ export declare const LocalMachinelearningRepository: typeof import("./localMachi
|
|
|
724
733
|
export { LocalMavenRepositoryArgs, LocalMavenRepositoryState } from "./localMavenRepository";
|
|
725
734
|
export type LocalMavenRepository = import("./localMavenRepository").LocalMavenRepository;
|
|
726
735
|
export declare const LocalMavenRepository: typeof import("./localMavenRepository").LocalMavenRepository;
|
|
736
|
+
export { LocalNixRepositoryArgs, LocalNixRepositoryState } from "./localNixRepository";
|
|
737
|
+
export type LocalNixRepository = import("./localNixRepository").LocalNixRepository;
|
|
738
|
+
export declare const LocalNixRepository: typeof import("./localNixRepository").LocalNixRepository;
|
|
727
739
|
export { LocalNpmRepositoryArgs, LocalNpmRepositoryState } from "./localNpmRepository";
|
|
728
740
|
export type LocalNpmRepository = import("./localNpmRepository").LocalNpmRepository;
|
|
729
741
|
export declare const LocalNpmRepository: typeof import("./localNpmRepository").LocalNpmRepository;
|
|
@@ -902,6 +914,9 @@ export declare const RemoteIvyRepository: typeof import("./remoteIvyRepository")
|
|
|
902
914
|
export { RemoteMavenRepositoryArgs, RemoteMavenRepositoryState } from "./remoteMavenRepository";
|
|
903
915
|
export type RemoteMavenRepository = import("./remoteMavenRepository").RemoteMavenRepository;
|
|
904
916
|
export declare const RemoteMavenRepository: typeof import("./remoteMavenRepository").RemoteMavenRepository;
|
|
917
|
+
export { RemoteNixRepositoryArgs, RemoteNixRepositoryState } from "./remoteNixRepository";
|
|
918
|
+
export type RemoteNixRepository = import("./remoteNixRepository").RemoteNixRepository;
|
|
919
|
+
export declare const RemoteNixRepository: typeof import("./remoteNixRepository").RemoteNixRepository;
|
|
905
920
|
export { RemoteNpmRepositoryArgs, RemoteNpmRepositoryState } from "./remoteNpmRepository";
|
|
906
921
|
export type RemoteNpmRepository = import("./remoteNpmRepository").RemoteNpmRepository;
|
|
907
922
|
export declare const RemoteNpmRepository: typeof import("./remoteNpmRepository").RemoteNpmRepository;
|
|
@@ -1031,6 +1046,9 @@ export declare const VirtualHexRepository: typeof import("./virtualHexRepository
|
|
|
1031
1046
|
export { VirtualIvyRepositoryArgs, VirtualIvyRepositoryState } from "./virtualIvyRepository";
|
|
1032
1047
|
export type VirtualIvyRepository = import("./virtualIvyRepository").VirtualIvyRepository;
|
|
1033
1048
|
export declare const VirtualIvyRepository: typeof import("./virtualIvyRepository").VirtualIvyRepository;
|
|
1049
|
+
export { VirtualNixRepositoryArgs, VirtualNixRepositoryState } from "./virtualNixRepository";
|
|
1050
|
+
export type VirtualNixRepository = import("./virtualNixRepository").VirtualNixRepository;
|
|
1051
|
+
export declare const VirtualNixRepository: typeof import("./virtualNixRepository").VirtualNixRepository;
|
|
1034
1052
|
export { VirtualNpmRepositoryArgs, VirtualNpmRepositoryState } from "./virtualNpmRepository";
|
|
1035
1053
|
export type VirtualNpmRepository = import("./virtualNpmRepository").VirtualNpmRepository;
|
|
1036
1054
|
export declare const VirtualNpmRepository: typeof import("./virtualNpmRepository").VirtualNpmRepository;
|