google-cloud-dataform-v1beta1 0.7.0 → 0.8.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: 902d49aa20c6ccbc6c5eebcbccb5aef5a66f8b6e4b9a03a70cf2b545125e5d94
4
- data.tar.gz: 15247bd38ca73c6b2a5b7fa9cfae040badd17de4951d95b7852f938e3573e7d9
3
+ metadata.gz: 7af9ee4cfa9282e58d22136881eb5f9d13ea5349c0313d2515e0ccfd01f09ef6
4
+ data.tar.gz: 74555910653889038f01bf91d5f8ed072593e70c72f9e2a65dfb9654f4f91b88
5
5
  SHA512:
6
- metadata.gz: fb00954b3226f42ea75f4635ee1ecad5234f4fa2b550a7f2036a850b4a8181eaa4f82e6486a0f3ca8d6e440afd8c0c1fadf2b5fe8334ef10fda51e80bb7c5192
7
- data.tar.gz: a0364f4e074a718c4b26ea95f35fd33daf1373f50a7790ac968bf53e772faa64102caace3ae0a0db5926568898304dbd69b3f4f8babaab8dae1aa8513a24fc4e
6
+ metadata.gz: 997be3377264c89833bd71f661d6751bc40cacce17caf8be3531765ad72f20c14ee3147a4319f0467feaaae9a52d9112a0b550a43c1951b9831d79824c0e7c27
7
+ data.tar.gz: f951f2d5e22c731820f82ee36d85e3fec52092ee283866c6b6a84734c0d9083455bf42c395065487faf541495c3fe3d0b5593537cfbb3001009de0b30caaa6d6
data/README.md CHANGED
@@ -43,33 +43,43 @@ for class and method documentation.
43
43
  See also the [Product Documentation](https://cloud.google.com/dataform)
44
44
  for general usage information.
45
45
 
46
- ## Enabling Logging
47
-
48
- To enable logging for this library, set the logger for the underlying [gRPC](https://github.com/grpc/grpc/tree/master/src/ruby) library.
49
- The logger that you set may be a Ruby stdlib [`Logger`](https://ruby-doc.org/current/stdlibs/logger/Logger.html) as shown below,
50
- or a [`Google::Cloud::Logging::Logger`](https://cloud.google.com/ruby/docs/reference/google-cloud-logging/latest)
51
- that will write logs to [Cloud Logging](https://cloud.google.com/logging/). See [grpc/logconfig.rb](https://github.com/grpc/grpc/blob/master/src/ruby/lib/grpc/logconfig.rb)
52
- and the gRPC [spec_helper.rb](https://github.com/grpc/grpc/blob/master/src/ruby/spec/spec_helper.rb) for additional information.
53
-
54
- Configuring a Ruby stdlib logger:
46
+ ## Debug Logging
47
+
48
+ This library comes with opt-in Debug Logging that can help you troubleshoot
49
+ your application's integration with the API. When logging is activated, key
50
+ events such as requests and responses, along with data payloads and metadata
51
+ such as headers and client configuration, are logged to the standard error
52
+ stream.
53
+
54
+ **WARNING:** Client Library Debug Logging includes your data payloads in
55
+ plaintext, which could include sensitive data such as PII for yourself or your
56
+ customers, private keys, or other security data that could be compromising if
57
+ leaked. Always practice good data hygiene with your application logs, and follow
58
+ the principle of least access. Google also recommends that Client Library Debug
59
+ Logging be enabled only temporarily during active debugging, and not used
60
+ permanently in production.
61
+
62
+ To enable logging, set the environment variable `GOOGLE_SDK_RUBY_LOGGING_GEMS`
63
+ to the value `all`. Alternatively, you can set the value to a comma-delimited
64
+ list of client library gem names. This will select the default logging behavior,
65
+ which writes logs to the standard error stream. On a local workstation, this may
66
+ result in logs appearing on the console. When running on a Google Cloud hosting
67
+ service such as [Google Cloud Run](https://cloud.google.com/run), this generally
68
+ results in logs appearing alongside your application logs in the
69
+ [Google Cloud Logging](https://cloud.google.com/logging/) service.
70
+
71
+ You can customize logging by modifying the `logger` configuration when
72
+ constructing a client object. For example:
55
73
 
56
74
  ```ruby
75
+ require "google/cloud/dataform/v1beta1"
57
76
  require "logger"
58
77
 
59
- module MyLogger
60
- LOGGER = Logger.new $stderr, level: Logger::WARN
61
- def logger
62
- LOGGER
63
- end
64
- end
65
-
66
- # Define a gRPC module-level logger method before grpc/logconfig.rb loads.
67
- module GRPC
68
- extend MyLogger
78
+ client = ::Google::Cloud::Dataform::V1beta1::Dataform::Client.new do |config|
79
+ config.logger = Logger.new "my-app.log"
69
80
  end
70
81
  ```
71
82
 
72
-
73
83
  ## Google Cloud Samples
74
84
 
75
85
  To browse ready to use code samples check [Google Cloud Samples](https://cloud.google.com/docs/samples).