google-apis-prod_tt_sasportal_v1alpha1 0.16.0 → 0.17.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: c46475c7c9005a3881a88ea696fd68a22fe8b399d41f87f599fc1c634fc8fdc9
4
- data.tar.gz: e03e0f2ad4b9969c2dba3b1e193b718ea305d7107e83e65524d24a61e3efe5a3
3
+ metadata.gz: 38617076e767994bb93485da4c8360a1399470c655ccba4c89271774a8d16780
4
+ data.tar.gz: 63a79aaa52b80c71ebfd0788ca970a5c1cc98d5226bbcc46d1a5b14f9422dfc8
5
5
  SHA512:
6
- metadata.gz: 335e915a043bf2b9f9784f27abe65103a2bd895870ff4cc13999b0c800434b657794c82ef265bbac1f19147265d84c52c6037e63bf57b12d8daef49007e71ae1
7
- data.tar.gz: b823d35cb438f2b5ce6ce5ad67b37d52140cb2de7b7dd9de0cdd753b9f68f587a82814dfc0899611656eba395fdd67620e6151e4ef59583130a440100f6320f7
6
+ metadata.gz: 17acedac3e394a9f2e8aa899328285d8dad7e27c83f0125fec9bf2c0feab0e1254d9f3ad21fd0b4d999ddc83a906eccce26ea6d21f6935c0b626a5a3d2754c16
7
+ data.tar.gz: a60dada0391dbc9db30cdb80a97cc87b2de374d1095bdd4794c2b1aa83f1746747a0645cb098a4a1d814c4411b61dc28737e0c00d31a7086fde9aa1de5caba43
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-prod_tt_sasportal_v1alpha1
2
2
 
3
+ ### v0.17.0 (2022-02-23)
4
+
5
+ * Regenerated from discovery document revision 20220221
6
+
3
7
  ### v0.16.0 (2022-02-19)
4
8
 
5
9
  * Regenerated from discovery document revision 20220219
@@ -448,6 +448,12 @@ module Google
448
448
  attr_accessor :nrqz_validated
449
449
  alias_method :nrqz_validated?, :nrqz_validated
450
450
 
451
+ # Information about National Radio Quiet Zone validation. The presence of the
452
+ # field indicates the device has been validated.
453
+ # Corresponds to the JSON property `nrqzValidation`
454
+ # @return [Google::Apis::ProdTtSasportalV1alpha1::SasPortalNrqzValidation]
455
+ attr_accessor :nrqz_validation
456
+
451
457
  def initialize(**args)
452
458
  update!(**args)
453
459
  end
@@ -458,6 +464,7 @@ module Google
458
464
  @common_channel_group = args[:common_channel_group] if args.key?(:common_channel_group)
459
465
  @interference_coordination_group = args[:interference_coordination_group] if args.key?(:interference_coordination_group)
460
466
  @nrqz_validated = args[:nrqz_validated] if args.key?(:nrqz_validated)
467
+ @nrqz_validation = args[:nrqz_validation] if args.key?(:nrqz_validation)
461
468
  end
462
469
  end
463
470
 
@@ -946,6 +953,44 @@ module Google
946
953
  end
947
954
  end
948
955
 
956
+ # Information about National Radio Quiet Zone validation. The presence of the
957
+ # field indicates the device has been validated.
958
+ class SasPortalNrqzValidation
959
+ include Google::Apis::Core::Hashable
960
+
961
+ # Validation case id.
962
+ # Corresponds to the JSON property `caseId`
963
+ # @return [String]
964
+ attr_accessor :case_id
965
+
966
+ # CPI who signed the validation.
967
+ # Corresponds to the JSON property `cpiId`
968
+ # @return [String]
969
+ attr_accessor :cpi_id
970
+
971
+ # Device latitude associated with the validation.
972
+ # Corresponds to the JSON property `latitude`
973
+ # @return [Float]
974
+ attr_accessor :latitude
975
+
976
+ # Device longitude associated with the validation.
977
+ # Corresponds to the JSON property `longitude`
978
+ # @return [Float]
979
+ attr_accessor :longitude
980
+
981
+ def initialize(**args)
982
+ update!(**args)
983
+ end
984
+
985
+ # Update properties of this object
986
+ def update!(**args)
987
+ @case_id = args[:case_id] if args.key?(:case_id)
988
+ @cpi_id = args[:cpi_id] if args.key?(:cpi_id)
989
+ @latitude = args[:latitude] if args.key?(:latitude)
990
+ @longitude = args[:longitude] if args.key?(:longitude)
991
+ end
992
+ end
993
+
949
994
  # This resource represents a long-running operation that is the result of a
950
995
  # network API call.
951
996
  class SasPortalOperation
@@ -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.16.0"
19
+ GEM_VERSION = "0.17.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.4.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220219"
25
+ REVISION = "20220221"
26
26
  end
27
27
  end
28
28
  end
@@ -178,6 +178,12 @@ module Google
178
178
  include Google::Apis::Core::JsonObjectSupport
179
179
  end
180
180
 
181
+ class SasPortalNrqzValidation
182
+ class Representation < Google::Apis::Core::JsonRepresentation; end
183
+
184
+ include Google::Apis::Core::JsonObjectSupport
185
+ end
186
+
181
187
  class SasPortalOperation
182
188
  class Representation < Google::Apis::Core::JsonRepresentation; end
183
189
 
@@ -355,6 +361,8 @@ module Google
355
361
  property :common_channel_group, as: 'commonChannelGroup'
356
362
  property :interference_coordination_group, as: 'interferenceCoordinationGroup'
357
363
  property :nrqz_validated, as: 'nrqzValidated'
364
+ property :nrqz_validation, as: 'nrqzValidation', class: Google::Apis::ProdTtSasportalV1alpha1::SasPortalNrqzValidation, decorator: Google::Apis::ProdTtSasportalV1alpha1::SasPortalNrqzValidation::Representation
365
+
358
366
  end
359
367
  end
360
368
 
@@ -498,6 +506,16 @@ module Google
498
506
  end
499
507
  end
500
508
 
509
+ class SasPortalNrqzValidation
510
+ # @private
511
+ class Representation < Google::Apis::Core::JsonRepresentation
512
+ property :case_id, as: 'caseId'
513
+ property :cpi_id, as: 'cpiId'
514
+ property :latitude, as: 'latitude'
515
+ property :longitude, as: 'longitude'
516
+ end
517
+ end
518
+
501
519
  class SasPortalOperation
502
520
  # @private
503
521
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -49,66 +49,6 @@ module Google
49
49
  @batch_path = 'batch'
50
50
  end
51
51
 
52
- # Creates a new SAS customer.
53
- # @param [Google::Apis::ProdTtSasportalV1alpha1::SasPortalCustomer] sas_portal_customer_object
54
- # @param [String] fields
55
- # Selector specifying which fields to include in a partial response.
56
- # @param [String] quota_user
57
- # Available to use for quota purposes for server-side applications. Can be any
58
- # arbitrary string assigned to a user, but should not exceed 40 characters.
59
- # @param [Google::Apis::RequestOptions] options
60
- # Request-specific options
61
- #
62
- # @yield [result, err] Result & error if block supplied
63
- # @yieldparam result [Google::Apis::ProdTtSasportalV1alpha1::SasPortalCustomer] parsed result object
64
- # @yieldparam err [StandardError] error object if request failed
65
- #
66
- # @return [Google::Apis::ProdTtSasportalV1alpha1::SasPortalCustomer]
67
- #
68
- # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
69
- # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
70
- # @raise [Google::Apis::AuthorizationError] Authorization is required
71
- def create_customer(sas_portal_customer_object = nil, fields: nil, quota_user: nil, options: nil, &block)
72
- command = make_simple_command(:post, 'v1alpha1/customers', options)
73
- command.request_representation = Google::Apis::ProdTtSasportalV1alpha1::SasPortalCustomer::Representation
74
- command.request_object = sas_portal_customer_object
75
- command.response_representation = Google::Apis::ProdTtSasportalV1alpha1::SasPortalCustomer::Representation
76
- command.response_class = Google::Apis::ProdTtSasportalV1alpha1::SasPortalCustomer
77
- command.query['fields'] = fields unless fields.nil?
78
- command.query['quotaUser'] = quota_user unless quota_user.nil?
79
- execute_or_queue_command(command, &block)
80
- end
81
-
82
- # Deletes a customer.
83
- # @param [String] name
84
- # Required. The name of the customer.
85
- # @param [String] fields
86
- # Selector specifying which fields to include in a partial response.
87
- # @param [String] quota_user
88
- # Available to use for quota purposes for server-side applications. Can be any
89
- # arbitrary string assigned to a user, but should not exceed 40 characters.
90
- # @param [Google::Apis::RequestOptions] options
91
- # Request-specific options
92
- #
93
- # @yield [result, err] Result & error if block supplied
94
- # @yieldparam result [Google::Apis::ProdTtSasportalV1alpha1::SasPortalEmpty] parsed result object
95
- # @yieldparam err [StandardError] error object if request failed
96
- #
97
- # @return [Google::Apis::ProdTtSasportalV1alpha1::SasPortalEmpty]
98
- #
99
- # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
100
- # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
101
- # @raise [Google::Apis::AuthorizationError] Authorization is required
102
- def delete_customer(name, fields: nil, quota_user: nil, options: nil, &block)
103
- command = make_simple_command(:delete, 'v1alpha1/{+name}', options)
104
- command.response_representation = Google::Apis::ProdTtSasportalV1alpha1::SasPortalEmpty::Representation
105
- command.response_class = Google::Apis::ProdTtSasportalV1alpha1::SasPortalEmpty
106
- command.params['name'] = name unless name.nil?
107
- command.query['fields'] = fields unless fields.nil?
108
- command.query['quotaUser'] = quota_user unless quota_user.nil?
109
- execute_or_queue_command(command, &block)
110
- end
111
-
112
52
  # Returns a requested customer.
113
53
  # @param [String] name
114
54
  # Required. The name of the customer.
metadata CHANGED
@@ -1,14 +1,14 @@
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.16.0
4
+ version: 0.17.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-02-21 00:00:00.000000000 Z
11
+ date: 2022-02-28 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-prod_tt_sasportal_v1alpha1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-prod_tt_sasportal_v1alpha1/v0.16.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-prod_tt_sasportal_v1alpha1/v0.17.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-prod_tt_sasportal_v1alpha1
63
63
  post_install_message:
64
64
  rdoc_options: []