google-apis-connectors_v1 0.31.0 → 0.32.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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a1bf2332c233973c7b1309d8b89200589e0e7dd8d89c29599a35fc8b4cf408cd
|
4
|
+
data.tar.gz: 6f8fb863e821318fe14bc536475c326a4a9581332dd0ec96bf45288fe2a9cc80
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a8193846722cc1a8d491d9f3dd64bcb71cbfb8cc473e6fabed42910a92ea4571fad9fd281d0ce9dd6553e5fa3a8b56b5874f68a30cbf4cd9496c3c978f519df5
|
7
|
+
data.tar.gz: 6230bee9c6ea37803ba65781b1bfde2998ae8ea98af901947048258b3b22bce47082846053e9437d0c3385fc0472e3194e4c3f5a0750e2978f5b05e9d4b14963
|
data/CHANGELOG.md
CHANGED
@@ -342,6 +342,11 @@ module Google
|
|
342
342
|
attr_accessor :bool_value
|
343
343
|
alias_method :bool_value?, :bool_value
|
344
344
|
|
345
|
+
# Encryption Key value.
|
346
|
+
# Corresponds to the JSON property `encryptionKeyValue`
|
347
|
+
# @return [Google::Apis::ConnectorsV1::EncryptionKey]
|
348
|
+
attr_accessor :encryption_key_value
|
349
|
+
|
345
350
|
# Value is an integer
|
346
351
|
# Corresponds to the JSON property `intValue`
|
347
352
|
# @return [Fixnum]
|
@@ -352,11 +357,6 @@ module Google
|
|
352
357
|
# @return [String]
|
353
358
|
attr_accessor :key
|
354
359
|
|
355
|
-
# Encryption Key value.
|
356
|
-
# Corresponds to the JSON property `keyValue`
|
357
|
-
# @return [Google::Apis::ConnectorsV1::EncryptionKey]
|
358
|
-
attr_accessor :key_value
|
359
|
-
|
360
360
|
# Secret provides a reference to entries in Secret Manager.
|
361
361
|
# Corresponds to the JSON property `secretValue`
|
362
362
|
# @return [Google::Apis::ConnectorsV1::Secret]
|
@@ -374,9 +374,9 @@ module Google
|
|
374
374
|
# Update properties of this object
|
375
375
|
def update!(**args)
|
376
376
|
@bool_value = args[:bool_value] if args.key?(:bool_value)
|
377
|
+
@encryption_key_value = args[:encryption_key_value] if args.key?(:encryption_key_value)
|
377
378
|
@int_value = args[:int_value] if args.key?(:int_value)
|
378
379
|
@key = args[:key] if args.key?(:key)
|
379
|
-
@key_value = args[:key_value] if args.key?(:key_value)
|
380
380
|
@secret_value = args[:secret_value] if args.key?(:secret_value)
|
381
381
|
@string_value = args[:string_value] if args.key?(:string_value)
|
382
382
|
end
|
@@ -425,8 +425,13 @@ module Google
|
|
425
425
|
attr_accessor :required
|
426
426
|
alias_method :required?, :required
|
427
427
|
|
428
|
+
# Struct for representing boolean expressions.
|
429
|
+
# Corresponds to the JSON property `requiredCondition`
|
430
|
+
# @return [Google::Apis::ConnectorsV1::LogicalExpression]
|
431
|
+
attr_accessor :required_condition
|
432
|
+
|
428
433
|
# This configuration defines all the Cloud IAM roles that needs to be granted to
|
429
|
-
# a particular GCP resource for the selected
|
434
|
+
# a particular GCP resource for the selected principal like service account.
|
430
435
|
# These configurations will let UI display to customers what IAM roles need to
|
431
436
|
# be granted by them. Or these configurations can be used by the UI to render a '
|
432
437
|
# grant' button to do the same on behalf of the user.
|
@@ -464,6 +469,7 @@ module Google
|
|
464
469
|
@is_advanced = args[:is_advanced] if args.key?(:is_advanced)
|
465
470
|
@key = args[:key] if args.key?(:key)
|
466
471
|
@required = args[:required] if args.key?(:required)
|
472
|
+
@required_condition = args[:required_condition] if args.key?(:required_condition)
|
467
473
|
@role_grant = args[:role_grant] if args.key?(:role_grant)
|
468
474
|
@state = args[:state] if args.key?(:state)
|
469
475
|
@validation_regex = args[:validation_regex] if args.key?(:validation_regex)
|
@@ -854,7 +860,7 @@ module Google
|
|
854
860
|
attr_accessor :release_version
|
855
861
|
|
856
862
|
# This configuration defines all the Cloud IAM roles that needs to be granted to
|
857
|
-
# a particular GCP resource for the selected
|
863
|
+
# a particular GCP resource for the selected principal like service account.
|
858
864
|
# These configurations will let UI display to customers what IAM roles need to
|
859
865
|
# be granted by them. Or these configurations can be used by the UI to render a '
|
860
866
|
# grant' button to do the same on behalf of the user.
|
@@ -1378,6 +1384,50 @@ module Google
|
|
1378
1384
|
end
|
1379
1385
|
end
|
1380
1386
|
|
1387
|
+
# Field that needs to be compared.
|
1388
|
+
class FieldComparison
|
1389
|
+
include Google::Apis::Core::Hashable
|
1390
|
+
|
1391
|
+
# Boolean value
|
1392
|
+
# Corresponds to the JSON property `boolValue`
|
1393
|
+
# @return [Boolean]
|
1394
|
+
attr_accessor :bool_value
|
1395
|
+
alias_method :bool_value?, :bool_value
|
1396
|
+
|
1397
|
+
# Comparator to use for comparing the field value.
|
1398
|
+
# Corresponds to the JSON property `comparator`
|
1399
|
+
# @return [String]
|
1400
|
+
attr_accessor :comparator
|
1401
|
+
|
1402
|
+
# Integer value
|
1403
|
+
# Corresponds to the JSON property `intValue`
|
1404
|
+
# @return [Fixnum]
|
1405
|
+
attr_accessor :int_value
|
1406
|
+
|
1407
|
+
# Key of the field.
|
1408
|
+
# Corresponds to the JSON property `key`
|
1409
|
+
# @return [String]
|
1410
|
+
attr_accessor :key
|
1411
|
+
|
1412
|
+
# String value
|
1413
|
+
# Corresponds to the JSON property `stringValue`
|
1414
|
+
# @return [String]
|
1415
|
+
attr_accessor :string_value
|
1416
|
+
|
1417
|
+
def initialize(**args)
|
1418
|
+
update!(**args)
|
1419
|
+
end
|
1420
|
+
|
1421
|
+
# Update properties of this object
|
1422
|
+
def update!(**args)
|
1423
|
+
@bool_value = args[:bool_value] if args.key?(:bool_value)
|
1424
|
+
@comparator = args[:comparator] if args.key?(:comparator)
|
1425
|
+
@int_value = args[:int_value] if args.key?(:int_value)
|
1426
|
+
@key = args[:key] if args.key?(:key)
|
1427
|
+
@string_value = args[:string_value] if args.key?(:string_value)
|
1428
|
+
end
|
1429
|
+
end
|
1430
|
+
|
1381
1431
|
# Metadata of an input parameter.
|
1382
1432
|
class InputParameter
|
1383
1433
|
include Google::Apis::Core::Hashable
|
@@ -1808,6 +1858,37 @@ module Google
|
|
1808
1858
|
end
|
1809
1859
|
end
|
1810
1860
|
|
1861
|
+
# Struct for representing boolean expressions.
|
1862
|
+
class LogicalExpression
|
1863
|
+
include Google::Apis::Core::Hashable
|
1864
|
+
|
1865
|
+
# A list of fields to be compared.
|
1866
|
+
# Corresponds to the JSON property `fieldComparisons`
|
1867
|
+
# @return [Array<Google::Apis::ConnectorsV1::FieldComparison>]
|
1868
|
+
attr_accessor :field_comparisons
|
1869
|
+
|
1870
|
+
# A list of nested conditions to be compared.
|
1871
|
+
# Corresponds to the JSON property `logicalExpressions`
|
1872
|
+
# @return [Array<Google::Apis::ConnectorsV1::LogicalExpression>]
|
1873
|
+
attr_accessor :logical_expressions
|
1874
|
+
|
1875
|
+
# The logical operator to use between the fields and conditions.
|
1876
|
+
# Corresponds to the JSON property `logicalOperator`
|
1877
|
+
# @return [String]
|
1878
|
+
attr_accessor :logical_operator
|
1879
|
+
|
1880
|
+
def initialize(**args)
|
1881
|
+
update!(**args)
|
1882
|
+
end
|
1883
|
+
|
1884
|
+
# Update properties of this object
|
1885
|
+
def update!(**args)
|
1886
|
+
@field_comparisons = args[:field_comparisons] if args.key?(:field_comparisons)
|
1887
|
+
@logical_expressions = args[:logical_expressions] if args.key?(:logical_expressions)
|
1888
|
+
@logical_operator = args[:logical_operator] if args.key?(:logical_operator)
|
1889
|
+
end
|
1890
|
+
end
|
1891
|
+
|
1811
1892
|
# represents the Connector's Managed Zone resource
|
1812
1893
|
class ManagedZone
|
1813
1894
|
include Google::Apis::Core::Hashable
|
@@ -2378,7 +2459,7 @@ module Google
|
|
2378
2459
|
end
|
2379
2460
|
|
2380
2461
|
# This configuration defines all the Cloud IAM roles that needs to be granted to
|
2381
|
-
# a particular GCP resource for the selected
|
2462
|
+
# a particular GCP resource for the selected principal like service account.
|
2382
2463
|
# These configurations will let UI display to customers what IAM roles need to
|
2383
2464
|
# be granted by them. Or these configurations can be used by the UI to render a '
|
2384
2465
|
# grant' button to do the same on behalf of the user.
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module ConnectorsV1
|
18
18
|
# Version of the google-apis-connectors_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.32.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.12.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20230531"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -184,6 +184,12 @@ module Google
|
|
184
184
|
include Google::Apis::Core::JsonObjectSupport
|
185
185
|
end
|
186
186
|
|
187
|
+
class FieldComparison
|
188
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
189
|
+
|
190
|
+
include Google::Apis::Core::JsonObjectSupport
|
191
|
+
end
|
192
|
+
|
187
193
|
class InputParameter
|
188
194
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
189
195
|
|
@@ -268,6 +274,12 @@ module Google
|
|
268
274
|
include Google::Apis::Core::JsonObjectSupport
|
269
275
|
end
|
270
276
|
|
277
|
+
class LogicalExpression
|
278
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
279
|
+
|
280
|
+
include Google::Apis::Core::JsonObjectSupport
|
281
|
+
end
|
282
|
+
|
271
283
|
class ManagedZone
|
272
284
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
273
285
|
|
@@ -515,10 +527,10 @@ module Google
|
|
515
527
|
# @private
|
516
528
|
class Representation < Google::Apis::Core::JsonRepresentation
|
517
529
|
property :bool_value, as: 'boolValue'
|
530
|
+
property :encryption_key_value, as: 'encryptionKeyValue', class: Google::Apis::ConnectorsV1::EncryptionKey, decorator: Google::Apis::ConnectorsV1::EncryptionKey::Representation
|
531
|
+
|
518
532
|
property :int_value, :numeric_string => true, as: 'intValue'
|
519
533
|
property :key, as: 'key'
|
520
|
-
property :key_value, as: 'keyValue', class: Google::Apis::ConnectorsV1::EncryptionKey, decorator: Google::Apis::ConnectorsV1::EncryptionKey::Representation
|
521
|
-
|
522
534
|
property :secret_value, as: 'secretValue', class: Google::Apis::ConnectorsV1::Secret, decorator: Google::Apis::ConnectorsV1::Secret::Representation
|
523
535
|
|
524
536
|
property :string_value, as: 'stringValue'
|
@@ -537,6 +549,8 @@ module Google
|
|
537
549
|
property :is_advanced, as: 'isAdvanced'
|
538
550
|
property :key, as: 'key'
|
539
551
|
property :required, as: 'required'
|
552
|
+
property :required_condition, as: 'requiredCondition', class: Google::Apis::ConnectorsV1::LogicalExpression, decorator: Google::Apis::ConnectorsV1::LogicalExpression::Representation
|
553
|
+
|
540
554
|
property :role_grant, as: 'roleGrant', class: Google::Apis::ConnectorsV1::RoleGrant, decorator: Google::Apis::ConnectorsV1::RoleGrant::Representation
|
541
555
|
|
542
556
|
property :state, as: 'state'
|
@@ -772,6 +786,17 @@ module Google
|
|
772
786
|
end
|
773
787
|
end
|
774
788
|
|
789
|
+
class FieldComparison
|
790
|
+
# @private
|
791
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
792
|
+
property :bool_value, as: 'boolValue'
|
793
|
+
property :comparator, as: 'comparator'
|
794
|
+
property :int_value, :numeric_string => true, as: 'intValue'
|
795
|
+
property :key, as: 'key'
|
796
|
+
property :string_value, as: 'stringValue'
|
797
|
+
end
|
798
|
+
end
|
799
|
+
|
775
800
|
class InputParameter
|
776
801
|
# @private
|
777
802
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -906,6 +931,17 @@ module Google
|
|
906
931
|
end
|
907
932
|
end
|
908
933
|
|
934
|
+
class LogicalExpression
|
935
|
+
# @private
|
936
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
937
|
+
collection :field_comparisons, as: 'fieldComparisons', class: Google::Apis::ConnectorsV1::FieldComparison, decorator: Google::Apis::ConnectorsV1::FieldComparison::Representation
|
938
|
+
|
939
|
+
collection :logical_expressions, as: 'logicalExpressions', class: Google::Apis::ConnectorsV1::LogicalExpression, decorator: Google::Apis::ConnectorsV1::LogicalExpression::Representation
|
940
|
+
|
941
|
+
property :logical_operator, as: 'logicalOperator'
|
942
|
+
end
|
943
|
+
end
|
944
|
+
|
909
945
|
class ManagedZone
|
910
946
|
# @private
|
911
947
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-connectors_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.32.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: 2023-06-
|
11
|
+
date: 2023-06-11 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-connectors_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-connectors_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-connectors_v1/v0.32.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-connectors_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|