google-apis-clouddeploy_v1 0.3.0 → 0.6.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: 726c7e2f8235cd2ea90c67ecb035e00442e1e57693e1dc56249514c0551e3796
|
4
|
+
data.tar.gz: 110df117d59fc3c7f49f8b1bc197dbd8af26339d7e43f08ba5bb0cae6018a75c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7fbac8e4f4492edaa1dae71e9c386ded04018a6c6495f26c4cd06c85af826aec48fb103862db67cd7c39018992622a02b8b498e5b25b5a1dd3f609dc9ed29c75
|
7
|
+
data.tar.gz: 68e3220550ef280d21e11c5e3378d74abd0d1cd59610f80e87bac1825c9c4aaabd56a4b9b671db924e0e15bf90d5697a0425d14b78dc0cff5e4ecb5efc803c76
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,17 @@
|
|
1
1
|
# Release history for google-apis-clouddeploy_v1
|
2
2
|
|
3
|
+
### v0.6.0 (2022-03-26)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20220314
|
6
|
+
|
7
|
+
### v0.5.0 (2022-03-12)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20220302
|
10
|
+
|
11
|
+
### v0.4.0 (2022-02-12)
|
12
|
+
|
13
|
+
* Regenerated from discovery document revision 20220202
|
14
|
+
|
3
15
|
### v0.3.0 (2022-01-29)
|
4
16
|
|
5
17
|
* Regenerated from discovery document revision 20220124
|
@@ -26,9 +26,9 @@ module Google
|
|
26
26
|
class AnthosCluster
|
27
27
|
include Google::Apis::Core::Hashable
|
28
28
|
|
29
|
-
# Membership of the GKE Hub
|
30
|
-
#
|
31
|
-
#
|
29
|
+
# Membership of the GKE Hub-registered cluster to which to apply the Skaffold
|
30
|
+
# configuration. Format is `projects/`project`/locations/`location`/memberships/`
|
31
|
+
# membership_name``.
|
32
32
|
# Corresponds to the JSON property `membership`
|
33
33
|
# @return [String]
|
34
34
|
attr_accessor :membership
|
@@ -292,11 +292,11 @@ module Google
|
|
292
292
|
# Represents a whole or partial calendar date, such as a birthday. The time of
|
293
293
|
# day and time zone are either specified elsewhere or are insignificant. The
|
294
294
|
# date is relative to the Gregorian Calendar. This can represent one of the
|
295
|
-
# following: * A full date, with non-zero year, month, and day values * A month
|
296
|
-
# and day
|
297
|
-
# with zero month and day
|
298
|
-
#
|
299
|
-
# google.protobuf.Timestamp
|
295
|
+
# following: * A full date, with non-zero year, month, and day values. * A month
|
296
|
+
# and day, with a zero year (for example, an anniversary). * A year on its own,
|
297
|
+
# with a zero month and a zero day. * A year and month, with a zero day (for
|
298
|
+
# example, a credit card expiration date). Related types: * google.type.
|
299
|
+
# TimeOfDay * google.type.DateTime * google.protobuf.Timestamp
|
300
300
|
class Date
|
301
301
|
include Google::Apis::Core::Hashable
|
302
302
|
|
@@ -467,10 +467,10 @@ module Google
|
|
467
467
|
class ExecutionConfig
|
468
468
|
include Google::Apis::Core::Hashable
|
469
469
|
|
470
|
-
# Optional. Cloud Storage location
|
471
|
-
#
|
472
|
-
#
|
473
|
-
#
|
470
|
+
# Optional. Cloud Storage location in which to store execution outputs. This can
|
471
|
+
# either be a bucket ("gs://my-bucket") or a path within a bucket ("gs://my-
|
472
|
+
# bucket/my-dir"). If unspecified, a default bucket located in the same region
|
473
|
+
# will be used.
|
474
474
|
# Corresponds to the JSON property `artifactStorage`
|
475
475
|
# @return [String]
|
476
476
|
attr_accessor :artifact_storage
|
@@ -486,8 +486,8 @@ module Google
|
|
486
486
|
attr_accessor :private_pool
|
487
487
|
|
488
488
|
# Optional. Google service account to use for execution. If unspecified, the
|
489
|
-
# project execution service account (-compute@developer.gserviceaccount.com)
|
490
|
-
#
|
489
|
+
# project execution service account (-compute@developer.gserviceaccount.com) is
|
490
|
+
# used.
|
491
491
|
# Corresponds to the JSON property `serviceAccount`
|
492
492
|
# @return [String]
|
493
493
|
attr_accessor :service_account
|
@@ -583,6 +583,18 @@ module Google
|
|
583
583
|
# @return [String]
|
584
584
|
attr_accessor :cluster
|
585
585
|
|
586
|
+
# Optional. If true, `cluster` is accessed using the private IP address of the
|
587
|
+
# control plane endpoint. Otherwise, the default IP address of the control plane
|
588
|
+
# endpoint is used. The default IP address is the private IP address for
|
589
|
+
# clusters with private control-plane endpoints and the public IP address
|
590
|
+
# otherwise. Only specify this option when `cluster` is a [private GKE cluster](
|
591
|
+
# https://cloud.google.com/kubernetes-engine/docs/concepts/private-cluster-
|
592
|
+
# concept).
|
593
|
+
# Corresponds to the JSON property `internalIp`
|
594
|
+
# @return [Boolean]
|
595
|
+
attr_accessor :internal_ip
|
596
|
+
alias_method :internal_ip?, :internal_ip
|
597
|
+
|
586
598
|
def initialize(**args)
|
587
599
|
update!(**args)
|
588
600
|
end
|
@@ -590,6 +602,7 @@ module Google
|
|
590
602
|
# Update properties of this object
|
591
603
|
def update!(**args)
|
592
604
|
@cluster = args[:cluster] if args.key?(:cluster)
|
605
|
+
@internal_ip = args[:internal_ip] if args.key?(:internal_ip)
|
593
606
|
end
|
594
607
|
end
|
595
608
|
|
@@ -1476,11 +1489,11 @@ module Google
|
|
1476
1489
|
# Represents a whole or partial calendar date, such as a birthday. The time of
|
1477
1490
|
# day and time zone are either specified elsewhere or are insignificant. The
|
1478
1491
|
# date is relative to the Gregorian Calendar. This can represent one of the
|
1479
|
-
# following: * A full date, with non-zero year, month, and day values * A month
|
1480
|
-
# and day
|
1481
|
-
# with zero month and day
|
1482
|
-
#
|
1483
|
-
# google.protobuf.Timestamp
|
1492
|
+
# following: * A full date, with non-zero year, month, and day values. * A month
|
1493
|
+
# and day, with a zero year (for example, an anniversary). * A year on its own,
|
1494
|
+
# with a zero month and a zero day. * A year and month, with a zero day (for
|
1495
|
+
# example, a credit card expiration date). Related types: * google.type.
|
1496
|
+
# TimeOfDay * google.type.DateTime * google.protobuf.Timestamp
|
1484
1497
|
# Corresponds to the JSON property `supportEndDate`
|
1485
1498
|
# @return [Google::Apis::ClouddeployV1::Date]
|
1486
1499
|
attr_accessor :support_end_date
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module ClouddeployV1
|
18
18
|
# Version of the google-apis-clouddeploy_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.6.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 = "
|
25
|
+
REVISION = "20220314"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -347,7 +347,8 @@ module Google
|
|
347
347
|
# Required. The parent, which owns this collection of pipelines. Format must be
|
348
348
|
# projects/`project_id`/locations/`location_name`.
|
349
349
|
# @param [String] filter
|
350
|
-
# Filter
|
350
|
+
# Filter pipelines to be returned. See https://google.aip.dev/160 for more
|
351
|
+
# details.
|
351
352
|
# @param [String] order_by
|
352
353
|
# Field to sort by. See https://google.aip.dev/132#ordering for more details.
|
353
354
|
# @param [Fixnum] page_size
|
@@ -615,7 +616,7 @@ module Google
|
|
615
616
|
# Required. The `DeliveryPipeline` which owns this collection of `Release`
|
616
617
|
# objects.
|
617
618
|
# @param [String] filter
|
618
|
-
# Optional. Filter
|
619
|
+
# Optional. Filter releases to be returned. See https://google.aip.dev/160 for
|
619
620
|
# more details.
|
620
621
|
# @param [String] order_by
|
621
622
|
# Optional. Field to sort by. See https://google.aip.dev/132#ordering for more
|
@@ -785,7 +786,7 @@ module Google
|
|
785
786
|
# @param [String] parent
|
786
787
|
# Required. The `Release` which owns this collection of `Rollout` objects.
|
787
788
|
# @param [String] filter
|
788
|
-
# Optional. Filter
|
789
|
+
# Optional. Filter rollouts to be returned. See https://google.aip.dev/160 for
|
789
790
|
# more details.
|
790
791
|
# @param [String] order_by
|
791
792
|
# Optional. Field to sort by. See https://google.aip.dev/132#ordering for more
|
@@ -1169,7 +1170,7 @@ module Google
|
|
1169
1170
|
# Required. The parent, which owns this collection of targets. Format must be
|
1170
1171
|
# projects/`project_id`/locations/`location_name`.
|
1171
1172
|
# @param [String] filter
|
1172
|
-
# Optional. Filter
|
1173
|
+
# Optional. Filter targets to be returned. See https://google.aip.dev/160 for
|
1173
1174
|
# more details.
|
1174
1175
|
# @param [String] order_by
|
1175
1176
|
# Optional. Field to sort by. See https://google.aip.dev/132#ordering for more
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-clouddeploy_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.6.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-
|
11
|
+
date: 2022-03-28 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-clouddeploy_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-clouddeploy_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-clouddeploy_v1/v0.6.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-clouddeploy_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|