google-apis-datastream_v1 0.70.0 → 0.71.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: 872185ff128046e03a9b8ea3b906c8c844c08377fc36237d29a6da24f87952b4
|
|
4
|
+
data.tar.gz: ee301c2eef31f4047341c16e0c957bb5d0913a2a6ce539166de077895635785b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ef2981f73d4fb7a602b51b4eaf83ba09ad1e6fbbad016dffd0d8f0ef0b50423e84c4a11bb4ad518c1bd6bcd20eb51658e234747926a5a89792b158db511b7778
|
|
7
|
+
data.tar.gz: 61b81f22aee795f1fc6a375c1856bf5b51d41b1c9d6d30ff5b451f173ed637d78a003dea877595d2937325a168d118b7a0a3a818d12af317973b33c89bba5c1d
|
data/CHANGELOG.md
CHANGED
|
@@ -581,6 +581,11 @@ module Google
|
|
|
581
581
|
# @return [String]
|
|
582
582
|
attr_accessor :update_time
|
|
583
583
|
|
|
584
|
+
# Profile for connecting to a Workday source.
|
|
585
|
+
# Corresponds to the JSON property `workdayProfile`
|
|
586
|
+
# @return [Google::Apis::DatastreamV1::WorkdayProfile]
|
|
587
|
+
attr_accessor :workday_profile
|
|
588
|
+
|
|
584
589
|
def initialize(**args)
|
|
585
590
|
update!(**args)
|
|
586
591
|
end
|
|
@@ -609,6 +614,7 @@ module Google
|
|
|
609
614
|
@sql_server_profile = args[:sql_server_profile] if args.key?(:sql_server_profile)
|
|
610
615
|
@static_service_ip_connectivity = args[:static_service_ip_connectivity] if args.key?(:static_service_ip_connectivity)
|
|
611
616
|
@update_time = args[:update_time] if args.key?(:update_time)
|
|
617
|
+
@workday_profile = args[:workday_profile] if args.key?(:workday_profile)
|
|
612
618
|
end
|
|
613
619
|
end
|
|
614
620
|
|
|
@@ -1100,7 +1106,7 @@ module Google
|
|
|
1100
1106
|
# @return [Hash<String,String>]
|
|
1101
1107
|
attr_accessor :metadata
|
|
1102
1108
|
|
|
1103
|
-
# The reason
|
|
1109
|
+
# The reason for the error. This is a constant value that identifies the
|
|
1104
1110
|
# proximate cause of the error. Error reasons are unique within a particular
|
|
1105
1111
|
# domain of errors. This should be at most 63 characters and match a regular
|
|
1106
1112
|
# expression of `A-Z+[A-Z0-9]`, which represents UPPER_SNAKE_CASE.
|
|
@@ -1199,7 +1205,7 @@ module Google
|
|
|
1199
1205
|
# @return [Google::Apis::DatastreamV1::LocalizedMessage]
|
|
1200
1206
|
attr_accessor :localized_message
|
|
1201
1207
|
|
|
1202
|
-
# The reason
|
|
1208
|
+
# The reason for the field-level error. This is a constant value that identifies
|
|
1203
1209
|
# the proximate cause of the field-level error. It should uniquely identify the
|
|
1204
1210
|
# type of the FieldViolation within the scope of the google.rpc.ErrorInfo.domain.
|
|
1205
1211
|
# This should be at most 63 characters and match a regular expression of `A-Z+[
|
|
@@ -2631,6 +2637,32 @@ module Google
|
|
|
2631
2637
|
end
|
|
2632
2638
|
end
|
|
2633
2639
|
|
|
2640
|
+
# OAuth Refresh Token Credentials.
|
|
2641
|
+
class OauthRefreshTokenCredentials
|
|
2642
|
+
include Google::Apis::Core::Hashable
|
|
2643
|
+
|
|
2644
|
+
# OAuth Client Credentials.
|
|
2645
|
+
# Corresponds to the JSON property `oauthClientCredentials`
|
|
2646
|
+
# @return [Google::Apis::DatastreamV1::OauthClientCredentials]
|
|
2647
|
+
attr_accessor :oauth_client_credentials
|
|
2648
|
+
|
|
2649
|
+
# A confidential piece of information where the actual value is either directly
|
|
2650
|
+
# specified in the message as a raw string or stored in GCP secret manager.
|
|
2651
|
+
# Corresponds to the JSON property `refreshToken`
|
|
2652
|
+
# @return [Google::Apis::DatastreamV1::Secret]
|
|
2653
|
+
attr_accessor :refresh_token
|
|
2654
|
+
|
|
2655
|
+
def initialize(**args)
|
|
2656
|
+
update!(**args)
|
|
2657
|
+
end
|
|
2658
|
+
|
|
2659
|
+
# Update properties of this object
|
|
2660
|
+
def update!(**args)
|
|
2661
|
+
@oauth_client_credentials = args[:oauth_client_credentials] if args.key?(:oauth_client_credentials)
|
|
2662
|
+
@refresh_token = args[:refresh_token] if args.key?(:refresh_token)
|
|
2663
|
+
end
|
|
2664
|
+
end
|
|
2665
|
+
|
|
2634
2666
|
# Object filter to apply the rules to.
|
|
2635
2667
|
class ObjectFilter
|
|
2636
2668
|
include Google::Apis::Core::Hashable
|
|
@@ -4509,6 +4541,11 @@ module Google
|
|
|
4509
4541
|
# @return [Google::Apis::DatastreamV1::SqlServerSourceConfig]
|
|
4510
4542
|
attr_accessor :sql_server_source_config
|
|
4511
4543
|
|
|
4544
|
+
# Configuration for syncing data from a Workday source.
|
|
4545
|
+
# Corresponds to the JSON property `workdaySourceConfig`
|
|
4546
|
+
# @return [Google::Apis::DatastreamV1::WorkdaySourceConfig]
|
|
4547
|
+
attr_accessor :workday_source_config
|
|
4548
|
+
|
|
4512
4549
|
def initialize(**args)
|
|
4513
4550
|
update!(**args)
|
|
4514
4551
|
end
|
|
@@ -4526,6 +4563,7 @@ module Google
|
|
|
4526
4563
|
@source_connection_profile = args[:source_connection_profile] if args.key?(:source_connection_profile)
|
|
4527
4564
|
@spanner_source_config = args[:spanner_source_config] if args.key?(:spanner_source_config)
|
|
4528
4565
|
@sql_server_source_config = args[:sql_server_source_config] if args.key?(:sql_server_source_config)
|
|
4566
|
+
@workday_source_config = args[:workday_source_config] if args.key?(:workday_source_config)
|
|
4529
4567
|
end
|
|
4530
4568
|
end
|
|
4531
4569
|
|
|
@@ -5886,6 +5924,71 @@ module Google
|
|
|
5886
5924
|
@vpc = args[:vpc] if args.key?(:vpc)
|
|
5887
5925
|
end
|
|
5888
5926
|
end
|
|
5927
|
+
|
|
5928
|
+
# Profile for connecting to a Workday source.
|
|
5929
|
+
class WorkdayProfile
|
|
5930
|
+
include Google::Apis::Core::Hashable
|
|
5931
|
+
|
|
5932
|
+
# Required. Host for the Workday connection. Must be a valid hostname (e.g., `
|
|
5933
|
+
# wd3-impl-services1.workday.com`).
|
|
5934
|
+
# Corresponds to the JSON property `host`
|
|
5935
|
+
# @return [String]
|
|
5936
|
+
attr_accessor :host
|
|
5937
|
+
|
|
5938
|
+
# OAuth Refresh Token Credentials.
|
|
5939
|
+
# Corresponds to the JSON property `oauthRefreshTokenCredentials`
|
|
5940
|
+
# @return [Google::Apis::DatastreamV1::OauthRefreshTokenCredentials]
|
|
5941
|
+
attr_accessor :oauth_refresh_token_credentials
|
|
5942
|
+
|
|
5943
|
+
# Required. Tenant for the Workday connection (e.g., `google12`).
|
|
5944
|
+
# Corresponds to the JSON property `tenant`
|
|
5945
|
+
# @return [String]
|
|
5946
|
+
attr_accessor :tenant
|
|
5947
|
+
|
|
5948
|
+
def initialize(**args)
|
|
5949
|
+
update!(**args)
|
|
5950
|
+
end
|
|
5951
|
+
|
|
5952
|
+
# Update properties of this object
|
|
5953
|
+
def update!(**args)
|
|
5954
|
+
@host = args[:host] if args.key?(:host)
|
|
5955
|
+
@oauth_refresh_token_credentials = args[:oauth_refresh_token_credentials] if args.key?(:oauth_refresh_token_credentials)
|
|
5956
|
+
@tenant = args[:tenant] if args.key?(:tenant)
|
|
5957
|
+
end
|
|
5958
|
+
end
|
|
5959
|
+
|
|
5960
|
+
# Configuration for syncing data from a Workday source.
|
|
5961
|
+
class WorkdaySourceConfig
|
|
5962
|
+
include Google::Apis::Core::Hashable
|
|
5963
|
+
|
|
5964
|
+
# Source catalog.
|
|
5965
|
+
# Corresponds to the JSON property `excludeObjects`
|
|
5966
|
+
# @return [Google::Apis::DatastreamV1::SourceCatalog]
|
|
5967
|
+
attr_accessor :exclude_objects
|
|
5968
|
+
|
|
5969
|
+
# Source catalog.
|
|
5970
|
+
# Corresponds to the JSON property `includeObjects`
|
|
5971
|
+
# @return [Google::Apis::DatastreamV1::SourceCatalog]
|
|
5972
|
+
attr_accessor :include_objects
|
|
5973
|
+
|
|
5974
|
+
# Required. Incremental sync polling interval for all objects. If not set, a
|
|
5975
|
+
# default value of `5 minutes` is used. The duration must be from `5 minutes` to
|
|
5976
|
+
# `24 hours`, inclusive.
|
|
5977
|
+
# Corresponds to the JSON property `pollingInterval`
|
|
5978
|
+
# @return [String]
|
|
5979
|
+
attr_accessor :polling_interval
|
|
5980
|
+
|
|
5981
|
+
def initialize(**args)
|
|
5982
|
+
update!(**args)
|
|
5983
|
+
end
|
|
5984
|
+
|
|
5985
|
+
# Update properties of this object
|
|
5986
|
+
def update!(**args)
|
|
5987
|
+
@exclude_objects = args[:exclude_objects] if args.key?(:exclude_objects)
|
|
5988
|
+
@include_objects = args[:include_objects] if args.key?(:include_objects)
|
|
5989
|
+
@polling_interval = args[:polling_interval] if args.key?(:polling_interval)
|
|
5990
|
+
end
|
|
5991
|
+
end
|
|
5889
5992
|
end
|
|
5890
5993
|
end
|
|
5891
5994
|
end
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module DatastreamV1
|
|
18
18
|
# Version of the google-apis-datastream_v1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.71.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.19.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260719"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -502,6 +502,12 @@ module Google
|
|
|
502
502
|
include Google::Apis::Core::JsonObjectSupport
|
|
503
503
|
end
|
|
504
504
|
|
|
505
|
+
class OauthRefreshTokenCredentials
|
|
506
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
507
|
+
|
|
508
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
509
|
+
end
|
|
510
|
+
|
|
505
511
|
class ObjectFilter
|
|
506
512
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
507
513
|
|
|
@@ -1060,6 +1066,18 @@ module Google
|
|
|
1060
1066
|
include Google::Apis::Core::JsonObjectSupport
|
|
1061
1067
|
end
|
|
1062
1068
|
|
|
1069
|
+
class WorkdayProfile
|
|
1070
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1071
|
+
|
|
1072
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1073
|
+
end
|
|
1074
|
+
|
|
1075
|
+
class WorkdaySourceConfig
|
|
1076
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1077
|
+
|
|
1078
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1079
|
+
end
|
|
1080
|
+
|
|
1063
1081
|
class AppendOnly
|
|
1064
1082
|
# @private
|
|
1065
1083
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -1256,6 +1274,8 @@ module Google
|
|
|
1256
1274
|
property :static_service_ip_connectivity, as: 'staticServiceIpConnectivity', class: Google::Apis::DatastreamV1::StaticServiceIpConnectivity, decorator: Google::Apis::DatastreamV1::StaticServiceIpConnectivity::Representation
|
|
1257
1275
|
|
|
1258
1276
|
property :update_time, as: 'updateTime'
|
|
1277
|
+
property :workday_profile, as: 'workdayProfile', class: Google::Apis::DatastreamV1::WorkdayProfile, decorator: Google::Apis::DatastreamV1::WorkdayProfile::Representation
|
|
1278
|
+
|
|
1259
1279
|
end
|
|
1260
1280
|
end
|
|
1261
1281
|
|
|
@@ -1868,6 +1888,16 @@ module Google
|
|
|
1868
1888
|
end
|
|
1869
1889
|
end
|
|
1870
1890
|
|
|
1891
|
+
class OauthRefreshTokenCredentials
|
|
1892
|
+
# @private
|
|
1893
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1894
|
+
property :oauth_client_credentials, as: 'oauthClientCredentials', class: Google::Apis::DatastreamV1::OauthClientCredentials, decorator: Google::Apis::DatastreamV1::OauthClientCredentials::Representation
|
|
1895
|
+
|
|
1896
|
+
property :refresh_token, as: 'refreshToken', class: Google::Apis::DatastreamV1::Secret, decorator: Google::Apis::DatastreamV1::Secret::Representation
|
|
1897
|
+
|
|
1898
|
+
end
|
|
1899
|
+
end
|
|
1900
|
+
|
|
1871
1901
|
class ObjectFilter
|
|
1872
1902
|
# @private
|
|
1873
1903
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -2404,6 +2434,8 @@ module Google
|
|
|
2404
2434
|
|
|
2405
2435
|
property :sql_server_source_config, as: 'sqlServerSourceConfig', class: Google::Apis::DatastreamV1::SqlServerSourceConfig, decorator: Google::Apis::DatastreamV1::SqlServerSourceConfig::Representation
|
|
2406
2436
|
|
|
2437
|
+
property :workday_source_config, as: 'workdaySourceConfig', class: Google::Apis::DatastreamV1::WorkdaySourceConfig, decorator: Google::Apis::DatastreamV1::WorkdaySourceConfig::Representation
|
|
2438
|
+
|
|
2407
2439
|
end
|
|
2408
2440
|
end
|
|
2409
2441
|
|
|
@@ -2831,6 +2863,27 @@ module Google
|
|
|
2831
2863
|
property :vpc, as: 'vpc'
|
|
2832
2864
|
end
|
|
2833
2865
|
end
|
|
2866
|
+
|
|
2867
|
+
class WorkdayProfile
|
|
2868
|
+
# @private
|
|
2869
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2870
|
+
property :host, as: 'host'
|
|
2871
|
+
property :oauth_refresh_token_credentials, as: 'oauthRefreshTokenCredentials', class: Google::Apis::DatastreamV1::OauthRefreshTokenCredentials, decorator: Google::Apis::DatastreamV1::OauthRefreshTokenCredentials::Representation
|
|
2872
|
+
|
|
2873
|
+
property :tenant, as: 'tenant'
|
|
2874
|
+
end
|
|
2875
|
+
end
|
|
2876
|
+
|
|
2877
|
+
class WorkdaySourceConfig
|
|
2878
|
+
# @private
|
|
2879
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2880
|
+
property :exclude_objects, as: 'excludeObjects', class: Google::Apis::DatastreamV1::SourceCatalog, decorator: Google::Apis::DatastreamV1::SourceCatalog::Representation
|
|
2881
|
+
|
|
2882
|
+
property :include_objects, as: 'includeObjects', class: Google::Apis::DatastreamV1::SourceCatalog, decorator: Google::Apis::DatastreamV1::SourceCatalog::Representation
|
|
2883
|
+
|
|
2884
|
+
property :polling_interval, as: 'pollingInterval'
|
|
2885
|
+
end
|
|
2886
|
+
end
|
|
2834
2887
|
end
|
|
2835
2888
|
end
|
|
2836
2889
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-datastream_v1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.71.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
@@ -57,7 +57,7 @@ licenses:
|
|
|
57
57
|
metadata:
|
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-datastream_v1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-datastream_v1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-datastream_v1/v0.71.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-datastream_v1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|