While trying “container.projects.locations.clusters.get” kubernetes API in GCP API Explorer for GKE am...
up vote
1
down vote
favorite
While trying "container.projects.locations.clusters.get" GCP API Explorer web consoleam getting '500 Internal Server Error' what would be the reason help me to fix this.
google-kubernetes-engine google-apis-explorer
New contributor
add a comment |
up vote
1
down vote
favorite
While trying "container.projects.locations.clusters.get" GCP API Explorer web consoleam getting '500 Internal Server Error' what would be the reason help me to fix this.
google-kubernetes-engine google-apis-explorer
New contributor
add a comment |
up vote
1
down vote
favorite
up vote
1
down vote
favorite
While trying "container.projects.locations.clusters.get" GCP API Explorer web consoleam getting '500 Internal Server Error' what would be the reason help me to fix this.
google-kubernetes-engine google-apis-explorer
New contributor
While trying "container.projects.locations.clusters.get" GCP API Explorer web consoleam getting '500 Internal Server Error' what would be the reason help me to fix this.
google-kubernetes-engine google-apis-explorer
google-kubernetes-engine google-apis-explorer
New contributor
New contributor
New contributor
asked 2 days ago
Anantha Rao
61
61
New contributor
New contributor
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
up vote
0
down vote
I did use the Method: projects.locations.clusters.get and I did get "200" response with all my cluster informations.
One field is required to do is the "name" field and the expression should be like below:
projects/your project ID/locations/your cluster zone/clusters/your cluster name
you can use as well a python script to run the same thing
"""
from pprint import pprint
from googleapiclient import discovery
from oauth2client.client import GoogleCredentials
credentials = GoogleCredentials.get_application_default()
service = discovery.build('container', 'v1', credentials=credentials)
# The name (project, location, cluster) of the cluster to retrieve.
# Specified in the format 'projects/*/locations/*/clusters/*'.
name = 'projects/<your project ID>/locations/<your cluster zone>/clusters/<your cluster name>' # TODO: Update placeholder value.
request = service.projects().locations().clusters().get(name=name)
response = request.execute()
# TODO: Change code below to process the `response` dict:
pprint(response)
Make sure you install the module as below required for authentication:
sudo pip install --upgrade google-api-python-client
sudo pip install --upgrade oauth2client
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
I did use the Method: projects.locations.clusters.get and I did get "200" response with all my cluster informations.
One field is required to do is the "name" field and the expression should be like below:
projects/your project ID/locations/your cluster zone/clusters/your cluster name
you can use as well a python script to run the same thing
"""
from pprint import pprint
from googleapiclient import discovery
from oauth2client.client import GoogleCredentials
credentials = GoogleCredentials.get_application_default()
service = discovery.build('container', 'v1', credentials=credentials)
# The name (project, location, cluster) of the cluster to retrieve.
# Specified in the format 'projects/*/locations/*/clusters/*'.
name = 'projects/<your project ID>/locations/<your cluster zone>/clusters/<your cluster name>' # TODO: Update placeholder value.
request = service.projects().locations().clusters().get(name=name)
response = request.execute()
# TODO: Change code below to process the `response` dict:
pprint(response)
Make sure you install the module as below required for authentication:
sudo pip install --upgrade google-api-python-client
sudo pip install --upgrade oauth2client
add a comment |
up vote
0
down vote
I did use the Method: projects.locations.clusters.get and I did get "200" response with all my cluster informations.
One field is required to do is the "name" field and the expression should be like below:
projects/your project ID/locations/your cluster zone/clusters/your cluster name
you can use as well a python script to run the same thing
"""
from pprint import pprint
from googleapiclient import discovery
from oauth2client.client import GoogleCredentials
credentials = GoogleCredentials.get_application_default()
service = discovery.build('container', 'v1', credentials=credentials)
# The name (project, location, cluster) of the cluster to retrieve.
# Specified in the format 'projects/*/locations/*/clusters/*'.
name = 'projects/<your project ID>/locations/<your cluster zone>/clusters/<your cluster name>' # TODO: Update placeholder value.
request = service.projects().locations().clusters().get(name=name)
response = request.execute()
# TODO: Change code below to process the `response` dict:
pprint(response)
Make sure you install the module as below required for authentication:
sudo pip install --upgrade google-api-python-client
sudo pip install --upgrade oauth2client
add a comment |
up vote
0
down vote
up vote
0
down vote
I did use the Method: projects.locations.clusters.get and I did get "200" response with all my cluster informations.
One field is required to do is the "name" field and the expression should be like below:
projects/your project ID/locations/your cluster zone/clusters/your cluster name
you can use as well a python script to run the same thing
"""
from pprint import pprint
from googleapiclient import discovery
from oauth2client.client import GoogleCredentials
credentials = GoogleCredentials.get_application_default()
service = discovery.build('container', 'v1', credentials=credentials)
# The name (project, location, cluster) of the cluster to retrieve.
# Specified in the format 'projects/*/locations/*/clusters/*'.
name = 'projects/<your project ID>/locations/<your cluster zone>/clusters/<your cluster name>' # TODO: Update placeholder value.
request = service.projects().locations().clusters().get(name=name)
response = request.execute()
# TODO: Change code below to process the `response` dict:
pprint(response)
Make sure you install the module as below required for authentication:
sudo pip install --upgrade google-api-python-client
sudo pip install --upgrade oauth2client
I did use the Method: projects.locations.clusters.get and I did get "200" response with all my cluster informations.
One field is required to do is the "name" field and the expression should be like below:
projects/your project ID/locations/your cluster zone/clusters/your cluster name
you can use as well a python script to run the same thing
"""
from pprint import pprint
from googleapiclient import discovery
from oauth2client.client import GoogleCredentials
credentials = GoogleCredentials.get_application_default()
service = discovery.build('container', 'v1', credentials=credentials)
# The name (project, location, cluster) of the cluster to retrieve.
# Specified in the format 'projects/*/locations/*/clusters/*'.
name = 'projects/<your project ID>/locations/<your cluster zone>/clusters/<your cluster name>' # TODO: Update placeholder value.
request = service.projects().locations().clusters().get(name=name)
response = request.execute()
# TODO: Change code below to process the `response` dict:
pprint(response)
Make sure you install the module as below required for authentication:
sudo pip install --upgrade google-api-python-client
sudo pip install --upgrade oauth2client
answered 2 days ago
Alioua
526110
526110
add a comment |
add a comment |
Anantha Rao is a new contributor. Be nice, and check out our Code of Conduct.
Anantha Rao is a new contributor. Be nice, and check out our Code of Conduct.
Anantha Rao is a new contributor. Be nice, and check out our Code of Conduct.
Anantha Rao is a new contributor. Be nice, and check out our Code of Conduct.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53373012%2fwhile-trying-container-projects-locations-clusters-get-kubernetes-api-in-gcp-a%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown