Skip to content

Commit 6e58acf

Browse files
committed
generate for api v1.10
1 parent 07799eb commit 6e58acf

File tree

1,734 files changed

+387931
-3
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,734 files changed

+387931
-3
lines changed

node-client/src/.babelrc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"presets": ["es2015", "stage-0"]
3+
}
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
Requested Commit: v2.2.3
2-
Actual Commit: 049b1b2bcc904e1179a0e9b11124ed8fa0e3be2e
1+
Requested Commit: 5d263e1c9cdd395d93adf061c63d5ef58a8e9ec5
2+
Actual Commit: 5d263e1c9cdd395d93adf061c63d5ef58a8e9ec5
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.2.3
1+
2.3.0-SNAPSHOT

node-client/src/.travis.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
language: node_js
2+
node_js:
3+
- "6"
4+
- "6.1"
5+
- "5"
6+
- "5.11"
7+

node-client/src/README.md

Lines changed: 1411 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
# KubernetesJsClient.AdmissionregistrationApi
2+
3+
All URIs are relative to *https://localhost*
4+
5+
Method | HTTP request | Description
6+
------------- | ------------- | -------------
7+
[**getAPIGroup**](AdmissionregistrationApi.md#getAPIGroup) | **GET** /apis/admissionregistration.k8s.io/ |
8+
9+
10+
<a name="getAPIGroup"></a>
11+
# **getAPIGroup**
12+
> V1APIGroup getAPIGroup()
13+
14+
15+
16+
get information of a group
17+
18+
### Example
19+
```javascript
20+
import KubernetesJsClient from 'kubernetes-js-client';
21+
let defaultClient = KubernetesJsClient.ApiClient.instance;
22+
23+
// Configure API key authorization: BearerToken
24+
let BearerToken = defaultClient.authentications['BearerToken'];
25+
BearerToken.apiKey = 'YOUR API KEY';
26+
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
27+
//BearerToken.apiKeyPrefix = 'Token';
28+
29+
let apiInstance = new KubernetesJsClient.AdmissionregistrationApi();
30+
31+
apiInstance.getAPIGroup((error, data, response) => {
32+
if (error) {
33+
console.error(error);
34+
} else {
35+
console.log('API called successfully. Returned data: ' + data);
36+
}
37+
});
38+
```
39+
40+
### Parameters
41+
This endpoint does not need any parameter.
42+
43+
### Return type
44+
45+
[**V1APIGroup**](V1APIGroup.md)
46+
47+
### Authorization
48+
49+
[BearerToken](../README.md#BearerToken)
50+
51+
### HTTP request headers
52+
53+
- **Content-Type**: application/json, application/yaml, application/vnd.kubernetes.protobuf
54+
- **Accept**: application/json, application/yaml, application/vnd.kubernetes.protobuf
55+
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# KubernetesJsClient.AdmissionregistrationV1beta1ServiceReference
2+
3+
## Properties
4+
Name | Type | Description | Notes
5+
------------ | ------------- | ------------- | -------------
6+
**name** | **String** | &#x60;name&#x60; is the name of the service. Required |
7+
**namespace** | **String** | &#x60;namespace&#x60; is the namespace of the service. Required |
8+
**path** | **String** | &#x60;path&#x60; is an optional URL path which will be sent in any request to this service. | [optional]
9+
10+

node-client/src/docs/Admissionregistration_v1alpha1Api.md

Lines changed: 499 additions & 0 deletions
Large diffs are not rendered by default.

node-client/src/docs/Admissionregistration_v1beta1Api.md

Lines changed: 943 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
# KubernetesJsClient.ApiextensionsApi
2+
3+
All URIs are relative to *https://localhost*
4+
5+
Method | HTTP request | Description
6+
------------- | ------------- | -------------
7+
[**getAPIGroup**](ApiextensionsApi.md#getAPIGroup) | **GET** /apis/apiextensions.k8s.io/ |
8+
9+
10+
<a name="getAPIGroup"></a>
11+
# **getAPIGroup**
12+
> V1APIGroup getAPIGroup()
13+
14+
15+
16+
get information of a group
17+
18+
### Example
19+
```javascript
20+
import KubernetesJsClient from 'kubernetes-js-client';
21+
let defaultClient = KubernetesJsClient.ApiClient.instance;
22+
23+
// Configure API key authorization: BearerToken
24+
let BearerToken = defaultClient.authentications['BearerToken'];
25+
BearerToken.apiKey = 'YOUR API KEY';
26+
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
27+
//BearerToken.apiKeyPrefix = 'Token';
28+
29+
let apiInstance = new KubernetesJsClient.ApiextensionsApi();
30+
31+
apiInstance.getAPIGroup((error, data, response) => {
32+
if (error) {
33+
console.error(error);
34+
} else {
35+
console.log('API called successfully. Returned data: ' + data);
36+
}
37+
});
38+
```
39+
40+
### Parameters
41+
This endpoint does not need any parameter.
42+
43+
### Return type
44+
45+
[**V1APIGroup**](V1APIGroup.md)
46+
47+
### Authorization
48+
49+
[BearerToken](../README.md#BearerToken)
50+
51+
### HTTP request headers
52+
53+
- **Content-Type**: application/json, application/yaml, application/vnd.kubernetes.protobuf
54+
- **Accept**: application/json, application/yaml, application/vnd.kubernetes.protobuf
55+

0 commit comments

Comments
 (0)