Elenca gruppi di quota
Mantieni tutto organizzato con le raccolte
Salva e classifica i contenuti in base alle tue preferenze.
Utilizza questo esempio per elencare i gruppi di quote.
cURL
curl --location 'https://css.googleapis.com/v1/accounts/1234567/quotas' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer <API_TOKEN>'
Java
// Copyright 2025 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package shopping.css.samples.v1.quota;
import com.google.api.gax.core.FixedCredentialsProvider;
import com.google.auth.oauth2.GoogleCredentials;
import com.google.shopping.css.v1.ListQuotaGroupsRequest;
import com.google.shopping.css.v1.QuotaGroup;
import com.google.shopping.css.v1.QuotaServiceClient;
import com.google.shopping.css.v1.QuotaServiceClient.ListQuotaGroupsPagedResponse;
import com.google.shopping.css.v1.QuotaServiceSettings;
import shopping.css.samples.utils.Authenticator;
import shopping.css.samples.utils.Config;
/** This class demonstrates how to list quota groups for a given Account */
public class ListQuotaGroups {
private static String getParent(String domainId) {
return String.format("accounts/%s", domainId);
}
public static void listQuotaGroups(Config config) throws Exception {
GoogleCredentials credential = new Authenticator().authenticate();
QuotaServiceSettings quotaServiceSettings =
QuotaServiceSettings.newBuilder()
.setCredentialsProvider(FixedCredentialsProvider.create(credential))
.build();
String parent = getParent(config.getDomainId().toString());
try (QuotaServiceClient quotaServiceClient = QuotaServiceClient.create(quotaServiceSettings)) {
ListQuotaGroupsRequest request =
ListQuotaGroupsRequest.newBuilder().setParent(parent).build();
System.out.println("Sending ListQuotaGroups request");
ListQuotaGroupsPagedResponse response = quotaServiceClient.listQuotaGroups(request);
System.out.println("Retrieved QuotaGroups: ");
int count = 0;
// Iterates over all rows in all pages and prints the element in each row
for (QuotaGroup element : response.iterateAll()) {
System.out.println(element);
count++;
}
System.out.print("The following count of elements were returned: ");
System.out.println(count);
} catch (Exception e) {
System.out.println(e);
}
}
public static void main(String[] args) throws Exception {
final Config config = Config.load();
listQuotaGroups(config);
}
}
Salvo quando diversamente specificato, i contenuti di questa pagina sono concessi in base alla licenza Creative Commons Attribution 4.0, mentre gli esempi di codice sono concessi in base alla licenza Apache 2.0. Per ulteriori dettagli, consulta le norme del sito di Google Developers. Java è un marchio registrato di Oracle e/o delle sue consociate.
Ultimo aggiornamento 2025-07-25 UTC.
[null,null,["Ultimo aggiornamento 2025-07-25 UTC."],[],[],null,["# List Quota Groups\n\nUse this sample to list Quota Groups. \n\n### cURL\n\n curl --location 'https://css.googleapis.com/v1/accounts/1234567/quotas' \\\n --header 'Content-Type: application/json' \\\n --header 'Authorization: Bearer \u003cAPI_TOKEN\u003e'\n\n### Java\n\n // Copyright 2025 Google LLC\n //\n // Licensed under the Apache License, Version 2.0 (the \"License\");\n // you may not use this file except in compliance with the License.\n // You may obtain a copy of the License at\n //\n // https://www.apache.org/licenses/LICENSE-2.0\n //\n // Unless required by applicable law or agreed to in writing, software\n // distributed under the License is distributed on an \"AS IS\" BASIS,\n // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n // See the License for the specific language governing permissions and\n // limitations under the License.\n\n package shopping.css.samples.v1.quota;\n\n import com.google.api.gax.core.FixedCredentialsProvider;\n import com.google.auth.oauth2.GoogleCredentials;\n import com.google.shopping.css.v1.ListQuotaGroupsRequest;\n import com.google.shopping.css.v1.QuotaGroup;\n import com.google.shopping.css.v1.QuotaServiceClient;\n import com.google.shopping.css.v1.QuotaServiceClient.ListQuotaGroupsPagedResponse;\n import com.google.shopping.css.v1.QuotaServiceSettings;\n import shopping.css.samples.utils.Authenticator;\n import shopping.css.samples.utils.Config;\n\n /** This class demonstrates how to list quota groups for a given Account */\n public class ListQuotaGroups {\n\n private static String getParent(String domainId) {\n return String.format(\"accounts/%s\", domainId);\n }\n\n public static void listQuotaGroups(Config config) throws Exception {\n GoogleCredentials credential = new Authenticator().authenticate();\n\n QuotaServiceSettings quotaServiceSettings =\n QuotaServiceSettings.newBuilder()\n .setCredentialsProvider(FixedCredentialsProvider.create(credential))\n .build();\n\n String parent = getParent(config.getDomainId().toString());\n\n try (QuotaServiceClient quotaServiceClient = QuotaServiceClient.create(quotaServiceSettings)) {\n\n ListQuotaGroupsRequest request =\n ListQuotaGroupsRequest.newBuilder().setParent(parent).build();\n\n System.out.println(\"Sending ListQuotaGroups request\");\n ListQuotaGroupsPagedResponse response = quotaServiceClient.listQuotaGroups(request);\n System.out.println(\"Retrieved QuotaGroups: \");\n\n int count = 0;\n\n // Iterates over all rows in all pages and prints the element in each row\n for (QuotaGroup element : response.iterateAll()) {\n System.out.println(element);\n count++;\n }\n System.out.print(\"The following count of elements were returned: \");\n System.out.println(count);\n } catch (Exception e) {\n System.out.println(e);\n }\n }\n\n public static void main(String[] args) throws Exception {\n final Config config = Config.load();\n\n listQuotaGroups(config);\n }\n } \n https://github.com/googleads/comparison-shopping-service-api-samples/blob/2f511c3ca413bdbd497f89ae7468b3191dafaa6d/java/src/main/java/shopping/css/samples/v1/quota/ListQuotaGroups.java"]]