@pulumi/kubernetes 3.11.0 → 3.13.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.
- package/autoscaling/index.d.ts +2 -1
- package/autoscaling/index.js +3 -1
- package/autoscaling/index.js.map +1 -1
- package/autoscaling/v1/horizontalPodAutoscaler.js +1 -1
- package/autoscaling/v1/horizontalPodAutoscaler.js.map +1 -1
- package/autoscaling/v2/horizontalPodAutoscaler.d.ts +70 -0
- package/autoscaling/v2/horizontalPodAutoscaler.js +68 -0
- package/autoscaling/v2/horizontalPodAutoscaler.js.map +1 -0
- package/autoscaling/v2/horizontalPodAutoscalerList.d.ts +66 -0
- package/autoscaling/v2/horizontalPodAutoscalerList.js +67 -0
- package/autoscaling/v2/horizontalPodAutoscalerList.js.map +1 -0
- package/autoscaling/v2/index.d.ts +2 -0
- package/autoscaling/v2/index.js +37 -0
- package/autoscaling/v2/index.js.map +1 -0
- package/autoscaling/v2beta1/horizontalPodAutoscaler.js +1 -1
- package/autoscaling/v2beta1/horizontalPodAutoscaler.js.map +1 -1
- package/autoscaling/v2beta2/horizontalPodAutoscaler.js +1 -1
- package/autoscaling/v2beta2/horizontalPodAutoscaler.js.map +1 -1
- package/core/v1/secret.d.ts +2 -2
- package/discovery/v1/endpointSlice.d.ts +10 -0
- package/discovery/v1/endpointSlice.js.map +1 -1
- package/flowcontrol/index.d.ts +2 -1
- package/flowcontrol/index.js +3 -1
- package/flowcontrol/index.js.map +1 -1
- package/flowcontrol/v1alpha1/flowSchema.js +1 -1
- package/flowcontrol/v1alpha1/flowSchema.js.map +1 -1
- package/flowcontrol/v1alpha1/priorityLevelConfiguration.js +1 -1
- package/flowcontrol/v1alpha1/priorityLevelConfiguration.js.map +1 -1
- package/flowcontrol/v1beta1/flowSchema.js +1 -1
- package/flowcontrol/v1beta1/flowSchema.js.map +1 -1
- package/flowcontrol/v1beta1/priorityLevelConfiguration.js +1 -1
- package/flowcontrol/v1beta1/priorityLevelConfiguration.js.map +1 -1
- package/flowcontrol/v1beta2/flowSchema.d.ts +70 -0
- package/flowcontrol/v1beta2/flowSchema.js +68 -0
- package/flowcontrol/v1beta2/flowSchema.js.map +1 -0
- package/flowcontrol/v1beta2/flowSchemaList.d.ts +66 -0
- package/flowcontrol/v1beta2/flowSchemaList.js +67 -0
- package/flowcontrol/v1beta2/flowSchemaList.js.map +1 -0
- package/flowcontrol/v1beta2/index.d.ts +4 -0
- package/flowcontrol/v1beta2/index.js +45 -0
- package/flowcontrol/v1beta2/index.js.map +1 -0
- package/flowcontrol/v1beta2/priorityLevelConfiguration.d.ts +70 -0
- package/flowcontrol/v1beta2/priorityLevelConfiguration.js +68 -0
- package/flowcontrol/v1beta2/priorityLevelConfiguration.js.map +1 -0
- package/flowcontrol/v1beta2/priorityLevelConfigurationList.d.ts +66 -0
- package/flowcontrol/v1beta2/priorityLevelConfigurationList.js +67 -0
- package/flowcontrol/v1beta2/priorityLevelConfigurationList.js.map +1 -0
- package/helm/v3/release.d.ts +1 -1
- package/package.json +2 -2
- package/package.json.dev +1 -1
- package/provider.d.ts +5 -0
- package/provider.js +5 -4
- package/provider.js.map +1 -1
- package/rbac/v1alpha1/clusterRole.d.ts +1 -1
- package/rbac/v1alpha1/clusterRole.js +1 -1
- package/rbac/v1alpha1/clusterRoleBinding.d.ts +1 -1
- package/rbac/v1alpha1/clusterRoleBinding.js +1 -1
- package/rbac/v1alpha1/clusterRoleBindingList.d.ts +1 -1
- package/rbac/v1alpha1/clusterRoleBindingList.js +1 -1
- package/rbac/v1alpha1/clusterRoleList.d.ts +1 -1
- package/rbac/v1alpha1/clusterRoleList.js +1 -1
- package/rbac/v1alpha1/role.d.ts +1 -1
- package/rbac/v1alpha1/role.js +1 -1
- package/rbac/v1alpha1/roleBinding.d.ts +1 -1
- package/rbac/v1alpha1/roleBinding.js +1 -1
- package/rbac/v1alpha1/roleBindingList.d.ts +1 -1
- package/rbac/v1alpha1/roleBindingList.js +1 -1
- package/rbac/v1alpha1/roleList.d.ts +1 -1
- package/rbac/v1alpha1/roleList.js +1 -1
- package/scheduling/v1alpha1/priorityClass.d.ts +2 -2
- package/types/input.d.ts +1879 -774
- package/types/output.d.ts +2458 -1353
- package/yaml/yaml.d.ts +66 -0
- package/yaml/yaml.js +18 -0
- package/yaml/yaml.js.map +1 -1
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import { input as inputs, output as outputs } from "../../types";
|
|
3
|
+
/**
|
|
4
|
+
* FlowSchema defines the schema of a group of flows. Note that a flow is made up of a set of inbound API requests with similar attributes and is identified by a pair of strings: the name of the FlowSchema and a "flow distinguisher".
|
|
5
|
+
*/
|
|
6
|
+
export declare class FlowSchema extends pulumi.CustomResource {
|
|
7
|
+
/**
|
|
8
|
+
* Get an existing FlowSchema resource's state with the given name, ID, and optional extra
|
|
9
|
+
* properties used to qualify the lookup.
|
|
10
|
+
*
|
|
11
|
+
* @param name The _unique_ name of the resulting resource.
|
|
12
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
13
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
14
|
+
*/
|
|
15
|
+
static get(name: string, id: pulumi.Input<pulumi.ID>, opts?: pulumi.CustomResourceOptions): FlowSchema;
|
|
16
|
+
/**
|
|
17
|
+
* Returns true if the given object is an instance of FlowSchema. This is designed to work even
|
|
18
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
19
|
+
*/
|
|
20
|
+
static isInstance(obj: any): obj is FlowSchema;
|
|
21
|
+
/**
|
|
22
|
+
* APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
|
|
23
|
+
*/
|
|
24
|
+
readonly apiVersion: pulumi.Output<"flowcontrol.apiserver.k8s.io/v1beta2">;
|
|
25
|
+
/**
|
|
26
|
+
* Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
|
|
27
|
+
*/
|
|
28
|
+
readonly kind: pulumi.Output<"FlowSchema">;
|
|
29
|
+
/**
|
|
30
|
+
* `metadata` is the standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
|
|
31
|
+
*/
|
|
32
|
+
readonly metadata: pulumi.Output<outputs.meta.v1.ObjectMeta>;
|
|
33
|
+
/**
|
|
34
|
+
* `spec` is the specification of the desired behavior of a FlowSchema. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status
|
|
35
|
+
*/
|
|
36
|
+
readonly spec: pulumi.Output<outputs.flowcontrol.v1beta2.FlowSchemaSpec>;
|
|
37
|
+
/**
|
|
38
|
+
* `status` is the current status of a FlowSchema. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status
|
|
39
|
+
*/
|
|
40
|
+
readonly status: pulumi.Output<outputs.flowcontrol.v1beta2.FlowSchemaStatus>;
|
|
41
|
+
/**
|
|
42
|
+
* Create a FlowSchema resource with the given unique name, arguments, and options.
|
|
43
|
+
*
|
|
44
|
+
* @param name The _unique_ name of the resource.
|
|
45
|
+
* @param args The arguments to use to populate this resource's properties.
|
|
46
|
+
* @param opts A bag of options that control this resource's behavior.
|
|
47
|
+
*/
|
|
48
|
+
constructor(name: string, args?: FlowSchemaArgs, opts?: pulumi.CustomResourceOptions);
|
|
49
|
+
}
|
|
50
|
+
/**
|
|
51
|
+
* The set of arguments for constructing a FlowSchema resource.
|
|
52
|
+
*/
|
|
53
|
+
export interface FlowSchemaArgs {
|
|
54
|
+
/**
|
|
55
|
+
* APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
|
|
56
|
+
*/
|
|
57
|
+
apiVersion?: pulumi.Input<"flowcontrol.apiserver.k8s.io/v1beta2">;
|
|
58
|
+
/**
|
|
59
|
+
* Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
|
|
60
|
+
*/
|
|
61
|
+
kind?: pulumi.Input<"FlowSchema">;
|
|
62
|
+
/**
|
|
63
|
+
* `metadata` is the standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
|
|
64
|
+
*/
|
|
65
|
+
metadata?: pulumi.Input<inputs.meta.v1.ObjectMeta>;
|
|
66
|
+
/**
|
|
67
|
+
* `spec` is the specification of the desired behavior of a FlowSchema. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status
|
|
68
|
+
*/
|
|
69
|
+
spec?: pulumi.Input<inputs.flowcontrol.v1beta2.FlowSchemaSpec>;
|
|
70
|
+
}
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by pulumigen. ***
|
|
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.FlowSchema = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("../../utilities");
|
|
8
|
+
/**
|
|
9
|
+
* FlowSchema defines the schema of a group of flows. Note that a flow is made up of a set of inbound API requests with similar attributes and is identified by a pair of strings: the name of the FlowSchema and a "flow distinguisher".
|
|
10
|
+
*/
|
|
11
|
+
class FlowSchema extends pulumi.CustomResource {
|
|
12
|
+
/**
|
|
13
|
+
* Create a FlowSchema resource with the given unique name, arguments, and options.
|
|
14
|
+
*
|
|
15
|
+
* @param name The _unique_ name of the resource.
|
|
16
|
+
* @param args The arguments to use to populate this resource's properties.
|
|
17
|
+
* @param opts A bag of options that control this resource's behavior.
|
|
18
|
+
*/
|
|
19
|
+
constructor(name, args, opts) {
|
|
20
|
+
let resourceInputs = {};
|
|
21
|
+
opts = opts || {};
|
|
22
|
+
if (!opts.id) {
|
|
23
|
+
resourceInputs["apiVersion"] = "flowcontrol.apiserver.k8s.io/v1beta2";
|
|
24
|
+
resourceInputs["kind"] = "FlowSchema";
|
|
25
|
+
resourceInputs["metadata"] = args ? args.metadata : undefined;
|
|
26
|
+
resourceInputs["spec"] = args ? args.spec : undefined;
|
|
27
|
+
resourceInputs["status"] = undefined /*out*/;
|
|
28
|
+
}
|
|
29
|
+
else {
|
|
30
|
+
resourceInputs["apiVersion"] = undefined /*out*/;
|
|
31
|
+
resourceInputs["kind"] = undefined /*out*/;
|
|
32
|
+
resourceInputs["metadata"] = undefined /*out*/;
|
|
33
|
+
resourceInputs["spec"] = undefined /*out*/;
|
|
34
|
+
resourceInputs["status"] = undefined /*out*/;
|
|
35
|
+
}
|
|
36
|
+
if (!opts.version) {
|
|
37
|
+
opts = pulumi.mergeOptions(opts, { version: utilities.getVersion() });
|
|
38
|
+
}
|
|
39
|
+
const aliasOpts = { aliases: [{ type: "kubernetes:flowcontrol.apiserver.k8s.io/v1alpha1:FlowSchema" }, { type: "kubernetes:flowcontrol.apiserver.k8s.io/v1beta1:FlowSchema" }] };
|
|
40
|
+
opts = pulumi.mergeOptions(opts, aliasOpts);
|
|
41
|
+
super(FlowSchema.__pulumiType, name, resourceInputs, opts);
|
|
42
|
+
}
|
|
43
|
+
/**
|
|
44
|
+
* Get an existing FlowSchema resource's state with the given name, ID, and optional extra
|
|
45
|
+
* properties used to qualify the lookup.
|
|
46
|
+
*
|
|
47
|
+
* @param name The _unique_ name of the resulting resource.
|
|
48
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
49
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
50
|
+
*/
|
|
51
|
+
static get(name, id, opts) {
|
|
52
|
+
return new FlowSchema(name, undefined, Object.assign(Object.assign({}, opts), { id: id }));
|
|
53
|
+
}
|
|
54
|
+
/**
|
|
55
|
+
* Returns true if the given object is an instance of FlowSchema. This is designed to work even
|
|
56
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
57
|
+
*/
|
|
58
|
+
static isInstance(obj) {
|
|
59
|
+
if (obj === undefined || obj === null) {
|
|
60
|
+
return false;
|
|
61
|
+
}
|
|
62
|
+
return obj['__pulumiType'] === FlowSchema.__pulumiType;
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
exports.FlowSchema = FlowSchema;
|
|
66
|
+
/** @internal */
|
|
67
|
+
FlowSchema.__pulumiType = 'kubernetes:flowcontrol.apiserver.k8s.io/v1beta2:FlowSchema';
|
|
68
|
+
//# sourceMappingURL=flowSchema.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"flowSchema.js","sourceRoot":"","sources":["../../../flowcontrol/v1beta2/flowSchema.ts"],"names":[],"mappings":";AAAA,yDAAyD;AACzD,iFAAiF;;;AAEjF,yCAAyC;AAEzC,6CAA6C;AAE7C;;GAEG;AACH,MAAa,UAAW,SAAQ,MAAM,CAAC,cAAc;IAgDjD;;;;;;OAMG;IACH,YAAY,IAAY,EAAE,IAAqB,EAAE,IAAmC;QAChF,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,CAAC,IAAI,CAAC,EAAE,EAAE;YACV,cAAc,CAAC,YAAY,CAAC,GAAG,sCAAsC,CAAC;YACtE,cAAc,CAAC,MAAM,CAAC,GAAG,YAAY,CAAC;YACtC,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACtD,cAAc,CAAC,QAAQ,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;SAChD;aAAM;YACH,cAAc,CAAC,YAAY,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YACjD,cAAc,CAAC,MAAM,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAC3C,cAAc,CAAC,UAAU,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAC/C,cAAc,CAAC,MAAM,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAC3C,cAAc,CAAC,QAAQ,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;SAChD;QACD,IAAI,CAAC,IAAI,CAAC,OAAO,EAAE;YACf,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,IAAI,EAAE,EAAE,OAAO,EAAE,SAAS,CAAC,UAAU,EAAE,EAAC,CAAC,CAAC;SACxE;QACD,MAAM,SAAS,GAAG,EAAE,OAAO,EAAE,CAAC,EAAE,IAAI,EAAE,6DAA6D,EAAE,EAAE,EAAE,IAAI,EAAE,4DAA4D,EAAE,CAAC,EAAE,CAAC;QACjL,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,IAAI,EAAE,SAAS,CAAC,CAAC;QAC5C,KAAK,CAAC,UAAU,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAC/D,CAAC;IA5ED;;;;;;;OAOG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,IAAmC;QAC5F,OAAO,IAAI,UAAU,CAAC,IAAI,EAAE,SAAgB,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IACvE,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,UAAU,CAAC,YAAY,CAAC;IAC3D,CAAC;;AAzBL,gCA8EC;AAjEG,gBAAgB;AACO,uBAAY,GAAG,4DAA4D,CAAC"}
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import { input as inputs, output as outputs } from "../../types";
|
|
3
|
+
/**
|
|
4
|
+
* FlowSchemaList is a list of FlowSchema objects.
|
|
5
|
+
*/
|
|
6
|
+
export declare class FlowSchemaList extends pulumi.CustomResource {
|
|
7
|
+
/**
|
|
8
|
+
* Get an existing FlowSchemaList resource's state with the given name, ID, and optional extra
|
|
9
|
+
* properties used to qualify the lookup.
|
|
10
|
+
*
|
|
11
|
+
* @param name The _unique_ name of the resulting resource.
|
|
12
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
13
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
14
|
+
*/
|
|
15
|
+
static get(name: string, id: pulumi.Input<pulumi.ID>, opts?: pulumi.CustomResourceOptions): FlowSchemaList;
|
|
16
|
+
/**
|
|
17
|
+
* Returns true if the given object is an instance of FlowSchemaList. This is designed to work even
|
|
18
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
19
|
+
*/
|
|
20
|
+
static isInstance(obj: any): obj is FlowSchemaList;
|
|
21
|
+
/**
|
|
22
|
+
* APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
|
|
23
|
+
*/
|
|
24
|
+
readonly apiVersion: pulumi.Output<"flowcontrol.apiserver.k8s.io/v1beta2">;
|
|
25
|
+
/**
|
|
26
|
+
* `items` is a list of FlowSchemas.
|
|
27
|
+
*/
|
|
28
|
+
readonly items: pulumi.Output<outputs.flowcontrol.v1beta2.FlowSchema[]>;
|
|
29
|
+
/**
|
|
30
|
+
* Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
|
|
31
|
+
*/
|
|
32
|
+
readonly kind: pulumi.Output<"FlowSchemaList">;
|
|
33
|
+
/**
|
|
34
|
+
* `metadata` is the standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
|
|
35
|
+
*/
|
|
36
|
+
readonly metadata: pulumi.Output<outputs.meta.v1.ListMeta>;
|
|
37
|
+
/**
|
|
38
|
+
* Create a FlowSchemaList resource with the given unique name, arguments, and options.
|
|
39
|
+
*
|
|
40
|
+
* @param name The _unique_ name of the resource.
|
|
41
|
+
* @param args The arguments to use to populate this resource's properties.
|
|
42
|
+
* @param opts A bag of options that control this resource's behavior.
|
|
43
|
+
*/
|
|
44
|
+
constructor(name: string, args?: FlowSchemaListArgs, opts?: pulumi.CustomResourceOptions);
|
|
45
|
+
}
|
|
46
|
+
/**
|
|
47
|
+
* The set of arguments for constructing a FlowSchemaList resource.
|
|
48
|
+
*/
|
|
49
|
+
export interface FlowSchemaListArgs {
|
|
50
|
+
/**
|
|
51
|
+
* APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
|
|
52
|
+
*/
|
|
53
|
+
apiVersion?: pulumi.Input<"flowcontrol.apiserver.k8s.io/v1beta2">;
|
|
54
|
+
/**
|
|
55
|
+
* `items` is a list of FlowSchemas.
|
|
56
|
+
*/
|
|
57
|
+
items: pulumi.Input<pulumi.Input<inputs.flowcontrol.v1beta2.FlowSchema>[]>;
|
|
58
|
+
/**
|
|
59
|
+
* Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
|
|
60
|
+
*/
|
|
61
|
+
kind?: pulumi.Input<"FlowSchemaList">;
|
|
62
|
+
/**
|
|
63
|
+
* `metadata` is the standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
|
|
64
|
+
*/
|
|
65
|
+
metadata?: pulumi.Input<inputs.meta.v1.ListMeta>;
|
|
66
|
+
}
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by pulumigen. ***
|
|
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.FlowSchemaList = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("../../utilities");
|
|
8
|
+
/**
|
|
9
|
+
* FlowSchemaList is a list of FlowSchema objects.
|
|
10
|
+
*/
|
|
11
|
+
class FlowSchemaList extends pulumi.CustomResource {
|
|
12
|
+
/**
|
|
13
|
+
* Create a FlowSchemaList resource with the given unique name, arguments, and options.
|
|
14
|
+
*
|
|
15
|
+
* @param name The _unique_ name of the resource.
|
|
16
|
+
* @param args The arguments to use to populate this resource's properties.
|
|
17
|
+
* @param opts A bag of options that control this resource's behavior.
|
|
18
|
+
*/
|
|
19
|
+
constructor(name, args, opts) {
|
|
20
|
+
let resourceInputs = {};
|
|
21
|
+
opts = opts || {};
|
|
22
|
+
if (!opts.id) {
|
|
23
|
+
if ((!args || args.items === undefined) && !opts.urn) {
|
|
24
|
+
throw new Error("Missing required property 'items'");
|
|
25
|
+
}
|
|
26
|
+
resourceInputs["apiVersion"] = "flowcontrol.apiserver.k8s.io/v1beta2";
|
|
27
|
+
resourceInputs["items"] = args ? args.items : undefined;
|
|
28
|
+
resourceInputs["kind"] = "FlowSchemaList";
|
|
29
|
+
resourceInputs["metadata"] = args ? args.metadata : undefined;
|
|
30
|
+
}
|
|
31
|
+
else {
|
|
32
|
+
resourceInputs["apiVersion"] = undefined /*out*/;
|
|
33
|
+
resourceInputs["items"] = undefined /*out*/;
|
|
34
|
+
resourceInputs["kind"] = undefined /*out*/;
|
|
35
|
+
resourceInputs["metadata"] = undefined /*out*/;
|
|
36
|
+
}
|
|
37
|
+
if (!opts.version) {
|
|
38
|
+
opts = pulumi.mergeOptions(opts, { version: utilities.getVersion() });
|
|
39
|
+
}
|
|
40
|
+
super(FlowSchemaList.__pulumiType, name, resourceInputs, opts);
|
|
41
|
+
}
|
|
42
|
+
/**
|
|
43
|
+
* Get an existing FlowSchemaList resource's state with the given name, ID, and optional extra
|
|
44
|
+
* properties used to qualify the lookup.
|
|
45
|
+
*
|
|
46
|
+
* @param name The _unique_ name of the resulting resource.
|
|
47
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
48
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
49
|
+
*/
|
|
50
|
+
static get(name, id, opts) {
|
|
51
|
+
return new FlowSchemaList(name, undefined, Object.assign(Object.assign({}, opts), { id: id }));
|
|
52
|
+
}
|
|
53
|
+
/**
|
|
54
|
+
* Returns true if the given object is an instance of FlowSchemaList. This is designed to work even
|
|
55
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
56
|
+
*/
|
|
57
|
+
static isInstance(obj) {
|
|
58
|
+
if (obj === undefined || obj === null) {
|
|
59
|
+
return false;
|
|
60
|
+
}
|
|
61
|
+
return obj['__pulumiType'] === FlowSchemaList.__pulumiType;
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
exports.FlowSchemaList = FlowSchemaList;
|
|
65
|
+
/** @internal */
|
|
66
|
+
FlowSchemaList.__pulumiType = 'kubernetes:flowcontrol.apiserver.k8s.io/v1beta2:FlowSchemaList';
|
|
67
|
+
//# sourceMappingURL=flowSchemaList.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"flowSchemaList.js","sourceRoot":"","sources":["../../../flowcontrol/v1beta2/flowSchemaList.ts"],"names":[],"mappings":";AAAA,yDAAyD;AACzD,iFAAiF;;;AAEjF,yCAAyC;AAEzC,6CAA6C;AAE7C;;GAEG;AACH,MAAa,cAAe,SAAQ,MAAM,CAAC,cAAc;IA4CrD;;;;;;OAMG;IACH,YAAY,IAAY,EAAE,IAAyB,EAAE,IAAmC;QACpF,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,CAAC,IAAI,CAAC,EAAE,EAAE;YACV,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,KAAK,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAClD,MAAM,IAAI,KAAK,CAAC,mCAAmC,CAAC,CAAC;aACxD;YACD,cAAc,CAAC,YAAY,CAAC,GAAG,sCAAsC,CAAC;YACtE,cAAc,CAAC,OAAO,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC;YACxD,cAAc,CAAC,MAAM,CAAC,GAAG,gBAAgB,CAAC;YAC1C,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;SACjE;aAAM;YACH,cAAc,CAAC,YAAY,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YACjD,cAAc,CAAC,OAAO,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAC5C,cAAc,CAAC,MAAM,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAC3C,cAAc,CAAC,UAAU,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;SAClD;QACD,IAAI,CAAC,IAAI,CAAC,OAAO,EAAE;YACf,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,IAAI,EAAE,EAAE,OAAO,EAAE,SAAS,CAAC,UAAU,EAAE,EAAC,CAAC,CAAC;SACxE;QACD,KAAK,CAAC,cAAc,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IACnE,CAAC;IAvED;;;;;;;OAOG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,IAAmC;QAC5F,OAAO,IAAI,cAAc,CAAC,IAAI,EAAE,SAAgB,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAC3E,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,cAAc,CAAC,YAAY,CAAC;IAC/D,CAAC;;AAzBL,wCAyEC;AA5DG,gBAAgB;AACO,2BAAY,GAAG,gEAAgE,CAAC"}
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by pulumigen. ***
|
|
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
|
+
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
|
7
|
+
}) : (function(o, m, k, k2) {
|
|
8
|
+
if (k2 === undefined) k2 = k;
|
|
9
|
+
o[k2] = m[k];
|
|
10
|
+
}));
|
|
11
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
12
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
13
|
+
};
|
|
14
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
|
+
const pulumi = require("@pulumi/pulumi");
|
|
16
|
+
const utilities = require("../../utilities");
|
|
17
|
+
// Export members:
|
|
18
|
+
__exportStar(require("./flowSchema"), exports);
|
|
19
|
+
__exportStar(require("./flowSchemaList"), exports);
|
|
20
|
+
__exportStar(require("./priorityLevelConfiguration"), exports);
|
|
21
|
+
__exportStar(require("./priorityLevelConfigurationList"), exports);
|
|
22
|
+
// Import resources to register:
|
|
23
|
+
const flowSchema_1 = require("./flowSchema");
|
|
24
|
+
const flowSchemaList_1 = require("./flowSchemaList");
|
|
25
|
+
const priorityLevelConfiguration_1 = require("./priorityLevelConfiguration");
|
|
26
|
+
const priorityLevelConfigurationList_1 = require("./priorityLevelConfigurationList");
|
|
27
|
+
const _module = {
|
|
28
|
+
version: utilities.getVersion(),
|
|
29
|
+
construct: (name, type, urn) => {
|
|
30
|
+
switch (type) {
|
|
31
|
+
case "kubernetes:flowcontrol.apiserver.k8s.io/v1beta2:FlowSchema":
|
|
32
|
+
return new flowSchema_1.FlowSchema(name, undefined, { urn });
|
|
33
|
+
case "kubernetes:flowcontrol.apiserver.k8s.io/v1beta2:FlowSchemaList":
|
|
34
|
+
return new flowSchemaList_1.FlowSchemaList(name, undefined, { urn });
|
|
35
|
+
case "kubernetes:flowcontrol.apiserver.k8s.io/v1beta2:PriorityLevelConfiguration":
|
|
36
|
+
return new priorityLevelConfiguration_1.PriorityLevelConfiguration(name, undefined, { urn });
|
|
37
|
+
case "kubernetes:flowcontrol.apiserver.k8s.io/v1beta2:PriorityLevelConfigurationList":
|
|
38
|
+
return new priorityLevelConfigurationList_1.PriorityLevelConfigurationList(name, undefined, { urn });
|
|
39
|
+
default:
|
|
40
|
+
throw new Error(`unknown resource type ${type}`);
|
|
41
|
+
}
|
|
42
|
+
},
|
|
43
|
+
};
|
|
44
|
+
pulumi.runtime.registerResourceModule("kubernetes", "flowcontrol.apiserver.k8s.io/v1beta2", _module);
|
|
45
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../flowcontrol/v1beta2/index.ts"],"names":[],"mappings":";AAAA,yDAAyD;AACzD,iFAAiF;;;;;;;;;;;;AAEjF,yCAAyC;AACzC,6CAA6C;AAE7C,kBAAkB;AAClB,+CAA6B;AAC7B,mDAAiC;AACjC,+DAA6C;AAC7C,mEAAiD;AAEjD,gCAAgC;AAChC,6CAA0C;AAC1C,qDAAkD;AAClD,6EAA0E;AAC1E,qFAAkF;AAElF,MAAM,OAAO,GAAG;IACZ,OAAO,EAAE,SAAS,CAAC,UAAU,EAAE;IAC/B,SAAS,EAAE,CAAC,IAAY,EAAE,IAAY,EAAE,GAAW,EAAmB,EAAE;QACpE,QAAQ,IAAI,EAAE;YACV,KAAK,4DAA4D;gBAC7D,OAAO,IAAI,uBAAU,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACxD,KAAK,gEAAgE;gBACjE,OAAO,IAAI,+BAAc,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAC5D,KAAK,4EAA4E;gBAC7E,OAAO,IAAI,uDAA0B,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACxE,KAAK,gFAAgF;gBACjF,OAAO,IAAI,+DAA8B,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAC5E;gBACI,MAAM,IAAI,KAAK,CAAC,yBAAyB,IAAI,EAAE,CAAC,CAAC;SACxD;IACL,CAAC;CACJ,CAAC;AACF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,YAAY,EAAE,sCAAsC,EAAE,OAAO,CAAC,CAAA"}
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import { input as inputs, output as outputs } from "../../types";
|
|
3
|
+
/**
|
|
4
|
+
* PriorityLevelConfiguration represents the configuration of a priority level.
|
|
5
|
+
*/
|
|
6
|
+
export declare class PriorityLevelConfiguration extends pulumi.CustomResource {
|
|
7
|
+
/**
|
|
8
|
+
* Get an existing PriorityLevelConfiguration resource's state with the given name, ID, and optional extra
|
|
9
|
+
* properties used to qualify the lookup.
|
|
10
|
+
*
|
|
11
|
+
* @param name The _unique_ name of the resulting resource.
|
|
12
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
13
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
14
|
+
*/
|
|
15
|
+
static get(name: string, id: pulumi.Input<pulumi.ID>, opts?: pulumi.CustomResourceOptions): PriorityLevelConfiguration;
|
|
16
|
+
/**
|
|
17
|
+
* Returns true if the given object is an instance of PriorityLevelConfiguration. This is designed to work even
|
|
18
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
19
|
+
*/
|
|
20
|
+
static isInstance(obj: any): obj is PriorityLevelConfiguration;
|
|
21
|
+
/**
|
|
22
|
+
* APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
|
|
23
|
+
*/
|
|
24
|
+
readonly apiVersion: pulumi.Output<"flowcontrol.apiserver.k8s.io/v1beta2">;
|
|
25
|
+
/**
|
|
26
|
+
* Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
|
|
27
|
+
*/
|
|
28
|
+
readonly kind: pulumi.Output<"PriorityLevelConfiguration">;
|
|
29
|
+
/**
|
|
30
|
+
* `metadata` is the standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
|
|
31
|
+
*/
|
|
32
|
+
readonly metadata: pulumi.Output<outputs.meta.v1.ObjectMeta>;
|
|
33
|
+
/**
|
|
34
|
+
* `spec` is the specification of the desired behavior of a "request-priority". More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status
|
|
35
|
+
*/
|
|
36
|
+
readonly spec: pulumi.Output<outputs.flowcontrol.v1beta2.PriorityLevelConfigurationSpec>;
|
|
37
|
+
/**
|
|
38
|
+
* `status` is the current status of a "request-priority". More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status
|
|
39
|
+
*/
|
|
40
|
+
readonly status: pulumi.Output<outputs.flowcontrol.v1beta2.PriorityLevelConfigurationStatus>;
|
|
41
|
+
/**
|
|
42
|
+
* Create a PriorityLevelConfiguration resource with the given unique name, arguments, and options.
|
|
43
|
+
*
|
|
44
|
+
* @param name The _unique_ name of the resource.
|
|
45
|
+
* @param args The arguments to use to populate this resource's properties.
|
|
46
|
+
* @param opts A bag of options that control this resource's behavior.
|
|
47
|
+
*/
|
|
48
|
+
constructor(name: string, args?: PriorityLevelConfigurationArgs, opts?: pulumi.CustomResourceOptions);
|
|
49
|
+
}
|
|
50
|
+
/**
|
|
51
|
+
* The set of arguments for constructing a PriorityLevelConfiguration resource.
|
|
52
|
+
*/
|
|
53
|
+
export interface PriorityLevelConfigurationArgs {
|
|
54
|
+
/**
|
|
55
|
+
* APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
|
|
56
|
+
*/
|
|
57
|
+
apiVersion?: pulumi.Input<"flowcontrol.apiserver.k8s.io/v1beta2">;
|
|
58
|
+
/**
|
|
59
|
+
* Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
|
|
60
|
+
*/
|
|
61
|
+
kind?: pulumi.Input<"PriorityLevelConfiguration">;
|
|
62
|
+
/**
|
|
63
|
+
* `metadata` is the standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
|
|
64
|
+
*/
|
|
65
|
+
metadata?: pulumi.Input<inputs.meta.v1.ObjectMeta>;
|
|
66
|
+
/**
|
|
67
|
+
* `spec` is the specification of the desired behavior of a "request-priority". More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status
|
|
68
|
+
*/
|
|
69
|
+
spec?: pulumi.Input<inputs.flowcontrol.v1beta2.PriorityLevelConfigurationSpec>;
|
|
70
|
+
}
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by pulumigen. ***
|
|
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.PriorityLevelConfiguration = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("../../utilities");
|
|
8
|
+
/**
|
|
9
|
+
* PriorityLevelConfiguration represents the configuration of a priority level.
|
|
10
|
+
*/
|
|
11
|
+
class PriorityLevelConfiguration extends pulumi.CustomResource {
|
|
12
|
+
/**
|
|
13
|
+
* Create a PriorityLevelConfiguration resource with the given unique name, arguments, and options.
|
|
14
|
+
*
|
|
15
|
+
* @param name The _unique_ name of the resource.
|
|
16
|
+
* @param args The arguments to use to populate this resource's properties.
|
|
17
|
+
* @param opts A bag of options that control this resource's behavior.
|
|
18
|
+
*/
|
|
19
|
+
constructor(name, args, opts) {
|
|
20
|
+
let resourceInputs = {};
|
|
21
|
+
opts = opts || {};
|
|
22
|
+
if (!opts.id) {
|
|
23
|
+
resourceInputs["apiVersion"] = "flowcontrol.apiserver.k8s.io/v1beta2";
|
|
24
|
+
resourceInputs["kind"] = "PriorityLevelConfiguration";
|
|
25
|
+
resourceInputs["metadata"] = args ? args.metadata : undefined;
|
|
26
|
+
resourceInputs["spec"] = args ? args.spec : undefined;
|
|
27
|
+
resourceInputs["status"] = undefined /*out*/;
|
|
28
|
+
}
|
|
29
|
+
else {
|
|
30
|
+
resourceInputs["apiVersion"] = undefined /*out*/;
|
|
31
|
+
resourceInputs["kind"] = undefined /*out*/;
|
|
32
|
+
resourceInputs["metadata"] = undefined /*out*/;
|
|
33
|
+
resourceInputs["spec"] = undefined /*out*/;
|
|
34
|
+
resourceInputs["status"] = undefined /*out*/;
|
|
35
|
+
}
|
|
36
|
+
if (!opts.version) {
|
|
37
|
+
opts = pulumi.mergeOptions(opts, { version: utilities.getVersion() });
|
|
38
|
+
}
|
|
39
|
+
const aliasOpts = { aliases: [{ type: "kubernetes:flowcontrol.apiserver.k8s.io/v1alpha1:PriorityLevelConfiguration" }, { type: "kubernetes:flowcontrol.apiserver.k8s.io/v1beta1:PriorityLevelConfiguration" }] };
|
|
40
|
+
opts = pulumi.mergeOptions(opts, aliasOpts);
|
|
41
|
+
super(PriorityLevelConfiguration.__pulumiType, name, resourceInputs, opts);
|
|
42
|
+
}
|
|
43
|
+
/**
|
|
44
|
+
* Get an existing PriorityLevelConfiguration resource's state with the given name, ID, and optional extra
|
|
45
|
+
* properties used to qualify the lookup.
|
|
46
|
+
*
|
|
47
|
+
* @param name The _unique_ name of the resulting resource.
|
|
48
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
49
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
50
|
+
*/
|
|
51
|
+
static get(name, id, opts) {
|
|
52
|
+
return new PriorityLevelConfiguration(name, undefined, Object.assign(Object.assign({}, opts), { id: id }));
|
|
53
|
+
}
|
|
54
|
+
/**
|
|
55
|
+
* Returns true if the given object is an instance of PriorityLevelConfiguration. This is designed to work even
|
|
56
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
57
|
+
*/
|
|
58
|
+
static isInstance(obj) {
|
|
59
|
+
if (obj === undefined || obj === null) {
|
|
60
|
+
return false;
|
|
61
|
+
}
|
|
62
|
+
return obj['__pulumiType'] === PriorityLevelConfiguration.__pulumiType;
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
exports.PriorityLevelConfiguration = PriorityLevelConfiguration;
|
|
66
|
+
/** @internal */
|
|
67
|
+
PriorityLevelConfiguration.__pulumiType = 'kubernetes:flowcontrol.apiserver.k8s.io/v1beta2:PriorityLevelConfiguration';
|
|
68
|
+
//# sourceMappingURL=priorityLevelConfiguration.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"priorityLevelConfiguration.js","sourceRoot":"","sources":["../../../flowcontrol/v1beta2/priorityLevelConfiguration.ts"],"names":[],"mappings":";AAAA,yDAAyD;AACzD,iFAAiF;;;AAEjF,yCAAyC;AAEzC,6CAA6C;AAE7C;;GAEG;AACH,MAAa,0BAA2B,SAAQ,MAAM,CAAC,cAAc;IAgDjE;;;;;;OAMG;IACH,YAAY,IAAY,EAAE,IAAqC,EAAE,IAAmC;QAChG,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,CAAC,IAAI,CAAC,EAAE,EAAE;YACV,cAAc,CAAC,YAAY,CAAC,GAAG,sCAAsC,CAAC;YACtE,cAAc,CAAC,MAAM,CAAC,GAAG,4BAA4B,CAAC;YACtD,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACtD,cAAc,CAAC,QAAQ,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;SAChD;aAAM;YACH,cAAc,CAAC,YAAY,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YACjD,cAAc,CAAC,MAAM,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAC3C,cAAc,CAAC,UAAU,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAC/C,cAAc,CAAC,MAAM,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAC3C,cAAc,CAAC,QAAQ,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;SAChD;QACD,IAAI,CAAC,IAAI,CAAC,OAAO,EAAE;YACf,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,IAAI,EAAE,EAAE,OAAO,EAAE,SAAS,CAAC,UAAU,EAAE,EAAC,CAAC,CAAC;SACxE;QACD,MAAM,SAAS,GAAG,EAAE,OAAO,EAAE,CAAC,EAAE,IAAI,EAAE,6EAA6E,EAAE,EAAE,EAAE,IAAI,EAAE,4EAA4E,EAAE,CAAC,EAAE,CAAC;QACjN,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,IAAI,EAAE,SAAS,CAAC,CAAC;QAC5C,KAAK,CAAC,0BAA0B,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAC/E,CAAC;IA5ED;;;;;;;OAOG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,IAAmC;QAC5F,OAAO,IAAI,0BAA0B,CAAC,IAAI,EAAE,SAAgB,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IACvF,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,0BAA0B,CAAC,YAAY,CAAC;IAC3E,CAAC;;AAzBL,gEA8EC;AAjEG,gBAAgB;AACO,uCAAY,GAAG,4EAA4E,CAAC"}
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import { input as inputs, output as outputs } from "../../types";
|
|
3
|
+
/**
|
|
4
|
+
* PriorityLevelConfigurationList is a list of PriorityLevelConfiguration objects.
|
|
5
|
+
*/
|
|
6
|
+
export declare class PriorityLevelConfigurationList extends pulumi.CustomResource {
|
|
7
|
+
/**
|
|
8
|
+
* Get an existing PriorityLevelConfigurationList resource's state with the given name, ID, and optional extra
|
|
9
|
+
* properties used to qualify the lookup.
|
|
10
|
+
*
|
|
11
|
+
* @param name The _unique_ name of the resulting resource.
|
|
12
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
13
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
14
|
+
*/
|
|
15
|
+
static get(name: string, id: pulumi.Input<pulumi.ID>, opts?: pulumi.CustomResourceOptions): PriorityLevelConfigurationList;
|
|
16
|
+
/**
|
|
17
|
+
* Returns true if the given object is an instance of PriorityLevelConfigurationList. This is designed to work even
|
|
18
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
19
|
+
*/
|
|
20
|
+
static isInstance(obj: any): obj is PriorityLevelConfigurationList;
|
|
21
|
+
/**
|
|
22
|
+
* APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
|
|
23
|
+
*/
|
|
24
|
+
readonly apiVersion: pulumi.Output<"flowcontrol.apiserver.k8s.io/v1beta2">;
|
|
25
|
+
/**
|
|
26
|
+
* `items` is a list of request-priorities.
|
|
27
|
+
*/
|
|
28
|
+
readonly items: pulumi.Output<outputs.flowcontrol.v1beta2.PriorityLevelConfiguration[]>;
|
|
29
|
+
/**
|
|
30
|
+
* Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
|
|
31
|
+
*/
|
|
32
|
+
readonly kind: pulumi.Output<"PriorityLevelConfigurationList">;
|
|
33
|
+
/**
|
|
34
|
+
* `metadata` is the standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
|
|
35
|
+
*/
|
|
36
|
+
readonly metadata: pulumi.Output<outputs.meta.v1.ListMeta>;
|
|
37
|
+
/**
|
|
38
|
+
* Create a PriorityLevelConfigurationList resource with the given unique name, arguments, and options.
|
|
39
|
+
*
|
|
40
|
+
* @param name The _unique_ name of the resource.
|
|
41
|
+
* @param args The arguments to use to populate this resource's properties.
|
|
42
|
+
* @param opts A bag of options that control this resource's behavior.
|
|
43
|
+
*/
|
|
44
|
+
constructor(name: string, args?: PriorityLevelConfigurationListArgs, opts?: pulumi.CustomResourceOptions);
|
|
45
|
+
}
|
|
46
|
+
/**
|
|
47
|
+
* The set of arguments for constructing a PriorityLevelConfigurationList resource.
|
|
48
|
+
*/
|
|
49
|
+
export interface PriorityLevelConfigurationListArgs {
|
|
50
|
+
/**
|
|
51
|
+
* APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
|
|
52
|
+
*/
|
|
53
|
+
apiVersion?: pulumi.Input<"flowcontrol.apiserver.k8s.io/v1beta2">;
|
|
54
|
+
/**
|
|
55
|
+
* `items` is a list of request-priorities.
|
|
56
|
+
*/
|
|
57
|
+
items: pulumi.Input<pulumi.Input<inputs.flowcontrol.v1beta2.PriorityLevelConfiguration>[]>;
|
|
58
|
+
/**
|
|
59
|
+
* Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
|
|
60
|
+
*/
|
|
61
|
+
kind?: pulumi.Input<"PriorityLevelConfigurationList">;
|
|
62
|
+
/**
|
|
63
|
+
* `metadata` is the standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
|
|
64
|
+
*/
|
|
65
|
+
metadata?: pulumi.Input<inputs.meta.v1.ListMeta>;
|
|
66
|
+
}
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by pulumigen. ***
|
|
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.PriorityLevelConfigurationList = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("../../utilities");
|
|
8
|
+
/**
|
|
9
|
+
* PriorityLevelConfigurationList is a list of PriorityLevelConfiguration objects.
|
|
10
|
+
*/
|
|
11
|
+
class PriorityLevelConfigurationList extends pulumi.CustomResource {
|
|
12
|
+
/**
|
|
13
|
+
* Create a PriorityLevelConfigurationList resource with the given unique name, arguments, and options.
|
|
14
|
+
*
|
|
15
|
+
* @param name The _unique_ name of the resource.
|
|
16
|
+
* @param args The arguments to use to populate this resource's properties.
|
|
17
|
+
* @param opts A bag of options that control this resource's behavior.
|
|
18
|
+
*/
|
|
19
|
+
constructor(name, args, opts) {
|
|
20
|
+
let resourceInputs = {};
|
|
21
|
+
opts = opts || {};
|
|
22
|
+
if (!opts.id) {
|
|
23
|
+
if ((!args || args.items === undefined) && !opts.urn) {
|
|
24
|
+
throw new Error("Missing required property 'items'");
|
|
25
|
+
}
|
|
26
|
+
resourceInputs["apiVersion"] = "flowcontrol.apiserver.k8s.io/v1beta2";
|
|
27
|
+
resourceInputs["items"] = args ? args.items : undefined;
|
|
28
|
+
resourceInputs["kind"] = "PriorityLevelConfigurationList";
|
|
29
|
+
resourceInputs["metadata"] = args ? args.metadata : undefined;
|
|
30
|
+
}
|
|
31
|
+
else {
|
|
32
|
+
resourceInputs["apiVersion"] = undefined /*out*/;
|
|
33
|
+
resourceInputs["items"] = undefined /*out*/;
|
|
34
|
+
resourceInputs["kind"] = undefined /*out*/;
|
|
35
|
+
resourceInputs["metadata"] = undefined /*out*/;
|
|
36
|
+
}
|
|
37
|
+
if (!opts.version) {
|
|
38
|
+
opts = pulumi.mergeOptions(opts, { version: utilities.getVersion() });
|
|
39
|
+
}
|
|
40
|
+
super(PriorityLevelConfigurationList.__pulumiType, name, resourceInputs, opts);
|
|
41
|
+
}
|
|
42
|
+
/**
|
|
43
|
+
* Get an existing PriorityLevelConfigurationList resource's state with the given name, ID, and optional extra
|
|
44
|
+
* properties used to qualify the lookup.
|
|
45
|
+
*
|
|
46
|
+
* @param name The _unique_ name of the resulting resource.
|
|
47
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
48
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
49
|
+
*/
|
|
50
|
+
static get(name, id, opts) {
|
|
51
|
+
return new PriorityLevelConfigurationList(name, undefined, Object.assign(Object.assign({}, opts), { id: id }));
|
|
52
|
+
}
|
|
53
|
+
/**
|
|
54
|
+
* Returns true if the given object is an instance of PriorityLevelConfigurationList. This is designed to work even
|
|
55
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
56
|
+
*/
|
|
57
|
+
static isInstance(obj) {
|
|
58
|
+
if (obj === undefined || obj === null) {
|
|
59
|
+
return false;
|
|
60
|
+
}
|
|
61
|
+
return obj['__pulumiType'] === PriorityLevelConfigurationList.__pulumiType;
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
exports.PriorityLevelConfigurationList = PriorityLevelConfigurationList;
|
|
65
|
+
/** @internal */
|
|
66
|
+
PriorityLevelConfigurationList.__pulumiType = 'kubernetes:flowcontrol.apiserver.k8s.io/v1beta2:PriorityLevelConfigurationList';
|
|
67
|
+
//# sourceMappingURL=priorityLevelConfigurationList.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"priorityLevelConfigurationList.js","sourceRoot":"","sources":["../../../flowcontrol/v1beta2/priorityLevelConfigurationList.ts"],"names":[],"mappings":";AAAA,yDAAyD;AACzD,iFAAiF;;;AAEjF,yCAAyC;AAEzC,6CAA6C;AAE7C;;GAEG;AACH,MAAa,8BAA+B,SAAQ,MAAM,CAAC,cAAc;IA4CrE;;;;;;OAMG;IACH,YAAY,IAAY,EAAE,IAAyC,EAAE,IAAmC;QACpG,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,CAAC,IAAI,CAAC,EAAE,EAAE;YACV,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,KAAK,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAClD,MAAM,IAAI,KAAK,CAAC,mCAAmC,CAAC,CAAC;aACxD;YACD,cAAc,CAAC,YAAY,CAAC,GAAG,sCAAsC,CAAC;YACtE,cAAc,CAAC,OAAO,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC;YACxD,cAAc,CAAC,MAAM,CAAC,GAAG,gCAAgC,CAAC;YAC1D,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;SACjE;aAAM;YACH,cAAc,CAAC,YAAY,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YACjD,cAAc,CAAC,OAAO,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAC5C,cAAc,CAAC,MAAM,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAC3C,cAAc,CAAC,UAAU,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;SAClD;QACD,IAAI,CAAC,IAAI,CAAC,OAAO,EAAE;YACf,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,IAAI,EAAE,EAAE,OAAO,EAAE,SAAS,CAAC,UAAU,EAAE,EAAC,CAAC,CAAC;SACxE;QACD,KAAK,CAAC,8BAA8B,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IACnF,CAAC;IAvED;;;;;;;OAOG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,IAAmC;QAC5F,OAAO,IAAI,8BAA8B,CAAC,IAAI,EAAE,SAAgB,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAC3F,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,8BAA8B,CAAC,YAAY,CAAC;IAC/E,CAAC;;AAzBL,wEAyEC;AA5DG,gBAAgB;AACO,2CAAY,GAAG,gFAAgF,CAAC"}
|
package/helm/v3/release.d.ts
CHANGED
|
@@ -141,7 +141,7 @@ export declare class Release extends pulumi.CustomResource {
|
|
|
141
141
|
*/
|
|
142
142
|
readonly timeout: pulumi.Output<number>;
|
|
143
143
|
/**
|
|
144
|
-
* List of assets (raw yaml files). Content is read and merged with values
|
|
144
|
+
* List of assets (raw yaml files). Content is read and merged with values (with values taking precedence).
|
|
145
145
|
*/
|
|
146
146
|
readonly valueYamlFiles: pulumi.Output<(pulumi.asset.Asset | pulumi.asset.Archive)[]>;
|
|
147
147
|
/**
|