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 +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/google/apis/prod_tt_sasportal_v1alpha1/classes.rb +45 -0
- data/lib/google/apis/prod_tt_sasportal_v1alpha1/gem_version.rb +2 -2
- data/lib/google/apis/prod_tt_sasportal_v1alpha1/representations.rb +18 -0
- data/lib/google/apis/prod_tt_sasportal_v1alpha1/service.rb +0 -60
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 38617076e767994bb93485da4c8360a1399470c655ccba4c89271774a8d16780
|
4
|
+
data.tar.gz: 63a79aaa52b80c71ebfd0788ca970a5c1cc98d5226bbcc46d1a5b14f9422dfc8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 17acedac3e394a9f2e8aa899328285d8dad7e27c83f0125fec9bf2c0feab0e1254d9f3ad21fd0b4d999ddc83a906eccce26ea6d21f6935c0b626a5a3d2754c16
|
7
|
+
data.tar.gz: a60dada0391dbc9db30cdb80a97cc87b2de374d1095bdd4794c2b1aa83f1746747a0645cb098a4a1d814c4411b61dc28737e0c00d31a7086fde9aa1de5caba43
|
data/CHANGELOG.md
CHANGED
@@ -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.
|
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 = "
|
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.
|
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-
|
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.
|
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: []
|