google-apis-clouddeploy_v1 0.3.0 → 0.4.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: 20201940fa5ef890a8d9570f716bec055baf1e0c65bebefec281a861a0a0a432
4
- data.tar.gz: 2e996028ef08d9483b50f73c1d83663f9c7a63b1f4db4860e90fe4d6d1a40d1a
3
+ metadata.gz: 634dba10d42b19ddcd4384dfcb2406f915c2a7259df484332c3b0a78d094d16e
4
+ data.tar.gz: 4a56bcc295d27b320458d5543947dddb1b73eb64f0909191462806441db481ac
5
5
  SHA512:
6
- metadata.gz: 3b2b1de18d1e9d016a71262ad0f1dc673a8841064002d63b12f33481d270dd8f75e414c956e7630578f9dd0c9dbfe678252625cc22f52557309b8a087d39dac7
7
- data.tar.gz: 20d7c7e48bb397c6750aa619884ead34e79597c561720661042a2b5048d500650abaa8863019b6127479a0e8aeacc3c018f100616b3920400c6e94558fb89144
6
+ metadata.gz: e95d4a8ac3c3a4a100172477c30173c7d51dea6d465b0f1d7f0a4d63cc65f643fccac3f4abeb2f85beb4d36fdd7f4cbf5a063eed27b9e14e689209fdba056c22
7
+ data.tar.gz: 335b1da410148bb6c17f902de76a181796d26f9b0d3b7652eba20e4607dd561d5f3532e672a87a0ae35f476d58198ea8109bdba8533bd841e3694cc9caf9db3b
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-clouddeploy_v1
2
2
 
3
+ ### v0.4.0 (2022-02-12)
4
+
5
+ * Regenerated from discovery document revision 20220202
6
+
3
7
  ### v0.3.0 (2022-01-29)
4
8
 
5
9
  * 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 registered cluster that the Skaffold configuration
30
- # should be applied to. Format is `projects/`project`/locations/`location`/
31
- # memberships/`membership_name``.
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
@@ -293,10 +293,10 @@ module Google
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
295
  # following: * A full date, with non-zero year, month, and day values * A month
296
- # and day value, with a zero year, such as an anniversary * A year on its own,
297
- # with zero month and day values * A year and month value, with a zero day, such
298
- # as a credit card expiration date Related types are google.type.TimeOfDay and `
299
- # google.protobuf.Timestamp`.
296
+ # and day, with a zero year (e.g., an anniversary) * A year on its own, with a
297
+ # zero month and a zero day * A year and month, with a zero day (e.g., a credit
298
+ # card expiration date) Related types: * google.type.TimeOfDay * google.type.
299
+ # 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 where execution outputs should be stored.
471
- # This can either be a bucket ("gs://my-bucket") or a path within a bucket ("gs:/
472
- # /my-bucket/my-dir"). If unspecified, a default bucket located in the same
473
- # region will be used.
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
- # will be used.
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
 
@@ -1477,10 +1490,10 @@ module Google
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
1492
  # following: * A full date, with non-zero year, month, and day values * A month
1480
- # and day value, with a zero year, such as an anniversary * A year on its own,
1481
- # with zero month and day values * A year and month value, with a zero day, such
1482
- # as a credit card expiration date Related types are google.type.TimeOfDay and `
1483
- # google.protobuf.Timestamp`.
1493
+ # and day, with a zero year (e.g., an anniversary) * A year on its own, with a
1494
+ # zero month and a zero day * A year and month, with a zero day (e.g., a credit
1495
+ # card expiration date) Related types: * google.type.TimeOfDay * google.type.
1496
+ # 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.3.0"
19
+ GEM_VERSION = "0.4.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 = "20220124"
25
+ REVISION = "20220202"
26
26
  end
27
27
  end
28
28
  end
@@ -414,6 +414,7 @@ module Google
414
414
  # @private
415
415
  class Representation < Google::Apis::Core::JsonRepresentation
416
416
  property :cluster, as: 'cluster'
417
+ property :internal_ip, as: 'internalIp'
417
418
  end
418
419
  end
419
420
 
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.3.0
4
+ version: 0.4.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-01-31 00:00:00.000000000 Z
11
+ date: 2022-02-14 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.3.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-clouddeploy_v1/v0.4.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: []