google-apis-beyondcorp_v1alpha 0.64.0 → 0.65.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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3243f23c8d64087d0db3c710fe5298516d3f926c9769705b6065d8fffbffd281
|
|
4
|
+
data.tar.gz: 6cf230bb82eadc5e48563026ec29f91574f9e33bf0162dd6227a410e42c546bb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bab8875a7350264c78ff9b5c281e00d0bf38537af664bca13a80c7d7e48ed5200202918458843e52611091e1677acb241a0136e0695d05b72308e8c6e4068baf
|
|
7
|
+
data.tar.gz: c27c4802755041c208c68aef08c019d6a697c18efff32895dc12a45564cf3017fb87648fb9746e9764b3a09c285e45a9b359f68b9c043f4d70e2f6a214321ddc
|
data/CHANGELOG.md
CHANGED
|
@@ -2431,6 +2431,13 @@ module Google
|
|
|
2431
2431
|
# @return [Fixnum]
|
|
2432
2432
|
attr_accessor :seat_count
|
|
2433
2433
|
|
|
2434
|
+
# Optional. Input only. The source from which the subscription was initiated,
|
|
2435
|
+
# for example "admin-console-browser-overview" or "admin-console-security-
|
|
2436
|
+
# insights".
|
|
2437
|
+
# Corresponds to the JSON property `signupSource`
|
|
2438
|
+
# @return [String]
|
|
2439
|
+
attr_accessor :signup_source
|
|
2440
|
+
|
|
2434
2441
|
# Required. SKU of subscription.
|
|
2435
2442
|
# Corresponds to the JSON property `sku`
|
|
2436
2443
|
# @return [String]
|
|
@@ -2469,6 +2476,7 @@ module Google
|
|
|
2469
2476
|
@end_time = args[:end_time] if args.key?(:end_time)
|
|
2470
2477
|
@name = args[:name] if args.key?(:name)
|
|
2471
2478
|
@seat_count = args[:seat_count] if args.key?(:seat_count)
|
|
2479
|
+
@signup_source = args[:signup_source] if args.key?(:signup_source)
|
|
2472
2480
|
@sku = args[:sku] if args.key?(:sku)
|
|
2473
2481
|
@start_time = args[:start_time] if args.key?(:start_time)
|
|
2474
2482
|
@state = args[:state] if args.key?(:state)
|
|
@@ -2685,6 +2693,11 @@ module Google
|
|
|
2685
2693
|
# @return [Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpSecuritygatewaysV1alphaContextualHeadersDelegatedDeviceInfo]
|
|
2686
2694
|
attr_accessor :device_info
|
|
2687
2695
|
|
|
2696
|
+
# The delegated dispatch information configuration.
|
|
2697
|
+
# Corresponds to the JSON property `dispatchInfo`
|
|
2698
|
+
# @return [Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpSecuritygatewaysV1alphaContextualHeadersDelegatedDispatchInfo]
|
|
2699
|
+
attr_accessor :dispatch_info
|
|
2700
|
+
|
|
2688
2701
|
# The delegated group configuration details.
|
|
2689
2702
|
# Corresponds to the JSON property `groupInfo`
|
|
2690
2703
|
# @return [Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpSecuritygatewaysV1alphaContextualHeadersDelegatedGroupInfo]
|
|
@@ -2707,6 +2720,7 @@ module Google
|
|
|
2707
2720
|
# Update properties of this object
|
|
2708
2721
|
def update!(**args)
|
|
2709
2722
|
@device_info = args[:device_info] if args.key?(:device_info)
|
|
2723
|
+
@dispatch_info = args[:dispatch_info] if args.key?(:dispatch_info)
|
|
2710
2724
|
@group_info = args[:group_info] if args.key?(:group_info)
|
|
2711
2725
|
@output_type = args[:output_type] if args.key?(:output_type)
|
|
2712
2726
|
@user_info = args[:user_info] if args.key?(:user_info)
|
|
@@ -2732,6 +2746,25 @@ module Google
|
|
|
2732
2746
|
end
|
|
2733
2747
|
end
|
|
2734
2748
|
|
|
2749
|
+
# The delegated dispatch information configuration.
|
|
2750
|
+
class GoogleCloudBeyondcorpSecuritygatewaysV1alphaContextualHeadersDelegatedDispatchInfo
|
|
2751
|
+
include Google::Apis::Core::Hashable
|
|
2752
|
+
|
|
2753
|
+
# Optional. The output type details for the delegated dispatch information.
|
|
2754
|
+
# Corresponds to the JSON property `outputType`
|
|
2755
|
+
# @return [String]
|
|
2756
|
+
attr_accessor :output_type
|
|
2757
|
+
|
|
2758
|
+
def initialize(**args)
|
|
2759
|
+
update!(**args)
|
|
2760
|
+
end
|
|
2761
|
+
|
|
2762
|
+
# Update properties of this object
|
|
2763
|
+
def update!(**args)
|
|
2764
|
+
@output_type = args[:output_type] if args.key?(:output_type)
|
|
2765
|
+
end
|
|
2766
|
+
end
|
|
2767
|
+
|
|
2735
2768
|
# The delegated group configuration details.
|
|
2736
2769
|
class GoogleCloudBeyondcorpSecuritygatewaysV1alphaContextualHeadersDelegatedGroupInfo
|
|
2737
2770
|
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.65.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.19.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260722"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -418,6 +418,12 @@ module Google
|
|
|
418
418
|
include Google::Apis::Core::JsonObjectSupport
|
|
419
419
|
end
|
|
420
420
|
|
|
421
|
+
class GoogleCloudBeyondcorpSecuritygatewaysV1alphaContextualHeadersDelegatedDispatchInfo
|
|
422
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
423
|
+
|
|
424
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
425
|
+
end
|
|
426
|
+
|
|
421
427
|
class GoogleCloudBeyondcorpSecuritygatewaysV1alphaContextualHeadersDelegatedGroupInfo
|
|
422
428
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
423
429
|
|
|
@@ -1313,6 +1319,7 @@ module Google
|
|
|
1313
1319
|
property :end_time, as: 'endTime'
|
|
1314
1320
|
property :name, as: 'name'
|
|
1315
1321
|
property :seat_count, :numeric_string => true, as: 'seatCount'
|
|
1322
|
+
property :signup_source, as: 'signupSource'
|
|
1316
1323
|
property :sku, as: 'sku'
|
|
1317
1324
|
property :start_time, as: 'startTime'
|
|
1318
1325
|
property :state, as: 'state'
|
|
@@ -1383,6 +1390,8 @@ module Google
|
|
|
1383
1390
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1384
1391
|
property :device_info, as: 'deviceInfo', class: Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpSecuritygatewaysV1alphaContextualHeadersDelegatedDeviceInfo, decorator: Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpSecuritygatewaysV1alphaContextualHeadersDelegatedDeviceInfo::Representation
|
|
1385
1392
|
|
|
1393
|
+
property :dispatch_info, as: 'dispatchInfo', class: Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpSecuritygatewaysV1alphaContextualHeadersDelegatedDispatchInfo, decorator: Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpSecuritygatewaysV1alphaContextualHeadersDelegatedDispatchInfo::Representation
|
|
1394
|
+
|
|
1386
1395
|
property :group_info, as: 'groupInfo', class: Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpSecuritygatewaysV1alphaContextualHeadersDelegatedGroupInfo, decorator: Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpSecuritygatewaysV1alphaContextualHeadersDelegatedGroupInfo::Representation
|
|
1387
1396
|
|
|
1388
1397
|
property :output_type, as: 'outputType'
|
|
@@ -1398,6 +1407,13 @@ module Google
|
|
|
1398
1407
|
end
|
|
1399
1408
|
end
|
|
1400
1409
|
|
|
1410
|
+
class GoogleCloudBeyondcorpSecuritygatewaysV1alphaContextualHeadersDelegatedDispatchInfo
|
|
1411
|
+
# @private
|
|
1412
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1413
|
+
property :output_type, as: 'outputType'
|
|
1414
|
+
end
|
|
1415
|
+
end
|
|
1416
|
+
|
|
1401
1417
|
class GoogleCloudBeyondcorpSecuritygatewaysV1alphaContextualHeadersDelegatedGroupInfo
|
|
1402
1418
|
# @private
|
|
1403
1419
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
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.65.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
@@ -57,7 +57,7 @@ licenses:
|
|
|
57
57
|
metadata:
|
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-beyondcorp_v1alpha/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-beyondcorp_v1alpha/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-beyondcorp_v1alpha/v0.65.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-beyondcorp_v1alpha
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|