Java Code Examples for io.kubernetes.client.openapi.Configuration#getDefaultApiClient()

The following examples show how to use io.kubernetes.client.openapi.Configuration#getDefaultApiClient() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: PortForward.java    From java with Apache License 2.0 4 votes vote down vote up
/** Simple PortForward API constructor, uses default configuration */
public PortForward() {
  this(Configuration.getDefaultApiClient());
}
 
Example 2
Source File: CertificatesV1beta1Api.java    From java with Apache License 2.0 4 votes vote down vote up
public CertificatesV1beta1Api() {
    this(Configuration.getDefaultApiClient());
}
 
Example 3
Source File: ApiregistrationApi.java    From java with Apache License 2.0 4 votes vote down vote up
public ApiregistrationApi() {
    this(Configuration.getDefaultApiClient());
}
 
Example 4
Source File: RbacAuthorizationApi.java    From java with Apache License 2.0 4 votes vote down vote up
public RbacAuthorizationApi() {
    this(Configuration.getDefaultApiClient());
}
 
Example 5
Source File: BatchV1Api.java    From java with Apache License 2.0 4 votes vote down vote up
public BatchV1Api() {
    this(Configuration.getDefaultApiClient());
}
 
Example 6
Source File: AuthorizationV1Api.java    From java with Apache License 2.0 4 votes vote down vote up
public AuthorizationV1Api() {
    this(Configuration.getDefaultApiClient());
}
 
Example 7
Source File: NetworkingApi.java    From java with Apache License 2.0 4 votes vote down vote up
public NetworkingApi() {
    this(Configuration.getDefaultApiClient());
}
 
Example 8
Source File: StorageV1alpha1Api.java    From java with Apache License 2.0 4 votes vote down vote up
public StorageV1alpha1Api() {
    this(Configuration.getDefaultApiClient());
}
 
Example 9
Source File: CoordinationV1beta1Api.java    From java with Apache License 2.0 4 votes vote down vote up
public CoordinationV1beta1Api() {
    this(Configuration.getDefaultApiClient());
}
 
Example 10
Source File: SchedulingV1alpha1Api.java    From java with Apache License 2.0 4 votes vote down vote up
public SchedulingV1alpha1Api() {
    this(Configuration.getDefaultApiClient());
}
 
Example 11
Source File: FlowcontrolApiserverApi.java    From java with Apache License 2.0 4 votes vote down vote up
public FlowcontrolApiserverApi() {
    this(Configuration.getDefaultApiClient());
}
 
Example 12
Source File: Exec.java    From java with Apache License 2.0 4 votes vote down vote up
/** Simple Exec API constructor, uses default configuration */
public Exec() {
  this(Configuration.getDefaultApiClient());
}
 
Example 13
Source File: Copy.java    From java with Apache License 2.0 4 votes vote down vote up
/** Simple Copy constructor, uses default configuration */
public Copy() {
  super(Configuration.getDefaultApiClient());
}
 
Example 14
Source File: PolicyApi.java    From java with Apache License 2.0 4 votes vote down vote up
public PolicyApi() {
    this(Configuration.getDefaultApiClient());
}
 
Example 15
Source File: AutoscalingV1Api.java    From java with Apache License 2.0 4 votes vote down vote up
public AutoscalingV1Api() {
    this(Configuration.getDefaultApiClient());
}
 
Example 16
Source File: SchedulingV1beta1Api.java    From java with Apache License 2.0 4 votes vote down vote up
public SchedulingV1beta1Api() {
    this(Configuration.getDefaultApiClient());
}
 
Example 17
Source File: NetworkingV1Api.java    From java with Apache License 2.0 4 votes vote down vote up
public NetworkingV1Api() {
    this(Configuration.getDefaultApiClient());
}
 
Example 18
Source File: AutoscalingApi.java    From java with Apache License 2.0 4 votes vote down vote up
public AutoscalingApi() {
    this(Configuration.getDefaultApiClient());
}
 
Example 19
Source File: DiscoveryV1beta1Api.java    From java with Apache License 2.0 4 votes vote down vote up
public DiscoveryV1beta1Api() {
    this(Configuration.getDefaultApiClient());
}
 
Example 20
Source File: StorageApi.java    From java with Apache License 2.0 4 votes vote down vote up
public StorageApi() {
    this(Configuration.getDefaultApiClient());
}