google-apis-beyondcorp_v1alpha 0.11.0 → 0.12.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/google/apis/beyondcorp_v1alpha/classes.rb +98 -225
- data/lib/google/apis/beyondcorp_v1alpha/gem_version.rb +2 -2
- data/lib/google/apis/beyondcorp_v1alpha/representations.rb +35 -74
- data/lib/google/apis/beyondcorp_v1alpha/service.rb +109 -240
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c3ae20fa46ee11b8b4325f0d09ac8922964012549676fc889a53e22755d2d5f4
|
|
4
|
+
data.tar.gz: 052a6f942bd7862f1ff12b2c223898ace2be9fd25b27a46b16e780b8f81b92d4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 56c1fd49eed8103035d80d8f4473cb929869cea510295bd8ac9e08c8d306e55fd5740a9e0dc7055942a9eb4c4757e74473e4f8a29b16644af73a4cf1f98d4058
|
|
7
|
+
data.tar.gz: 641c4fb12f7b01a9d3782f8c1f9b8f5ae7a0b5a99bceb41ece238e6b858d1b47ee0c1cf234dd92a9daddb0df536b016c059063bdc4b13d10b273167f31501d97
|
data/CHANGELOG.md
CHANGED
|
@@ -2121,59 +2121,6 @@ module Google
|
|
|
2121
2121
|
end
|
|
2122
2122
|
end
|
|
2123
2123
|
|
|
2124
|
-
# Represents the metadata of the long-running operation.
|
|
2125
|
-
class GoogleCloudBeyondcorpApplicationsV1alphaApplicationOperationMetadata
|
|
2126
|
-
include Google::Apis::Core::Hashable
|
|
2127
|
-
|
|
2128
|
-
# Output only. The time the operation was created.
|
|
2129
|
-
# Corresponds to the JSON property `createTime`
|
|
2130
|
-
# @return [String]
|
|
2131
|
-
attr_accessor :create_time
|
|
2132
|
-
|
|
2133
|
-
# Output only. The time the operation finished running.
|
|
2134
|
-
# Corresponds to the JSON property `endTime`
|
|
2135
|
-
# @return [String]
|
|
2136
|
-
attr_accessor :end_time
|
|
2137
|
-
|
|
2138
|
-
# Output only. Identifies whether the user has requested cancellation of the
|
|
2139
|
-
# operation. Operations that have been cancelled successfully have Operation.
|
|
2140
|
-
# error value with a google.rpc.Status.code of 1, corresponding to `Code.
|
|
2141
|
-
# CANCELLED`.
|
|
2142
|
-
# Corresponds to the JSON property `requestedCancellation`
|
|
2143
|
-
# @return [Boolean]
|
|
2144
|
-
attr_accessor :requested_cancellation
|
|
2145
|
-
alias_method :requested_cancellation?, :requested_cancellation
|
|
2146
|
-
|
|
2147
|
-
# Output only. Human-readable status of the operation, if any.
|
|
2148
|
-
# Corresponds to the JSON property `statusMessage`
|
|
2149
|
-
# @return [String]
|
|
2150
|
-
attr_accessor :status_message
|
|
2151
|
-
|
|
2152
|
-
# Output only. Server-defined resource path for the target of the operation.
|
|
2153
|
-
# Corresponds to the JSON property `target`
|
|
2154
|
-
# @return [String]
|
|
2155
|
-
attr_accessor :target
|
|
2156
|
-
|
|
2157
|
-
# Output only. Name of the verb executed by the operation.
|
|
2158
|
-
# Corresponds to the JSON property `verb`
|
|
2159
|
-
# @return [String]
|
|
2160
|
-
attr_accessor :verb
|
|
2161
|
-
|
|
2162
|
-
def initialize(**args)
|
|
2163
|
-
update!(**args)
|
|
2164
|
-
end
|
|
2165
|
-
|
|
2166
|
-
# Update properties of this object
|
|
2167
|
-
def update!(**args)
|
|
2168
|
-
@create_time = args[:create_time] if args.key?(:create_time)
|
|
2169
|
-
@end_time = args[:end_time] if args.key?(:end_time)
|
|
2170
|
-
@requested_cancellation = args[:requested_cancellation] if args.key?(:requested_cancellation)
|
|
2171
|
-
@status_message = args[:status_message] if args.key?(:status_message)
|
|
2172
|
-
@target = args[:target] if args.key?(:target)
|
|
2173
|
-
@verb = args[:verb] if args.key?(:verb)
|
|
2174
|
-
end
|
|
2175
|
-
end
|
|
2176
|
-
|
|
2177
2124
|
# Represents the metadata of the long-running operation.
|
|
2178
2125
|
class GoogleCloudBeyondcorpClientconnectorservicesV1ClientConnectorServiceOperationMetadata
|
|
2179
2126
|
include Google::Apis::Core::Hashable
|
|
@@ -2292,178 +2239,6 @@ module Google
|
|
|
2292
2239
|
end
|
|
2293
2240
|
end
|
|
2294
2241
|
|
|
2295
|
-
# Response message for BeyondCorp.ListNetConnections.
|
|
2296
|
-
class GoogleCloudBeyondcorpNetconnectionsV1alphaListNetConnectionsResponse
|
|
2297
|
-
include Google::Apis::Core::Hashable
|
|
2298
|
-
|
|
2299
|
-
# A list of BeyondCorp NetConnections in the project.
|
|
2300
|
-
# Corresponds to the JSON property `netConnections`
|
|
2301
|
-
# @return [Array<Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpNetconnectionsV1alphaNetConnection>]
|
|
2302
|
-
attr_accessor :net_connections
|
|
2303
|
-
|
|
2304
|
-
# A token to retrieve the next page of results, or empty if there are no more
|
|
2305
|
-
# results in the list.
|
|
2306
|
-
# Corresponds to the JSON property `nextPageToken`
|
|
2307
|
-
# @return [String]
|
|
2308
|
-
attr_accessor :next_page_token
|
|
2309
|
-
|
|
2310
|
-
# A list of locations that could not be reached.
|
|
2311
|
-
# Corresponds to the JSON property `unreachable`
|
|
2312
|
-
# @return [Array<String>]
|
|
2313
|
-
attr_accessor :unreachable
|
|
2314
|
-
|
|
2315
|
-
def initialize(**args)
|
|
2316
|
-
update!(**args)
|
|
2317
|
-
end
|
|
2318
|
-
|
|
2319
|
-
# Update properties of this object
|
|
2320
|
-
def update!(**args)
|
|
2321
|
-
@net_connections = args[:net_connections] if args.key?(:net_connections)
|
|
2322
|
-
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
|
2323
|
-
@unreachable = args[:unreachable] if args.key?(:unreachable)
|
|
2324
|
-
end
|
|
2325
|
-
end
|
|
2326
|
-
|
|
2327
|
-
# A BeyondCorp NetConnection resource represents a BeyondCorp protected
|
|
2328
|
-
# connection from BeyondCorp Client Connector to a remote application through a
|
|
2329
|
-
# BeyondCorp AppConnector gateway.
|
|
2330
|
-
class GoogleCloudBeyondcorpNetconnectionsV1alphaNetConnection
|
|
2331
|
-
include Google::Apis::Core::Hashable
|
|
2332
|
-
|
|
2333
|
-
# Optional. List of [google.cloud.beyondcorp.v1main.AppConnector.name] that are
|
|
2334
|
-
# authorized to be associated with this NetConnection. e.g. projects/`project`/
|
|
2335
|
-
# locations/`location`/appConnectors/`app_connector`
|
|
2336
|
-
# Corresponds to the JSON property `connectors`
|
|
2337
|
-
# @return [Array<String>]
|
|
2338
|
-
attr_accessor :connectors
|
|
2339
|
-
|
|
2340
|
-
# Output only. Timestamp when the resource was created.
|
|
2341
|
-
# Corresponds to the JSON property `createTime`
|
|
2342
|
-
# @return [String]
|
|
2343
|
-
attr_accessor :create_time
|
|
2344
|
-
|
|
2345
|
-
# Required. CIDRs for the remote networks to connect to. e.g. IPv4: 198.51.100.
|
|
2346
|
-
# 14/24 IPv6: 2001:db8::/48
|
|
2347
|
-
# Corresponds to the JSON property `destinationCidrs`
|
|
2348
|
-
# @return [Array<String>]
|
|
2349
|
-
attr_accessor :destination_cidrs
|
|
2350
|
-
|
|
2351
|
-
# Optional. An arbitrary user-provided name for the NetConnection. Cannot exceed
|
|
2352
|
-
# 64 characters.
|
|
2353
|
-
# Corresponds to the JSON property `displayName`
|
|
2354
|
-
# @return [String]
|
|
2355
|
-
attr_accessor :display_name
|
|
2356
|
-
|
|
2357
|
-
# Optional. Resource labels to represent user provided metadata.
|
|
2358
|
-
# Corresponds to the JSON property `labels`
|
|
2359
|
-
# @return [Hash<String,String>]
|
|
2360
|
-
attr_accessor :labels
|
|
2361
|
-
|
|
2362
|
-
# Required. Unique resource name of the NetConnection. The name is ignored when
|
|
2363
|
-
# creating a NetConnection.
|
|
2364
|
-
# Corresponds to the JSON property `name`
|
|
2365
|
-
# @return [String]
|
|
2366
|
-
attr_accessor :name
|
|
2367
|
-
|
|
2368
|
-
# Output only. The full name of the VPC network connected to the applications.
|
|
2369
|
-
# Client Connector will send traffic here.
|
|
2370
|
-
# Corresponds to the JSON property `networkVpc`
|
|
2371
|
-
# @return [String]
|
|
2372
|
-
attr_accessor :network_vpc
|
|
2373
|
-
|
|
2374
|
-
# Output only. The current state of the NetConnection.
|
|
2375
|
-
# Corresponds to the JSON property `state`
|
|
2376
|
-
# @return [String]
|
|
2377
|
-
attr_accessor :state
|
|
2378
|
-
|
|
2379
|
-
# Output only. A unique identifier for the instance generated by the system.
|
|
2380
|
-
# Corresponds to the JSON property `uid`
|
|
2381
|
-
# @return [String]
|
|
2382
|
-
attr_accessor :uid
|
|
2383
|
-
|
|
2384
|
-
# Output only. Timestamp when the resource was last modified.
|
|
2385
|
-
# Corresponds to the JSON property `updateTime`
|
|
2386
|
-
# @return [String]
|
|
2387
|
-
attr_accessor :update_time
|
|
2388
|
-
|
|
2389
|
-
def initialize(**args)
|
|
2390
|
-
update!(**args)
|
|
2391
|
-
end
|
|
2392
|
-
|
|
2393
|
-
# Update properties of this object
|
|
2394
|
-
def update!(**args)
|
|
2395
|
-
@connectors = args[:connectors] if args.key?(:connectors)
|
|
2396
|
-
@create_time = args[:create_time] if args.key?(:create_time)
|
|
2397
|
-
@destination_cidrs = args[:destination_cidrs] if args.key?(:destination_cidrs)
|
|
2398
|
-
@display_name = args[:display_name] if args.key?(:display_name)
|
|
2399
|
-
@labels = args[:labels] if args.key?(:labels)
|
|
2400
|
-
@name = args[:name] if args.key?(:name)
|
|
2401
|
-
@network_vpc = args[:network_vpc] if args.key?(:network_vpc)
|
|
2402
|
-
@state = args[:state] if args.key?(:state)
|
|
2403
|
-
@uid = args[:uid] if args.key?(:uid)
|
|
2404
|
-
@update_time = args[:update_time] if args.key?(:update_time)
|
|
2405
|
-
end
|
|
2406
|
-
end
|
|
2407
|
-
|
|
2408
|
-
# Represents the metadata of the long-running operation.
|
|
2409
|
-
class GoogleCloudBeyondcorpNetconnectionsV1alphaNetConnectionOperationMetadata
|
|
2410
|
-
include Google::Apis::Core::Hashable
|
|
2411
|
-
|
|
2412
|
-
# Output only. API version used to start the operation.
|
|
2413
|
-
# Corresponds to the JSON property `apiVersion`
|
|
2414
|
-
# @return [String]
|
|
2415
|
-
attr_accessor :api_version
|
|
2416
|
-
|
|
2417
|
-
# Output only. The time the operation was created.
|
|
2418
|
-
# Corresponds to the JSON property `createTime`
|
|
2419
|
-
# @return [String]
|
|
2420
|
-
attr_accessor :create_time
|
|
2421
|
-
|
|
2422
|
-
# Output only. The time the operation finished running.
|
|
2423
|
-
# Corresponds to the JSON property `endTime`
|
|
2424
|
-
# @return [String]
|
|
2425
|
-
attr_accessor :end_time
|
|
2426
|
-
|
|
2427
|
-
# Output only. Identifies whether the user has requested cancellation of the
|
|
2428
|
-
# operation. Operations that have successfully been cancelled have Operation.
|
|
2429
|
-
# error value with a google.rpc.Status.code of 1, corresponding to `Code.
|
|
2430
|
-
# CANCELLED`.
|
|
2431
|
-
# Corresponds to the JSON property `requestedCancellation`
|
|
2432
|
-
# @return [Boolean]
|
|
2433
|
-
attr_accessor :requested_cancellation
|
|
2434
|
-
alias_method :requested_cancellation?, :requested_cancellation
|
|
2435
|
-
|
|
2436
|
-
# Output only. Human-readable status of the operation, if any.
|
|
2437
|
-
# Corresponds to the JSON property `statusMessage`
|
|
2438
|
-
# @return [String]
|
|
2439
|
-
attr_accessor :status_message
|
|
2440
|
-
|
|
2441
|
-
# Output only. Server-defined resource path for the target of the operation.
|
|
2442
|
-
# Corresponds to the JSON property `target`
|
|
2443
|
-
# @return [String]
|
|
2444
|
-
attr_accessor :target
|
|
2445
|
-
|
|
2446
|
-
# Output only. Name of the verb executed by the operation.
|
|
2447
|
-
# Corresponds to the JSON property `verb`
|
|
2448
|
-
# @return [String]
|
|
2449
|
-
attr_accessor :verb
|
|
2450
|
-
|
|
2451
|
-
def initialize(**args)
|
|
2452
|
-
update!(**args)
|
|
2453
|
-
end
|
|
2454
|
-
|
|
2455
|
-
# Update properties of this object
|
|
2456
|
-
def update!(**args)
|
|
2457
|
-
@api_version = args[:api_version] if args.key?(:api_version)
|
|
2458
|
-
@create_time = args[:create_time] if args.key?(:create_time)
|
|
2459
|
-
@end_time = args[:end_time] if args.key?(:end_time)
|
|
2460
|
-
@requested_cancellation = args[:requested_cancellation] if args.key?(:requested_cancellation)
|
|
2461
|
-
@status_message = args[:status_message] if args.key?(:status_message)
|
|
2462
|
-
@target = args[:target] if args.key?(:target)
|
|
2463
|
-
@verb = args[:verb] if args.key?(:verb)
|
|
2464
|
-
end
|
|
2465
|
-
end
|
|
2466
|
-
|
|
2467
2242
|
# The configuration that was applied to generate the result.
|
|
2468
2243
|
class GoogleCloudBeyondcorpSaasplatformInsightsV1alphaAppliedConfig
|
|
2469
2244
|
include Google::Apis::Core::Hashable
|
|
@@ -2818,6 +2593,104 @@ module Google
|
|
|
2818
2593
|
end
|
|
2819
2594
|
end
|
|
2820
2595
|
|
|
2596
|
+
# Response message for BeyondCorp.ListSubscriptions.
|
|
2597
|
+
class GoogleCloudBeyondcorpSaasplatformSubscriptionsV1alphaListSubscriptionsResponse
|
|
2598
|
+
include Google::Apis::Core::Hashable
|
|
2599
|
+
|
|
2600
|
+
# A token to retrieve the next page of results, or empty if there are no more
|
|
2601
|
+
# results in the list.
|
|
2602
|
+
# Corresponds to the JSON property `nextPageToken`
|
|
2603
|
+
# @return [String]
|
|
2604
|
+
attr_accessor :next_page_token
|
|
2605
|
+
|
|
2606
|
+
# A list of BeyondCorp Subscriptions in the organization.
|
|
2607
|
+
# Corresponds to the JSON property `subscriptions`
|
|
2608
|
+
# @return [Array<Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpSaasplatformSubscriptionsV1alphaSubscription>]
|
|
2609
|
+
attr_accessor :subscriptions
|
|
2610
|
+
|
|
2611
|
+
def initialize(**args)
|
|
2612
|
+
update!(**args)
|
|
2613
|
+
end
|
|
2614
|
+
|
|
2615
|
+
# Update properties of this object
|
|
2616
|
+
def update!(**args)
|
|
2617
|
+
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
|
2618
|
+
@subscriptions = args[:subscriptions] if args.key?(:subscriptions)
|
|
2619
|
+
end
|
|
2620
|
+
end
|
|
2621
|
+
|
|
2622
|
+
# A BeyondCorp Subscription resource represents BeyondCorp Enterprise
|
|
2623
|
+
# Subscription. BeyondCorp Enterprise Subscription enables BeyondCorp Enterprise
|
|
2624
|
+
# permium features for an organization.
|
|
2625
|
+
class GoogleCloudBeyondcorpSaasplatformSubscriptionsV1alphaSubscription
|
|
2626
|
+
include Google::Apis::Core::Hashable
|
|
2627
|
+
|
|
2628
|
+
# Output only. Represents that, if subscription will renew or end when the term
|
|
2629
|
+
# ends.
|
|
2630
|
+
# Corresponds to the JSON property `autoRenewEnabled`
|
|
2631
|
+
# @return [Boolean]
|
|
2632
|
+
attr_accessor :auto_renew_enabled
|
|
2633
|
+
alias_method :auto_renew_enabled?, :auto_renew_enabled
|
|
2634
|
+
|
|
2635
|
+
# Output only. Create time of the subscription.
|
|
2636
|
+
# Corresponds to the JSON property `createTime`
|
|
2637
|
+
# @return [String]
|
|
2638
|
+
attr_accessor :create_time
|
|
2639
|
+
|
|
2640
|
+
# Output only. End time of the subscription.
|
|
2641
|
+
# Corresponds to the JSON property `endTime`
|
|
2642
|
+
# @return [String]
|
|
2643
|
+
attr_accessor :end_time
|
|
2644
|
+
|
|
2645
|
+
# Required. Unique resource name of the Subscription. The name is ignored when
|
|
2646
|
+
# creating a subscription.
|
|
2647
|
+
# Corresponds to the JSON property `name`
|
|
2648
|
+
# @return [String]
|
|
2649
|
+
attr_accessor :name
|
|
2650
|
+
|
|
2651
|
+
# Output only. Number of seats in the subscription.
|
|
2652
|
+
# Corresponds to the JSON property `seatCount`
|
|
2653
|
+
# @return [Fixnum]
|
|
2654
|
+
attr_accessor :seat_count
|
|
2655
|
+
|
|
2656
|
+
# Required. SKU of subscription.
|
|
2657
|
+
# Corresponds to the JSON property `sku`
|
|
2658
|
+
# @return [String]
|
|
2659
|
+
attr_accessor :sku
|
|
2660
|
+
|
|
2661
|
+
# Output only. Start time of the subscription.
|
|
2662
|
+
# Corresponds to the JSON property `startTime`
|
|
2663
|
+
# @return [String]
|
|
2664
|
+
attr_accessor :start_time
|
|
2665
|
+
|
|
2666
|
+
# Output only. The current state of the subscription.
|
|
2667
|
+
# Corresponds to the JSON property `state`
|
|
2668
|
+
# @return [String]
|
|
2669
|
+
attr_accessor :state
|
|
2670
|
+
|
|
2671
|
+
# Required. Type of subscription.
|
|
2672
|
+
# Corresponds to the JSON property `type`
|
|
2673
|
+
# @return [String]
|
|
2674
|
+
attr_accessor :type
|
|
2675
|
+
|
|
2676
|
+
def initialize(**args)
|
|
2677
|
+
update!(**args)
|
|
2678
|
+
end
|
|
2679
|
+
|
|
2680
|
+
# Update properties of this object
|
|
2681
|
+
def update!(**args)
|
|
2682
|
+
@auto_renew_enabled = args[:auto_renew_enabled] if args.key?(:auto_renew_enabled)
|
|
2683
|
+
@create_time = args[:create_time] if args.key?(:create_time)
|
|
2684
|
+
@end_time = args[:end_time] if args.key?(:end_time)
|
|
2685
|
+
@name = args[:name] if args.key?(:name)
|
|
2686
|
+
@seat_count = args[:seat_count] if args.key?(:seat_count)
|
|
2687
|
+
@sku = args[:sku] if args.key?(:sku)
|
|
2688
|
+
@start_time = args[:start_time] if args.key?(:start_time)
|
|
2689
|
+
@state = args[:state] if args.key?(:state)
|
|
2690
|
+
@type = args[:type] if args.key?(:type)
|
|
2691
|
+
end
|
|
2692
|
+
end
|
|
2693
|
+
|
|
2821
2694
|
# The response message for Locations.ListLocations.
|
|
2822
2695
|
class GoogleCloudLocationListLocationsResponse
|
|
2823
2696
|
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.
|
|
19
|
+
GEM_VERSION = "0.12.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.11.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20221019"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -328,12 +328,6 @@ module Google
|
|
|
328
328
|
include Google::Apis::Core::JsonObjectSupport
|
|
329
329
|
end
|
|
330
330
|
|
|
331
|
-
class GoogleCloudBeyondcorpApplicationsV1alphaApplicationOperationMetadata
|
|
332
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
333
|
-
|
|
334
|
-
include Google::Apis::Core::JsonObjectSupport
|
|
335
|
-
end
|
|
336
|
-
|
|
337
331
|
class GoogleCloudBeyondcorpClientconnectorservicesV1ClientConnectorServiceOperationMetadata
|
|
338
332
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
339
333
|
|
|
@@ -346,73 +340,67 @@ module Google
|
|
|
346
340
|
include Google::Apis::Core::JsonObjectSupport
|
|
347
341
|
end
|
|
348
342
|
|
|
349
|
-
class
|
|
350
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
351
|
-
|
|
352
|
-
include Google::Apis::Core::JsonObjectSupport
|
|
353
|
-
end
|
|
354
|
-
|
|
355
|
-
class GoogleCloudBeyondcorpNetconnectionsV1alphaNetConnection
|
|
343
|
+
class GoogleCloudBeyondcorpSaasplatformInsightsV1alphaAppliedConfig
|
|
356
344
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
357
345
|
|
|
358
346
|
include Google::Apis::Core::JsonObjectSupport
|
|
359
347
|
end
|
|
360
348
|
|
|
361
|
-
class
|
|
349
|
+
class GoogleCloudBeyondcorpSaasplatformInsightsV1alphaConfiguredInsightResponse
|
|
362
350
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
363
351
|
|
|
364
352
|
include Google::Apis::Core::JsonObjectSupport
|
|
365
353
|
end
|
|
366
354
|
|
|
367
|
-
class
|
|
355
|
+
class GoogleCloudBeyondcorpSaasplatformInsightsV1alphaCustomGrouping
|
|
368
356
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
369
357
|
|
|
370
358
|
include Google::Apis::Core::JsonObjectSupport
|
|
371
359
|
end
|
|
372
360
|
|
|
373
|
-
class
|
|
361
|
+
class GoogleCloudBeyondcorpSaasplatformInsightsV1alphaInsight
|
|
374
362
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
375
363
|
|
|
376
364
|
include Google::Apis::Core::JsonObjectSupport
|
|
377
365
|
end
|
|
378
366
|
|
|
379
|
-
class
|
|
367
|
+
class GoogleCloudBeyondcorpSaasplatformInsightsV1alphaInsightMetadata
|
|
380
368
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
381
369
|
|
|
382
370
|
include Google::Apis::Core::JsonObjectSupport
|
|
383
371
|
end
|
|
384
372
|
|
|
385
|
-
class
|
|
373
|
+
class GoogleCloudBeyondcorpSaasplatformInsightsV1alphaInsightMetadataField
|
|
386
374
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
387
375
|
|
|
388
376
|
include Google::Apis::Core::JsonObjectSupport
|
|
389
377
|
end
|
|
390
378
|
|
|
391
|
-
class
|
|
379
|
+
class GoogleCloudBeyondcorpSaasplatformInsightsV1alphaListInsightsResponse
|
|
392
380
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
393
381
|
|
|
394
382
|
include Google::Apis::Core::JsonObjectSupport
|
|
395
383
|
end
|
|
396
384
|
|
|
397
|
-
class
|
|
385
|
+
class GoogleCloudBeyondcorpSaasplatformInsightsV1alphaRow
|
|
398
386
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
399
387
|
|
|
400
388
|
include Google::Apis::Core::JsonObjectSupport
|
|
401
389
|
end
|
|
402
390
|
|
|
403
|
-
class
|
|
391
|
+
class GoogleCloudBeyondcorpSaasplatformInsightsV1alphaRowFieldVal
|
|
404
392
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
405
393
|
|
|
406
394
|
include Google::Apis::Core::JsonObjectSupport
|
|
407
395
|
end
|
|
408
396
|
|
|
409
|
-
class
|
|
397
|
+
class GoogleCloudBeyondcorpSaasplatformSubscriptionsV1alphaListSubscriptionsResponse
|
|
410
398
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
411
399
|
|
|
412
400
|
include Google::Apis::Core::JsonObjectSupport
|
|
413
401
|
end
|
|
414
402
|
|
|
415
|
-
class
|
|
403
|
+
class GoogleCloudBeyondcorpSaasplatformSubscriptionsV1alphaSubscription
|
|
416
404
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
417
405
|
|
|
418
406
|
include Google::Apis::Core::JsonObjectSupport
|
|
@@ -1159,18 +1147,6 @@ module Google
|
|
|
1159
1147
|
end
|
|
1160
1148
|
end
|
|
1161
1149
|
|
|
1162
|
-
class GoogleCloudBeyondcorpApplicationsV1alphaApplicationOperationMetadata
|
|
1163
|
-
# @private
|
|
1164
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1165
|
-
property :create_time, as: 'createTime'
|
|
1166
|
-
property :end_time, as: 'endTime'
|
|
1167
|
-
property :requested_cancellation, as: 'requestedCancellation'
|
|
1168
|
-
property :status_message, as: 'statusMessage'
|
|
1169
|
-
property :target, as: 'target'
|
|
1170
|
-
property :verb, as: 'verb'
|
|
1171
|
-
end
|
|
1172
|
-
end
|
|
1173
|
-
|
|
1174
1150
|
class GoogleCloudBeyondcorpClientconnectorservicesV1ClientConnectorServiceOperationMetadata
|
|
1175
1151
|
# @private
|
|
1176
1152
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -1197,45 +1173,6 @@ module Google
|
|
|
1197
1173
|
end
|
|
1198
1174
|
end
|
|
1199
1175
|
|
|
1200
|
-
class GoogleCloudBeyondcorpNetconnectionsV1alphaListNetConnectionsResponse
|
|
1201
|
-
# @private
|
|
1202
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1203
|
-
collection :net_connections, as: 'netConnections', class: Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpNetconnectionsV1alphaNetConnection, decorator: Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpNetconnectionsV1alphaNetConnection::Representation
|
|
1204
|
-
|
|
1205
|
-
property :next_page_token, as: 'nextPageToken'
|
|
1206
|
-
collection :unreachable, as: 'unreachable'
|
|
1207
|
-
end
|
|
1208
|
-
end
|
|
1209
|
-
|
|
1210
|
-
class GoogleCloudBeyondcorpNetconnectionsV1alphaNetConnection
|
|
1211
|
-
# @private
|
|
1212
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1213
|
-
collection :connectors, as: 'connectors'
|
|
1214
|
-
property :create_time, as: 'createTime'
|
|
1215
|
-
collection :destination_cidrs, as: 'destinationCidrs'
|
|
1216
|
-
property :display_name, as: 'displayName'
|
|
1217
|
-
hash :labels, as: 'labels'
|
|
1218
|
-
property :name, as: 'name'
|
|
1219
|
-
property :network_vpc, as: 'networkVpc'
|
|
1220
|
-
property :state, as: 'state'
|
|
1221
|
-
property :uid, as: 'uid'
|
|
1222
|
-
property :update_time, as: 'updateTime'
|
|
1223
|
-
end
|
|
1224
|
-
end
|
|
1225
|
-
|
|
1226
|
-
class GoogleCloudBeyondcorpNetconnectionsV1alphaNetConnectionOperationMetadata
|
|
1227
|
-
# @private
|
|
1228
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1229
|
-
property :api_version, as: 'apiVersion'
|
|
1230
|
-
property :create_time, as: 'createTime'
|
|
1231
|
-
property :end_time, as: 'endTime'
|
|
1232
|
-
property :requested_cancellation, as: 'requestedCancellation'
|
|
1233
|
-
property :status_message, as: 'statusMessage'
|
|
1234
|
-
property :target, as: 'target'
|
|
1235
|
-
property :verb, as: 'verb'
|
|
1236
|
-
end
|
|
1237
|
-
end
|
|
1238
|
-
|
|
1239
1176
|
class GoogleCloudBeyondcorpSaasplatformInsightsV1alphaAppliedConfig
|
|
1240
1177
|
# @private
|
|
1241
1178
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -1334,6 +1271,30 @@ module Google
|
|
|
1334
1271
|
end
|
|
1335
1272
|
end
|
|
1336
1273
|
|
|
1274
|
+
class GoogleCloudBeyondcorpSaasplatformSubscriptionsV1alphaListSubscriptionsResponse
|
|
1275
|
+
# @private
|
|
1276
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1277
|
+
property :next_page_token, as: 'nextPageToken'
|
|
1278
|
+
collection :subscriptions, as: 'subscriptions', class: Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpSaasplatformSubscriptionsV1alphaSubscription, decorator: Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpSaasplatformSubscriptionsV1alphaSubscription::Representation
|
|
1279
|
+
|
|
1280
|
+
end
|
|
1281
|
+
end
|
|
1282
|
+
|
|
1283
|
+
class GoogleCloudBeyondcorpSaasplatformSubscriptionsV1alphaSubscription
|
|
1284
|
+
# @private
|
|
1285
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1286
|
+
property :auto_renew_enabled, as: 'autoRenewEnabled'
|
|
1287
|
+
property :create_time, as: 'createTime'
|
|
1288
|
+
property :end_time, as: 'endTime'
|
|
1289
|
+
property :name, as: 'name'
|
|
1290
|
+
property :seat_count, :numeric_string => true, as: 'seatCount'
|
|
1291
|
+
property :sku, as: 'sku'
|
|
1292
|
+
property :start_time, as: 'startTime'
|
|
1293
|
+
property :state, as: 'state'
|
|
1294
|
+
property :type, as: 'type'
|
|
1295
|
+
end
|
|
1296
|
+
end
|
|
1297
|
+
|
|
1337
1298
|
class GoogleCloudLocationListLocationsResponse
|
|
1338
1299
|
# @private
|
|
1339
1300
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -234,6 +234,115 @@ module Google
|
|
|
234
234
|
execute_or_queue_command(command, &block)
|
|
235
235
|
end
|
|
236
236
|
|
|
237
|
+
# Creates a new BeyondCorp Enterprise Subscription in a given organization.
|
|
238
|
+
# Location will always be global as BeyondCorp subscriptions are per
|
|
239
|
+
# organization.
|
|
240
|
+
# @param [String] parent
|
|
241
|
+
# Required. The resource name of the subscription location using the form: `
|
|
242
|
+
# organizations/`organization_id`/locations/`location``
|
|
243
|
+
# @param [Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpSaasplatformSubscriptionsV1alphaSubscription] google_cloud_beyondcorp_saasplatform_subscriptions_v1alpha_subscription_object
|
|
244
|
+
# @param [String] fields
|
|
245
|
+
# Selector specifying which fields to include in a partial response.
|
|
246
|
+
# @param [String] quota_user
|
|
247
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
|
248
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
|
249
|
+
# @param [Google::Apis::RequestOptions] options
|
|
250
|
+
# Request-specific options
|
|
251
|
+
#
|
|
252
|
+
# @yield [result, err] Result & error if block supplied
|
|
253
|
+
# @yieldparam result [Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpSaasplatformSubscriptionsV1alphaSubscription] parsed result object
|
|
254
|
+
# @yieldparam err [StandardError] error object if request failed
|
|
255
|
+
#
|
|
256
|
+
# @return [Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpSaasplatformSubscriptionsV1alphaSubscription]
|
|
257
|
+
#
|
|
258
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
259
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
260
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
261
|
+
def create_organization_location_subscription(parent, google_cloud_beyondcorp_saasplatform_subscriptions_v1alpha_subscription_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
262
|
+
command = make_simple_command(:post, 'v1alpha/{+parent}/subscriptions', options)
|
|
263
|
+
command.request_representation = Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpSaasplatformSubscriptionsV1alphaSubscription::Representation
|
|
264
|
+
command.request_object = google_cloud_beyondcorp_saasplatform_subscriptions_v1alpha_subscription_object
|
|
265
|
+
command.response_representation = Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpSaasplatformSubscriptionsV1alphaSubscription::Representation
|
|
266
|
+
command.response_class = Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpSaasplatformSubscriptionsV1alphaSubscription
|
|
267
|
+
command.params['parent'] = parent unless parent.nil?
|
|
268
|
+
command.query['fields'] = fields unless fields.nil?
|
|
269
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
270
|
+
execute_or_queue_command(command, &block)
|
|
271
|
+
end
|
|
272
|
+
|
|
273
|
+
# Gets details of a single Subscription.
|
|
274
|
+
# @param [String] name
|
|
275
|
+
# Required. The resource name of Subscription using the form: `organizations/`
|
|
276
|
+
# organization_id`/locations/`location`/subscriptions/`subscription_id``
|
|
277
|
+
# @param [String] fields
|
|
278
|
+
# Selector specifying which fields to include in a partial response.
|
|
279
|
+
# @param [String] quota_user
|
|
280
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
|
281
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
|
282
|
+
# @param [Google::Apis::RequestOptions] options
|
|
283
|
+
# Request-specific options
|
|
284
|
+
#
|
|
285
|
+
# @yield [result, err] Result & error if block supplied
|
|
286
|
+
# @yieldparam result [Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpSaasplatformSubscriptionsV1alphaSubscription] parsed result object
|
|
287
|
+
# @yieldparam err [StandardError] error object if request failed
|
|
288
|
+
#
|
|
289
|
+
# @return [Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpSaasplatformSubscriptionsV1alphaSubscription]
|
|
290
|
+
#
|
|
291
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
292
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
293
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
294
|
+
def get_organization_location_subscription(name, fields: nil, quota_user: nil, options: nil, &block)
|
|
295
|
+
command = make_simple_command(:get, 'v1alpha/{+name}', options)
|
|
296
|
+
command.response_representation = Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpSaasplatformSubscriptionsV1alphaSubscription::Representation
|
|
297
|
+
command.response_class = Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpSaasplatformSubscriptionsV1alphaSubscription
|
|
298
|
+
command.params['name'] = name unless name.nil?
|
|
299
|
+
command.query['fields'] = fields unless fields.nil?
|
|
300
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
301
|
+
execute_or_queue_command(command, &block)
|
|
302
|
+
end
|
|
303
|
+
|
|
304
|
+
# Lists Subscriptions in a given organization and location.
|
|
305
|
+
# @param [String] parent
|
|
306
|
+
# Required. The resource name of Subscription using the form: `organizations/`
|
|
307
|
+
# organization_id`/locations/`location``
|
|
308
|
+
# @param [Fixnum] page_size
|
|
309
|
+
# Optional. The maximum number of items to return. If not specified, a default
|
|
310
|
+
# value of 50 will be used by the service. Regardless of the page_size value,
|
|
311
|
+
# the response may include a partial list and a caller should only rely on
|
|
312
|
+
# response's next_page_token to determine if there are more instances left to be
|
|
313
|
+
# queried.
|
|
314
|
+
# @param [String] page_token
|
|
315
|
+
# Optional. The next_page_token value returned from a previous
|
|
316
|
+
# ListSubscriptionsRequest, if any.
|
|
317
|
+
# @param [String] fields
|
|
318
|
+
# Selector specifying which fields to include in a partial response.
|
|
319
|
+
# @param [String] quota_user
|
|
320
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
|
321
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
|
322
|
+
# @param [Google::Apis::RequestOptions] options
|
|
323
|
+
# Request-specific options
|
|
324
|
+
#
|
|
325
|
+
# @yield [result, err] Result & error if block supplied
|
|
326
|
+
# @yieldparam result [Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpSaasplatformSubscriptionsV1alphaListSubscriptionsResponse] parsed result object
|
|
327
|
+
# @yieldparam err [StandardError] error object if request failed
|
|
328
|
+
#
|
|
329
|
+
# @return [Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpSaasplatformSubscriptionsV1alphaListSubscriptionsResponse]
|
|
330
|
+
#
|
|
331
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
332
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
333
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
334
|
+
def list_organization_location_subscriptions(parent, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
335
|
+
command = make_simple_command(:get, 'v1alpha/{+parent}/subscriptions', options)
|
|
336
|
+
command.response_representation = Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpSaasplatformSubscriptionsV1alphaListSubscriptionsResponse::Representation
|
|
337
|
+
command.response_class = Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpSaasplatformSubscriptionsV1alphaListSubscriptionsResponse
|
|
338
|
+
command.params['parent'] = parent unless parent.nil?
|
|
339
|
+
command.query['pageSize'] = page_size unless page_size.nil?
|
|
340
|
+
command.query['pageToken'] = page_token unless page_token.nil?
|
|
341
|
+
command.query['fields'] = fields unless fields.nil?
|
|
342
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
343
|
+
execute_or_queue_command(command, &block)
|
|
344
|
+
end
|
|
345
|
+
|
|
237
346
|
# Gets information about a location.
|
|
238
347
|
# @param [String] name
|
|
239
348
|
# Resource name for the location.
|
|
@@ -3230,139 +3339,6 @@ module Google
|
|
|
3230
3339
|
execute_or_queue_command(command, &block)
|
|
3231
3340
|
end
|
|
3232
3341
|
|
|
3233
|
-
# Creates a new NetConnection in a given project and location.
|
|
3234
|
-
# @param [String] parent
|
|
3235
|
-
# Required. The resource project name of the NetConnection location using the
|
|
3236
|
-
# form: `projects/`project_id`/locations/`location_id``
|
|
3237
|
-
# @param [Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpNetconnectionsV1alphaNetConnection] google_cloud_beyondcorp_netconnections_v1alpha_net_connection_object
|
|
3238
|
-
# @param [String] net_connection_id
|
|
3239
|
-
# Optional. User-settable NetConnection resource ID. * Must start with a letter.
|
|
3240
|
-
# * Must contain between 4-63 characters from `/a-z-/`. * Must end with a number
|
|
3241
|
-
# or a letter.
|
|
3242
|
-
# @param [String] request_id
|
|
3243
|
-
# Optional. An optional request ID to identify requests. Specify a unique
|
|
3244
|
-
# request ID so that if you must retry your request, the server will know to
|
|
3245
|
-
# ignore the request if it has already been completed. The server will guarantee
|
|
3246
|
-
# that for at least 60 minutes since the first request. For example, consider a
|
|
3247
|
-
# situation where you make an initial request and t he request times out. If you
|
|
3248
|
-
# make the request again with the same request ID, the server can check if
|
|
3249
|
-
# original operation with the same request ID was received, and if so, will
|
|
3250
|
-
# ignore the second request. This prevents clients from accidentally creating
|
|
3251
|
-
# duplicate commitments. The request ID must be a valid UUID with the exception
|
|
3252
|
-
# that zero UUID is not supported (00000000-0000-0000-0000-000000000000).
|
|
3253
|
-
# @param [Boolean] validate_only
|
|
3254
|
-
# Optional. If set, validates request by executing a dry-run which would not
|
|
3255
|
-
# alter the resource in any way.
|
|
3256
|
-
# @param [String] fields
|
|
3257
|
-
# Selector specifying which fields to include in a partial response.
|
|
3258
|
-
# @param [String] quota_user
|
|
3259
|
-
# Available to use for quota purposes for server-side applications. Can be any
|
|
3260
|
-
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
|
3261
|
-
# @param [Google::Apis::RequestOptions] options
|
|
3262
|
-
# Request-specific options
|
|
3263
|
-
#
|
|
3264
|
-
# @yield [result, err] Result & error if block supplied
|
|
3265
|
-
# @yieldparam result [Google::Apis::BeyondcorpV1alpha::GoogleLongrunningOperation] parsed result object
|
|
3266
|
-
# @yieldparam err [StandardError] error object if request failed
|
|
3267
|
-
#
|
|
3268
|
-
# @return [Google::Apis::BeyondcorpV1alpha::GoogleLongrunningOperation]
|
|
3269
|
-
#
|
|
3270
|
-
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
3271
|
-
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
3272
|
-
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
3273
|
-
def create_project_location_net_connection(parent, google_cloud_beyondcorp_netconnections_v1alpha_net_connection_object = nil, net_connection_id: nil, request_id: nil, validate_only: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
3274
|
-
command = make_simple_command(:post, 'v1alpha/{+parent}/netConnections', options)
|
|
3275
|
-
command.request_representation = Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpNetconnectionsV1alphaNetConnection::Representation
|
|
3276
|
-
command.request_object = google_cloud_beyondcorp_netconnections_v1alpha_net_connection_object
|
|
3277
|
-
command.response_representation = Google::Apis::BeyondcorpV1alpha::GoogleLongrunningOperation::Representation
|
|
3278
|
-
command.response_class = Google::Apis::BeyondcorpV1alpha::GoogleLongrunningOperation
|
|
3279
|
-
command.params['parent'] = parent unless parent.nil?
|
|
3280
|
-
command.query['netConnectionId'] = net_connection_id unless net_connection_id.nil?
|
|
3281
|
-
command.query['requestId'] = request_id unless request_id.nil?
|
|
3282
|
-
command.query['validateOnly'] = validate_only unless validate_only.nil?
|
|
3283
|
-
command.query['fields'] = fields unless fields.nil?
|
|
3284
|
-
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
3285
|
-
execute_or_queue_command(command, &block)
|
|
3286
|
-
end
|
|
3287
|
-
|
|
3288
|
-
# Deletes a single NetConnection.
|
|
3289
|
-
# @param [String] name
|
|
3290
|
-
# Required. BeyondCorp Connector name using the form: `projects/`project_id`/
|
|
3291
|
-
# locations/`location_id`/netConnections/`net_connection_id``
|
|
3292
|
-
# @param [String] request_id
|
|
3293
|
-
# Optional. An optional request ID to identify requests. Specify a unique
|
|
3294
|
-
# request ID so that if you must retry your request, the server will know to
|
|
3295
|
-
# ignore the request if it has already been completed. The server will guarantee
|
|
3296
|
-
# that for at least 60 minutes after the first request. For example, consider a
|
|
3297
|
-
# situation where you make an initial request and t he request times out. If you
|
|
3298
|
-
# make the request again with the same request ID, the server can check if
|
|
3299
|
-
# original operation with the same request ID was received, and if so, will
|
|
3300
|
-
# ignore the second request. This prevents clients from accidentally creating
|
|
3301
|
-
# duplicate commitments. The request ID must be a valid UUID with the exception
|
|
3302
|
-
# that zero UUID is not supported (00000000-0000-0000-0000-000000000000).
|
|
3303
|
-
# @param [Boolean] validate_only
|
|
3304
|
-
# Optional. If set, validates request by executing a dry-run which would not
|
|
3305
|
-
# alter the resource in any way.
|
|
3306
|
-
# @param [String] fields
|
|
3307
|
-
# Selector specifying which fields to include in a partial response.
|
|
3308
|
-
# @param [String] quota_user
|
|
3309
|
-
# Available to use for quota purposes for server-side applications. Can be any
|
|
3310
|
-
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
|
3311
|
-
# @param [Google::Apis::RequestOptions] options
|
|
3312
|
-
# Request-specific options
|
|
3313
|
-
#
|
|
3314
|
-
# @yield [result, err] Result & error if block supplied
|
|
3315
|
-
# @yieldparam result [Google::Apis::BeyondcorpV1alpha::GoogleLongrunningOperation] parsed result object
|
|
3316
|
-
# @yieldparam err [StandardError] error object if request failed
|
|
3317
|
-
#
|
|
3318
|
-
# @return [Google::Apis::BeyondcorpV1alpha::GoogleLongrunningOperation]
|
|
3319
|
-
#
|
|
3320
|
-
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
3321
|
-
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
3322
|
-
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
3323
|
-
def delete_project_location_net_connection(name, request_id: nil, validate_only: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
3324
|
-
command = make_simple_command(:delete, 'v1alpha/{+name}', options)
|
|
3325
|
-
command.response_representation = Google::Apis::BeyondcorpV1alpha::GoogleLongrunningOperation::Representation
|
|
3326
|
-
command.response_class = Google::Apis::BeyondcorpV1alpha::GoogleLongrunningOperation
|
|
3327
|
-
command.params['name'] = name unless name.nil?
|
|
3328
|
-
command.query['requestId'] = request_id unless request_id.nil?
|
|
3329
|
-
command.query['validateOnly'] = validate_only unless validate_only.nil?
|
|
3330
|
-
command.query['fields'] = fields unless fields.nil?
|
|
3331
|
-
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
3332
|
-
execute_or_queue_command(command, &block)
|
|
3333
|
-
end
|
|
3334
|
-
|
|
3335
|
-
# Gets details of a single NetConnection.
|
|
3336
|
-
# @param [String] name
|
|
3337
|
-
# Required. BeyondCorp NetConnection name using the form: `projects/`project_id`/
|
|
3338
|
-
# locations/`location_id`/netConnections/`net_connection_id``
|
|
3339
|
-
# @param [String] fields
|
|
3340
|
-
# Selector specifying which fields to include in a partial response.
|
|
3341
|
-
# @param [String] quota_user
|
|
3342
|
-
# Available to use for quota purposes for server-side applications. Can be any
|
|
3343
|
-
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
|
3344
|
-
# @param [Google::Apis::RequestOptions] options
|
|
3345
|
-
# Request-specific options
|
|
3346
|
-
#
|
|
3347
|
-
# @yield [result, err] Result & error if block supplied
|
|
3348
|
-
# @yieldparam result [Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpNetconnectionsV1alphaNetConnection] parsed result object
|
|
3349
|
-
# @yieldparam err [StandardError] error object if request failed
|
|
3350
|
-
#
|
|
3351
|
-
# @return [Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpNetconnectionsV1alphaNetConnection]
|
|
3352
|
-
#
|
|
3353
|
-
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
3354
|
-
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
3355
|
-
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
3356
|
-
def get_project_location_net_connection(name, fields: nil, quota_user: nil, options: nil, &block)
|
|
3357
|
-
command = make_simple_command(:get, 'v1alpha/{+name}', options)
|
|
3358
|
-
command.response_representation = Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpNetconnectionsV1alphaNetConnection::Representation
|
|
3359
|
-
command.response_class = Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpNetconnectionsV1alphaNetConnection
|
|
3360
|
-
command.params['name'] = name unless name.nil?
|
|
3361
|
-
command.query['fields'] = fields unless fields.nil?
|
|
3362
|
-
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
3363
|
-
execute_or_queue_command(command, &block)
|
|
3364
|
-
end
|
|
3365
|
-
|
|
3366
3342
|
# Gets the access control policy for a resource. Returns an empty policy if the
|
|
3367
3343
|
# resource exists and does not have a policy set.
|
|
3368
3344
|
# @param [String] resource
|
|
@@ -3408,113 +3384,6 @@ module Google
|
|
|
3408
3384
|
execute_or_queue_command(command, &block)
|
|
3409
3385
|
end
|
|
3410
3386
|
|
|
3411
|
-
# Lists NetConnections in a given project and location.
|
|
3412
|
-
# @param [String] parent
|
|
3413
|
-
# Required. The resource name of the NetConnection location using the form: `
|
|
3414
|
-
# projects/`project_id`/locations/`location_id``
|
|
3415
|
-
# @param [String] filter
|
|
3416
|
-
# Optional. A filter specifying constraints of a list operation.
|
|
3417
|
-
# @param [String] order_by
|
|
3418
|
-
# Optional. Specifies the ordering of results. See [Sorting order](https://cloud.
|
|
3419
|
-
# google.com/apis/design/design_patterns#sorting_order) for more information.
|
|
3420
|
-
# @param [Fixnum] page_size
|
|
3421
|
-
# Optional. The maximum number of items to return. If not specified, a default
|
|
3422
|
-
# value of 50 will be used by the service. Regardless of the page_size value,
|
|
3423
|
-
# the response may include a partial list and a caller should only rely on
|
|
3424
|
-
# response's next_page_token to determine if there are more instances left to be
|
|
3425
|
-
# queried.
|
|
3426
|
-
# @param [String] page_token
|
|
3427
|
-
# Optional. The next_page_token value returned from a previous
|
|
3428
|
-
# ListNetConnectionsRequest, if any.
|
|
3429
|
-
# @param [String] fields
|
|
3430
|
-
# Selector specifying which fields to include in a partial response.
|
|
3431
|
-
# @param [String] quota_user
|
|
3432
|
-
# Available to use for quota purposes for server-side applications. Can be any
|
|
3433
|
-
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
|
3434
|
-
# @param [Google::Apis::RequestOptions] options
|
|
3435
|
-
# Request-specific options
|
|
3436
|
-
#
|
|
3437
|
-
# @yield [result, err] Result & error if block supplied
|
|
3438
|
-
# @yieldparam result [Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpNetconnectionsV1alphaListNetConnectionsResponse] parsed result object
|
|
3439
|
-
# @yieldparam err [StandardError] error object if request failed
|
|
3440
|
-
#
|
|
3441
|
-
# @return [Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpNetconnectionsV1alphaListNetConnectionsResponse]
|
|
3442
|
-
#
|
|
3443
|
-
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
3444
|
-
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
3445
|
-
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
3446
|
-
def list_project_location_net_connections(parent, filter: nil, order_by: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
3447
|
-
command = make_simple_command(:get, 'v1alpha/{+parent}/netConnections', options)
|
|
3448
|
-
command.response_representation = Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpNetconnectionsV1alphaListNetConnectionsResponse::Representation
|
|
3449
|
-
command.response_class = Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpNetconnectionsV1alphaListNetConnectionsResponse
|
|
3450
|
-
command.params['parent'] = parent unless parent.nil?
|
|
3451
|
-
command.query['filter'] = filter unless filter.nil?
|
|
3452
|
-
command.query['orderBy'] = order_by unless order_by.nil?
|
|
3453
|
-
command.query['pageSize'] = page_size unless page_size.nil?
|
|
3454
|
-
command.query['pageToken'] = page_token unless page_token.nil?
|
|
3455
|
-
command.query['fields'] = fields unless fields.nil?
|
|
3456
|
-
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
3457
|
-
execute_or_queue_command(command, &block)
|
|
3458
|
-
end
|
|
3459
|
-
|
|
3460
|
-
# Updates the parameters of a single NetConnection.
|
|
3461
|
-
# @param [String] name
|
|
3462
|
-
# Required. Unique resource name of the NetConnection. The name is ignored when
|
|
3463
|
-
# creating a NetConnection.
|
|
3464
|
-
# @param [Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpNetconnectionsV1alphaNetConnection] google_cloud_beyondcorp_netconnections_v1alpha_net_connection_object
|
|
3465
|
-
# @param [Boolean] allow_missing
|
|
3466
|
-
# Optional. If set as true, will create the resource if it is not found.
|
|
3467
|
-
# @param [String] request_id
|
|
3468
|
-
# Optional. An optional request ID to identify requests. Specify a unique
|
|
3469
|
-
# request ID so that if you must retry your request, the server will know to
|
|
3470
|
-
# ignore the request if it has already been completed. The server will guarantee
|
|
3471
|
-
# that for at least 60 minutes since the first request. For example, consider a
|
|
3472
|
-
# situation where you make an initial request and t he request times out. If you
|
|
3473
|
-
# make the request again with the same request ID, the server can check if
|
|
3474
|
-
# original operation with the same request ID was received, and if so, will
|
|
3475
|
-
# ignore the second request. This prevents clients from accidentally creating
|
|
3476
|
-
# duplicate commitments. The request ID must be a valid UUID with the exception
|
|
3477
|
-
# that zero UUID is not supported (00000000-0000-0000-0000-000000000000).
|
|
3478
|
-
# @param [String] update_mask
|
|
3479
|
-
# Required. Mask of fields to update. At least one path must be supplied in this
|
|
3480
|
-
# field. The elements of the repeated paths field may only include these fields
|
|
3481
|
-
# from [BeyondCorp.NetConnection]: * `labels` * `display_name`
|
|
3482
|
-
# @param [Boolean] validate_only
|
|
3483
|
-
# Optional. If set, validates request by executing a dry-run which would not
|
|
3484
|
-
# alter the resource in any way.
|
|
3485
|
-
# @param [String] fields
|
|
3486
|
-
# Selector specifying which fields to include in a partial response.
|
|
3487
|
-
# @param [String] quota_user
|
|
3488
|
-
# Available to use for quota purposes for server-side applications. Can be any
|
|
3489
|
-
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
|
3490
|
-
# @param [Google::Apis::RequestOptions] options
|
|
3491
|
-
# Request-specific options
|
|
3492
|
-
#
|
|
3493
|
-
# @yield [result, err] Result & error if block supplied
|
|
3494
|
-
# @yieldparam result [Google::Apis::BeyondcorpV1alpha::GoogleLongrunningOperation] parsed result object
|
|
3495
|
-
# @yieldparam err [StandardError] error object if request failed
|
|
3496
|
-
#
|
|
3497
|
-
# @return [Google::Apis::BeyondcorpV1alpha::GoogleLongrunningOperation]
|
|
3498
|
-
#
|
|
3499
|
-
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
3500
|
-
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
3501
|
-
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
3502
|
-
def patch_project_location_net_connection(name, google_cloud_beyondcorp_netconnections_v1alpha_net_connection_object = nil, allow_missing: nil, request_id: nil, update_mask: nil, validate_only: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
3503
|
-
command = make_simple_command(:patch, 'v1alpha/{+name}', options)
|
|
3504
|
-
command.request_representation = Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpNetconnectionsV1alphaNetConnection::Representation
|
|
3505
|
-
command.request_object = google_cloud_beyondcorp_netconnections_v1alpha_net_connection_object
|
|
3506
|
-
command.response_representation = Google::Apis::BeyondcorpV1alpha::GoogleLongrunningOperation::Representation
|
|
3507
|
-
command.response_class = Google::Apis::BeyondcorpV1alpha::GoogleLongrunningOperation
|
|
3508
|
-
command.params['name'] = name unless name.nil?
|
|
3509
|
-
command.query['allowMissing'] = allow_missing unless allow_missing.nil?
|
|
3510
|
-
command.query['requestId'] = request_id unless request_id.nil?
|
|
3511
|
-
command.query['updateMask'] = update_mask unless update_mask.nil?
|
|
3512
|
-
command.query['validateOnly'] = validate_only unless validate_only.nil?
|
|
3513
|
-
command.query['fields'] = fields unless fields.nil?
|
|
3514
|
-
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
3515
|
-
execute_or_queue_command(command, &block)
|
|
3516
|
-
end
|
|
3517
|
-
|
|
3518
3387
|
# Sets the access control policy on the specified resource. Replaces any
|
|
3519
3388
|
# existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `
|
|
3520
3389
|
# PERMISSION_DENIED` errors.
|
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.
|
|
4
|
+
version: 0.12.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: 2022-10-
|
|
11
|
+
date: 2022-10-31 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.
|
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-beyondcorp_v1alpha/v0.12.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: []
|