google-apis-beyondcorp_v1alpha 0.17.0 → 0.18.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: d3270aa9e72e09fec381f66248fc0342fdf3fa33d8dd335ce12dbef4af7cbd47
4
+ data.tar.gz: bbe7aacbbffded9cd007f8fb173f2a55b6c08b9a6445709a3c7857e26b002f92
5
5
  SHA512:
6
- metadata.gz: f10fd3c169dd143b3fe08126a9848834c6d4e1ae80feb0d1955e10df608a9e5da7852ca09a842cebe030231e2a41d6eb7cb45c7fedbfdf4dce5d2034819341b2
7
- data.tar.gz: 62371a003fb0aaf2eda995d5b09dc4bf354c7fa4eebbb334511e960b597ebcf04978ac358cfe4174f2fa4cf41a656dc8cf7765aee074c1eccdc182e484e6cb41
6
+ metadata.gz: 741356d13825c9573edd4d764b039f72dea8f92cbb94051b1de534688b739aaae9b573dc65d5fce9d8321a509a50e01f0a2df9571568e53dca247f7f234bf6c2
7
+ data.tar.gz: 2ce3a6835536135d42a189c46384a520cd649204ee9e9c2aba0816e493a2c0a5c35b60361635bb7ac3c0d811965ddace1d3ddc7d30ae192b89e83506861052d2
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-beyondcorp_v1alpha
2
2
 
3
+ ### v0.18.0 (2023-05-07)
4
+
5
+ * Regenerated from discovery document revision 20230501
6
+
3
7
  ### v0.17.0 (2023-04-30)
4
8
 
5
9
  * Regenerated from discovery document revision 20230425
@@ -2121,6 +2121,330 @@ module Google
2121
2121
  end
2122
2122
  end
2123
2123
 
2124
+ # Message contains the authentication information to validate against the proxy
2125
+ # server.
2126
+ class GoogleCloudBeyondcorpPartnerservicesV1alphaAuthenticationInfo
2127
+ include Google::Apis::Core::Hashable
2128
+
2129
+ # Optional. Service Account for encrypting the JWT.
2130
+ # Corresponds to the JSON property `encryptionSaEmail`
2131
+ # @return [String]
2132
+ attr_accessor :encryption_sa_email
2133
+
2134
+ def initialize(**args)
2135
+ update!(**args)
2136
+ end
2137
+
2138
+ # Update properties of this object
2139
+ def update!(**args)
2140
+ @encryption_sa_email = args[:encryption_sa_email] if args.key?(:encryption_sa_email)
2141
+ end
2142
+ end
2143
+
2144
+ # Metadata associated with Tenant and is provided by the Partner.
2145
+ class GoogleCloudBeyondcorpPartnerservicesV1alphaPartnerMetadata
2146
+ include Google::Apis::Core::Hashable
2147
+
2148
+ # Optional. UUID used by the Partner to refer to the Tenant in their internal
2149
+ # systems.
2150
+ # Corresponds to the JSON property `partnerTenantId`
2151
+ # @return [String]
2152
+ attr_accessor :partner_tenant_id
2153
+
2154
+ def initialize(**args)
2155
+ update!(**args)
2156
+ end
2157
+
2158
+ # Update properties of this object
2159
+ def update!(**args)
2160
+ @partner_tenant_id = args[:partner_tenant_id] if args.key?(:partner_tenant_id)
2161
+ end
2162
+ end
2163
+
2164
+ # Represents the metadata of the long-running operation.
2165
+ class GoogleCloudBeyondcorpPartnerservicesV1alphaPartnerServiceOperationMetadata
2166
+ include Google::Apis::Core::Hashable
2167
+
2168
+ # Output only. API version used to start the operation.
2169
+ # Corresponds to the JSON property `apiVersion`
2170
+ # @return [String]
2171
+ attr_accessor :api_version
2172
+
2173
+ # Output only. The time the operation was created.
2174
+ # Corresponds to the JSON property `createTime`
2175
+ # @return [String]
2176
+ attr_accessor :create_time
2177
+
2178
+ # Output only. The time the operation finished running.
2179
+ # Corresponds to the JSON property `endTime`
2180
+ # @return [String]
2181
+ attr_accessor :end_time
2182
+
2183
+ # Output only. Identifies whether the caller has requested cancellation of the
2184
+ # operation. Operations that have successfully been cancelled have Operation.
2185
+ # error value with a google.rpc.Status.code of 1, corresponding to `Code.
2186
+ # CANCELLED`.
2187
+ # Corresponds to the JSON property `requestedCancellation`
2188
+ # @return [Boolean]
2189
+ attr_accessor :requested_cancellation
2190
+ alias_method :requested_cancellation?, :requested_cancellation
2191
+
2192
+ # Output only. Human-readable status of the operation, if any.
2193
+ # Corresponds to the JSON property `statusMessage`
2194
+ # @return [String]
2195
+ attr_accessor :status_message
2196
+
2197
+ # Output only. Server-defined resource path for the target of the operation.
2198
+ # Corresponds to the JSON property `target`
2199
+ # @return [String]
2200
+ attr_accessor :target
2201
+
2202
+ # Output only. Name of the verb executed by the operation.
2203
+ # Corresponds to the JSON property `verb`
2204
+ # @return [String]
2205
+ attr_accessor :verb
2206
+
2207
+ def initialize(**args)
2208
+ update!(**args)
2209
+ end
2210
+
2211
+ # Update properties of this object
2212
+ def update!(**args)
2213
+ @api_version = args[:api_version] if args.key?(:api_version)
2214
+ @create_time = args[:create_time] if args.key?(:create_time)
2215
+ @end_time = args[:end_time] if args.key?(:end_time)
2216
+ @requested_cancellation = args[:requested_cancellation] if args.key?(:requested_cancellation)
2217
+ @status_message = args[:status_message] if args.key?(:status_message)
2218
+ @target = args[:target] if args.key?(:target)
2219
+ @verb = args[:verb] if args.key?(:verb)
2220
+ end
2221
+ end
2222
+
2223
+ # Proxy Configuration of a Tenant.
2224
+ class GoogleCloudBeyondcorpPartnerservicesV1alphaProxyConfig
2225
+ include Google::Apis::Core::Hashable
2226
+
2227
+ # Message contains the authentication information to validate against the proxy
2228
+ # server.
2229
+ # Corresponds to the JSON property `authenticationInfo`
2230
+ # @return [Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpPartnerservicesV1alphaAuthenticationInfo]
2231
+ attr_accessor :authentication_info
2232
+
2233
+ # Output only. Timestamp when the resource was created.
2234
+ # Corresponds to the JSON property `createTime`
2235
+ # @return [String]
2236
+ attr_accessor :create_time
2237
+
2238
+ # Optional. An arbitrary caller-provided name for the ProxyConfig. Cannot exceed
2239
+ # 64 characters.
2240
+ # Corresponds to the JSON property `displayName`
2241
+ # @return [String]
2242
+ attr_accessor :display_name
2243
+
2244
+ # Output only. ProxyConfig resource name.
2245
+ # Corresponds to the JSON property `name`
2246
+ # @return [String]
2247
+ attr_accessor :name
2248
+
2249
+ # Required. The URI of the proxy server.
2250
+ # Corresponds to the JSON property `proxyUri`
2251
+ # @return [String]
2252
+ attr_accessor :proxy_uri
2253
+
2254
+ # Message contains the routing information to direct traffic to the proxy server.
2255
+ # Corresponds to the JSON property `routingInfo`
2256
+ # @return [Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpPartnerservicesV1alphaRoutingInfo]
2257
+ attr_accessor :routing_info
2258
+
2259
+ # Message contains the transport layer information to verify the proxy server.
2260
+ # Corresponds to the JSON property `transportInfo`
2261
+ # @return [Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpPartnerservicesV1alphaTransportInfo]
2262
+ attr_accessor :transport_info
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
+ @authentication_info = args[:authentication_info] if args.key?(:authentication_info)
2276
+ @create_time = args[:create_time] if args.key?(:create_time)
2277
+ @display_name = args[:display_name] if args.key?(:display_name)
2278
+ @name = args[:name] if args.key?(:name)
2279
+ @proxy_uri = args[:proxy_uri] if args.key?(:proxy_uri)
2280
+ @routing_info = args[:routing_info] if args.key?(:routing_info)
2281
+ @transport_info = args[:transport_info] if args.key?(:transport_info)
2282
+ @update_time = args[:update_time] if args.key?(:update_time)
2283
+ end
2284
+ end
2285
+
2286
+ # Message contains the routing information to direct traffic to the proxy server.
2287
+ class GoogleCloudBeyondcorpPartnerservicesV1alphaRoutingInfo
2288
+ include Google::Apis::Core::Hashable
2289
+
2290
+ # Required. Proxy Auto-Configuration (PAC) URI.
2291
+ # Corresponds to the JSON property `pacUri`
2292
+ # @return [String]
2293
+ attr_accessor :pac_uri
2294
+
2295
+ def initialize(**args)
2296
+ update!(**args)
2297
+ end
2298
+
2299
+ # Update properties of this object
2300
+ def update!(**args)
2301
+ @pac_uri = args[:pac_uri] if args.key?(:pac_uri)
2302
+ end
2303
+ end
2304
+
2305
+ # Information about a BeyoncCorp Enterprise Tenant.
2306
+ class GoogleCloudBeyondcorpPartnerservicesV1alphaTenant
2307
+ include Google::Apis::Core::Hashable
2308
+
2309
+ # Output only. Timestamp when the resource was created.
2310
+ # Corresponds to the JSON property `createTime`
2311
+ # @return [String]
2312
+ attr_accessor :create_time
2313
+
2314
+ # Optional. An arbitrary caller-provided name for the Tenant. Cannot exceed 64
2315
+ # characters.
2316
+ # Corresponds to the JSON property `displayName`
2317
+ # @return [String]
2318
+ attr_accessor :display_name
2319
+
2320
+ # Optional. Google group email to which the Tenant is enabled.
2321
+ # Corresponds to the JSON property `googleGroupEmail`
2322
+ # @return [String]
2323
+ attr_accessor :google_group_email
2324
+
2325
+ # Optional. Google group ID to which the Tenant is enabled.
2326
+ # Corresponds to the JSON property `googleGroupId`
2327
+ # @return [String]
2328
+ attr_accessor :google_group_id
2329
+
2330
+ # Output only. Unique resource name of the Tenant. The name is ignored when
2331
+ # creating Tenant.
2332
+ # Corresponds to the JSON property `name`
2333
+ # @return [String]
2334
+ attr_accessor :name
2335
+
2336
+ # Metadata associated with Tenant and is provided by the Partner.
2337
+ # Corresponds to the JSON property `partnerMetadata`
2338
+ # @return [Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpPartnerservicesV1alphaPartnerMetadata]
2339
+ attr_accessor :partner_metadata
2340
+
2341
+ # Output only. Timestamp when the resource was last modified.
2342
+ # Corresponds to the JSON property `updateTime`
2343
+ # @return [String]
2344
+ attr_accessor :update_time
2345
+
2346
+ def initialize(**args)
2347
+ update!(**args)
2348
+ end
2349
+
2350
+ # Update properties of this object
2351
+ def update!(**args)
2352
+ @create_time = args[:create_time] if args.key?(:create_time)
2353
+ @display_name = args[:display_name] if args.key?(:display_name)
2354
+ @google_group_email = args[:google_group_email] if args.key?(:google_group_email)
2355
+ @google_group_id = args[:google_group_id] if args.key?(:google_group_id)
2356
+ @name = args[:name] if args.key?(:name)
2357
+ @partner_metadata = args[:partner_metadata] if args.key?(:partner_metadata)
2358
+ @update_time = args[:update_time] if args.key?(:update_time)
2359
+ end
2360
+ end
2361
+
2362
+ # Message contains the transport layer information to verify the proxy server.
2363
+ class GoogleCloudBeyondcorpPartnerservicesV1alphaTransportInfo
2364
+ include Google::Apis::Core::Hashable
2365
+
2366
+ # Required. PEM encoded CA certificate associated with the proxy server
2367
+ # certificate.
2368
+ # Corresponds to the JSON property `serverCaCertPem`
2369
+ # @return [String]
2370
+ attr_accessor :server_ca_cert_pem
2371
+
2372
+ # Optional. PEM encoded CA certificate associated with the certificate used by
2373
+ # proxy server for SSL decryption.
2374
+ # Corresponds to the JSON property `sslDecryptCaCertPem`
2375
+ # @return [String]
2376
+ attr_accessor :ssl_decrypt_ca_cert_pem
2377
+
2378
+ def initialize(**args)
2379
+ update!(**args)
2380
+ end
2381
+
2382
+ # Update properties of this object
2383
+ def update!(**args)
2384
+ @server_ca_cert_pem = args[:server_ca_cert_pem] if args.key?(:server_ca_cert_pem)
2385
+ @ssl_decrypt_ca_cert_pem = args[:ssl_decrypt_ca_cert_pem] if args.key?(:ssl_decrypt_ca_cert_pem)
2386
+ end
2387
+ end
2388
+
2389
+ # Represents the metadata of the long-running operation.
2390
+ class GoogleCloudBeyondcorpPartnerservicesV1mainPartnerServiceOperationMetadata
2391
+ include Google::Apis::Core::Hashable
2392
+
2393
+ # Output only. API version used to start the operation.
2394
+ # Corresponds to the JSON property `apiVersion`
2395
+ # @return [String]
2396
+ attr_accessor :api_version
2397
+
2398
+ # Output only. The time the operation was created.
2399
+ # Corresponds to the JSON property `createTime`
2400
+ # @return [String]
2401
+ attr_accessor :create_time
2402
+
2403
+ # Output only. The time the operation finished running.
2404
+ # Corresponds to the JSON property `endTime`
2405
+ # @return [String]
2406
+ attr_accessor :end_time
2407
+
2408
+ # Output only. Identifies whether the caller has requested cancellation of the
2409
+ # operation. Operations that have successfully been cancelled have Operation.
2410
+ # error value with a google.rpc.Status.code of 1, corresponding to `Code.
2411
+ # CANCELLED`.
2412
+ # Corresponds to the JSON property `requestedCancellation`
2413
+ # @return [Boolean]
2414
+ attr_accessor :requested_cancellation
2415
+ alias_method :requested_cancellation?, :requested_cancellation
2416
+
2417
+ # Output only. Human-readable status of the operation, if any.
2418
+ # Corresponds to the JSON property `statusMessage`
2419
+ # @return [String]
2420
+ attr_accessor :status_message
2421
+
2422
+ # Output only. Server-defined resource path for the target of the operation.
2423
+ # Corresponds to the JSON property `target`
2424
+ # @return [String]
2425
+ attr_accessor :target
2426
+
2427
+ # Output only. Name of the verb executed by the operation.
2428
+ # Corresponds to the JSON property `verb`
2429
+ # @return [String]
2430
+ attr_accessor :verb
2431
+
2432
+ def initialize(**args)
2433
+ update!(**args)
2434
+ end
2435
+
2436
+ # Update properties of this object
2437
+ def update!(**args)
2438
+ @api_version = args[:api_version] if args.key?(:api_version)
2439
+ @create_time = args[:create_time] if args.key?(:create_time)
2440
+ @end_time = args[:end_time] if args.key?(:end_time)
2441
+ @requested_cancellation = args[:requested_cancellation] if args.key?(:requested_cancellation)
2442
+ @status_message = args[:status_message] if args.key?(:status_message)
2443
+ @target = args[:target] if args.key?(:target)
2444
+ @verb = args[:verb] if args.key?(:verb)
2445
+ end
2446
+ end
2447
+
2124
2448
  # The configuration that was applied to generate the result.
2125
2449
  class GoogleCloudBeyondcorpSaasplatformInsightsV1alphaAppliedConfig
2126
2450
  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.18.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 = "20230501"
26
26
  end
27
27
  end
28
28
  end
@@ -328,6 +328,54 @@ module Google
328
328
  include Google::Apis::Core::JsonObjectSupport
329
329
  end
330
330
 
331
+ class GoogleCloudBeyondcorpPartnerservicesV1alphaAuthenticationInfo
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 GoogleCloudBeyondcorpPartnerservicesV1alphaProxyConfig
350
+ class Representation < Google::Apis::Core::JsonRepresentation; end
351
+
352
+ include Google::Apis::Core::JsonObjectSupport
353
+ end
354
+
355
+ class GoogleCloudBeyondcorpPartnerservicesV1alphaRoutingInfo
356
+ class Representation < Google::Apis::Core::JsonRepresentation; end
357
+
358
+ include Google::Apis::Core::JsonObjectSupport
359
+ end
360
+
361
+ class GoogleCloudBeyondcorpPartnerservicesV1alphaTenant
362
+ class Representation < Google::Apis::Core::JsonRepresentation; end
363
+
364
+ include Google::Apis::Core::JsonObjectSupport
365
+ end
366
+
367
+ class GoogleCloudBeyondcorpPartnerservicesV1alphaTransportInfo
368
+ class Representation < Google::Apis::Core::JsonRepresentation; end
369
+
370
+ include Google::Apis::Core::JsonObjectSupport
371
+ end
372
+
373
+ class GoogleCloudBeyondcorpPartnerservicesV1mainPartnerServiceOperationMetadata
374
+ class Representation < Google::Apis::Core::JsonRepresentation; end
375
+
376
+ include Google::Apis::Core::JsonObjectSupport
377
+ end
378
+
331
379
  class GoogleCloudBeyondcorpSaasplatformInsightsV1alphaAppliedConfig
332
380
  class Representation < Google::Apis::Core::JsonRepresentation; end
333
381
 
@@ -1135,6 +1183,92 @@ module Google
1135
1183
  end
1136
1184
  end
1137
1185
 
1186
+ class GoogleCloudBeyondcorpPartnerservicesV1alphaAuthenticationInfo
1187
+ # @private
1188
+ class Representation < Google::Apis::Core::JsonRepresentation
1189
+ property :encryption_sa_email, as: 'encryptionSaEmail'
1190
+ end
1191
+ end
1192
+
1193
+ class GoogleCloudBeyondcorpPartnerservicesV1alphaPartnerMetadata
1194
+ # @private
1195
+ class Representation < Google::Apis::Core::JsonRepresentation
1196
+ property :partner_tenant_id, as: 'partnerTenantId'
1197
+ end
1198
+ end
1199
+
1200
+ class GoogleCloudBeyondcorpPartnerservicesV1alphaPartnerServiceOperationMetadata
1201
+ # @private
1202
+ class Representation < Google::Apis::Core::JsonRepresentation
1203
+ property :api_version, as: 'apiVersion'
1204
+ property :create_time, as: 'createTime'
1205
+ property :end_time, as: 'endTime'
1206
+ property :requested_cancellation, as: 'requestedCancellation'
1207
+ property :status_message, as: 'statusMessage'
1208
+ property :target, as: 'target'
1209
+ property :verb, as: 'verb'
1210
+ end
1211
+ end
1212
+
1213
+ class GoogleCloudBeyondcorpPartnerservicesV1alphaProxyConfig
1214
+ # @private
1215
+ class Representation < Google::Apis::Core::JsonRepresentation
1216
+ property :authentication_info, as: 'authenticationInfo', class: Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpPartnerservicesV1alphaAuthenticationInfo, decorator: Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpPartnerservicesV1alphaAuthenticationInfo::Representation
1217
+
1218
+ property :create_time, as: 'createTime'
1219
+ property :display_name, as: 'displayName'
1220
+ property :name, as: 'name'
1221
+ property :proxy_uri, as: 'proxyUri'
1222
+ property :routing_info, as: 'routingInfo', class: Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpPartnerservicesV1alphaRoutingInfo, decorator: Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpPartnerservicesV1alphaRoutingInfo::Representation
1223
+
1224
+ property :transport_info, as: 'transportInfo', class: Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpPartnerservicesV1alphaTransportInfo, decorator: Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpPartnerservicesV1alphaTransportInfo::Representation
1225
+
1226
+ property :update_time, as: 'updateTime'
1227
+ end
1228
+ end
1229
+
1230
+ class GoogleCloudBeyondcorpPartnerservicesV1alphaRoutingInfo
1231
+ # @private
1232
+ class Representation < Google::Apis::Core::JsonRepresentation
1233
+ property :pac_uri, as: 'pacUri'
1234
+ end
1235
+ end
1236
+
1237
+ class GoogleCloudBeyondcorpPartnerservicesV1alphaTenant
1238
+ # @private
1239
+ class Representation < Google::Apis::Core::JsonRepresentation
1240
+ property :create_time, as: 'createTime'
1241
+ property :display_name, as: 'displayName'
1242
+ property :google_group_email, as: 'googleGroupEmail'
1243
+ property :google_group_id, as: 'googleGroupId'
1244
+ property :name, as: 'name'
1245
+ property :partner_metadata, as: 'partnerMetadata', class: Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpPartnerservicesV1alphaPartnerMetadata, decorator: Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpPartnerservicesV1alphaPartnerMetadata::Representation
1246
+
1247
+ property :update_time, as: 'updateTime'
1248
+ end
1249
+ end
1250
+
1251
+ class GoogleCloudBeyondcorpPartnerservicesV1alphaTransportInfo
1252
+ # @private
1253
+ class Representation < Google::Apis::Core::JsonRepresentation
1254
+ property :server_ca_cert_pem, as: 'serverCaCertPem'
1255
+ property :ssl_decrypt_ca_cert_pem, as: 'sslDecryptCaCertPem'
1256
+ end
1257
+ end
1258
+
1259
+ class GoogleCloudBeyondcorpPartnerservicesV1mainPartnerServiceOperationMetadata
1260
+ # @private
1261
+ class Representation < Google::Apis::Core::JsonRepresentation
1262
+ property :api_version, as: 'apiVersion'
1263
+ property :create_time, as: 'createTime'
1264
+ property :end_time, as: 'endTime'
1265
+ property :requested_cancellation, as: 'requestedCancellation'
1266
+ property :status_message, as: 'statusMessage'
1267
+ property :target, as: 'target'
1268
+ property :verb, as: 'verb'
1269
+ end
1270
+ end
1271
+
1138
1272
  class GoogleCloudBeyondcorpSaasplatformInsightsV1alphaAppliedConfig
1139
1273
  # @private
1140
1274
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -52,6 +52,163 @@ module Google
52
52
  @batch_path = 'batch'
53
53
  end
54
54
 
55
+ # Creates a new BeyondCorp Enterprise tenant in a given organization and can
56
+ # only be called by onboarded BeyondCorp Enterprise partner.
57
+ # @param [String] parent
58
+ # Required. The resource name of the Tenant using the form: `organizations/`
59
+ # organization_id`/locations/global`
60
+ # @param [Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpPartnerservicesV1alphaTenant] google_cloud_beyondcorp_partnerservices_v1alpha_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_tenant(parent, google_cloud_beyondcorp_partnerservices_v1alpha_tenant_object = nil, request_id: nil, fields: nil, quota_user: nil, options: nil, &block)
90
+ command = make_simple_command(:post, 'v1alpha/{+parent}/tenants', options)
91
+ command.request_representation = Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpPartnerservicesV1alphaTenant::Representation
92
+ command.request_object = google_cloud_beyondcorp_partnerservices_v1alpha_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 Tenant.
103
+ # @param [String] name
104
+ # Required. The resource name of the Tenant using the form: `organizations/`
105
+ # organization_id`/locations/global/tenants/`tenant_id``
106
+ # @param [String] fields
107
+ # Selector specifying which fields to include in a partial response.
108
+ # @param [String] quota_user
109
+ # Available to use for quota purposes for server-side applications. Can be any
110
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
111
+ # @param [Google::Apis::RequestOptions] options
112
+ # Request-specific options
113
+ #
114
+ # @yield [result, err] Result & error if block supplied
115
+ # @yieldparam result [Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpPartnerservicesV1alphaTenant] parsed result object
116
+ # @yieldparam err [StandardError] error object if request failed
117
+ #
118
+ # @return [Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpPartnerservicesV1alphaTenant]
119
+ #
120
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
121
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
122
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
123
+ def get_organization_location_global_tenant(name, fields: nil, quota_user: nil, options: nil, &block)
124
+ command = make_simple_command(:get, 'v1alpha/{+name}', options)
125
+ command.response_representation = Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpPartnerservicesV1alphaTenant::Representation
126
+ command.response_class = Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpPartnerservicesV1alphaTenant
127
+ command.params['name'] = name unless name.nil?
128
+ command.query['fields'] = fields unless fields.nil?
129
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
130
+ execute_or_queue_command(command, &block)
131
+ end
132
+
133
+ # Creates a new BeyondCorp Enterprise ProxyConfiguration in a given organization
134
+ # and tenant. Can only be called by on onboarded Beyondcorp Enterprise partner.
135
+ # @param [String] parent
136
+ # Required. The resource name of the ProxyConfig using the form: `organizations/`
137
+ # organization_id`/locations/global/tenants/`tenant_id``
138
+ # @param [Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpPartnerservicesV1alphaProxyConfig] google_cloud_beyondcorp_partnerservices_v1alpha_proxy_config_object
139
+ # @param [String] request_id
140
+ # Optional. An optional request ID to identify requests. Specify a unique
141
+ # request ID so that if you must retry your request, the server will know to
142
+ # ignore the request if it has already been completed. The server will guarantee
143
+ # that for at least 60 minutes since the first request. For example, consider a
144
+ # situation where you make an initial request and the request times out. If you
145
+ # make the request again with the same request ID, the server can check if
146
+ # original operation with the same request ID was received, and if so, will
147
+ # ignore the second request. This prevents clients from accidentally creating
148
+ # duplicate commitments. The request ID must be a valid UUID with the exception
149
+ # that zero UUID is not supported (00000000-0000-0000-0000-000000000000).
150
+ # @param [String] fields
151
+ # Selector specifying which fields to include in a partial response.
152
+ # @param [String] quota_user
153
+ # Available to use for quota purposes for server-side applications. Can be any
154
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
155
+ # @param [Google::Apis::RequestOptions] options
156
+ # Request-specific options
157
+ #
158
+ # @yield [result, err] Result & error if block supplied
159
+ # @yieldparam result [Google::Apis::BeyondcorpV1alpha::GoogleLongrunningOperation] parsed result object
160
+ # @yieldparam err [StandardError] error object if request failed
161
+ #
162
+ # @return [Google::Apis::BeyondcorpV1alpha::GoogleLongrunningOperation]
163
+ #
164
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
165
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
166
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
167
+ 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)
168
+ command = make_simple_command(:post, 'v1alpha/{+parent}/proxyConfigs', options)
169
+ command.request_representation = Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpPartnerservicesV1alphaProxyConfig::Representation
170
+ command.request_object = google_cloud_beyondcorp_partnerservices_v1alpha_proxy_config_object
171
+ command.response_representation = Google::Apis::BeyondcorpV1alpha::GoogleLongrunningOperation::Representation
172
+ command.response_class = Google::Apis::BeyondcorpV1alpha::GoogleLongrunningOperation
173
+ command.params['parent'] = parent unless parent.nil?
174
+ command.query['requestId'] = request_id unless request_id.nil?
175
+ command.query['fields'] = fields unless fields.nil?
176
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
177
+ execute_or_queue_command(command, &block)
178
+ end
179
+
180
+ # Gets details of a single Tenant.
181
+ # @param [String] name
182
+ # Required. The resource name of the Tenant using the form: `organizations/`
183
+ # organization_id`/locations/global/tenants/`tenant_id`/proxyConfigs/`
184
+ # proxy_config_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::GoogleCloudBeyondcorpPartnerservicesV1alphaProxyConfig] parsed result object
195
+ # @yieldparam err [StandardError] error object if request failed
196
+ #
197
+ # @return [Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpPartnerservicesV1alphaProxyConfig]
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_proxy_config(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::GoogleCloudBeyondcorpPartnerservicesV1alphaProxyConfig::Representation
205
+ command.response_class = Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpPartnerservicesV1alphaProxyConfig
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
+
55
212
  # Gets the value for a selected particular insight based on the provided filters.
56
213
  # Use the organization level path for fetching at org level and project level
57
214
  # 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.18.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-14 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.18.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: []