google-apis-dataform_v1beta1 0.52.0 → 0.53.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: ca970fcc48aa511d7b301fc8956aede1ef628c75fcb1e6ca7310a96c0dbc3026
|
|
4
|
+
data.tar.gz: 0b3c6f1ee44e093d6c26eeb2fb2ac9606878192048f6c5641ea61d13fc79964a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5ca61f20acc37d07c3da6bad811808f337e33703a2eb0d3a3ce518c3be56364cc645a5de8a03199b7519509f2d93353b93c37ba398f6c2e93b4ce98a204501d3
|
|
7
|
+
data.tar.gz: da8ee81d5cab09843634bfc7accdc9a302708af48fd3085c5ec78a1ec9b4d29f66aa6e4e6a29a64318d24a1c50649885430ad25176be119c981bb66fa734e768
|
data/CHANGELOG.md
CHANGED
|
@@ -749,6 +749,11 @@ module Google
|
|
|
749
749
|
# @return [String]
|
|
750
750
|
attr_accessor :name
|
|
751
751
|
|
|
752
|
+
# Metadata used to identify if a resource is user scoped.
|
|
753
|
+
# Corresponds to the JSON property `privateResourceMetadata`
|
|
754
|
+
# @return [Google::Apis::DataformV1beta1::PrivateResourceMetadata]
|
|
755
|
+
attr_accessor :private_resource_metadata
|
|
756
|
+
|
|
752
757
|
# Immutable. The name of the release config to compile. Must be in the format `
|
|
753
758
|
# projects/*/locations/*/repositories/*/releaseConfigs/*`.
|
|
754
759
|
# Corresponds to the JSON property `releaseConfig`
|
|
@@ -781,6 +786,7 @@ module Google
|
|
|
781
786
|
@git_commitish = args[:git_commitish] if args.key?(:git_commitish)
|
|
782
787
|
@internal_metadata = args[:internal_metadata] if args.key?(:internal_metadata)
|
|
783
788
|
@name = args[:name] if args.key?(:name)
|
|
789
|
+
@private_resource_metadata = args[:private_resource_metadata] if args.key?(:private_resource_metadata)
|
|
784
790
|
@release_config = args[:release_config] if args.key?(:release_config)
|
|
785
791
|
@resolved_git_commit_sha = args[:resolved_git_commit_sha] if args.key?(:resolved_git_commit_sha)
|
|
786
792
|
@workspace = args[:workspace] if args.key?(:workspace)
|
|
@@ -1691,8 +1697,9 @@ module Google
|
|
|
1691
1697
|
attr_accessor :operations
|
|
1692
1698
|
|
|
1693
1699
|
# Unordered list. Unreachable resources. Populated when the request sets `
|
|
1694
|
-
# ListOperationsRequest.return_partial_success` and reads across collections
|
|
1695
|
-
# when attempting to list all resources across all supported
|
|
1700
|
+
# ListOperationsRequest.return_partial_success` and reads across collections.
|
|
1701
|
+
# For example, when attempting to list all resources across all supported
|
|
1702
|
+
# locations.
|
|
1696
1703
|
# Corresponds to the JSON property `unreachable`
|
|
1697
1704
|
# @return [Array<String>]
|
|
1698
1705
|
attr_accessor :unreachable
|
|
@@ -2461,6 +2468,27 @@ module Google
|
|
|
2461
2468
|
end
|
|
2462
2469
|
end
|
|
2463
2470
|
|
|
2471
|
+
# Metadata used to identify if a resource is user scoped.
|
|
2472
|
+
class PrivateResourceMetadata
|
|
2473
|
+
include Google::Apis::Core::Hashable
|
|
2474
|
+
|
|
2475
|
+
# Output only. If true, this resource is user-scoped, meaning it is either a
|
|
2476
|
+
# workspace or sourced from a workspace.
|
|
2477
|
+
# Corresponds to the JSON property `userScoped`
|
|
2478
|
+
# @return [Boolean]
|
|
2479
|
+
attr_accessor :user_scoped
|
|
2480
|
+
alias_method :user_scoped?, :user_scoped
|
|
2481
|
+
|
|
2482
|
+
def initialize(**args)
|
|
2483
|
+
update!(**args)
|
|
2484
|
+
end
|
|
2485
|
+
|
|
2486
|
+
# Update properties of this object
|
|
2487
|
+
def update!(**args)
|
|
2488
|
+
@user_scoped = args[:user_scoped] if args.key?(:user_scoped)
|
|
2489
|
+
end
|
|
2490
|
+
end
|
|
2491
|
+
|
|
2464
2492
|
# `PullGitCommits` request message.
|
|
2465
2493
|
class PullGitCommitsRequest
|
|
2466
2494
|
include Google::Apis::Core::Hashable
|
|
@@ -3641,6 +3669,11 @@ module Google
|
|
|
3641
3669
|
# @return [String]
|
|
3642
3670
|
attr_accessor :name
|
|
3643
3671
|
|
|
3672
|
+
# Metadata used to identify if a resource is user scoped.
|
|
3673
|
+
# Corresponds to the JSON property `privateResourceMetadata`
|
|
3674
|
+
# @return [Google::Apis::DataformV1beta1::PrivateResourceMetadata]
|
|
3675
|
+
attr_accessor :private_resource_metadata
|
|
3676
|
+
|
|
3644
3677
|
# Output only. The resolved compilation result that was used to create this
|
|
3645
3678
|
# invocation. Will be in the format `projects/*/locations/*/repositories/*/
|
|
3646
3679
|
# compilationResults/*`.
|
|
@@ -3671,6 +3704,7 @@ module Google
|
|
|
3671
3704
|
@invocation_config = args[:invocation_config] if args.key?(:invocation_config)
|
|
3672
3705
|
@invocation_timing = args[:invocation_timing] if args.key?(:invocation_timing)
|
|
3673
3706
|
@name = args[:name] if args.key?(:name)
|
|
3707
|
+
@private_resource_metadata = args[:private_resource_metadata] if args.key?(:private_resource_metadata)
|
|
3674
3708
|
@resolved_compilation_result = args[:resolved_compilation_result] if args.key?(:resolved_compilation_result)
|
|
3675
3709
|
@state = args[:state] if args.key?(:state)
|
|
3676
3710
|
@workflow_config = args[:workflow_config] if args.key?(:workflow_config)
|
|
@@ -3777,6 +3811,11 @@ module Google
|
|
|
3777
3811
|
# @return [String]
|
|
3778
3812
|
attr_accessor :name
|
|
3779
3813
|
|
|
3814
|
+
# Metadata used to identify if a resource is user scoped.
|
|
3815
|
+
# Corresponds to the JSON property `privateResourceMetadata`
|
|
3816
|
+
# @return [Google::Apis::DataformV1beta1::PrivateResourceMetadata]
|
|
3817
|
+
attr_accessor :private_resource_metadata
|
|
3818
|
+
|
|
3780
3819
|
def initialize(**args)
|
|
3781
3820
|
update!(**args)
|
|
3782
3821
|
end
|
|
@@ -3787,6 +3826,7 @@ module Google
|
|
|
3787
3826
|
@data_encryption_state = args[:data_encryption_state] if args.key?(:data_encryption_state)
|
|
3788
3827
|
@internal_metadata = args[:internal_metadata] if args.key?(:internal_metadata)
|
|
3789
3828
|
@name = args[:name] if args.key?(:name)
|
|
3829
|
+
@private_resource_metadata = args[:private_resource_metadata] if args.key?(:private_resource_metadata)
|
|
3790
3830
|
end
|
|
3791
3831
|
end
|
|
3792
3832
|
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module DataformV1beta1
|
|
18
18
|
# Version of the google-apis-dataform_v1beta1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.53.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20251202"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -466,6 +466,12 @@ module Google
|
|
|
466
466
|
include Google::Apis::Core::JsonObjectSupport
|
|
467
467
|
end
|
|
468
468
|
|
|
469
|
+
class PrivateResourceMetadata
|
|
470
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
471
|
+
|
|
472
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
473
|
+
end
|
|
474
|
+
|
|
469
475
|
class PullGitCommitsRequest
|
|
470
476
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
471
477
|
|
|
@@ -923,6 +929,8 @@ module Google
|
|
|
923
929
|
property :git_commitish, as: 'gitCommitish'
|
|
924
930
|
property :internal_metadata, as: 'internalMetadata'
|
|
925
931
|
property :name, as: 'name'
|
|
932
|
+
property :private_resource_metadata, as: 'privateResourceMetadata', class: Google::Apis::DataformV1beta1::PrivateResourceMetadata, decorator: Google::Apis::DataformV1beta1::PrivateResourceMetadata::Representation
|
|
933
|
+
|
|
926
934
|
property :release_config, as: 'releaseConfig'
|
|
927
935
|
property :resolved_git_commit_sha, as: 'resolvedGitCommitSha'
|
|
928
936
|
property :workspace, as: 'workspace'
|
|
@@ -1414,6 +1422,13 @@ module Google
|
|
|
1414
1422
|
end
|
|
1415
1423
|
end
|
|
1416
1424
|
|
|
1425
|
+
class PrivateResourceMetadata
|
|
1426
|
+
# @private
|
|
1427
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1428
|
+
property :user_scoped, as: 'userScoped'
|
|
1429
|
+
end
|
|
1430
|
+
end
|
|
1431
|
+
|
|
1417
1432
|
class PullGitCommitsRequest
|
|
1418
1433
|
# @private
|
|
1419
1434
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -1749,6 +1764,8 @@ module Google
|
|
|
1749
1764
|
property :invocation_timing, as: 'invocationTiming', class: Google::Apis::DataformV1beta1::Interval, decorator: Google::Apis::DataformV1beta1::Interval::Representation
|
|
1750
1765
|
|
|
1751
1766
|
property :name, as: 'name'
|
|
1767
|
+
property :private_resource_metadata, as: 'privateResourceMetadata', class: Google::Apis::DataformV1beta1::PrivateResourceMetadata, decorator: Google::Apis::DataformV1beta1::PrivateResourceMetadata::Representation
|
|
1768
|
+
|
|
1752
1769
|
property :resolved_compilation_result, as: 'resolvedCompilationResult'
|
|
1753
1770
|
property :state, as: 'state'
|
|
1754
1771
|
property :workflow_config, as: 'workflowConfig'
|
|
@@ -1784,6 +1801,8 @@ module Google
|
|
|
1784
1801
|
|
|
1785
1802
|
property :internal_metadata, as: 'internalMetadata'
|
|
1786
1803
|
property :name, as: 'name'
|
|
1804
|
+
property :private_resource_metadata, as: 'privateResourceMetadata', class: Google::Apis::DataformV1beta1::PrivateResourceMetadata, decorator: Google::Apis::DataformV1beta1::PrivateResourceMetadata::Representation
|
|
1805
|
+
|
|
1787
1806
|
end
|
|
1788
1807
|
end
|
|
1789
1808
|
|
|
@@ -435,11 +435,12 @@ module Google
|
|
|
435
435
|
# The standard list page token.
|
|
436
436
|
# @param [Boolean] return_partial_success
|
|
437
437
|
# When set to `true`, operations that are reachable are returned as normal, and
|
|
438
|
-
# those that are unreachable are returned in the
|
|
439
|
-
# unreachable
|
|
440
|
-
#
|
|
441
|
-
# by default
|
|
442
|
-
# explicitly documented otherwise in service or product specific
|
|
438
|
+
# those that are unreachable are returned in the ListOperationsResponse.
|
|
439
|
+
# unreachable field. This can only be `true` when reading across collections.
|
|
440
|
+
# For example, when `parent` is set to `"projects/example/locations/-"`. This
|
|
441
|
+
# field is not supported by default and will result in an `UNIMPLEMENTED` error
|
|
442
|
+
# if set unless explicitly documented otherwise in service or product specific
|
|
443
|
+
# documentation.
|
|
443
444
|
# @param [String] fields
|
|
444
445
|
# Selector specifying which fields to include in a partial response.
|
|
445
446
|
# @param [String] quota_user
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-dataform_v1beta1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.53.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-dataform_v1beta1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-dataform_v1beta1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dataform_v1beta1/v0.53.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dataform_v1beta1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|