google-apis-beyondcorp_v1alpha 0.17.0 → 0.19.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 435aaf2a09a4cb8496039f7ba02d455fc06fcb2840bbc4d8ea33ba9b939e2c42
4
- data.tar.gz: 8f6abb7b3df1ca29603a0d40b8fabb33932d88d383aba2793bf0dffb7e7311c4
3
+ metadata.gz: 1e6172855ae029bbf731c66813cc6b662fcbd967331972836c549725f012a038
4
+ data.tar.gz: fa1af30ff87eda4072a50706c3e809fa32f2580e2b3ba296c49364169262e930
5
5
  SHA512:
6
- metadata.gz: f10fd3c169dd143b3fe08126a9848834c6d4e1ae80feb0d1955e10df608a9e5da7852ca09a842cebe030231e2a41d6eb7cb45c7fedbfdf4dce5d2034819341b2
7
- data.tar.gz: 62371a003fb0aaf2eda995d5b09dc4bf354c7fa4eebbb334511e960b597ebcf04978ac358cfe4174f2fa4cf41a656dc8cf7765aee074c1eccdc182e484e6cb41
6
+ metadata.gz: 66366cf0b9920cd1dcdd9ab14f24d58b793031f091c76063046bf18797ecf83612716eac428351e07b37576314db63aeabc69a3e38a979904040d51fdb0d9dc2
7
+ data.tar.gz: cd848d9d806e3c2e7fa5b4b1a7c0bc1afad3d0611f94a2dbb3e27c56dbf407f7b86b1b5043796299a5cfc7e3ec934f5c65701485e8cd788b6fd215abf8941be9
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-beyondcorp_v1alpha
2
2
 
3
+ ### v0.19.0 (2023-05-21)
4
+
5
+ * Regenerated from discovery document revision 20230509
6
+
7
+ ### v0.18.0 (2023-05-07)
8
+
9
+ * Regenerated from discovery document revision 20230501
10
+
3
11
  ### v0.17.0 (2023-04-30)
4
12
 
5
13
  * Regenerated from discovery document revision 20230425
@@ -2121,6 +2121,391 @@ module Google
2121
2121
  end
2122
2122
  end
2123
2123
 
2124
+ # Message contains the JWT encryption information for the proxy server.
2125
+ class GoogleCloudBeyondcorpPartnerservicesV1alphaEncryptionInfo
2126
+ include Google::Apis::Core::Hashable
2127
+
2128
+ # Optional. Service Account for encryption key.
2129
+ # Corresponds to the JSON property `encryptionSaEmail`
2130
+ # @return [String]
2131
+ attr_accessor :encryption_sa_email
2132
+
2133
+ # Optional. JWK in string.
2134
+ # Corresponds to the JSON property `jwk`
2135
+ # @return [String]
2136
+ attr_accessor :jwk
2137
+
2138
+ def initialize(**args)
2139
+ update!(**args)
2140
+ end
2141
+
2142
+ # Update properties of this object
2143
+ def update!(**args)
2144
+ @encryption_sa_email = args[:encryption_sa_email] if args.key?(:encryption_sa_email)
2145
+ @jwk = args[:jwk] if args.key?(:jwk)
2146
+ end
2147
+ end
2148
+
2149
+ # Metadata associated with PartnerTenant and is provided by the Partner.
2150
+ class GoogleCloudBeyondcorpPartnerservicesV1alphaPartnerMetadata
2151
+ include Google::Apis::Core::Hashable
2152
+
2153
+ # Optional. UUID used by the Partner to refer to the PartnerTenant in their
2154
+ # internal systems.
2155
+ # Corresponds to the JSON property `partnerTenantId`
2156
+ # @return [String]
2157
+ attr_accessor :partner_tenant_id
2158
+
2159
+ def initialize(**args)
2160
+ update!(**args)
2161
+ end
2162
+
2163
+ # Update properties of this object
2164
+ def update!(**args)
2165
+ @partner_tenant_id = args[:partner_tenant_id] if args.key?(:partner_tenant_id)
2166
+ end
2167
+ end
2168
+
2169
+ # Represents the metadata of the long-running operation.
2170
+ class GoogleCloudBeyondcorpPartnerservicesV1alphaPartnerServiceOperationMetadata
2171
+ include Google::Apis::Core::Hashable
2172
+
2173
+ # Output only. API version used to start the operation.
2174
+ # Corresponds to the JSON property `apiVersion`
2175
+ # @return [String]
2176
+ attr_accessor :api_version
2177
+
2178
+ # Output only. The time the operation was created.
2179
+ # Corresponds to the JSON property `createTime`
2180
+ # @return [String]
2181
+ attr_accessor :create_time
2182
+
2183
+ # Output only. The time the operation finished running.
2184
+ # Corresponds to the JSON property `endTime`
2185
+ # @return [String]
2186
+ attr_accessor :end_time
2187
+
2188
+ # Output only. Identifies whether the caller has requested cancellation of the
2189
+ # operation. Operations that have successfully been cancelled have Operation.
2190
+ # error value with a google.rpc.Status.code of 1, corresponding to `Code.
2191
+ # CANCELLED`.
2192
+ # Corresponds to the JSON property `requestedCancellation`
2193
+ # @return [Boolean]
2194
+ attr_accessor :requested_cancellation
2195
+ alias_method :requested_cancellation?, :requested_cancellation
2196
+
2197
+ # Output only. Human-readable status of the operation, if any.
2198
+ # Corresponds to the JSON property `statusMessage`
2199
+ # @return [String]
2200
+ attr_accessor :status_message
2201
+
2202
+ # Output only. Server-defined resource path for the target of the operation.
2203
+ # Corresponds to the JSON property `target`
2204
+ # @return [String]
2205
+ attr_accessor :target
2206
+
2207
+ # Output only. Name of the verb executed by the operation.
2208
+ # Corresponds to the JSON property `verb`
2209
+ # @return [String]
2210
+ attr_accessor :verb
2211
+
2212
+ def initialize(**args)
2213
+ update!(**args)
2214
+ end
2215
+
2216
+ # Update properties of this object
2217
+ def update!(**args)
2218
+ @api_version = args[:api_version] if args.key?(:api_version)
2219
+ @create_time = args[:create_time] if args.key?(:create_time)
2220
+ @end_time = args[:end_time] if args.key?(:end_time)
2221
+ @requested_cancellation = args[:requested_cancellation] if args.key?(:requested_cancellation)
2222
+ @status_message = args[:status_message] if args.key?(:status_message)
2223
+ @target = args[:target] if args.key?(:target)
2224
+ @verb = args[:verb] if args.key?(:verb)
2225
+ end
2226
+ end
2227
+
2228
+ # Information about a BeyoncCorp Enterprise PartnerTenant.
2229
+ class GoogleCloudBeyondcorpPartnerservicesV1alphaPartnerTenant
2230
+ include Google::Apis::Core::Hashable
2231
+
2232
+ # Output only. Timestamp when the resource was created.
2233
+ # Corresponds to the JSON property `createTime`
2234
+ # @return [String]
2235
+ attr_accessor :create_time
2236
+
2237
+ # Optional. An arbitrary caller-provided name for the PartnerTenant. Cannot
2238
+ # exceed 64 characters.
2239
+ # Corresponds to the JSON property `displayName`
2240
+ # @return [String]
2241
+ attr_accessor :display_name
2242
+
2243
+ # Optional. Google group email to which the PartnerTenant is enabled.
2244
+ # Corresponds to the JSON property `googleGroupEmail`
2245
+ # @return [String]
2246
+ attr_accessor :google_group_email
2247
+
2248
+ # Optional. Google group ID to which the PartnerTenant is enabled.
2249
+ # Corresponds to the JSON property `googleGroupId`
2250
+ # @return [String]
2251
+ attr_accessor :google_group_id
2252
+
2253
+ # Output only. Unique resource name of the PartnerTenant. The name is ignored
2254
+ # when creating PartnerTenant.
2255
+ # Corresponds to the JSON property `name`
2256
+ # @return [String]
2257
+ attr_accessor :name
2258
+
2259
+ # Metadata associated with PartnerTenant and is provided by the Partner.
2260
+ # Corresponds to the JSON property `partnerMetadata`
2261
+ # @return [Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpPartnerservicesV1alphaPartnerMetadata]
2262
+ attr_accessor :partner_metadata
2263
+
2264
+ # Output only. Timestamp when the resource was last modified.
2265
+ # Corresponds to the JSON property `updateTime`
2266
+ # @return [String]
2267
+ attr_accessor :update_time
2268
+
2269
+ def initialize(**args)
2270
+ update!(**args)
2271
+ end
2272
+
2273
+ # Update properties of this object
2274
+ def update!(**args)
2275
+ @create_time = args[:create_time] if args.key?(:create_time)
2276
+ @display_name = args[:display_name] if args.key?(:display_name)
2277
+ @google_group_email = args[:google_group_email] if args.key?(:google_group_email)
2278
+ @google_group_id = args[:google_group_id] if args.key?(:google_group_id)
2279
+ @name = args[:name] if args.key?(:name)
2280
+ @partner_metadata = args[:partner_metadata] if args.key?(:partner_metadata)
2281
+ @update_time = args[:update_time] if args.key?(:update_time)
2282
+ end
2283
+ end
2284
+
2285
+ # Proxy Configuration of a Tenant.
2286
+ class GoogleCloudBeyondcorpPartnerservicesV1alphaProxyConfig
2287
+ include Google::Apis::Core::Hashable
2288
+
2289
+ # Output only. Timestamp when the resource was created.
2290
+ # Corresponds to the JSON property `createTime`
2291
+ # @return [String]
2292
+ attr_accessor :create_time
2293
+
2294
+ # Optional. An arbitrary caller-provided name for the ProxyConfig. Cannot exceed
2295
+ # 64 characters.
2296
+ # Corresponds to the JSON property `displayName`
2297
+ # @return [String]
2298
+ attr_accessor :display_name
2299
+
2300
+ # Message contains the JWT encryption information for the proxy server.
2301
+ # Corresponds to the JSON property `encryptionInfo`
2302
+ # @return [Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpPartnerservicesV1alphaEncryptionInfo]
2303
+ attr_accessor :encryption_info
2304
+
2305
+ # Output only. ProxyConfig resource name.
2306
+ # Corresponds to the JSON property `name`
2307
+ # @return [String]
2308
+ attr_accessor :name
2309
+
2310
+ # Required. The URI of the proxy server.
2311
+ # Corresponds to the JSON property `proxyUri`
2312
+ # @return [String]
2313
+ attr_accessor :proxy_uri
2314
+
2315
+ # Message contains the routing information to direct traffic to the proxy server.
2316
+ # Corresponds to the JSON property `routingInfo`
2317
+ # @return [Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpPartnerservicesV1alphaRoutingInfo]
2318
+ attr_accessor :routing_info
2319
+
2320
+ # Message contains the transport layer information to verify the proxy server.
2321
+ # Corresponds to the JSON property `transportInfo`
2322
+ # @return [Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpPartnerservicesV1alphaTransportInfo]
2323
+ attr_accessor :transport_info
2324
+
2325
+ # Output only. Timestamp when the resource was last modified.
2326
+ # Corresponds to the JSON property `updateTime`
2327
+ # @return [String]
2328
+ attr_accessor :update_time
2329
+
2330
+ def initialize(**args)
2331
+ update!(**args)
2332
+ end
2333
+
2334
+ # Update properties of this object
2335
+ def update!(**args)
2336
+ @create_time = args[:create_time] if args.key?(:create_time)
2337
+ @display_name = args[:display_name] if args.key?(:display_name)
2338
+ @encryption_info = args[:encryption_info] if args.key?(:encryption_info)
2339
+ @name = args[:name] if args.key?(:name)
2340
+ @proxy_uri = args[:proxy_uri] if args.key?(:proxy_uri)
2341
+ @routing_info = args[:routing_info] if args.key?(:routing_info)
2342
+ @transport_info = args[:transport_info] if args.key?(:transport_info)
2343
+ @update_time = args[:update_time] if args.key?(:update_time)
2344
+ end
2345
+ end
2346
+
2347
+ # Message contains the routing information to direct traffic to the proxy server.
2348
+ class GoogleCloudBeyondcorpPartnerservicesV1alphaRoutingInfo
2349
+ include Google::Apis::Core::Hashable
2350
+
2351
+ # Required. Proxy Auto-Configuration (PAC) URI.
2352
+ # Corresponds to the JSON property `pacUri`
2353
+ # @return [String]
2354
+ attr_accessor :pac_uri
2355
+
2356
+ def initialize(**args)
2357
+ update!(**args)
2358
+ end
2359
+
2360
+ # Update properties of this object
2361
+ def update!(**args)
2362
+ @pac_uri = args[:pac_uri] if args.key?(:pac_uri)
2363
+ end
2364
+ end
2365
+
2366
+ # Information about a BeyoncCorp Enterprise Tenant.
2367
+ class GoogleCloudBeyondcorpPartnerservicesV1alphaTenant
2368
+ include Google::Apis::Core::Hashable
2369
+
2370
+ # Output only. Timestamp when the resource was created.
2371
+ # Corresponds to the JSON property `createTime`
2372
+ # @return [String]
2373
+ attr_accessor :create_time
2374
+
2375
+ # Optional. An arbitrary caller-provided name for the Tenant. Cannot exceed 64
2376
+ # characters.
2377
+ # Corresponds to the JSON property `displayName`
2378
+ # @return [String]
2379
+ attr_accessor :display_name
2380
+
2381
+ # Optional. Google group email to which the Tenant is enabled.
2382
+ # Corresponds to the JSON property `googleGroupEmail`
2383
+ # @return [String]
2384
+ attr_accessor :google_group_email
2385
+
2386
+ # Optional. Google group ID to which the Tenant is enabled.
2387
+ # Corresponds to the JSON property `googleGroupId`
2388
+ # @return [String]
2389
+ attr_accessor :google_group_id
2390
+
2391
+ # Output only. Unique resource name of the Tenant. The name is ignored when
2392
+ # creating Tenant.
2393
+ # Corresponds to the JSON property `name`
2394
+ # @return [String]
2395
+ attr_accessor :name
2396
+
2397
+ # Metadata associated with PartnerTenant and is provided by the Partner.
2398
+ # Corresponds to the JSON property `partnerMetadata`
2399
+ # @return [Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpPartnerservicesV1alphaPartnerMetadata]
2400
+ attr_accessor :partner_metadata
2401
+
2402
+ # Output only. Timestamp when the resource was last modified.
2403
+ # Corresponds to the JSON property `updateTime`
2404
+ # @return [String]
2405
+ attr_accessor :update_time
2406
+
2407
+ def initialize(**args)
2408
+ update!(**args)
2409
+ end
2410
+
2411
+ # Update properties of this object
2412
+ def update!(**args)
2413
+ @create_time = args[:create_time] if args.key?(:create_time)
2414
+ @display_name = args[:display_name] if args.key?(:display_name)
2415
+ @google_group_email = args[:google_group_email] if args.key?(:google_group_email)
2416
+ @google_group_id = args[:google_group_id] if args.key?(:google_group_id)
2417
+ @name = args[:name] if args.key?(:name)
2418
+ @partner_metadata = args[:partner_metadata] if args.key?(:partner_metadata)
2419
+ @update_time = args[:update_time] if args.key?(:update_time)
2420
+ end
2421
+ end
2422
+
2423
+ # Message contains the transport layer information to verify the proxy server.
2424
+ class GoogleCloudBeyondcorpPartnerservicesV1alphaTransportInfo
2425
+ include Google::Apis::Core::Hashable
2426
+
2427
+ # Required. PEM encoded CA certificate associated with the proxy server
2428
+ # certificate.
2429
+ # Corresponds to the JSON property `serverCaCertPem`
2430
+ # @return [String]
2431
+ attr_accessor :server_ca_cert_pem
2432
+
2433
+ # Optional. PEM encoded CA certificate associated with the certificate used by
2434
+ # proxy server for SSL decryption.
2435
+ # Corresponds to the JSON property `sslDecryptCaCertPem`
2436
+ # @return [String]
2437
+ attr_accessor :ssl_decrypt_ca_cert_pem
2438
+
2439
+ def initialize(**args)
2440
+ update!(**args)
2441
+ end
2442
+
2443
+ # Update properties of this object
2444
+ def update!(**args)
2445
+ @server_ca_cert_pem = args[:server_ca_cert_pem] if args.key?(:server_ca_cert_pem)
2446
+ @ssl_decrypt_ca_cert_pem = args[:ssl_decrypt_ca_cert_pem] if args.key?(:ssl_decrypt_ca_cert_pem)
2447
+ end
2448
+ end
2449
+
2450
+ # Represents the metadata of the long-running operation.
2451
+ class GoogleCloudBeyondcorpPartnerservicesV1mainPartnerServiceOperationMetadata
2452
+ include Google::Apis::Core::Hashable
2453
+
2454
+ # Output only. API version used to start the operation.
2455
+ # Corresponds to the JSON property `apiVersion`
2456
+ # @return [String]
2457
+ attr_accessor :api_version
2458
+
2459
+ # Output only. The time the operation was created.
2460
+ # Corresponds to the JSON property `createTime`
2461
+ # @return [String]
2462
+ attr_accessor :create_time
2463
+
2464
+ # Output only. The time the operation finished running.
2465
+ # Corresponds to the JSON property `endTime`
2466
+ # @return [String]
2467
+ attr_accessor :end_time
2468
+
2469
+ # Output only. Identifies whether the caller has requested cancellation of the
2470
+ # operation. Operations that have successfully been cancelled have Operation.
2471
+ # error value with a google.rpc.Status.code of 1, corresponding to `Code.
2472
+ # CANCELLED`.
2473
+ # Corresponds to the JSON property `requestedCancellation`
2474
+ # @return [Boolean]
2475
+ attr_accessor :requested_cancellation
2476
+ alias_method :requested_cancellation?, :requested_cancellation
2477
+
2478
+ # Output only. Human-readable status of the operation, if any.
2479
+ # Corresponds to the JSON property `statusMessage`
2480
+ # @return [String]
2481
+ attr_accessor :status_message
2482
+
2483
+ # Output only. Server-defined resource path for the target of the operation.
2484
+ # Corresponds to the JSON property `target`
2485
+ # @return [String]
2486
+ attr_accessor :target
2487
+
2488
+ # Output only. Name of the verb executed by the operation.
2489
+ # Corresponds to the JSON property `verb`
2490
+ # @return [String]
2491
+ attr_accessor :verb
2492
+
2493
+ def initialize(**args)
2494
+ update!(**args)
2495
+ end
2496
+
2497
+ # Update properties of this object
2498
+ def update!(**args)
2499
+ @api_version = args[:api_version] if args.key?(:api_version)
2500
+ @create_time = args[:create_time] if args.key?(:create_time)
2501
+ @end_time = args[:end_time] if args.key?(:end_time)
2502
+ @requested_cancellation = args[:requested_cancellation] if args.key?(:requested_cancellation)
2503
+ @status_message = args[:status_message] if args.key?(:status_message)
2504
+ @target = args[:target] if args.key?(:target)
2505
+ @verb = args[:verb] if args.key?(:verb)
2506
+ end
2507
+ end
2508
+
2124
2509
  # The configuration that was applied to generate the result.
2125
2510
  class GoogleCloudBeyondcorpSaasplatformInsightsV1alphaAppliedConfig
2126
2511
  include Google::Apis::Core::Hashable
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module BeyondcorpV1alpha
18
18
  # Version of the google-apis-beyondcorp_v1alpha gem
19
- GEM_VERSION = "0.17.0"
19
+ GEM_VERSION = "0.19.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20230425"
25
+ REVISION = "20230509"
26
26
  end
27
27
  end
28
28
  end
@@ -328,6 +328,60 @@ module Google
328
328
  include Google::Apis::Core::JsonObjectSupport
329
329
  end
330
330
 
331
+ class GoogleCloudBeyondcorpPartnerservicesV1alphaEncryptionInfo
332
+ class Representation < Google::Apis::Core::JsonRepresentation; end
333
+
334
+ include Google::Apis::Core::JsonObjectSupport
335
+ end
336
+
337
+ class GoogleCloudBeyondcorpPartnerservicesV1alphaPartnerMetadata
338
+ class Representation < Google::Apis::Core::JsonRepresentation; end
339
+
340
+ include Google::Apis::Core::JsonObjectSupport
341
+ end
342
+
343
+ class GoogleCloudBeyondcorpPartnerservicesV1alphaPartnerServiceOperationMetadata
344
+ class Representation < Google::Apis::Core::JsonRepresentation; end
345
+
346
+ include Google::Apis::Core::JsonObjectSupport
347
+ end
348
+
349
+ class GoogleCloudBeyondcorpPartnerservicesV1alphaPartnerTenant
350
+ class Representation < Google::Apis::Core::JsonRepresentation; end
351
+
352
+ include Google::Apis::Core::JsonObjectSupport
353
+ end
354
+
355
+ class GoogleCloudBeyondcorpPartnerservicesV1alphaProxyConfig
356
+ class Representation < Google::Apis::Core::JsonRepresentation; end
357
+
358
+ include Google::Apis::Core::JsonObjectSupport
359
+ end
360
+
361
+ class GoogleCloudBeyondcorpPartnerservicesV1alphaRoutingInfo
362
+ class Representation < Google::Apis::Core::JsonRepresentation; end
363
+
364
+ include Google::Apis::Core::JsonObjectSupport
365
+ end
366
+
367
+ class GoogleCloudBeyondcorpPartnerservicesV1alphaTenant
368
+ class Representation < Google::Apis::Core::JsonRepresentation; end
369
+
370
+ include Google::Apis::Core::JsonObjectSupport
371
+ end
372
+
373
+ class GoogleCloudBeyondcorpPartnerservicesV1alphaTransportInfo
374
+ class Representation < Google::Apis::Core::JsonRepresentation; end
375
+
376
+ include Google::Apis::Core::JsonObjectSupport
377
+ end
378
+
379
+ class GoogleCloudBeyondcorpPartnerservicesV1mainPartnerServiceOperationMetadata
380
+ class Representation < Google::Apis::Core::JsonRepresentation; end
381
+
382
+ include Google::Apis::Core::JsonObjectSupport
383
+ end
384
+
331
385
  class GoogleCloudBeyondcorpSaasplatformInsightsV1alphaAppliedConfig
332
386
  class Representation < Google::Apis::Core::JsonRepresentation; end
333
387
 
@@ -1135,6 +1189,107 @@ module Google
1135
1189
  end
1136
1190
  end
1137
1191
 
1192
+ class GoogleCloudBeyondcorpPartnerservicesV1alphaEncryptionInfo
1193
+ # @private
1194
+ class Representation < Google::Apis::Core::JsonRepresentation
1195
+ property :encryption_sa_email, as: 'encryptionSaEmail'
1196
+ property :jwk, as: 'jwk'
1197
+ end
1198
+ end
1199
+
1200
+ class GoogleCloudBeyondcorpPartnerservicesV1alphaPartnerMetadata
1201
+ # @private
1202
+ class Representation < Google::Apis::Core::JsonRepresentation
1203
+ property :partner_tenant_id, as: 'partnerTenantId'
1204
+ end
1205
+ end
1206
+
1207
+ class GoogleCloudBeyondcorpPartnerservicesV1alphaPartnerServiceOperationMetadata
1208
+ # @private
1209
+ class Representation < Google::Apis::Core::JsonRepresentation
1210
+ property :api_version, as: 'apiVersion'
1211
+ property :create_time, as: 'createTime'
1212
+ property :end_time, as: 'endTime'
1213
+ property :requested_cancellation, as: 'requestedCancellation'
1214
+ property :status_message, as: 'statusMessage'
1215
+ property :target, as: 'target'
1216
+ property :verb, as: 'verb'
1217
+ end
1218
+ end
1219
+
1220
+ class GoogleCloudBeyondcorpPartnerservicesV1alphaPartnerTenant
1221
+ # @private
1222
+ class Representation < Google::Apis::Core::JsonRepresentation
1223
+ property :create_time, as: 'createTime'
1224
+ property :display_name, as: 'displayName'
1225
+ property :google_group_email, as: 'googleGroupEmail'
1226
+ property :google_group_id, as: 'googleGroupId'
1227
+ property :name, as: 'name'
1228
+ property :partner_metadata, as: 'partnerMetadata', class: Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpPartnerservicesV1alphaPartnerMetadata, decorator: Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpPartnerservicesV1alphaPartnerMetadata::Representation
1229
+
1230
+ property :update_time, as: 'updateTime'
1231
+ end
1232
+ end
1233
+
1234
+ class GoogleCloudBeyondcorpPartnerservicesV1alphaProxyConfig
1235
+ # @private
1236
+ class Representation < Google::Apis::Core::JsonRepresentation
1237
+ property :create_time, as: 'createTime'
1238
+ property :display_name, as: 'displayName'
1239
+ property :encryption_info, as: 'encryptionInfo', class: Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpPartnerservicesV1alphaEncryptionInfo, decorator: Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpPartnerservicesV1alphaEncryptionInfo::Representation
1240
+
1241
+ property :name, as: 'name'
1242
+ property :proxy_uri, as: 'proxyUri'
1243
+ property :routing_info, as: 'routingInfo', class: Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpPartnerservicesV1alphaRoutingInfo, decorator: Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpPartnerservicesV1alphaRoutingInfo::Representation
1244
+
1245
+ property :transport_info, as: 'transportInfo', class: Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpPartnerservicesV1alphaTransportInfo, decorator: Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpPartnerservicesV1alphaTransportInfo::Representation
1246
+
1247
+ property :update_time, as: 'updateTime'
1248
+ end
1249
+ end
1250
+
1251
+ class GoogleCloudBeyondcorpPartnerservicesV1alphaRoutingInfo
1252
+ # @private
1253
+ class Representation < Google::Apis::Core::JsonRepresentation
1254
+ property :pac_uri, as: 'pacUri'
1255
+ end
1256
+ end
1257
+
1258
+ class GoogleCloudBeyondcorpPartnerservicesV1alphaTenant
1259
+ # @private
1260
+ class Representation < Google::Apis::Core::JsonRepresentation
1261
+ property :create_time, as: 'createTime'
1262
+ property :display_name, as: 'displayName'
1263
+ property :google_group_email, as: 'googleGroupEmail'
1264
+ property :google_group_id, as: 'googleGroupId'
1265
+ property :name, as: 'name'
1266
+ property :partner_metadata, as: 'partnerMetadata', class: Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpPartnerservicesV1alphaPartnerMetadata, decorator: Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpPartnerservicesV1alphaPartnerMetadata::Representation
1267
+
1268
+ property :update_time, as: 'updateTime'
1269
+ end
1270
+ end
1271
+
1272
+ class GoogleCloudBeyondcorpPartnerservicesV1alphaTransportInfo
1273
+ # @private
1274
+ class Representation < Google::Apis::Core::JsonRepresentation
1275
+ property :server_ca_cert_pem, as: 'serverCaCertPem'
1276
+ property :ssl_decrypt_ca_cert_pem, as: 'sslDecryptCaCertPem'
1277
+ end
1278
+ end
1279
+
1280
+ class GoogleCloudBeyondcorpPartnerservicesV1mainPartnerServiceOperationMetadata
1281
+ # @private
1282
+ class Representation < Google::Apis::Core::JsonRepresentation
1283
+ property :api_version, as: 'apiVersion'
1284
+ property :create_time, as: 'createTime'
1285
+ property :end_time, as: 'endTime'
1286
+ property :requested_cancellation, as: 'requestedCancellation'
1287
+ property :status_message, as: 'statusMessage'
1288
+ property :target, as: 'target'
1289
+ property :verb, as: 'verb'
1290
+ end
1291
+ end
1292
+
1138
1293
  class GoogleCloudBeyondcorpSaasplatformInsightsV1alphaAppliedConfig
1139
1294
  # @private
1140
1295
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -52,6 +52,243 @@ module Google
52
52
  @batch_path = 'batch'
53
53
  end
54
54
 
55
+ # Creates a new BeyondCorp Enterprise partnerTenant in a given organization and
56
+ # can only be called by onboarded BeyondCorp Enterprise partner.
57
+ # @param [String] parent
58
+ # Required. The resource name of the PartnerTenant using the form: `
59
+ # organizations/`organization_id`/locations/global`
60
+ # @param [Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpPartnerservicesV1alphaPartnerTenant] google_cloud_beyondcorp_partnerservices_v1alpha_partner_tenant_object
61
+ # @param [String] request_id
62
+ # Optional. An optional request ID to identify requests. Specify a unique
63
+ # request ID so that if you must retry your request, the server will know to
64
+ # ignore the request if it has already been completed. The server will guarantee
65
+ # that for at least 60 minutes since the first request. For example, consider a
66
+ # situation where you make an initial request and the request times out. If you
67
+ # make the request again with the same request ID, the server can check if
68
+ # original operation with the same request ID was received, and if so, will
69
+ # ignore the second request. This prevents clients from accidentally creating
70
+ # duplicate commitments. The request ID must be a valid UUID with the exception
71
+ # that zero UUID is not supported (00000000-0000-0000-0000-000000000000).
72
+ # @param [String] fields
73
+ # Selector specifying which fields to include in a partial response.
74
+ # @param [String] quota_user
75
+ # Available to use for quota purposes for server-side applications. Can be any
76
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
77
+ # @param [Google::Apis::RequestOptions] options
78
+ # Request-specific options
79
+ #
80
+ # @yield [result, err] Result & error if block supplied
81
+ # @yieldparam result [Google::Apis::BeyondcorpV1alpha::GoogleLongrunningOperation] parsed result object
82
+ # @yieldparam err [StandardError] error object if request failed
83
+ #
84
+ # @return [Google::Apis::BeyondcorpV1alpha::GoogleLongrunningOperation]
85
+ #
86
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
87
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
88
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
89
+ def create_organization_location_global_partner_tenant(parent, google_cloud_beyondcorp_partnerservices_v1alpha_partner_tenant_object = nil, request_id: nil, fields: nil, quota_user: nil, options: nil, &block)
90
+ command = make_simple_command(:post, 'v1alpha/{+parent}/partnerTenants', options)
91
+ command.request_representation = Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpPartnerservicesV1alphaPartnerTenant::Representation
92
+ command.request_object = google_cloud_beyondcorp_partnerservices_v1alpha_partner_tenant_object
93
+ command.response_representation = Google::Apis::BeyondcorpV1alpha::GoogleLongrunningOperation::Representation
94
+ command.response_class = Google::Apis::BeyondcorpV1alpha::GoogleLongrunningOperation
95
+ command.params['parent'] = parent unless parent.nil?
96
+ command.query['requestId'] = request_id unless request_id.nil?
97
+ command.query['fields'] = fields unless fields.nil?
98
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
99
+ execute_or_queue_command(command, &block)
100
+ end
101
+
102
+ # Gets details of a single PartnerTenant.
103
+ # @param [String] name
104
+ # Required. The resource name of the PartnerTenant using the form: `
105
+ # organizations/`organization_id`/locations/global/partnerTenants/`
106
+ # partner_tenant_id``
107
+ # @param [String] fields
108
+ # Selector specifying which fields to include in a partial response.
109
+ # @param [String] quota_user
110
+ # Available to use for quota purposes for server-side applications. Can be any
111
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
112
+ # @param [Google::Apis::RequestOptions] options
113
+ # Request-specific options
114
+ #
115
+ # @yield [result, err] Result & error if block supplied
116
+ # @yieldparam result [Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpPartnerservicesV1alphaPartnerTenant] parsed result object
117
+ # @yieldparam err [StandardError] error object if request failed
118
+ #
119
+ # @return [Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpPartnerservicesV1alphaPartnerTenant]
120
+ #
121
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
122
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
123
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
124
+ def get_organization_location_global_partner_tenant(name, fields: nil, quota_user: nil, options: nil, &block)
125
+ command = make_simple_command(:get, 'v1alpha/{+name}', options)
126
+ command.response_representation = Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpPartnerservicesV1alphaPartnerTenant::Representation
127
+ command.response_class = Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpPartnerservicesV1alphaPartnerTenant
128
+ command.params['name'] = name unless name.nil?
129
+ command.query['fields'] = fields unless fields.nil?
130
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
131
+ execute_or_queue_command(command, &block)
132
+ end
133
+
134
+ # Creates a new BeyondCorp Enterprise tenant in a given organization and can
135
+ # only be called by onboarded BeyondCorp Enterprise partner.
136
+ # @param [String] parent
137
+ # Required. The resource name of the Tenant using the form: `organizations/`
138
+ # organization_id`/locations/global`
139
+ # @param [Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpPartnerservicesV1alphaTenant] google_cloud_beyondcorp_partnerservices_v1alpha_tenant_object
140
+ # @param [String] request_id
141
+ # Optional. An optional request ID to identify requests. Specify a unique
142
+ # request ID so that if you must retry your request, the server will know to
143
+ # ignore the request if it has already been completed. The server will guarantee
144
+ # that for at least 60 minutes since the first request. For example, consider a
145
+ # situation where you make an initial request and the request times out. If you
146
+ # make the request again with the same request ID, the server can check if
147
+ # original operation with the same request ID was received, and if so, will
148
+ # ignore the second request. This prevents clients from accidentally creating
149
+ # duplicate commitments. The request ID must be a valid UUID with the exception
150
+ # that zero UUID is not supported (00000000-0000-0000-0000-000000000000).
151
+ # @param [String] fields
152
+ # Selector specifying which fields to include in a partial response.
153
+ # @param [String] quota_user
154
+ # Available to use for quota purposes for server-side applications. Can be any
155
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
156
+ # @param [Google::Apis::RequestOptions] options
157
+ # Request-specific options
158
+ #
159
+ # @yield [result, err] Result & error if block supplied
160
+ # @yieldparam result [Google::Apis::BeyondcorpV1alpha::GoogleLongrunningOperation] parsed result object
161
+ # @yieldparam err [StandardError] error object if request failed
162
+ #
163
+ # @return [Google::Apis::BeyondcorpV1alpha::GoogleLongrunningOperation]
164
+ #
165
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
166
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
167
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
168
+ def create_organization_location_global_tenant(parent, google_cloud_beyondcorp_partnerservices_v1alpha_tenant_object = nil, request_id: nil, fields: nil, quota_user: nil, options: nil, &block)
169
+ command = make_simple_command(:post, 'v1alpha/{+parent}/tenants', options)
170
+ command.request_representation = Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpPartnerservicesV1alphaTenant::Representation
171
+ command.request_object = google_cloud_beyondcorp_partnerservices_v1alpha_tenant_object
172
+ command.response_representation = Google::Apis::BeyondcorpV1alpha::GoogleLongrunningOperation::Representation
173
+ command.response_class = Google::Apis::BeyondcorpV1alpha::GoogleLongrunningOperation
174
+ command.params['parent'] = parent unless parent.nil?
175
+ command.query['requestId'] = request_id unless request_id.nil?
176
+ command.query['fields'] = fields unless fields.nil?
177
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
178
+ execute_or_queue_command(command, &block)
179
+ end
180
+
181
+ # Gets details of a single Tenant.
182
+ # @param [String] name
183
+ # Required. The resource name of the Tenant using the form: `organizations/`
184
+ # organization_id`/locations/global/tenants/`tenant_id``
185
+ # @param [String] fields
186
+ # Selector specifying which fields to include in a partial response.
187
+ # @param [String] quota_user
188
+ # Available to use for quota purposes for server-side applications. Can be any
189
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
190
+ # @param [Google::Apis::RequestOptions] options
191
+ # Request-specific options
192
+ #
193
+ # @yield [result, err] Result & error if block supplied
194
+ # @yieldparam result [Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpPartnerservicesV1alphaTenant] parsed result object
195
+ # @yieldparam err [StandardError] error object if request failed
196
+ #
197
+ # @return [Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpPartnerservicesV1alphaTenant]
198
+ #
199
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
200
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
201
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
202
+ def get_organization_location_global_tenant(name, fields: nil, quota_user: nil, options: nil, &block)
203
+ command = make_simple_command(:get, 'v1alpha/{+name}', options)
204
+ command.response_representation = Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpPartnerservicesV1alphaTenant::Representation
205
+ command.response_class = Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpPartnerservicesV1alphaTenant
206
+ command.params['name'] = name unless name.nil?
207
+ command.query['fields'] = fields unless fields.nil?
208
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
209
+ execute_or_queue_command(command, &block)
210
+ end
211
+
212
+ # Creates a new BeyondCorp Enterprise ProxyConfiguration in a given organization
213
+ # and PartnerTenant. Can only be called by on onboarded Beyondcorp Enterprise
214
+ # partner.
215
+ # @param [String] parent
216
+ # Required. The resource name of the ProxyConfig using the form: `organizations/`
217
+ # organization_id`/locations/global/tenants/`tenant_id``
218
+ # @param [Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpPartnerservicesV1alphaProxyConfig] google_cloud_beyondcorp_partnerservices_v1alpha_proxy_config_object
219
+ # @param [String] request_id
220
+ # Optional. An optional request ID to identify requests. Specify a unique
221
+ # request ID so that if you must retry your request, the server will know to
222
+ # ignore the request if it has already been completed. The server will guarantee
223
+ # that for at least 60 minutes since the first request. For example, consider a
224
+ # situation where you make an initial request and the request times out. If you
225
+ # make the request again with the same request ID, the server can check if
226
+ # original operation with the same request ID was received, and if so, will
227
+ # ignore the second request. This prevents clients from accidentally creating
228
+ # duplicate commitments. The request ID must be a valid UUID with the exception
229
+ # that zero UUID is not supported (00000000-0000-0000-0000-000000000000).
230
+ # @param [String] fields
231
+ # Selector specifying which fields to include in a partial response.
232
+ # @param [String] quota_user
233
+ # Available to use for quota purposes for server-side applications. Can be any
234
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
235
+ # @param [Google::Apis::RequestOptions] options
236
+ # Request-specific options
237
+ #
238
+ # @yield [result, err] Result & error if block supplied
239
+ # @yieldparam result [Google::Apis::BeyondcorpV1alpha::GoogleLongrunningOperation] parsed result object
240
+ # @yieldparam err [StandardError] error object if request failed
241
+ #
242
+ # @return [Google::Apis::BeyondcorpV1alpha::GoogleLongrunningOperation]
243
+ #
244
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
245
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
246
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
247
+ def create_organization_location_global_tenant_proxy_config(parent, google_cloud_beyondcorp_partnerservices_v1alpha_proxy_config_object = nil, request_id: nil, fields: nil, quota_user: nil, options: nil, &block)
248
+ command = make_simple_command(:post, 'v1alpha/{+parent}/proxyConfigs', options)
249
+ command.request_representation = Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpPartnerservicesV1alphaProxyConfig::Representation
250
+ command.request_object = google_cloud_beyondcorp_partnerservices_v1alpha_proxy_config_object
251
+ command.response_representation = Google::Apis::BeyondcorpV1alpha::GoogleLongrunningOperation::Representation
252
+ command.response_class = Google::Apis::BeyondcorpV1alpha::GoogleLongrunningOperation
253
+ command.params['parent'] = parent unless parent.nil?
254
+ command.query['requestId'] = request_id unless request_id.nil?
255
+ command.query['fields'] = fields unless fields.nil?
256
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
257
+ execute_or_queue_command(command, &block)
258
+ end
259
+
260
+ # Gets details of a single ProxyConfig.
261
+ # @param [String] name
262
+ # Required. The resource name of the Tenant using the form: `organizations/`
263
+ # organization_id`/locations/global/tenants/`tenant_id`/proxyConfigs/`
264
+ # proxy_config_id``
265
+ # @param [String] fields
266
+ # Selector specifying which fields to include in a partial response.
267
+ # @param [String] quota_user
268
+ # Available to use for quota purposes for server-side applications. Can be any
269
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
270
+ # @param [Google::Apis::RequestOptions] options
271
+ # Request-specific options
272
+ #
273
+ # @yield [result, err] Result & error if block supplied
274
+ # @yieldparam result [Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpPartnerservicesV1alphaProxyConfig] parsed result object
275
+ # @yieldparam err [StandardError] error object if request failed
276
+ #
277
+ # @return [Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpPartnerservicesV1alphaProxyConfig]
278
+ #
279
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
280
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
281
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
282
+ def get_organization_location_global_tenant_proxy_config(name, fields: nil, quota_user: nil, options: nil, &block)
283
+ command = make_simple_command(:get, 'v1alpha/{+name}', options)
284
+ command.response_representation = Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpPartnerservicesV1alphaProxyConfig::Representation
285
+ command.response_class = Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpPartnerservicesV1alphaProxyConfig
286
+ command.params['name'] = name unless name.nil?
287
+ command.query['fields'] = fields unless fields.nil?
288
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
289
+ execute_or_queue_command(command, &block)
290
+ end
291
+
55
292
  # Gets the value for a selected particular insight based on the provided filters.
56
293
  # Use the organization level path for fetching at org level and project level
57
294
  # path for fetching the insight value specific to a particular project.
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-beyondcorp_v1alpha
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.17.0
4
+ version: 0.19.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-04-30 00:00:00.000000000 Z
11
+ date: 2023-05-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -58,7 +58,7 @@ licenses:
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
60
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-beyondcorp_v1alpha/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-beyondcorp_v1alpha/v0.17.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-beyondcorp_v1alpha/v0.19.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-beyondcorp_v1alpha
63
63
  post_install_message:
64
64
  rdoc_options: []