google-apis-prod_tt_sasportal_v1alpha1 0.5.0 → 0.10.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 +22 -0
- data/lib/google/apis/prod_tt_sasportal_v1alpha1.rb +1 -1
- data/lib/google/apis/prod_tt_sasportal_v1alpha1/classes.rb +21 -0
- data/lib/google/apis/prod_tt_sasportal_v1alpha1/gem_version.rb +3 -3
- data/lib/google/apis/prod_tt_sasportal_v1alpha1/representations.rb +3 -0
- metadata +14 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c273db5306f478b88065ee75558f0819ea67fc9786ee63b034c3d6f26dd7b48c
|
4
|
+
data.tar.gz: b4c6c9f7e1d4b872278387c91a852732c071a02f6c4205efa367bd9d45806513
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: db44a1367b5ef7eb7e5fc760171f901e9b5c7078b87c9163b35697a1b202119efae398e7ad304c2beab6fc939962930f09b695aa9deae373edd2d062fff54a06
|
7
|
+
data.tar.gz: 28a7ab518e8e81c1fe26891f29a8ab1b8909763adfba3128b81e487bd850e38fb0c9568c0168b94c3b8e4baa227665c6faf9bf409bf35158a45ba9105ce3990b
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,27 @@
|
|
1
1
|
# Release history for google-apis-prod_tt_sasportal_v1alpha1
|
2
2
|
|
3
|
+
### v0.10.0 (2021-06-29)
|
4
|
+
|
5
|
+
* Regenerated using generator version 0.4.0
|
6
|
+
|
7
|
+
### v0.9.0 (2021-06-25)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20210624
|
10
|
+
* Regenerated using generator version 0.3.0
|
11
|
+
|
12
|
+
### v0.8.0 (2021-05-27)
|
13
|
+
|
14
|
+
* Regenerated from discovery document revision 20210526
|
15
|
+
|
16
|
+
### v0.7.0 (2021-05-20)
|
17
|
+
|
18
|
+
* Regenerated from discovery document revision 20210520
|
19
|
+
* Unspecified changes
|
20
|
+
|
21
|
+
### v0.6.0 (2021-04-06)
|
22
|
+
|
23
|
+
* Regenerated from discovery document revision 20210403
|
24
|
+
|
3
25
|
### v0.5.0 (2021-03-12)
|
4
26
|
|
5
27
|
* Regenerated from discovery document revision 20210310
|
@@ -153,6 +153,11 @@ module Google
|
|
153
153
|
# @return [String]
|
154
154
|
attr_accessor :display_name
|
155
155
|
|
156
|
+
# Output only. The FRNs copied from its direct parent.
|
157
|
+
# Corresponds to the JSON property `frns`
|
158
|
+
# @return [Array<String>]
|
159
|
+
attr_accessor :frns
|
160
|
+
|
156
161
|
# Output only. Resource name.
|
157
162
|
# Corresponds to the JSON property `name`
|
158
163
|
# @return [String]
|
@@ -173,6 +178,7 @@ module Google
|
|
173
178
|
@allowed_billing_modes = args[:allowed_billing_modes] if args.key?(:allowed_billing_modes)
|
174
179
|
@default_billing_mode = args[:default_billing_mode] if args.key?(:default_billing_mode)
|
175
180
|
@display_name = args[:display_name] if args.key?(:display_name)
|
181
|
+
@frns = args[:frns] if args.key?(:frns)
|
176
182
|
@name = args[:name] if args.key?(:name)
|
177
183
|
@sas_user_ids = args[:sas_user_ids] if args.key?(:sas_user_ids)
|
178
184
|
end
|
@@ -429,12 +435,19 @@ module Google
|
|
429
435
|
class SasPortalDeviceMetadata
|
430
436
|
include Google::Apis::Core::Hashable
|
431
437
|
|
438
|
+
# If populated, the Antenna Model Pattern to use. Format is: RecordCreatorId:
|
439
|
+
# PatternId
|
440
|
+
# Corresponds to the JSON property `antennaModel`
|
441
|
+
# @return [String]
|
442
|
+
attr_accessor :antenna_model
|
443
|
+
|
432
444
|
def initialize(**args)
|
433
445
|
update!(**args)
|
434
446
|
end
|
435
447
|
|
436
448
|
# Update properties of this object
|
437
449
|
def update!(**args)
|
450
|
+
@antenna_model = args[:antenna_model] if args.key?(:antenna_model)
|
438
451
|
end
|
439
452
|
end
|
440
453
|
|
@@ -1022,6 +1035,13 @@ module Google
|
|
1022
1035
|
class SasPortalSetPolicyRequest
|
1023
1036
|
include Google::Apis::Core::Hashable
|
1024
1037
|
|
1038
|
+
# Optional. Set the field as true when we would like to disable the onboarding
|
1039
|
+
# notification.
|
1040
|
+
# Corresponds to the JSON property `disableNotification`
|
1041
|
+
# @return [Boolean]
|
1042
|
+
attr_accessor :disable_notification
|
1043
|
+
alias_method :disable_notification?, :disable_notification
|
1044
|
+
|
1025
1045
|
# Defines an access control policy to the resources.
|
1026
1046
|
# Corresponds to the JSON property `policy`
|
1027
1047
|
# @return [Google::Apis::ProdTtSasportalV1alpha1::SasPortalPolicy]
|
@@ -1039,6 +1059,7 @@ module Google
|
|
1039
1059
|
|
1040
1060
|
# Update properties of this object
|
1041
1061
|
def update!(**args)
|
1062
|
+
@disable_notification = args[:disable_notification] if args.key?(:disable_notification)
|
1042
1063
|
@policy = args[:policy] if args.key?(:policy)
|
1043
1064
|
@resource = args[:resource] if args.key?(:resource)
|
1044
1065
|
end
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module ProdTtSasportalV1alpha1
|
18
18
|
# Version of the google-apis-prod_tt_sasportal_v1alpha1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.10.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.4.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20210624"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -278,6 +278,7 @@ module Google
|
|
278
278
|
collection :allowed_billing_modes, as: 'allowedBillingModes'
|
279
279
|
property :default_billing_mode, as: 'defaultBillingMode'
|
280
280
|
property :display_name, as: 'displayName'
|
281
|
+
collection :frns, as: 'frns'
|
281
282
|
property :name, as: 'name'
|
282
283
|
collection :sas_user_ids, as: 'sasUserIds'
|
283
284
|
end
|
@@ -352,6 +353,7 @@ module Google
|
|
352
353
|
class SasPortalDeviceMetadata
|
353
354
|
# @private
|
354
355
|
class Representation < Google::Apis::Core::JsonRepresentation
|
356
|
+
property :antenna_model, as: 'antennaModel'
|
355
357
|
end
|
356
358
|
end
|
357
359
|
|
@@ -519,6 +521,7 @@ module Google
|
|
519
521
|
class SasPortalSetPolicyRequest
|
520
522
|
# @private
|
521
523
|
class Representation < Google::Apis::Core::JsonRepresentation
|
524
|
+
property :disable_notification, as: 'disableNotification'
|
522
525
|
property :policy, as: 'policy', class: Google::Apis::ProdTtSasportalV1alpha1::SasPortalPolicy, decorator: Google::Apis::ProdTtSasportalV1alpha1::SasPortalPolicy::Representation
|
523
526
|
|
524
527
|
property :resource, as: 'resource'
|
metadata
CHANGED
@@ -1,29 +1,35 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-prod_tt_sasportal_v1alpha1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.10.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: 2021-
|
11
|
+
date: 2021-07-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- - "
|
17
|
+
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '0.
|
19
|
+
version: '0.4'
|
20
|
+
- - "<"
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: 2.a
|
20
23
|
type: :runtime
|
21
24
|
prerelease: false
|
22
25
|
version_requirements: !ruby/object:Gem::Requirement
|
23
26
|
requirements:
|
24
|
-
- - "
|
27
|
+
- - ">="
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '0.4'
|
30
|
+
- - "<"
|
25
31
|
- !ruby/object:Gem::Version
|
26
|
-
version:
|
32
|
+
version: 2.a
|
27
33
|
description: This is the simple REST client for SAS Portal API (Testing) V1alpha1.
|
28
34
|
Simple REST clients are Ruby client libraries that provide access to Google services
|
29
35
|
via their HTTP REST API endpoints. These libraries are generated and updated automatically
|
@@ -52,7 +58,7 @@ licenses:
|
|
52
58
|
metadata:
|
53
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
54
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-prod_tt_sasportal_v1alpha1/CHANGELOG.md
|
55
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-prod_tt_sasportal_v1alpha1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-prod_tt_sasportal_v1alpha1/v0.10.0
|
56
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-prod_tt_sasportal_v1alpha1
|
57
63
|
post_install_message:
|
58
64
|
rdoc_options: []
|
@@ -69,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
69
75
|
- !ruby/object:Gem::Version
|
70
76
|
version: '0'
|
71
77
|
requirements: []
|
72
|
-
rubygems_version: 3.2.
|
78
|
+
rubygems_version: 3.2.17
|
73
79
|
signing_key:
|
74
80
|
specification_version: 4
|
75
81
|
summary: Simple REST client for SAS Portal API (Testing) V1alpha1
|