You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Use export APIGEECLI_DEBUG=true for better debugging info.
ISSUE 1: local fix
--help for --folder is incorrect
Shows: folder containing API proxy bundles
Should be: folder containing organization resources
ISSUE 2: local fix to use org__kvms.json
org level KVM export creates file name: $ORG__kvms.json
import incorrectly builds kvm file name: org_$ORG__kvms.json
Export uses: $ORG_kvms.json
For export - import need to cp ${EXPORT_ORG}__kvms.json ${IMPORT_ORG}__kvms.json
Or better org__kvms.json for both export and import
For envs we use $ENV__kvms.json
ISSUE 3: local fix except for operations completions
Import of environment level KVMs not working due to incorrect file names.
When importing envs, need to wait to operations complete before moving on to import env resources.
As a work around import environments first and wait.
ISSUE 5: - fixed
Cannot import apps belonging to developers with "+" in email: "[email protected]"
Needed to url.QueryEscape email when deleting auto created key.
For example, during apps import
ERROR: 2024/05/23 07:16:39 apps.go:498: Not found - the server cannot find the requested resource
{
"error": {
"code": 404,
"message": "DeveloperId kurtkanaskie [email protected] does not exist in organization {1}",
"status": "NOT_FOUND",
"details": [
{
"@type": "type.googleapis.com/google.rpc.PreconditionFailure",
"violations": [
{
"type": "developer.service.DeveloperIdDoesNotExist",
"subject": "[2002:a17:531:970d::]:4399:bccwh16-20020a05615e091000b0026311028bd9:9805:75661:175421027",
"description": "DeveloperId kurtkanaskie [email protected] does not exist in organization {1}"
}
]
},
{
"@type": "type.googleapis.com/google.rpc.RequestInfo",
"requestId": "5668586840605940302"
}
]
}
}
The text was updated successfully, but these errors were encountered:
Use
export APIGEECLI_DEBUG=true
for better debugging info.ISSUE 1: local fix
--help for --folder is incorrect
Shows: folder containing API proxy bundles
Should be: folder containing organization resources
ISSUE 2: local fix to use
org__kvms.json
org level KVM export creates file name: $ORG__kvms.json
import incorrectly builds kvm file name: org_$ORG__kvms.json
Export uses: $ORG_kvms.json
For export - import need to
cp ${EXPORT_ORG}__kvms.json ${IMPORT_ORG}__kvms.json
Or better
org__kvms.json
for both export and importFor envs we use $ENV__kvms.json
ISSUE 3: local fix except for operations completions
Import of environment level KVMs not working due to incorrect file names.
When importing envs, need to wait to operations complete before moving on to import env resources.
As a work around import environments first and wait.
ISSUE 5: - fixed
Cannot import apps belonging to developers with "+" in email: "[email protected]"
Needed to url.QueryEscape email when deleting auto created key.
For example, during apps import
The text was updated successfully, but these errors were encountered: