@maxim_mazurok/gapi.client.serviceusage-v1beta1 0.0.20230605 → 0.0.20230611
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.d.ts +10 -48
- package/package.json +1 -1
- package/tests.ts +1 -1
package/index.d.ts
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
10
10
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
11
11
|
// Generated from: https://serviceusage.googleapis.com/$discovery/rest?version=v1beta1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20230611
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -26,12 +26,12 @@ declare namespace gapi.client {
|
|
|
26
26
|
interface AddEnableRulesMetadata {
|
|
27
27
|
}
|
|
28
28
|
interface AddEnableRulesResponse {
|
|
29
|
+
/** The values added to the parent consumer policy. */
|
|
30
|
+
addedValues?:
|
|
31
|
+
string[];
|
|
29
32
|
/** The parent consumer policy. It can be `projects/12345/consumerPolicies/default`, or `folders/12345/consumerPolicies/default`, or `organizations/12345/consumerPolicies/default`. */
|
|
30
33
|
parent?:
|
|
31
34
|
string;
|
|
32
|
-
/** The values added to the parent consumer policy. */
|
|
33
|
-
values?:
|
|
34
|
-
ValueInfo[];
|
|
35
35
|
}
|
|
36
36
|
interface AdminQuotaPolicy {
|
|
37
37
|
/** The cloud resource container at which the quota policy is created. The format is `{container_type}/{container_number}` */
|
|
@@ -477,6 +477,9 @@ declare namespace gapi.client {
|
|
|
477
477
|
/** A list of documentation rules that apply to individual API elements. **NOTE:** All service configuration rules follow "last one wins" order. */
|
|
478
478
|
rules?:
|
|
479
479
|
DocumentationRule[];
|
|
480
|
+
/** Specifies section and content to override boilerplate content provided by go/api-docgen. Currently overrides following sections: 1. rest.service.client_libraries */
|
|
481
|
+
sectionOverrides?:
|
|
482
|
+
Page[];
|
|
480
483
|
/**
|
|
481
484
|
* Specifies the service root url if the default one (the service name from the yaml file) is not suitable. This can be seen in any fully specified service urls as well as sections
|
|
482
485
|
* that show a base that other urls are relative to.
|
|
@@ -858,11 +861,6 @@ declare namespace gapi.client {
|
|
|
858
861
|
common?:
|
|
859
862
|
CommonLanguageSettings;
|
|
860
863
|
}
|
|
861
|
-
interface GroupValue {
|
|
862
|
-
/** The name of the value. Example: `groups/googleSerivice`. */
|
|
863
|
-
name?:
|
|
864
|
-
string;
|
|
865
|
-
}
|
|
866
864
|
interface Http {
|
|
867
865
|
/**
|
|
868
866
|
* When set to true, URL path parameters will be fully URI-decoded except in cases of single segment matches in reserved expansion, where "%2F" will be left encoded. The default
|
|
@@ -1577,6 +1575,9 @@ declare namespace gapi.client {
|
|
|
1577
1575
|
/** The parent consumer policy. It can be `projects/12345/consumerPolicies/default`, or `folders/12345/consumerPolicies/default`, or `organizations/12345/consumerPolicies/default`. */
|
|
1578
1576
|
parent?:
|
|
1579
1577
|
string;
|
|
1578
|
+
/** The values removed from the parent consumer policy. */
|
|
1579
|
+
removedValues?:
|
|
1580
|
+
string[];
|
|
1580
1581
|
}
|
|
1581
1582
|
interface RubySettings {
|
|
1582
1583
|
/** Some settings. */
|
|
@@ -1640,20 +1641,6 @@ declare namespace gapi.client {
|
|
|
1640
1641
|
uniqueId?:
|
|
1641
1642
|
string;
|
|
1642
1643
|
}
|
|
1643
|
-
interface ServiceValue {
|
|
1644
|
-
/** The DNS address at which this service is available. */
|
|
1645
|
-
dnsAddress?:
|
|
1646
|
-
string;
|
|
1647
|
-
/** The name of the value. Example: `services/storage.googleapis.com`. */
|
|
1648
|
-
name?:
|
|
1649
|
-
string;
|
|
1650
|
-
/** A link to pricing information for the service, such as https://cloud.google.com/bigquery/pricing. */
|
|
1651
|
-
pricingLink?:
|
|
1652
|
-
string;
|
|
1653
|
-
/** Terms of Service */
|
|
1654
|
-
tos?:
|
|
1655
|
-
TermsOfService[];
|
|
1656
|
-
}
|
|
1657
1644
|
interface SourceContext {
|
|
1658
1645
|
/** The path-qualified name of the .proto file that contained the associated protobuf element. For example: `"google/protobuf/source_context.proto"`. */
|
|
1659
1646
|
fileName?:
|
|
@@ -1710,14 +1697,6 @@ declare namespace gapi.client {
|
|
|
1710
1697
|
rules?:
|
|
1711
1698
|
SystemParameterRule[];
|
|
1712
1699
|
}
|
|
1713
|
-
interface TermsOfService {
|
|
1714
|
-
/** Title of the terms of service. */
|
|
1715
|
-
title?:
|
|
1716
|
-
string;
|
|
1717
|
-
/** URL/URI of the terms of service. */
|
|
1718
|
-
uri?:
|
|
1719
|
-
string;
|
|
1720
|
-
}
|
|
1721
1700
|
interface Type {
|
|
1722
1701
|
/** The source edition string, only valid when syntax is SYNTAX_EDITIONS. */
|
|
1723
1702
|
edition?:
|
|
@@ -1780,23 +1759,6 @@ declare namespace gapi.client {
|
|
|
1780
1759
|
skipServiceControl?:
|
|
1781
1760
|
boolean;
|
|
1782
1761
|
}
|
|
1783
|
-
interface ValueInfo {
|
|
1784
|
-
/** The information related to the value if it is a service group. */
|
|
1785
|
-
groupValue?:
|
|
1786
|
-
GroupValue;
|
|
1787
|
-
/** For public services, it must point to the product landing page. For private services, it should point to the internal site. For service group, it is TBD. */
|
|
1788
|
-
learnmoreLink?:
|
|
1789
|
-
string;
|
|
1790
|
-
/** The information related to the value if it is a service. */
|
|
1791
|
-
serviceValue?:
|
|
1792
|
-
ServiceValue;
|
|
1793
|
-
/** The product summary for this value. */
|
|
1794
|
-
summary?:
|
|
1795
|
-
string;
|
|
1796
|
-
/** The product title for this value. */
|
|
1797
|
-
title?:
|
|
1798
|
-
string;
|
|
1799
|
-
}
|
|
1800
1762
|
interface OperationsResource {
|
|
1801
1763
|
/** Gets the latest state of a long-running operation. Clients can use this method to poll the operation result at intervals as recommended by the API service. */
|
|
1802
1764
|
get(request?: {
|
package/package.json
CHANGED
package/tests.ts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
4
4
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
5
5
|
|
|
6
|
-
// Revision:
|
|
6
|
+
// Revision: 20230611
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|