google-apis-sasportal_v1alpha1 0.10.0 → 0.14.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: 6067b0d028edd1166f2a6d2b6fdb016599db3ba81a40fff843f8632833789d4d
4
- data.tar.gz: c2e41d353b454f7282b6f76f14c0f4f73a15ed971761a1325798b8fb545cc5a1
3
+ metadata.gz: 9c38933204b041367b49e5366427c51bb113238d45e1149f35b05d63ef513460
4
+ data.tar.gz: 1490845fb2773a6cd171c9e5606eac296c2cb8e0a681893d08aee831420e5f45
5
5
  SHA512:
6
- metadata.gz: af712e4bce1efe80e2453a0567b1782bfdeaf2a0ae971d43bf700a11dbd00fcbea5da500bb685f22ae1818f52444f8a606e423a7280c5d63130f9d83e05f8328
7
- data.tar.gz: acbddf5e057471dac1c21c8e36891549b7188232fb9156c3c259434fceaf6f17764d48ee19edddcd15e3339dd26b87802c8435aca8d66e33f7017de209478c6c
6
+ metadata.gz: 17408240d483fa9e8ed928d0162165093a6e8eeb7b0643b42a8ed4cd59e670249df32ec093b79d539d970105c79bb5a331ea5dd6dd6bef46043f113d12630c5b
7
+ data.tar.gz: aaa12cf8a9ad8254281cd20a31f351e55a449271d9a080fae58544fea5bc1809a583e9a68f420a3b3a92206f808ddc106cd3bcfa2f53f45390fcbddae177e4c1
data/CHANGELOG.md CHANGED
@@ -1,5 +1,22 @@
1
1
  # Release history for google-apis-sasportal_v1alpha1
2
2
 
3
+ ### v0.14.0 (2021-12-16)
4
+
5
+ * Unspecified changes
6
+
7
+ ### v0.13.0 (2021-10-20)
8
+
9
+ * Unspecified changes
10
+
11
+ ### v0.12.0 (2021-09-15)
12
+
13
+ * Regenerated from discovery document revision 20210910
14
+
15
+ ### v0.11.0 (2021-06-29)
16
+
17
+ * Regenerated from discovery document revision 20210625
18
+ * Regenerated using generator version 0.4.0
19
+
3
20
  ### v0.10.0 (2021-06-24)
4
21
 
5
22
  * Unspecified changes
data/OVERVIEW.md CHANGED
@@ -51,7 +51,7 @@ require "google/apis/sasportal_v1alpha1"
51
51
  client = Google::Apis::SasportalV1alpha1::SasportalService.new
52
52
 
53
53
  # Authenticate calls
54
- client.authentication = # ... use the googleauth gem to create credentials
54
+ client.authorization = # ... use the googleauth gem to create credentials
55
55
  ```
56
56
 
57
57
  See the class reference docs for information on the methods you can call from a client.
@@ -60,8 +60,8 @@ See the class reference docs for information on the methods you can call from a
60
60
 
61
61
  More detailed descriptions of the Google simple REST clients are available in two documents.
62
62
 
63
- * The [Usage Guide](https://github.com/googleapis/google-api-ruby-client/blob/master/docs/usage-guide.md) discusses how to make API calls, how to use the provided data structures, and how to work the various features of the client library, including media upload and download, error handling, retries, pagination, and logging.
64
- * The [Auth Guide](https://github.com/googleapis/google-api-ruby-client/blob/master/docs/auth-guide.md) discusses authentication in the client libraries, including API keys, OAuth 2.0, service accounts, and environment variables.
63
+ * The [Usage Guide](https://github.com/googleapis/google-api-ruby-client/blob/main/docs/usage-guide.md) discusses how to make API calls, how to use the provided data structures, and how to work the various features of the client library, including media upload and download, error handling, retries, pagination, and logging.
64
+ * The [Auth Guide](https://github.com/googleapis/google-api-ruby-client/blob/main/docs/auth-guide.md) discusses authentication in the client libraries, including API keys, OAuth 2.0, service accounts, and environment variables.
65
65
 
66
66
  (Note: the above documents are written for the simple REST clients in general, and their examples may not reflect the Sasportal service in particular.)
67
67
 
@@ -435,12 +435,33 @@ module Google
435
435
  class SasPortalDeviceMetadata
436
436
  include Google::Apis::Core::Hashable
437
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
+
444
+ # CCG. A group of CBSDs in the same ICG requesting a common primary channel
445
+ # assignment. See CBRSA-TS-2001 V3.0.0 for more details.
446
+ # Corresponds to the JSON property `commonChannelGroup`
447
+ # @return [String]
448
+ attr_accessor :common_channel_group
449
+
450
+ # ICG. A group of CBSDs that manage their own interference with the group. See
451
+ # CBRSA-TS-2001 V3.0.0 for more details.
452
+ # Corresponds to the JSON property `interferenceCoordinationGroup`
453
+ # @return [String]
454
+ attr_accessor :interference_coordination_group
455
+
438
456
  def initialize(**args)
439
457
  update!(**args)
440
458
  end
441
459
 
442
460
  # Update properties of this object
443
461
  def update!(**args)
462
+ @antenna_model = args[:antenna_model] if args.key?(:antenna_model)
463
+ @common_channel_group = args[:common_channel_group] if args.key?(:common_channel_group)
464
+ @interference_coordination_group = args[:interference_coordination_group] if args.key?(:interference_coordination_group)
444
465
  end
445
466
  end
446
467
 
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module SasportalV1alpha1
18
18
  # Version of the google-apis-sasportal_v1alpha1 gem
19
- GEM_VERSION = "0.10.0"
19
+ GEM_VERSION = "0.14.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.3.0"
22
+ GENERATOR_VERSION = "0.4.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20210527"
25
+ REVISION = "20210910"
26
26
  end
27
27
  end
28
28
  end
@@ -353,6 +353,9 @@ module Google
353
353
  class SasPortalDeviceMetadata
354
354
  # @private
355
355
  class Representation < Google::Apis::Core::JsonRepresentation
356
+ property :antenna_model, as: 'antennaModel'
357
+ property :common_channel_group, as: 'commonChannelGroup'
358
+ property :interference_coordination_group, as: 'interferenceCoordinationGroup'
356
359
  end
357
360
  end
358
361
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-sasportal_v1alpha1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.10.0
4
+ version: 0.14.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-06-28 00:00:00.000000000 Z
11
+ date: 2022-01-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: '0.3'
19
+ version: '0.4'
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: 2.a
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: '0.3'
29
+ version: '0.4'
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a
@@ -57,9 +57,9 @@ licenses:
57
57
  - Apache-2.0
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
- changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-sasportal_v1alpha1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-sasportal_v1alpha1/v0.10.0
62
- source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-sasportal_v1alpha1
60
+ changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-sasportal_v1alpha1/CHANGELOG.md
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-sasportal_v1alpha1/v0.14.0
62
+ source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-sasportal_v1alpha1
63
63
  post_install_message:
64
64
  rdoc_options: []
65
65
  require_paths:
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
77
  requirements: []
78
- rubygems_version: 3.2.17
78
+ rubygems_version: 3.3.4
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for SAS Portal API V1alpha1