google-apis-connectors_v1 0.6.0 → 0.9.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: 2e3108b8f0b0cc72a85dfe6913d76821792f6f80df753e7c736efe7a802cb140
4
- data.tar.gz: f78f28dfc7c5444889442fd9e7be89d3791f6add153113d3039568cb3722aaad
3
+ metadata.gz: 794ec9328fe65f7c0aa8f64eb791178a1a99f816f84f7ed5f0ef2ea7a6b3c57c
4
+ data.tar.gz: 6d0300ead5b361d703ee1eaa2bf3d1f2e8661236b70b7ea1cf47306738330ee4
5
5
  SHA512:
6
- metadata.gz: 7f2ff6e16f5a7877e766b1bbcb00ffbe8a13198dc29c78b0895276b158da715aff07aac2542682a1568d1f8e2972e9de8f9abd8588ddec9b188509828bba89e0
7
- data.tar.gz: 1667ce42f3693e4c8c6e3c9cff0b79a61488d58811d2a98398d00add6121658ad33c1807c0dbf0db5cf502c205e810443447035a9e689373bb429867f491be6c
6
+ metadata.gz: 3f449bfe979f08c378c7ba1f2d75f9850a6e07b0f1cd4f0451a5038e99a187bbbe301433c14ea2bbfcd8966f58d2d8ee6deb9b74bce792cfbb3aa1a17e52f891
7
+ data.tar.gz: 52ed5d39e9d3dd46d7e71a70bbb8831afadb9ccbd30fe357b37a211f65f69f7b8091fe5f403147816d39691403691a43c0031454d6e4e7c4eb1ed8df6f604ed7
data/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # Release history for google-apis-connectors_v1
2
2
 
3
+ ### v0.9.0 (2022-05-28)
4
+
5
+ * Regenerated from discovery document revision 20220523
6
+
7
+ ### v0.8.0 (2022-05-14)
8
+
9
+ * Regenerated from discovery document revision 20220504
10
+
11
+ ### v0.7.0 (2022-04-30)
12
+
13
+ * Regenerated from discovery document revision 20220419
14
+
3
15
  ### v0.6.0 (2022-02-03)
4
16
 
5
17
  * Regenerated from discovery document revision 20220120
@@ -35,8 +35,8 @@ module Google
35
35
  # "audit_log_configs": [ ` "log_type": "DATA_READ" `, ` "log_type": "DATA_WRITE"
36
36
  # , "exempted_members": [ "user:aliya@example.com" ] ` ] ` ] ` For sampleservice,
37
37
  # this policy enables DATA_READ, DATA_WRITE and ADMIN_READ logging. It also
38
- # exempts jose@example.com from DATA_READ logging, and aliya@example.com from
39
- # DATA_WRITE logging.
38
+ # exempts `jose@example.com` from DATA_READ logging, and `aliya@example.com`
39
+ # from DATA_WRITE logging.
40
40
  class AuditConfig
41
41
  include Google::Apis::Core::Hashable
42
42
 
@@ -187,7 +187,7 @@ module Google
187
187
  # @return [Google::Apis::ConnectorsV1::Expr]
188
188
  attr_accessor :condition
189
189
 
190
- # Specifies the principals requesting access for a Cloud Platform resource. `
190
+ # Specifies the principals requesting access for a Google Cloud resource. `
191
191
  # members` can have the following values: * `allUsers`: A special identifier
192
192
  # that represents anyone who is on the internet; with or without a Google
193
193
  # account. * `allAuthenticatedUsers`: A special identifier that represents
@@ -308,6 +308,11 @@ module Google
308
308
  # @return [String]
309
309
  attr_accessor :display_name
310
310
 
311
+ # Enum options. To be populated if `ValueType` is `ENUM`
312
+ # Corresponds to the JSON property `enumOptions`
313
+ # @return [Array<Google::Apis::ConnectorsV1::EnumOption>]
314
+ attr_accessor :enum_options
315
+
311
316
  # Key of the config variable.
312
317
  # Corresponds to the JSON property `key`
313
318
  # @return [String]
@@ -348,6 +353,7 @@ module Google
348
353
  def update!(**args)
349
354
  @description = args[:description] if args.key?(:description)
350
355
  @display_name = args[:display_name] if args.key?(:display_name)
356
+ @enum_options = args[:enum_options] if args.key?(:enum_options)
351
357
  @key = args[:key] if args.key?(:key)
352
358
  @required = args[:required] if args.key?(:required)
353
359
  @role_grant = args[:role_grant] if args.key?(:role_grant)
@@ -747,8 +753,7 @@ module Google
747
753
  # A generic empty message that you can re-use to avoid defining duplicated empty
748
754
  # messages in your APIs. A typical example is to use it as the request or the
749
755
  # response type of an API method. For instance: service Foo ` rpc Bar(google.
750
- # protobuf.Empty) returns (google.protobuf.Empty); ` The JSON representation for
751
- # `Empty` is empty JSON object ````.
756
+ # protobuf.Empty) returns (google.protobuf.Empty); `
752
757
  class Empty
753
758
  include Google::Apis::Core::Hashable
754
759
 
@@ -761,6 +766,31 @@ module Google
761
766
  end
762
767
  end
763
768
 
769
+ # EnumOption definition
770
+ class EnumOption
771
+ include Google::Apis::Core::Hashable
772
+
773
+ # Display name of the option.
774
+ # Corresponds to the JSON property `displayName`
775
+ # @return [String]
776
+ attr_accessor :display_name
777
+
778
+ # Id of the option.
779
+ # Corresponds to the JSON property `id`
780
+ # @return [String]
781
+ attr_accessor :id
782
+
783
+ def initialize(**args)
784
+ update!(**args)
785
+ end
786
+
787
+ # Update properties of this object
788
+ def update!(**args)
789
+ @display_name = args[:display_name] if args.key?(:display_name)
790
+ @id = args[:id] if args.key?(:id)
791
+ end
792
+ end
793
+
764
794
  # Represents a textual expression in the Common Expression Language (CEL) syntax.
765
795
  # CEL is a C-like expression language. The syntax and semantics of CEL are
766
796
  # documented at https://github.com/google/cel-spec. Example (Comparison): title:
@@ -1822,10 +1852,7 @@ module Google
1822
1852
  # @return [String]
1823
1853
  attr_accessor :schema_gcs_bucket
1824
1854
 
1825
- # Output only. The name of the Service Directory service name. Used for Private
1826
- # Harpoon to resolve the ILB address. e.g. "projects/cloud-connectors-e2e-
1827
- # testing/locations/us-central1/namespaces/istio-system/services/istio-
1828
- # ingressgateway-connectors"
1855
+ # Output only. The name of the Service Directory service name.
1829
1856
  # Corresponds to the JSON property `serviceDirectory`
1830
1857
  # @return [String]
1831
1858
  attr_accessor :service_directory
@@ -2057,7 +2084,7 @@ module Google
2057
2084
  include Google::Apis::Core::Hashable
2058
2085
 
2059
2086
  # The set of permissions to check for the `resource`. Permissions with wildcards
2060
- # (such as '*' or 'storage.*') are not allowed. For more information see [IAM
2087
+ # (such as `*` or `storage.*`) are not allowed. For more information see [IAM
2061
2088
  # Overview](https://cloud.google.com/iam/docs/overview#permissions).
2062
2089
  # Corresponds to the JSON property `permissions`
2063
2090
  # @return [Array<String>]
@@ -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.6.0"
19
+ GEM_VERSION = "0.9.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 = "20220120"
25
+ REVISION = "20220523"
26
26
  end
27
27
  end
28
28
  end
@@ -112,6 +112,12 @@ module Google
112
112
  include Google::Apis::Core::JsonObjectSupport
113
113
  end
114
114
 
115
+ class EnumOption
116
+ class Representation < Google::Apis::Core::JsonRepresentation; end
117
+
118
+ include Google::Apis::Core::JsonObjectSupport
119
+ end
120
+
115
121
  class Expr
116
122
  class Representation < Google::Apis::Core::JsonRepresentation; end
117
123
 
@@ -402,6 +408,8 @@ module Google
402
408
  class Representation < Google::Apis::Core::JsonRepresentation
403
409
  property :description, as: 'description'
404
410
  property :display_name, as: 'displayName'
411
+ collection :enum_options, as: 'enumOptions', class: Google::Apis::ConnectorsV1::EnumOption, decorator: Google::Apis::ConnectorsV1::EnumOption::Representation
412
+
405
413
  property :key, as: 'key'
406
414
  property :required, as: 'required'
407
415
  property :role_grant, as: 'roleGrant', class: Google::Apis::ConnectorsV1::RoleGrant, decorator: Google::Apis::ConnectorsV1::RoleGrant::Representation
@@ -510,6 +518,14 @@ module Google
510
518
  end
511
519
  end
512
520
 
521
+ class EnumOption
522
+ # @private
523
+ class Representation < Google::Apis::Core::JsonRepresentation
524
+ property :display_name, as: 'displayName'
525
+ property :id, as: 'id'
526
+ end
527
+ end
528
+
513
529
  class Expr
514
530
  # @private
515
531
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -116,8 +116,8 @@ module Google
116
116
  # The resource that owns the locations collection, if applicable.
117
117
  # @param [String] filter
118
118
  # A filter to narrow down results to a preferred subset. The filtering language
119
- # accepts strings like "displayName=tokyo", and is documented in more detail in [
120
- # AIP-160](https://google.aip.dev/160).
119
+ # accepts strings like `"displayName=tokyo"`, and is documented in more detail
120
+ # in [AIP-160](https://google.aip.dev/160).
121
121
  # @param [Fixnum] page_size
122
122
  # The maximum number of results to return. If not set, the service selects a
123
123
  # default.
@@ -291,8 +291,9 @@ module Google
291
291
  # Gets the access control policy for a resource. Returns an empty policy if the
292
292
  # resource exists and does not have a policy set.
293
293
  # @param [String] resource
294
- # REQUIRED: The resource for which the policy is being requested. See the
295
- # operation documentation for the appropriate value for this field.
294
+ # REQUIRED: The resource for which the policy is being requested. See [Resource
295
+ # names](https://cloud.google.com/apis/design/resource_names) for the
296
+ # appropriate value for this field.
296
297
  # @param [Fixnum] options_requested_policy_version
297
298
  # Optional. The maximum policy version that will be used to format the policy.
298
299
  # Valid values are 0, 1, and 3. Requests specifying an invalid value will be
@@ -424,8 +425,9 @@ module Google
424
425
  # existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `
425
426
  # PERMISSION_DENIED` errors.
426
427
  # @param [String] resource
427
- # REQUIRED: The resource for which the policy is being specified. See the
428
- # operation documentation for the appropriate value for this field.
428
+ # REQUIRED: The resource for which the policy is being specified. See [Resource
429
+ # names](https://cloud.google.com/apis/design/resource_names) for the
430
+ # appropriate value for this field.
429
431
  # @param [Google::Apis::ConnectorsV1::SetIamPolicyRequest] set_iam_policy_request_object
430
432
  # @param [String] fields
431
433
  # Selector specifying which fields to include in a partial response.
@@ -462,8 +464,9 @@ module Google
462
464
  # permission-aware UIs and command-line tools, not for authorization checking.
463
465
  # This operation may "fail open" without warning.
464
466
  # @param [String] resource
465
- # REQUIRED: The resource for which the policy detail is being requested. See the
466
- # operation documentation for the appropriate value for this field.
467
+ # REQUIRED: The resource for which the policy detail is being requested. See [
468
+ # Resource names](https://cloud.google.com/apis/design/resource_names) for the
469
+ # appropriate value for this field.
467
470
  # @param [Google::Apis::ConnectorsV1::TestIamPermissionsRequest] test_iam_permissions_request_object
468
471
  # @param [String] fields
469
472
  # Selector specifying which fields to include in a partial response.
@@ -941,8 +944,9 @@ module Google
941
944
  # Gets the access control policy for a resource. Returns an empty policy if the
942
945
  # resource exists and does not have a policy set.
943
946
  # @param [String] resource
944
- # REQUIRED: The resource for which the policy is being requested. See the
945
- # operation documentation for the appropriate value for this field.
947
+ # REQUIRED: The resource for which the policy is being requested. See [Resource
948
+ # names](https://cloud.google.com/apis/design/resource_names) for the
949
+ # appropriate value for this field.
946
950
  # @param [Fixnum] options_requested_policy_version
947
951
  # Optional. The maximum policy version that will be used to format the policy.
948
952
  # Valid values are 0, 1, and 3. Requests specifying an invalid value will be
@@ -986,8 +990,9 @@ module Google
986
990
  # existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `
987
991
  # PERMISSION_DENIED` errors.
988
992
  # @param [String] resource
989
- # REQUIRED: The resource for which the policy is being specified. See the
990
- # operation documentation for the appropriate value for this field.
993
+ # REQUIRED: The resource for which the policy is being specified. See [Resource
994
+ # names](https://cloud.google.com/apis/design/resource_names) for the
995
+ # appropriate value for this field.
991
996
  # @param [Google::Apis::ConnectorsV1::SetIamPolicyRequest] set_iam_policy_request_object
992
997
  # @param [String] fields
993
998
  # Selector specifying which fields to include in a partial response.
@@ -1024,8 +1029,9 @@ module Google
1024
1029
  # permission-aware UIs and command-line tools, not for authorization checking.
1025
1030
  # This operation may "fail open" without warning.
1026
1031
  # @param [String] resource
1027
- # REQUIRED: The resource for which the policy detail is being requested. See the
1028
- # operation documentation for the appropriate value for this field.
1032
+ # REQUIRED: The resource for which the policy detail is being requested. See [
1033
+ # Resource names](https://cloud.google.com/apis/design/resource_names) for the
1034
+ # appropriate value for this field.
1029
1035
  # @param [Google::Apis::ConnectorsV1::TestIamPermissionsRequest] test_iam_permissions_request_object
1030
1036
  # @param [String] fields
1031
1037
  # Selector specifying which fields to include in a partial response.
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.6.0
4
+ version: 0.9.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-07 00:00:00.000000000 Z
11
+ date: 2022-05-30 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.6.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-connectors_v1/v0.9.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: []
@@ -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.3.5
78
+ rubygems_version: 3.3.14
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Connectors API V1