Package com.google.container.v1beta1
Interface MasterAuthorizedNetworksConfigOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
MasterAuthorizedNetworksConfig,MasterAuthorizedNetworksConfig.Builder
public interface MasterAuthorizedNetworksConfigOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description MasterAuthorizedNetworksConfig.CidrBlockgetCidrBlocks(int index)cidr_blocks define up to 10 external networks that could access Kubernetes master through HTTPS.intgetCidrBlocksCount()cidr_blocks define up to 10 external networks that could access Kubernetes master through HTTPS.List<MasterAuthorizedNetworksConfig.CidrBlock>getCidrBlocksList()cidr_blocks define up to 10 external networks that could access Kubernetes master through HTTPS.MasterAuthorizedNetworksConfig.CidrBlockOrBuildergetCidrBlocksOrBuilder(int index)cidr_blocks define up to 10 external networks that could access Kubernetes master through HTTPS.List<? extends MasterAuthorizedNetworksConfig.CidrBlockOrBuilder>getCidrBlocksOrBuilderList()cidr_blocks define up to 10 external networks that could access Kubernetes master through HTTPS.booleangetEnabled()Whether or not master authorized networks is enabled.booleangetGcpPublicCidrsAccessEnabled()Whether master is accessbile via Google Compute Engine Public IP addresses.booleanhasGcpPublicCidrsAccessEnabled()Whether master is accessbile via Google Compute Engine Public IP addresses.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getEnabled
boolean getEnabled()
Whether or not master authorized networks is enabled.
bool enabled = 1;- Returns:
- The enabled.
-
getCidrBlocksList
List<MasterAuthorizedNetworksConfig.CidrBlock> getCidrBlocksList()
cidr_blocks define up to 10 external networks that could access Kubernetes master through HTTPS.
repeated .google.container.v1beta1.MasterAuthorizedNetworksConfig.CidrBlock cidr_blocks = 2;
-
getCidrBlocks
MasterAuthorizedNetworksConfig.CidrBlock getCidrBlocks(int index)
cidr_blocks define up to 10 external networks that could access Kubernetes master through HTTPS.
repeated .google.container.v1beta1.MasterAuthorizedNetworksConfig.CidrBlock cidr_blocks = 2;
-
getCidrBlocksCount
int getCidrBlocksCount()
cidr_blocks define up to 10 external networks that could access Kubernetes master through HTTPS.
repeated .google.container.v1beta1.MasterAuthorizedNetworksConfig.CidrBlock cidr_blocks = 2;
-
getCidrBlocksOrBuilderList
List<? extends MasterAuthorizedNetworksConfig.CidrBlockOrBuilder> getCidrBlocksOrBuilderList()
cidr_blocks define up to 10 external networks that could access Kubernetes master through HTTPS.
repeated .google.container.v1beta1.MasterAuthorizedNetworksConfig.CidrBlock cidr_blocks = 2;
-
getCidrBlocksOrBuilder
MasterAuthorizedNetworksConfig.CidrBlockOrBuilder getCidrBlocksOrBuilder(int index)
cidr_blocks define up to 10 external networks that could access Kubernetes master through HTTPS.
repeated .google.container.v1beta1.MasterAuthorizedNetworksConfig.CidrBlock cidr_blocks = 2;
-
hasGcpPublicCidrsAccessEnabled
boolean hasGcpPublicCidrsAccessEnabled()
Whether master is accessbile via Google Compute Engine Public IP addresses.
optional bool gcp_public_cidrs_access_enabled = 3;- Returns:
- Whether the gcpPublicCidrsAccessEnabled field is set.
-
getGcpPublicCidrsAccessEnabled
boolean getGcpPublicCidrsAccessEnabled()
Whether master is accessbile via Google Compute Engine Public IP addresses.
optional bool gcp_public_cidrs_access_enabled = 3;- Returns:
- The gcpPublicCidrsAccessEnabled.
-
-