google-apis-beyondcorp_v1alpha 0.43.0 → 0.44.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 +5 -0
- data/lib/google/apis/beyondcorp_v1alpha/classes.rb +13 -2
- data/lib/google/apis/beyondcorp_v1alpha/gem_version.rb +3 -3
- data/lib/google/apis/beyondcorp_v1alpha/representations.rb +1 -0
- data/lib/google/apis/beyondcorp_v1alpha/service.rb +2 -2
- metadata +4 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 80b097dec7df8cc59a2e3da5ad1fa681514373c12fd1fbd82192774600335833
|
4
|
+
data.tar.gz: 6f560da722eedc1eea9d9c850c4b2fd2eed86e5883b21947a34823b4a4545670
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e93588253c6da3e08947d46e282a731e8bc5305d79e6d527370981a6a33a736c540c9de2da111d711763dae33d0d20c1ee883369147573a53918e87a8385c574
|
7
|
+
data.tar.gz: a71559980819982ad244938d7b2aacdc9aa0f96eb171d0e7014d2d349779d23ea3ff5b9d3bc8ebc6cf65b40aacaed3c802f945dbab0361368d05e09bed2e2cfb
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
# Release history for google-apis-beyondcorp_v1alpha
|
2
2
|
|
3
|
+
### v0.44.0 (2025-03-02)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250219
|
6
|
+
* Regenerated using generator version 0.16.0
|
7
|
+
|
3
8
|
### v0.43.0 (2024-12-15)
|
4
9
|
|
5
10
|
* Regenerated from discovery document revision 20241204
|
@@ -2792,7 +2792,17 @@ module Google
|
|
2792
2792
|
# @return [String]
|
2793
2793
|
attr_accessor :create_time
|
2794
2794
|
|
2795
|
-
#
|
2795
|
+
# Optional. Whether the subscription is being created as part of the Citrix flow.
|
2796
|
+
# If this field is set to true, the subscription should have both the
|
2797
|
+
# start_time and end_time set in the request and the billing account used will
|
2798
|
+
# be the Citrix master billing account regardless of what its set to in the
|
2799
|
+
# request. This field can only be set to true in create requests.
|
2800
|
+
# Corresponds to the JSON property `csgCustomer`
|
2801
|
+
# @return [Boolean]
|
2802
|
+
attr_accessor :csg_customer
|
2803
|
+
alias_method :csg_customer?, :csg_customer
|
2804
|
+
|
2805
|
+
# Optional. End time of the subscription.
|
2796
2806
|
# Corresponds to the JSON property `endTime`
|
2797
2807
|
# @return [String]
|
2798
2808
|
attr_accessor :end_time
|
@@ -2813,7 +2823,7 @@ module Google
|
|
2813
2823
|
# @return [String]
|
2814
2824
|
attr_accessor :sku
|
2815
2825
|
|
2816
|
-
#
|
2826
|
+
# Optional. Start time of the subscription.
|
2817
2827
|
# Corresponds to the JSON property `startTime`
|
2818
2828
|
# @return [String]
|
2819
2829
|
attr_accessor :start_time
|
@@ -2842,6 +2852,7 @@ module Google
|
|
2842
2852
|
@auto_renew_enabled = args[:auto_renew_enabled] if args.key?(:auto_renew_enabled)
|
2843
2853
|
@billing_account = args[:billing_account] if args.key?(:billing_account)
|
2844
2854
|
@create_time = args[:create_time] if args.key?(:create_time)
|
2855
|
+
@csg_customer = args[:csg_customer] if args.key?(:csg_customer)
|
2845
2856
|
@end_time = args[:end_time] if args.key?(:end_time)
|
2846
2857
|
@name = args[:name] if args.key?(:name)
|
2847
2858
|
@seat_count = args[:seat_count] if args.key?(:seat_count)
|
@@ -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.44.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.16.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250219"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -1433,6 +1433,7 @@ module Google
|
|
1433
1433
|
property :auto_renew_enabled, as: 'autoRenewEnabled'
|
1434
1434
|
property :billing_account, as: 'billingAccount'
|
1435
1435
|
property :create_time, as: 'createTime'
|
1436
|
+
property :csg_customer, as: 'csgCustomer'
|
1436
1437
|
property :end_time, as: 'endTime'
|
1437
1438
|
property :name, as: 'name'
|
1438
1439
|
property :seat_count, :numeric_string => true, as: 'seatCount'
|
@@ -4298,7 +4298,7 @@ module Google
|
|
4298
4298
|
# duplicate commitments. The request ID must be a valid UUID with the exception
|
4299
4299
|
# that zero UUID is not supported (00000000-0000-0000-0000-000000000000).
|
4300
4300
|
# @param [String] update_mask
|
4301
|
-
#
|
4301
|
+
# Optional. Mutable fields include: display_name.
|
4302
4302
|
# @param [String] fields
|
4303
4303
|
# Selector specifying which fields to include in a partial response.
|
4304
4304
|
# @param [String] quota_user
|
@@ -4942,7 +4942,7 @@ module Google
|
|
4942
4942
|
# duplicate commitments. The request ID must be a valid UUID with the exception
|
4943
4943
|
# that zero UUID is not supported (00000000-0000-0000-0000-000000000000).
|
4944
4944
|
# @param [String] update_mask
|
4945
|
-
#
|
4945
|
+
# Optional. Mutable fields include: display_name, hubs.
|
4946
4946
|
# @param [String] fields
|
4947
4947
|
# Selector specifying which fields to include in a partial response.
|
4948
4948
|
# @param [String] quota_user
|
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
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.44.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
|
-
autorequire:
|
9
8
|
bindir: bin
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 2025-03-02 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: google-apis-core
|
@@ -58,9 +57,8 @@ licenses:
|
|
58
57
|
metadata:
|
59
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
59
|
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.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-beyondcorp_v1alpha/v0.44.0
|
62
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-beyondcorp_v1alpha
|
63
|
-
post_install_message:
|
64
62
|
rdoc_options: []
|
65
63
|
require_paths:
|
66
64
|
- lib
|
@@ -75,8 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
73
|
- !ruby/object:Gem::Version
|
76
74
|
version: '0'
|
77
75
|
requirements: []
|
78
|
-
rubygems_version: 3.5
|
79
|
-
signing_key:
|
76
|
+
rubygems_version: 3.6.5
|
80
77
|
specification_version: 4
|
81
78
|
summary: Simple REST client for BeyondCorp API V1alpha
|
82
79
|
test_files: []
|