google-cloud-bigquery-data_policies-v1 0.1.0 → 0.2.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 +4 -4
- data/README.md +1 -1
- data/lib/google/cloud/bigquery/data_policies/v1/data_policy_service/client.rb +4 -6
- data/lib/google/cloud/bigquery/data_policies/v1/data_policy_service/rest/client.rb +1003 -0
- data/lib/google/cloud/bigquery/data_policies/v1/data_policy_service/rest/service_stub.rb +587 -0
- data/lib/google/cloud/bigquery/data_policies/v1/data_policy_service/rest.rb +54 -0
- data/lib/google/cloud/bigquery/data_policies/v1/data_policy_service.rb +6 -0
- data/lib/google/cloud/bigquery/data_policies/v1/rest.rb +39 -0
- data/lib/google/cloud/bigquery/data_policies/v1/version.rb +1 -1
- data/lib/google/cloud/bigquery/data_policies/v1.rb +5 -0
- metadata +12 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6170e66aaf3ed37ca9b2e269970f75af1cb47e3b227d2ddd5800e4af9ad4d22c
|
4
|
+
data.tar.gz: 736e0ab47211e1f40394ff35ef8bed5e10a3706300370743d1d9f633c4f57101
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d4f941f5de7df4a9cb3b3234aaea2c2821be27e2571f73b28a2fd8cad1914cd4abd6f91c8f28e1bc89ab081f667f045dbd3bde94b65c46d8baddb6f0c8ce867e
|
7
|
+
data.tar.gz: a48a14faf4e97103602031907b07ffe2822d24ffdd6a233459cb31770866904cf84f84bae7e93cf6058e4c0c4ede9d91a454b3acc86e4c5a729e8414641df0a9
|
data/README.md
CHANGED
@@ -693,13 +693,11 @@ module Google
|
|
693
693
|
# # Call the list_data_policies method.
|
694
694
|
# result = client.list_data_policies request
|
695
695
|
#
|
696
|
-
# # The returned object is of type Gapic::PagedEnumerable. You can
|
697
|
-
# #
|
698
|
-
#
|
699
|
-
# # methods are also available for managing paging directly.
|
700
|
-
# result.each do |response|
|
696
|
+
# # The returned object is of type Gapic::PagedEnumerable. You can iterate
|
697
|
+
# # over elements, and API calls will be issued to fetch pages as needed.
|
698
|
+
# result.each do |item|
|
701
699
|
# # Each element is of type ::Google::Cloud::Bigquery::DataPolicies::V1::DataPolicy.
|
702
|
-
# p
|
700
|
+
# p item
|
703
701
|
# end
|
704
702
|
#
|
705
703
|
def list_data_policies request, options = nil
|