ServerTemplateData interface
Stay organized with collections
Save and categorize content based on your preferences.
Represents the data in a Remote Config server template.
Signature:
export interface ServerTemplateData
Properties
Property |
Type |
Description |
conditions |
NamedCondition[] |
A list of conditions in descending order by priority. |
etag |
string |
Current Remote Config template ETag (read-only). |
parameters |
{ [key: string]: RemoteConfigParameter; } |
Map of parameter keys to their optional default values and optional conditional values. |
version |
Version |
Version information for the current Remote Config template. |
ServerTemplateData.conditions
A list of conditions in descending order by priority.
Signature:
conditions: NamedCondition[];
ServerTemplateData.etag
Current Remote Config template ETag (read-only).
Signature:
readonly etag: string;
ServerTemplateData.parameters
Map of parameter keys to their optional default values and optional conditional values.
Signature:
parameters: {
[key: string]: RemoteConfigParameter;
};
ServerTemplateData.version
Version information for the current Remote Config template.
Signature:
version?: Version;
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2024-04-16 UTC.
[null,null,["Last updated 2024-04-16 UTC."],[],[],null,["Represents the data in a Remote Config server template.\n\n**Signature:** \n\n export interface ServerTemplateData \n\nProperties\n\nServerTemplateData.conditions\n\nA list of conditions in descending order by priority.\n\n**Signature:** \n\n conditions: NamedCondition[];\n\nServerTemplateData.etag\n\nCurrent Remote Config template ETag (read-only).\n\n**Signature:** \n\n readonly etag: string;\n\nServerTemplateData.parameters\n\nMap of parameter keys to their optional default values and optional conditional values.\n\n**Signature:** \n\n parameters: {\n [key: string]: RemoteConfigParameter;\n };\n\nServerTemplateData.version\n\nVersion information for the current Remote Config template.\n\n**Signature:** \n\n version?: Version;"]]