Skip to content
Advertisement

Tag: google-cloud-platform

android firebase start listing data equal to entered letter

There is a problem with the list inside the “if” it doesn’t work I get an error this:java.lang.ClassCastException: java.lang.String cannot be cast to java.util.List Answer You are getting the following error: java.lang.ClassCastException: java.lang.String cannot be cast to java.util.List” In the second if statement, because the type of the “name” field in the database is String and not a List, hence

org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name ‘messageSender’

Error while trying to publish a message from spring boot to Google cloud platform pub/sub. I was trying to publish a message to the Google Cloud Platform pub/sub messaging queue. I was getting the following errors while trying to run the application.Please help. I was using only a single Java Class file. Thease are my dependencies(pom.xml) Please help. Thank you.

Google Cloud Function java.lang.NoClassDefFoundError while following example code

i try to test a gcloud function with a storage trigger. The gcloud function should call a gcloud service which is public, but require authentication. I can execute the function locally without any problem. But on gcloud I can found a NoClassDefFoundError in the function logs. Failed to execute functions.HelloGcs java.lang.NoClassDefFoundError: io/opencensus/trace/propagation/TextFormat$Setter at com.google.api.client.http.HttpRequest.(HttpRequest.java:203) at com.google.api.client.http.HttpTransport.buildRequest(HttpTransport.java:115) at com.google.api.client.http.HttpRequestFactory.buildRequest(HttpRequestFactory.java:86) at com.google.api.client.http.HttpRequestFactory.buildGetRequest(HttpRequestFactory.java:117)

GCP API Client Libraries Java Examples – com.google.api.services.deploymentmanager.DeploymentManager

I am looking to automate the provisioning of google cloud resources using Deployment Manager. Only I want to use the JAVA API library instead of gcloud. Specifically need to provision the following components using DeploymentManager. Cloud SQL – MSSQL Cloud Run Service VPC Network with the Connector to be used to connect Cloud Run to the Cloud SQL. I think

Get all GCP instances under project using rest API

The below api gives instances based on a particular zone. https://cloud.google.com/compute/docs/reference/rest/v1/instances/list I am using java client library to connect with GCP. It is possible using gcloud according to this link https://cloud.google.com/sdk/gcloud/reference/compute/instances/list Any help will be much appreciated. Answer To list all instances in all regions and zones for a project, use the aggregatedList method. Method: instances.aggregatedList

Export google CrUX data

I am trying to move a subset of the CrUX data to .csv file(s) for analysis with tools not available on google search console. I tried to export one or more .csv file from a query like so to a google cloud storage bucket (or any other place really): I have tried two different approaches: A. export query results to

Why deploying a spring boot (Java) application to Googles App Engine gives error for both Flexible and Standard environment?

It is a Spring boot Java application using Maven. I am using Intelij for developement. I am availing $300 as I got by default from GCP and using it. For a flexible environment, the app.yaml configuration is Error as below: The requested amount of instances has exceeded GCE’s default quota When I using a Standard enviorment The Error showing as

Advertisement