[google-appengine] Re: Custom domains missing

2019-01-18 Thread 'Nicolas (Google Cloud Platform Support)' via Google App Engine


Hi Kota,

I can see that you opened a ticket 
 on Issue Tracker, as this is 
the right channel for technical issues such as the one you are experiencing 
I would recommend that you follow up on this thread instead of here.

Please note that Google Groups is intended for general discussion about 
Google Cloud products.

Thanks for your understanding. 


On Saturday, December 29, 2018 at 12:34:29 PM UTC-5, Srinivasu Kota wrote:
>
> almost 6 years back i have migrated my appengine app from xyz to xyz-hrd 
> (for example)
>
> as part of migration google didn't move custom domains to xyz-hrd, but 
> they are still present to xyz appid
>
> i found they are still present using gcloud command for xyz domain.
>
> gcloud app domain-mappings list
>
>
> i could not delete them as it gives this error
>
>
> ERROR: (gcloud.app.domain-mappings.delete) NOT_FOUND: The AppId that you are 
> looking for has been deleted
>
>
> but xyz-hrd doesn't list them as well..
>
>
> i need to add SSL certificate, how can i do that.
>
>
> also there is another unknown custom domain is added to my account not sure 
> who has added it, but i couldn't delete it even though i am owner of the 
> app-id
>
>
> please help me to fix this problem. I don't have any premium support. It 
> looks like it is problem of migration script few years ago and we have not 
> noticed it till now.
>
>
> Thanks
>
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at https://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/8fc72bc7-955f-4fcf-ac70-58e754188407%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: Unique Cloud Task names cannot be reused

2019-01-18 Thread 'Elliott (Google Cloud Platform Support)' via Google App Engine


Hello,

Was the original task completed or deleted before you send another one with 
the same name? If not, you will receive the error you described.  

If the task has been completed or deleted and you still receive the error, 
please complete an Issue Tracker 
 
form so that we may investigate this issue internally.

Note that Google Groups are reserved for general Google Cloud Platform-end 
product discussions and not for reporting issues, which is why I suggested 
moving the troubleshooting to Issue Tracker.


On Saturday, January 12, 2019 at 2:18:21 PM UTC-5, thstart wrote:
>
> I created Cloud Task with unique name in order to guarantee just
> one time execution if successful.
>
> Created it using API. Tried to execute again after 2 hours but the message 
> I got is I cannot use the same name
> because it was already used recently.
>
>
> From the documentation:
>
> If the task's queue was created using Cloud Tasks, then another task 
> with
>
> the same name can't be created for ~1hour after the original task was
>
> deleted or executed. If the task's queue was created using queue.yaml 
> or
>
> queue.xml, then another task with the same name can't be created
>
> for ~9days after the original task was deleted or executed.
>
>
> I am expecting to re-use the name after 2 hours, what is wrong?
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at https://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/7f590d56-40dd-4f8a-8944-c09693999bc4%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: gcloud app deploy sometimes non-responsive

2019-01-18 Thread Matt Haff
It's worth noting that I'm deploying to the same version, so there is no 
reason for it to take > 1 minute to deploy.

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at https://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/50659076-51ca-4970-b358-efc505477400%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: Google App Engine is slow to deploy, hangs on "Updating service [someproject]..."

2019-01-18 Thread Matt Haff
I'm having the same issue, I posted a separate question here per Nick's 
request 
- 
https://groups.google.com/forum/?utm_medium=email_source=footer#!topic/google-appengine/NJMzqz5JqZQ

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at https://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/6398e906-869f-45d5-a8e9-d6227b4afd49%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] How do I setup routing for react in GAE? Directly routing to react-router-dom routes via URL fails in GAE on basic create-react-app?

2019-01-18 Thread Nathan Grubb

*Setting GAE app.yaml for react-router routes produces "Unexpected token <" 
errors.*
-

In the development environment, all routes work when called directly.  
localhost:5000 and localhost:5000/test produce expected results.

In GAE standard app.yaml functions for the root directory when the URL 
www.test-app.com is called directly.  ***www.test-app.com/test produces a 
404 error.***

app.yaml #1
runtime: nodejs8
instance_class: F1
automatic_scaling:
  max_instances: 1


handlers:
  - url: /
static_files: build/index.html
upload: build/index.html
  - url: /
static_dir: build


Configuring app.yaml to accept wildcard routes fails for all paths.  
www.test-app.com/ and www.test-app.com/test produce an error *"Unexpected 
token <"*.  It appears that it is serving .js files as index.html.

app.yaml #2
runtime: nodejs8
instance_class: F1
automatic_scaling:
  max_instances: 1


handlers:
  - url: /.*
static_files: build/index.html
upload: build/index.html
  - url: /
static_dir: build


*Steps to reproduce this issue:*
==

Node: 10.15.0
npm: 6.4.1

gcloud init via Google Cloud SDK

npm init react-app test-app


npm install react-router-dom


Add router to index.js:

index.js
import {BrowserRouter as Router, Route} from 'react-router-dom';
import React from 'react';
import ReactDOM from 'react-dom';
import './index.css';
import App from './App';
import * as serviceWorker from './serviceWorker';




ReactDOM.render(
  

  ,
  document.getElementById('root'));
serviceWorker.unregister();



Add routing to app.js:

app.js
import {Route} from 'react-router-dom'
import React, { Component } from 'react';
import logo from './logo.svg';
import './App.css';


class App extends Component {
  render() {
return (
  
  

  
  
Edit src/App.js and save to reload.
  
  https://reactjs.org;
target="_blank"
rel="noopener noreferrer"
  >
Learn React
  

  } />
  
Hello, World!
  } />
  
);
  }
}


export default App;


No changes to package.json:

package.json
{
  "name": "test-app",
  "version": "0.1.0",
  "private": true,
  "dependencies": {
"react": "^16.7.0",
"react-dom": "^16.7.0",
"react-router-dom": "^4.3.1",
"react-scripts": "2.1.3"
  },
  "scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
  },
  "eslintConfig": {
"extends": "react-app"
  },
  "browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
  ]
}


npm run build 


gcloud app deploy



How do we convince app engine to allow a react SPA to process routes 
directly?
-

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at https://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/68caddf8-dd16-4f31-8ba2-14078e2d2e37%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] segregate app engine billing of all services

2019-01-18 Thread 'Ashok Patidar' via Google App Engine

Hello All,
Can we segregate app engine billing of services if multiple services in 
single project??
I am deploy around 20 services in one project and want to separate all 
services cost to understand and accordingly asking to my client for 
billing. 

-- 


-- 

















The information in this
e-mail and any attachments is 
confidential and may be legally privileged. It is
intended solely for the 
addressee or addressee's. If you are not an intended
recipient, please 
delete the message and any attachments and notify the sender
of 
nondelivery. Any use or disclosure of the contents of either is 
unauthorised
and may be unlawful. All liability for viruses is excluded to 
the fullest
extent permitted by law. Any views expressed in this message 
are those of the
individual sender, except where the sender states them, 
with requisite
authority, to be those of the organisation.

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at https://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/6f256155-359f-45b8-a12e-34ef6ec8460d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: Google App Engine is slow to deploy, hangs on "Updating service [someproject]..."

2019-01-18 Thread Karolis Krulis
That's not really a solution. If I deploy the same exact file to AWS it 
takes ~15s on a slow network. I spent 10 minutes deploying on google. 

On Monday, October 3, 2016 at 4:39:50 PM UTC-4, Nick (Cloud Platform 
Support) wrote:
>
> Hey Kevin,
>
> The speed of deployment can be changed by limiting the size of the 
> uploaded app, limiting the complexity of the build necessary in the 
> Dockerfile, if present, and by ensuring a fast and reliable internet 
> connection. Other than these variables, it's hard to comment on what 
> specifically might be making deployment exhibit the timing that it does on 
> your system. 
>
> I hope this is helpful - let me know if you have any further questions! 
> I'll be happy to help!
>
> Cheers,
>
> Nick
> Cloud Platform Community Suppor
>
> On Thursday, September 29, 2016 at 3:48:26 PM UTC-4, Kevin Lau wrote:
>>
>>
>> Is there a faster way to deploy an app? Google App Engine is slow to 
>> deploy, hangs on "Updating service [someproject]..." I am using a flexible 
>> environment with PHP.
>>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at https://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/805201b6-f726-4f5d-a2d5-eb5918d486f7%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Configure app.yaml for standard env

2019-01-18 Thread Artur Odekov
Hi, i have deleted env:flex from my .yaml file and deployed to app engine 
with some other changes in other files. So now im switched to STANDARD env 
with instance_class F1. 
With this instance class  im not even able to  upload a picture/image to my 
app, in debugger it show following error Exceeded soft memory limit of 128 
MB with 129 MB after servicing 34 requests total. Consider setting a larger 
instance class in app.yaml. 
Please someone from Google or who know how to configure .yaml file 
correctly advice me:
1- how do i change instance class,
2- do i need to specify any other parameters like: 
resources:   
cpu: 2   
memory_gb: 2.3   
disk_size_gb: 10

What is the practise ? and one more thing my app has suddenly become so 
popular, how come ??? im receiving 3000 request per day, how come ? some 
one is heating my app every 30 seconds ?

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at https://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/838c9905-3b86-47a5-809f-e381b1c91371%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Google App Engine Seach Java not working since this morning: com.google.appengine.api.search.SearchException: Error constructing stub for app

2019-01-18 Thread Bruno Schuermans
Hello

My application was running fine in app engine. spec: Java8 standard.
Than since this morning I get this exception when I try to use the 
SearchService: com.google.appengine.api.search.SearchException: Error 
constructing stub for app

I have noted that Java7 is not supported from today but I am using Java8 
Standard environment.

Anybody has encontered the same problem?

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at https://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/9f09182f-1fd5-46ef-bec2-858be4fea5bd%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: StackDriver Uptime Check keeps working after deleting it

2019-01-18 Thread 'Mehdi Sharifi' via Google App Engine
Hello,

Thanks for the question. Please note that your Stackdriver Monitoring 
Uptime checks are non-chargeable [1]. Thus, you don't pay for them. You pay 
for the instances running. 
I couldn't reproduce your issue of deleting Uptime checks. I could 
successfully delete all of them [2] without seeing them working again. The 
current options for check periods is 1, 5, 10, or 15 minutes [3]. For any 
other option,
you can fill that as a feature request here [4] under "Management Tools" 
for Stackdriver Monitoring.

Best Regards,
Mehdi

[1] https://cloud.google.com/stackdriver/pricing#monitoring-costs
[2] https://cloud.google.com/monitoring/uptime-checks/#deleting_uptime_checks
[3] https://cloud.google.com/monitoring/uptime-checks/#basic_options
[4] https://cloud.google.com/support/docs/issue-trackers

On Saturday, January 12, 2019 at 1:53:24 PM UTC-5, thstart wrote:
>
> I was researching StackDriver.
>
> Configured UpTime check to look how it is working. It was default settings 
> of checking every minute. I see on the Google Cloud dashboard the requests.
>
> Everything fine till now.  Then I don't want these UpTime checks anymore 
> and delete
> them.
>
> Going to the  Google Cloud dashboard I still see them working.
>
> The problem is these uptime check keep 3 instances always working and thus 
> eating resources and at the end I need to pay for that. 
>
> For this particular service I need it to run once a week and then shut 
> down.
>
> This UpTime check keeping working is a serious issue.
>
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at https://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/75377d80-ec41-4a88-8b2b-d44c92dd8ac5%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: AppEngine Standard (Python) not showing logs in StackDriver Errors

2019-01-18 Thread 'Elliott (Google Cloud Platform Support)' via Google App Engine


Hello Yousuf,

I understand that you do not see 500 error messages in the Stackdriver 
Error Reporting.  You may find this document 
 helpful as 
it provides troubleshooting steps for your issue.  

However, if you still experience the issue after following the 
troubleshooting steps provided in the aforementioned document, please open 
a new issue in Issue Tracker 
 
and we will be happy to troubleshoot it further.

Note that Google Groups are reserved for general Google Cloud Platform-end 
product discussions and not for reporting issues.


On Friday, January 11, 2019 at 10:20:15 PM UTC-5, Yousuf Jawwad wrote:
>
> I used to get the 500 errors notified to me with a pin point trace to my 
> code line. I have been getting a lot of 500 errors lately but i cannot see 
> any errors with StackDriver Error Reporting page.
> What  could be wrong here?
>
>
> // yousuf
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at https://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/ea08766d-09de-419f-b0df-31c0f8eb4681%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: Why is my Search Index getting smaller?

2019-01-18 Thread 'Elliott (Google Cloud Platform Support)' via Google App Engine


Hello Akash,

I understand that you want to know if there is any optimization happening 
in the background on your indexes in Search API or indexes in general.  Is 
this issue causing concern for your project at the moment?

I have researched the behavior you reported.  I have not found 
documentation suggesting that the index size could change on its own or is 
changed by Google.

In this case, if you have reason to believe that this size change was not 
initiated by one of your actions, I invite you to create an issue with Issue 
Tracker 
 so 
that we would be able to look into it.

Note that Google Groups are reserved for general Google Cloud Platform-end 
product discussions and not for reporting issues, which is why I suggested 
moving the troubleshooting to Issue Tracker.


On Sunday, January 13, 2019 at 1:48:58 PM UTC-5, Akash Eldo wrote:
>
> I've noticed that the size of my index gets smaller from time to time, 
> even though I haven't removed any documents from it. For example, it's 
> currently at 1.01 MB, but a few days ago it was around 1.5 MB. Is there 
> some optimization going on in the background? I did use to have an endpoint 
> on my App Engine server that clears the index, but I've removed that 
> version and deleted all its instances a while back, so I doubt any 
> documents are being deleted.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at https://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/3a91e0cf-b3d9-4ba2-87d7-7b2d452b6e22%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: Testbed stubs for Cloud Datastore?

2019-01-18 Thread Blaine Garrett
Excellent. Thank you for the reply and making a ticket.

Since my original post, I did discover there is an overhead 
to instantiating the datastore client and ended up taking a singleton 
approach which considerably sped up the emulator and reduces the need for 
testbed to an extent,
Also, in another thread someone pointed out a 3rd-party port of the ndb 
library which seems promising - https://github.com/Bogdanp/anom-py

I did decide if I have to port things over to python 3.7, I might as well 
try out Node on the Standard environment. So far so good but I'm sure I'll 
continue to be python for a while still on existing projects.

To provide clarification to your last point, ndb 
 was a ORM 
model wrapper to datastore interaction that was provided as part of the 1st 
generation python runtime. It was not 3rd party in that you could import it 
from the google package (from google.appengine.ext import ndb) but it is a 
python specific client rather than core infrastructure. 

Thanks again,
~ Blaine









On Thursday, January 17, 2019 at 9:32:46 AM UTC-6, Cristian (Google Cloud 
Platform Support) wrote:
>
>
> Hello 
>
> Currently Google is advising customers to use tools specific to Python 
> rather that being dependent on dep_appserver 
> .
>  
> To test Datastore in your local environment, you can use the Datastore 
> emulator as described here 
> 
>  
> and here 
> . 
> Unfortunately Google App Engine Python 3.7 Runtime does not provide the 
> stub service. I have created a feature request 
>  for you. Please notice that 
> there is no ETA for this type of requests nor a guarantee that it will be 
> implemented. 
>
> Regarding your second question, I am not sure if the Datastore interface 
> to ndb is supported by Google or if you are referring to a third party 
> library. I have checked the current built-in third party libraries 
> 
>  
> and I could not find an actual reference to it. For this, we would need 
> more information and a link to the actual resources you are referring to. 
>
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at https://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/2aa49e4e-04a5-4a28-83cb-cf7e3eded007%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: How do I deploy Django app to app engine

2019-01-18 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Baturay, 

What is the value of the CLOUDSDK_PYTHON variable at the moment of 
attempted deployment? Support for version 3.7 is experimental, at present. 

This error is related to the Python version used by the SDK: currently 
gcloud requires Python version 2.7.x and there is experimental support for 
3.4 and up. You can check this by running the gcloud topic startup command 
on the CLI. Experimental support is what it says, so in this case you 
cannot deploy your app with CLOUDSDK_PYTHON set to python37. Things should 
progress towards full support; meanwhile, we should exercise patience. 

This situation should not prevent you from using whatever Python version 
you need for your project, and your app itself. 

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at https://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/bab29fc7-e3bf-4f81-a2c6-7786f7962bf5%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [google-appengine] Domain Puzzle

2019-01-18 Thread 'Tiago (Google Cloud Platform Support)' via Google App Engine
Happy to be helpful, Joshua. And here’s hoping your promises are fulfilled.

Cheers! 

On Tuesday, January 15, 2019 at 1:25:09 PM UTC-5, Joshua Smith wrote:
>
> I’m not going to pretend I have any idea how that spooky magic worked, but 
> you solved my problem!
>
> I’ll buy you a beer next time I’m near your googleplex.
>
> -Joshua
>
> On Jan 14, 2019, at 4:56 PM, 'Tiago (Google Cloud Platform Support)' via 
> Google App Engine > wrote:
>
> Hello Joshua,
>
> The error message you provided indicates that the domain is currently in 
> use by some other project. You can add custom domains 
> 
>  
> using the Cloud Console, the Cloud SDK or through the App Engine APIs. In 
> your particular case, the best way to re-add the domain to this particular 
> project is to use the App Engine APIs since it gives you the additional 
> option to override any existing mappings for the domain in question 
> (assuming, of course, that the domain ownership has already been verified 
> via the Webmaster Central portal 
> 
> ).
>
> Here’s a brief set of instructions on how to use the API: 
> 1. Visit the API Explorer 
> 
>  
> and authorize OAuth requests to be performed for your account
> 2. Enter your App ID under appsId, set overrideStrategy to OVERRIDE, and 
> provide the domain in the body request as an “id” property. 
>
> You can enable SSL support afterwards in the Cloud Console by going to App 
> Engine > Settings > Custom Domains, selecting the domain in question and 
> clicking on “Enable managed security”.
>
> As for the G Suite mapping, in order to remove a primary domain in the 
> Admin Console, a second one has to be added and verified first. Then you 
> can make the newly added domain your secondary, and later remove the 
> original domain. This operation can cause issues with some G Suite services 
> though, so I would suggest going for the API and Cloud Shell routes first. 
>
>
>
>
> On Tuesday, January 8, 2019 at 10:38:11 AM UTC-5, Joshua Smith wrote:
>>
>> I have a site that I set up ages ago, back when you had to have gsuite to 
>> map domains to google app engine.
>>
>> On the GSuite console, it redirects the naked domain to www, as one did 
>> back then. The redirect monkey is stupid, though, in that it discards the 
>> path part of the URL.
>>
>> Now I’d like to support the naked domain directly on GAE, but it won’t 
>> let me because it says that the naked domain is already being used.
>>
>> I can’t remove the mapping in gsuite, because there’s no button to remove 
>> it. Only a button to change it (and there’s no “delete” option there).
>>
>> Helpful screenshots attached.
>>
>> Has anybody who’s been around forever like me managed to make the 
>> transition to modern naked domains successfully?
>>
>> -Joshua
>>
>>
>>
> -- 
> You received this message because you are subscribed to the Google Groups 
> "Google App Engine" group.
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to google-appengi...@googlegroups.com .
> To post to this group, send email to google-a...@googlegroups.com 
> .
> Visit this group at https://groups.google.com/group/google-appengine.
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/google-appengine/d6900f1f-88e5-4008-8f1f-62c55502f51c%40googlegroups.com
>  
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at https://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/36557851-ddd0-4635-8894-974598ae2ed1%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: How to connect Firebase Database from GOogle App engine

2019-01-18 Thread 'Cristian (Google Cloud Platform Support)' via Google App Engine
If you find any documentation confusing or not clear enough, you could 
click the “Send feedback” link located at the top right corner of most 
documentation pages for the Documentation team to take note and bring 
further improvements to these pages.


On Wednesday, January 16, 2019 at 2:51:29 AM UTC-5, Linus Larsen wrote:
>
> Ok, I think I got it now. With an app engine project using Cloud Datastore 
> there is no way to create a firestore database, e.g the new firebase 
> database. However
> it's possible to create the old firebase database (aka real time 
> database). Very confusing.
>
>  
>
> Den måndag 14 januari 2019 kl. 15:44:18 UTC+1 skrev Linus Larsen:
>>
>> So basically what you are telling me is there is no way for me to get FCM 
>> messaging working with my existing app engine project that I have been 
>> running
>> for more or less 4 years now?
>>
>> I tried the Firebase Admin SDK for java, but I cannot initialise the 
>> library since I need a database name, I cannot create a Firebase database 
>> since I use Cloud Datastore.
>>
>> Creating a new Project, migrate all my services, payment infoetc, is 
>> a bit overkill just to get push notifications to my mobile clients to 
>> continue work as expected.
>>
>>
>>
>>
>>
>> Den måndag 14 januari 2019 kl. 15:20:00 UTC+1 skrev George (Cloud 
>> Platform Support):
>>>
>>> Hi Linus, 
>>>
>>> You are indeed missing the fact that one can't as yet use Datastore and 
>>> Firestore in the same project, one needs to choose at the start which 
>>> functionality and features suit one's project better. The way you migrate 
>>> from Cloud Messaging to FCM seems a separate issue. You may find related 
>>> details, and an FAQ list on the "GCM and FCM Frequently Asked Questions" 
>>> documentation page . 
>>>
>>

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at https://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/e0764869-a98d-4820-bc39-52e7050aa912%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.