@googleapis/servicenetworking 12.0.0 → 12.2.0

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/build/v1beta.d.ts CHANGED
@@ -534,6 +534,10 @@ export declare namespace servicenetworking_v1beta {
534
534
  * The service controller environment to use. If empty, no control plane feature (like quota and billing) will be enabled. The recommended value for most services is servicecontrol.googleapis.com
535
535
  */
536
536
  environment?: string | null;
537
+ /**
538
+ * Defines policies applying to the API methods of the service.
539
+ */
540
+ methodPolicies?: Schema$MethodPolicy[];
537
541
  }
538
542
  /**
539
543
  * Settings for C++ client libraries.
@@ -826,6 +830,23 @@ export declare namespace servicenetworking_v1beta {
826
830
  */
827
831
  typeUrl?: string | null;
828
832
  }
833
+ /**
834
+ * Google API Policy Annotation This message defines a simple API policy annotation that can be used to annotate API request and response message fields with applicable policies. One field may have multiple applicable policies that must all be satisfied before a request can be processed. This policy annotation is used to generate the overall policy that will be used for automatic runtime policy enforcement and documentation generation.
835
+ */
836
+ export interface Schema$FieldPolicy {
837
+ /**
838
+ * Specifies the required permission(s) for the resource referred to by the field. It requires the field contains a valid resource reference, and the request must pass the permission checks to proceed. For example, "resourcemanager.projects.get".
839
+ */
840
+ resourcePermission?: string | null;
841
+ /**
842
+ * Specifies the resource type for the resource referred to by the field.
843
+ */
844
+ resourceType?: string | null;
845
+ /**
846
+ * Selects one or more request or response message fields to apply this `FieldPolicy`. When a `FieldPolicy` is used in proto annotation, the selector must be left as empty. The service config generator will automatically fill the correct value. When a `FieldPolicy` is used in service config, the selector must be a comma-separated string with valid request or response field paths, such as "foo.bar" or "foo.bar,foo.baz".
847
+ */
848
+ selector?: string | null;
849
+ }
829
850
  /**
830
851
  * Represents a private connection resource. A private connection is implemented as a VPC Network Peering connection between a service producer's VPC network and a service consumer's VPC network.
831
852
  */
@@ -1119,6 +1140,19 @@ export declare namespace servicenetworking_v1beta {
1119
1140
  */
1120
1141
  syntax?: string | null;
1121
1142
  }
1143
+ /**
1144
+ * Defines policies applying to an RPC method.
1145
+ */
1146
+ export interface Schema$MethodPolicy {
1147
+ /**
1148
+ * Policies that are applicable to the request message.
1149
+ */
1150
+ requestPolicies?: Schema$FieldPolicy[];
1151
+ /**
1152
+ * Selects a method to which these policies should be enforced, for example, "google.pubsub.v1.Subscriber.CreateSubscription". Refer to selector for syntax details. NOTE: This field must not be set in the proto annotation. It will be automatically filled by the service config compiler .
1153
+ */
1154
+ selector?: string | null;
1155
+ }
1122
1156
  /**
1123
1157
  * Describes the generator configuration for a method.
1124
1158
  */
@@ -1322,7 +1356,7 @@ export declare namespace servicenetworking_v1beta {
1322
1356
  */
1323
1357
  name?: string | null;
1324
1358
  /**
1325
- * The normal response of the operation in case of success. If the original method returns no data on success, such as `Delete`, the response is `google.protobuf.Empty`. If the original method is standard `Get`/`Create`/`Update`, the response should be the resource. For other methods, the response should have the type `XxxResponse`, where `Xxx` is the original method name. For example, if the original method name is `TakeSnapshot()`, the inferred response type is `TakeSnapshotResponse`.
1359
+ * The normal, successful response of the operation. If the original method returns no data on success, such as `Delete`, the response is `google.protobuf.Empty`. If the original method is standard `Get`/`Create`/`Update`, the response should be the resource. For other methods, the response should have the type `XxxResponse`, where `Xxx` is the original method name. For example, if the original method name is `TakeSnapshot()`, the inferred response type is `TakeSnapshotResponse`.
1326
1360
  */
1327
1361
  response?: {
1328
1362
  [key: string]: any;
@@ -1401,7 +1435,7 @@ export declare namespace servicenetworking_v1beta {
1401
1435
  */
1402
1436
  member?: string | null;
1403
1437
  /**
1404
- * Required. Role to apply. Only allowlisted roles can be used at the specified granularity. The role must be one of the following: - 'roles/container.hostServiceAgentUser' applied on the shared VPC host project - 'roles/compute.securityAdmin' applied on the shared VPC host project
1438
+ * Required. Role to apply. Only allowlisted roles can be used at the specified granularity. The role must be one of the following: - 'roles/container.hostServiceAgentUser' applied on the shared VPC host project - 'roles/compute.securityAdmin' applied on the shared VPC host project - 'roles/compute.networkAdmin' applied on the shared VPC host project - 'roles/compute.xpnAdmin' applied on the shared VPC host project - 'roles/dns.admin' applied on the shared VPC host project
1405
1439
  */
1406
1440
  role?: string | null;
1407
1441
  }
@@ -1906,55 +1940,6 @@ export declare namespace servicenetworking_v1beta {
1906
1940
  constructor(context: APIRequestContext);
1907
1941
  /**
1908
1942
  * 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.
1909
- * @example
1910
- * ```js
1911
- * // Before running the sample:
1912
- * // - Enable the API at:
1913
- * // https://console.developers.google.com/apis/api/servicenetworking.googleapis.com
1914
- * // - Login into gcloud by running:
1915
- * // `$ gcloud auth application-default login`
1916
- * // - Install the npm module by running:
1917
- * // `$ npm install googleapis`
1918
- *
1919
- * const {google} = require('googleapis');
1920
- * const servicenetworking = google.servicenetworking('v1beta');
1921
- *
1922
- * async function main() {
1923
- * const auth = new google.auth.GoogleAuth({
1924
- * // Scopes can be specified either as an array or as a single, space-delimited string.
1925
- * scopes: [
1926
- * 'https://www.googleapis.com/auth/cloud-platform',
1927
- * 'https://www.googleapis.com/auth/service.management',
1928
- * ],
1929
- * });
1930
- *
1931
- * // Acquire an auth client, and bind it to all future calls
1932
- * const authClient = await auth.getClient();
1933
- * google.options({auth: authClient});
1934
- *
1935
- * // Do the magic
1936
- * const res = await servicenetworking.operations.get({
1937
- * // The name of the operation resource.
1938
- * name: 'operations/my-operation',
1939
- * });
1940
- * console.log(res.data);
1941
- *
1942
- * // Example response
1943
- * // {
1944
- * // "done": false,
1945
- * // "error": {},
1946
- * // "metadata": {},
1947
- * // "name": "my_name",
1948
- * // "response": {}
1949
- * // }
1950
- * }
1951
- *
1952
- * main().catch(e => {
1953
- * console.error(e);
1954
- * throw e;
1955
- * });
1956
- *
1957
- * ```
1958
1943
  *
1959
1944
  * @param params - Parameters for request
1960
1945
  * @param options - Optionally override request options, such as `url`, `method`, and `encoding`.
@@ -1980,70 +1965,6 @@ export declare namespace servicenetworking_v1beta {
1980
1965
  constructor(context: APIRequestContext);
1981
1966
  /**
1982
1967
  * For service producers, provisions a new subnet in a peered service's shared VPC network in the requested region and with the requested size that's expressed as a CIDR range (number of leading bits of ipV4 network mask). The method checks against the assigned allocated ranges to find a non-conflicting IP address range. The method will reuse a subnet if subsequent calls contain the same subnet name, region, and prefix length. This method will make producer's tenant project to be a shared VPC service project as needed. The response from the `get` operation will be of type `Subnetwork` if the operation successfully completes.
1983
- * @example
1984
- * ```js
1985
- * // Before running the sample:
1986
- * // - Enable the API at:
1987
- * // https://console.developers.google.com/apis/api/servicenetworking.googleapis.com
1988
- * // - Login into gcloud by running:
1989
- * // `$ gcloud auth application-default login`
1990
- * // - Install the npm module by running:
1991
- * // `$ npm install googleapis`
1992
- *
1993
- * const {google} = require('googleapis');
1994
- * const servicenetworking = google.servicenetworking('v1beta');
1995
- *
1996
- * async function main() {
1997
- * const auth = new google.auth.GoogleAuth({
1998
- * // Scopes can be specified either as an array or as a single, space-delimited string.
1999
- * scopes: [
2000
- * 'https://www.googleapis.com/auth/cloud-platform',
2001
- * 'https://www.googleapis.com/auth/service.management',
2002
- * ],
2003
- * });
2004
- *
2005
- * // Acquire an auth client, and bind it to all future calls
2006
- * const authClient = await auth.getClient();
2007
- * google.options({auth: authClient});
2008
- *
2009
- * // Do the magic
2010
- * const res = await servicenetworking.services.addSubnetwork({
2011
- * // Required. A tenant project in the service producer organization, in the following format: services/{service\}/{collection-id\}/{resource-id\}. {collection-id\} is the cloud resource collection type that represents the tenant project. Only `projects` are supported. {resource-id\} is the tenant project numeric id, such as `123456`. {service\} the name of the peering service, such as `service-peering.example.com`. This service must already be enabled in the service consumer's project.
2012
- * parent: 'services/my-service/[^/]+/[^/]+',
2013
- *
2014
- * // Request body metadata
2015
- * requestBody: {
2016
- * // request body parameters
2017
- * // {
2018
- * // "consumer": "my_consumer",
2019
- * // "consumerNetwork": "my_consumerNetwork",
2020
- * // "description": "my_description",
2021
- * // "ipPrefixLength": 0,
2022
- * // "region": "my_region",
2023
- * // "requestedAddress": "my_requestedAddress",
2024
- * // "subnetwork": "my_subnetwork",
2025
- * // "subnetworkUsers": []
2026
- * // }
2027
- * },
2028
- * });
2029
- * console.log(res.data);
2030
- *
2031
- * // Example response
2032
- * // {
2033
- * // "done": false,
2034
- * // "error": {},
2035
- * // "metadata": {},
2036
- * // "name": "my_name",
2037
- * // "response": {}
2038
- * // }
2039
- * }
2040
- *
2041
- * main().catch(e => {
2042
- * console.error(e);
2043
- * throw e;
2044
- * });
2045
- *
2046
- * ```
2047
1968
  *
2048
1969
  * @param params - Parameters for request
2049
1970
  * @param options - Optionally override request options, such as `url`, `method`, and `encoding`.
@@ -2058,64 +1979,6 @@ export declare namespace servicenetworking_v1beta {
2058
1979
  addSubnetwork(callback: BodyResponseCallback<Schema$Operation>): void;
2059
1980
  /**
2060
1981
  * Service producers can use this method to find a currently unused range within consumer allocated ranges. This returned range is not reserved, and not guaranteed to remain unused. It will validate previously provided allocated ranges, find non-conflicting sub-range of requested size (expressed in number of leading bits of ipv4 network mask, as in CIDR range notation). Operation
2061
- * @example
2062
- * ```js
2063
- * // Before running the sample:
2064
- * // - Enable the API at:
2065
- * // https://console.developers.google.com/apis/api/servicenetworking.googleapis.com
2066
- * // - Login into gcloud by running:
2067
- * // `$ gcloud auth application-default login`
2068
- * // - Install the npm module by running:
2069
- * // `$ npm install googleapis`
2070
- *
2071
- * const {google} = require('googleapis');
2072
- * const servicenetworking = google.servicenetworking('v1beta');
2073
- *
2074
- * async function main() {
2075
- * const auth = new google.auth.GoogleAuth({
2076
- * // Scopes can be specified either as an array or as a single, space-delimited string.
2077
- * scopes: [
2078
- * 'https://www.googleapis.com/auth/cloud-platform',
2079
- * 'https://www.googleapis.com/auth/service.management',
2080
- * ],
2081
- * });
2082
- *
2083
- * // Acquire an auth client, and bind it to all future calls
2084
- * const authClient = await auth.getClient();
2085
- * google.options({auth: authClient});
2086
- *
2087
- * // Do the magic
2088
- * const res = await servicenetworking.services.searchRange({
2089
- * // Required. This is in a form services/{service\}. {service\} the name of the private access management service, for example 'service-peering.example.com'.
2090
- * parent: 'services/my-service',
2091
- *
2092
- * // Request body metadata
2093
- * requestBody: {
2094
- * // request body parameters
2095
- * // {
2096
- * // "ipPrefixLength": 0,
2097
- * // "network": "my_network"
2098
- * // }
2099
- * },
2100
- * });
2101
- * console.log(res.data);
2102
- *
2103
- * // Example response
2104
- * // {
2105
- * // "done": false,
2106
- * // "error": {},
2107
- * // "metadata": {},
2108
- * // "name": "my_name",
2109
- * // "response": {}
2110
- * // }
2111
- * }
2112
- *
2113
- * main().catch(e => {
2114
- * console.error(e);
2115
- * throw e;
2116
- * });
2117
- *
2118
- * ```
2119
1982
  *
2120
1983
  * @param params - Parameters for request
2121
1984
  * @param options - Optionally override request options, such as `url`, `method`, and `encoding`.
@@ -2130,70 +1993,6 @@ export declare namespace servicenetworking_v1beta {
2130
1993
  searchRange(callback: BodyResponseCallback<Schema$Operation>): void;
2131
1994
  /**
2132
1995
  * Updates the allocated ranges that are assigned to a connection. The response from the `get` operation will be of type `Connection` if the operation successfully completes.
2133
- * @example
2134
- * ```js
2135
- * // Before running the sample:
2136
- * // - Enable the API at:
2137
- * // https://console.developers.google.com/apis/api/servicenetworking.googleapis.com
2138
- * // - Login into gcloud by running:
2139
- * // `$ gcloud auth application-default login`
2140
- * // - Install the npm module by running:
2141
- * // `$ npm install googleapis`
2142
- *
2143
- * const {google} = require('googleapis');
2144
- * const servicenetworking = google.servicenetworking('v1beta');
2145
- *
2146
- * async function main() {
2147
- * const auth = new google.auth.GoogleAuth({
2148
- * // Scopes can be specified either as an array or as a single, space-delimited string.
2149
- * scopes: [
2150
- * 'https://www.googleapis.com/auth/cloud-platform',
2151
- * 'https://www.googleapis.com/auth/service.management',
2152
- * ],
2153
- * });
2154
- *
2155
- * // Acquire an auth client, and bind it to all future calls
2156
- * const authClient = await auth.getClient();
2157
- * google.options({auth: authClient});
2158
- *
2159
- * // Do the magic
2160
- * const res = await servicenetworking.services.updateConnections({
2161
- * // If a previously defined allocated range is removed, force flag must be set to true.
2162
- * force: 'placeholder-value',
2163
- * // The service producer peering service that is managing peering connectivity for a service producer organization. For Google services that support this functionality, this is `services/servicenetworking.googleapis.com`.
2164
- * name: 'services/my-service',
2165
- * // The update mask. If this is omitted, it defaults to "*". You can only update the listed peering ranges.
2166
- * updateMask: 'placeholder-value',
2167
- *
2168
- * // Request body metadata
2169
- * requestBody: {
2170
- * // request body parameters
2171
- * // {
2172
- * // "network": "my_network",
2173
- * // "peering": "my_peering",
2174
- * // "reservedPeeringRanges": [],
2175
- * // "service": "my_service"
2176
- * // }
2177
- * },
2178
- * });
2179
- * console.log(res.data);
2180
- *
2181
- * // Example response
2182
- * // {
2183
- * // "done": false,
2184
- * // "error": {},
2185
- * // "metadata": {},
2186
- * // "name": "my_name",
2187
- * // "response": {}
2188
- * // }
2189
- * }
2190
- *
2191
- * main().catch(e => {
2192
- * console.error(e);
2193
- * throw e;
2194
- * });
2195
- *
2196
- * ```
2197
1996
  *
2198
1997
  * @param params - Parameters for request
2199
1998
  * @param options - Optionally override request options, such as `url`, `method`, and `encoding`.
@@ -2250,66 +2049,6 @@ export declare namespace servicenetworking_v1beta {
2250
2049
  constructor(context: APIRequestContext);
2251
2050
  /**
2252
2051
  * Creates a private connection that establishes a VPC Network Peering connection to a VPC network in the service producer's organization. The administrator of the service consumer's VPC network invokes this method. The administrator must assign one or more allocated IP ranges for provisioning subnetworks in the service producer's VPC network. This connection is used for all supported services in the service producer's organization, so it only needs to be invoked once. The response from the `get` operation will be of type `Connection` if the operation successfully completes.
2253
- * @example
2254
- * ```js
2255
- * // Before running the sample:
2256
- * // - Enable the API at:
2257
- * // https://console.developers.google.com/apis/api/servicenetworking.googleapis.com
2258
- * // - Login into gcloud by running:
2259
- * // `$ gcloud auth application-default login`
2260
- * // - Install the npm module by running:
2261
- * // `$ npm install googleapis`
2262
- *
2263
- * const {google} = require('googleapis');
2264
- * const servicenetworking = google.servicenetworking('v1beta');
2265
- *
2266
- * async function main() {
2267
- * const auth = new google.auth.GoogleAuth({
2268
- * // Scopes can be specified either as an array or as a single, space-delimited string.
2269
- * scopes: [
2270
- * 'https://www.googleapis.com/auth/cloud-platform',
2271
- * 'https://www.googleapis.com/auth/service.management',
2272
- * ],
2273
- * });
2274
- *
2275
- * // Acquire an auth client, and bind it to all future calls
2276
- * const authClient = await auth.getClient();
2277
- * google.options({auth: authClient});
2278
- *
2279
- * // Do the magic
2280
- * const res = await servicenetworking.services.connections.create({
2281
- * // The service that is managing peering connectivity for a service producer's organization. For Google services that support this functionality, this value is `services/servicenetworking.googleapis.com`.
2282
- * parent: 'services/my-service',
2283
- *
2284
- * // Request body metadata
2285
- * requestBody: {
2286
- * // request body parameters
2287
- * // {
2288
- * // "network": "my_network",
2289
- * // "peering": "my_peering",
2290
- * // "reservedPeeringRanges": [],
2291
- * // "service": "my_service"
2292
- * // }
2293
- * },
2294
- * });
2295
- * console.log(res.data);
2296
- *
2297
- * // Example response
2298
- * // {
2299
- * // "done": false,
2300
- * // "error": {},
2301
- * // "metadata": {},
2302
- * // "name": "my_name",
2303
- * // "response": {}
2304
- * // }
2305
- * }
2306
- *
2307
- * main().catch(e => {
2308
- * console.error(e);
2309
- * throw e;
2310
- * });
2311
- *
2312
- * ```
2313
2052
  *
2314
2053
  * @param params - Parameters for request
2315
2054
  * @param options - Optionally override request options, such as `url`, `method`, and `encoding`.
@@ -2324,53 +2063,6 @@ export declare namespace servicenetworking_v1beta {
2324
2063
  create(callback: BodyResponseCallback<Schema$Operation>): void;
2325
2064
  /**
2326
2065
  * List the private connections that are configured in a service consumer's VPC network.
2327
- * @example
2328
- * ```js
2329
- * // Before running the sample:
2330
- * // - Enable the API at:
2331
- * // https://console.developers.google.com/apis/api/servicenetworking.googleapis.com
2332
- * // - Login into gcloud by running:
2333
- * // `$ gcloud auth application-default login`
2334
- * // - Install the npm module by running:
2335
- * // `$ npm install googleapis`
2336
- *
2337
- * const {google} = require('googleapis');
2338
- * const servicenetworking = google.servicenetworking('v1beta');
2339
- *
2340
- * async function main() {
2341
- * const auth = new google.auth.GoogleAuth({
2342
- * // Scopes can be specified either as an array or as a single, space-delimited string.
2343
- * scopes: [
2344
- * 'https://www.googleapis.com/auth/cloud-platform',
2345
- * 'https://www.googleapis.com/auth/service.management',
2346
- * ],
2347
- * });
2348
- *
2349
- * // Acquire an auth client, and bind it to all future calls
2350
- * const authClient = await auth.getClient();
2351
- * google.options({auth: authClient});
2352
- *
2353
- * // Do the magic
2354
- * const res = await servicenetworking.services.connections.list({
2355
- * // The name of service consumer's VPC network that's connected with service producer network through a private connection. The network name must be in the following format: `projects/{project\}/global/networks/{network\}`. {project\} is a project number, such as in `12345` that includes the VPC service consumer's VPC network. {network\} is the name of the service consumer's VPC network.
2356
- * network: 'placeholder-value',
2357
- * // The service that is managing peering connectivity for a service producer's organization. For Google services that support this functionality, this value is `services/servicenetworking.googleapis.com`. If you specify `-` as the parameter value, all configured public peering services are listed.
2358
- * parent: 'services/my-service',
2359
- * });
2360
- * console.log(res.data);
2361
- *
2362
- * // Example response
2363
- * // {
2364
- * // "connections": []
2365
- * // }
2366
- * }
2367
- *
2368
- * main().catch(e => {
2369
- * console.error(e);
2370
- * throw e;
2371
- * });
2372
- *
2373
- * ```
2374
2066
  *
2375
2067
  * @param params - Parameters for request
2376
2068
  * @param options - Optionally override request options, such as `url`, `method`, and `encoding`.
@@ -1 +1 @@
1
- {"version":3,"file":"v1beta.js","sourceRoot":"","sources":["../v1beta.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"v1beta.js","sourceRoot":"","sources":["../v1beta.ts"],"names":[],"mappings":"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"}
package/index.ts CHANGED
@@ -37,7 +37,7 @@ export function servicenetworking(
37
37
  export function servicenetworking<
38
38
  T =
39
39
  | servicenetworking_v1.Servicenetworking
40
- | servicenetworking_v1beta.Servicenetworking
40
+ | servicenetworking_v1beta.Servicenetworking,
41
41
  >(
42
42
  this: GoogleConfigurable,
43
43
  versionOrOptions:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@googleapis/servicenetworking",
3
- "version": "12.0.0",
3
+ "version": "12.2.0",
4
4
  "description": "servicenetworking",
5
5
  "main": "build/index.js",
6
6
  "types": "build/index.d.ts",